/* ===========================
   VARIABLES & ROOT
   =========================== */
:root {
    --primary: #7A0E3A;
    --secondary: #162B55;
    --background: #F5F6F8;
    --white: #FFFFFF;
    --text: #1e1c1c;
    --light-gray: #E8E8E8;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===========================
   GENERAL STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--secondary);
    font-weight: 700;
}

.logo-highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--secondary);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===========================
   BUTTONS
   =========================== */
.button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.button:hover::before {
    left: 100%;
}

.button-primary {
    background-color: var(--primary);
    color: var(--white);
}

.button-primary:hover {
    background-color: var(--secondary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.button-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.button-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    margin-top: 70px;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 14, 58, 0.4) 0%, rgba(22, 43, 85, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero .button {
    margin: 0 10px;
    animation: fadeInUp 1s ease 0.4s both;
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* ===========================
   INTRO SECTION
   =========================== */
.intro {
    padding: 80px 0;
    background-color: var(--white);
}

.intro-content h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-card {
    flex: 1;
    min-width: 150px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-card h4 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-card p {
    margin: 0;
    font-size: 0.95rem;
    color: palevioletred;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services {
    padding: 100px 0;
    background-color: var(--background);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: var(--shadow-hover);
}

.service-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===========================
   PROJECTS/GALLERY SECTION
   =========================== */
.projects {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(122, 14, 58, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(122, 14, 58, 0.85);
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ===========================
   WHATSAPP FLOATING BUTTON
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: var(--shadow-hover);
    z-index: 999;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ===========================
   PAGE HEADER
   =========================== */
.page-header {
    margin-top: 70px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    animation: fadeIn 0.6s ease;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

/* ===========================
   MISSION & VISION SECTION
   =========================== */
.mission-vision {
    padding: 100px 0;
    background-color: var(--background);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background-color: var(--white);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.mission-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.mission-card:hover .card-icon {
    color: var(--secondary);
    transform: scale(1.2);
}

.mission-card h3 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.mission-card p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===========================
   TEAM SECTION
   =========================== */
.team {
    padding: 100px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    transition: var(--transition);
}

.member-image {
    width: 100%;
    height: 280px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    color: var(--secondary);
    margin-bottom: 8px;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px !important;
}

.team-member p {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===========================
   SERVICES DETAIL SECTION
   =========================== */
.services-detail {
    padding: 100px 0;
    background-color: var(--background);
}

.service-detail-item {
    margin-bottom: 80px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.detail-text h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 2rem;
}

.detail-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    margin-bottom: 0;
}

.features-list li {
    padding: 12px 0;
    color: var(--text);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.features-list i {
    color: var(--primary);
    font-size: 1.2rem;
    min-width: 20px;
}

.detail-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.detail-image:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

/* ===========================
   OBJECTIVES SECTION
   =========================== */
.objectives {
    padding: 100px 0;
    background-color: var(--white);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.objective-card {
    background-color: var(--background);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

.objective-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.objective-number {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0.8;
}

.objective-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.objective-card p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===========================
   WORK PROCESS SECTION
   =========================== */
.work-process {
    padding: 100px 0;
    background-color: var(--background);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.process-step {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.process-step:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.step-number {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===========================
   HSE SECTION
   =========================== */
.hse-section {
    padding: 100px 0;
    background-color: var(--white);
}

.hse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.hse-card {
    background-color: var(--background);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.hse-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.hse-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.hse-card:hover .hse-icon {
    transform: scale(1.2);
    color: var(--secondary);
}

.hse-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.hse-card p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    transition: var(--transition);
    padding: 15px;
    border-radius: var(--border-radius);
}

.contact-item:hover {
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--secondary);
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.contact-text a {
    font-weight: 600;
    color: var(--primary);
}

.credentials-box {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.credentials-box h4 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.credentials-box p {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-form h2 {
    color: var(--secondary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(122, 14, 58, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.form-group.checkbox label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 500;
}

.form-note {
    color: var(--text);
    font-size: 0.9rem;
    margin-top: 15px !important;
}

/* ===========================
   MAP SECTION
   =========================== */
.map-section {
    padding: 60px 0;
    background-color: var(--white);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-container iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ===========================
   SERVICES OVERVIEW
   =========================== */
.services-overview {
    padding: 60px 0;
    background-color: var(--background);
}

/* ===========================
   RESPONSIVE RIPPLE EFFECT
   =========================== */
.button .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10;
    margin-top: 40px;
}

.client-logo {
    flex: 0 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo img {
    max-width: 60px;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* .client-logo img:hover {
    filter: grayscale(60%);
    opacity: 1;
} */