:root {
            --primary: #2a5d2a;
            --primary-light: #3a7c3a;
            --secondary: #5a7c5a;
            --accent: #ffc40c;
            /* --accent: #c19a6b; */
            --light: #f8f9fa;
            --dark: #2c3e50;
            --text: #333;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.12);


            /* Extended semantic tokens */
            --bg: var(--light);
            --card-bg: #ffffff;
            --muted: rgba(44,62,80,0.6);
            --radius: 12px;
            --container-width: 1200px;
            --gap: 1.5rem;
            --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            --stat-size-lg: clamp(1.75rem, 4vw, 2.4rem);
            --label-size: 1rem;
            --icon-size: 44px;
            --stagger: 150;
            --count-duration: 1200;
        }


      
        /* .contact-info-top span {
            display: flex;
            align-items: center;
            gap: 8px;
        } */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        body {
            color: var(--text);
            line-height: 1.6;
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
            /* padding-top: 70px; */
            margin: 0;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 1rem;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            transform: translateY(0);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        
        .btn:active {
            transform: translateY(1px);
        }
        
        .btn-outline {
            background-color: rgba(0, 0, 0, 0.1);
            color: white;
            /* background-color: var(--primary); */
            background: linear-gradient(135deg, #2a5d2a 0%, #3a7c3a 50%, #5a7c5a 100%);
        }
        
        .btn-outline:hover {
            color: var(--light);
            border: 2px solid var(--primary);
            background-color: transparent;
        }
        .btn_primary{
            background-color: var(--accent);
            color: var(--dark);
        }
        .readmore{
            color: var(--accent);
            text-decoration: none;
            font-weight:bold; 
            display:inline-block;
        }
        .readmore:hover{
            text-decoration:underline;
        }
        .button-container {
        text-align: center;
        }
        .view-all-btn {
        display: inline-block; /* makes it work with text-align */
        margin-top: 20px;
        }
            
        
        section {
            padding: 80px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }

                        /* Top Contact Bar */

        .contact-info-top {
            background-color: #e0aa0f; /* yellow */
            color: #fff;
            font-size: 14px;
            padding: 6px 20px;
            margin: 0;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            }
        .contact-info-top span a i {
            margin-right: 6px;
            color: #fff;
            }
            .contact-info-top a {
            margin: 0 10px;
            text-decoration: none;
            color: #fff;
            font-weight: bold;
            transition: 0.3s ease;
            }
            .contact-info-top a i {
            margin-right:10px;
            }

            .contact-info-top a:hover{
            color: var(--primary);
            }
            
        
        /* Header Styles */
        header {
            top: 0;
            left: 0;
            width: 100%;
            /* background-color: var(--secondary); */
            background: linear-gradient(135deg, #2a5d2a 0%, #3a7c3a 50%, #5a7c5a 100%);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1;
            transition: var(--transition);
            width: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .navbar {
            background: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            margin: 0;
            /* margin-top: 10px; */
            /* background: var(--primary); */
        }
        
        .logo {
            height: 60px;
            display: flex;
            align-items: center;
            font-weight: bold;
        }
        .navbar a{
            text-decoration: none;
            color: #fff;
        }
        .logo img {
            height: 100%;
            width: auto;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
            position: relative;
            font-size: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--light);
            transition: var(--transition);
            padding: 5px 0;
        }
        /* Active link style */
        .nav-links a.active {
            border-bottom: 3px solid var(--accent); /* underline with brand accent */
            padding-bottom: 3px;
            color: #fff; /* optional: change text color */
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--light);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--light);
            transition: var(--transition);
        }
        
        .mobile-menu-btn:hover {
            color: var(--accent);
        }
        
        /* Mobile Sidebar */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: linear-gradient(180deg, var(--primary-light), var(--primary));
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
            z-index: 1001;
            transition: right 0.4s ease;
            padding: 80px 30px 30px;
            overflow-y: auto;
        }
        
        .mobile-sidebar.active {
            right: 0;
        }
        
        .mobile-sidebar .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: var(--light);
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .mobile-sidebar-links {
            list-style: none;
        }
        
        .mobile-sidebar-links li {
            margin-bottom: 15px;
        }
        
        .mobile-sidebar-links a {
            text-decoration: none;
            color: var(--light);
            font-weight: 500;
            font-size: 1.1rem;
            display: block;
            padding: 10px 0;
            transition: var(--transition);
            width: 100%;
        }
        
        .mobile-sidebar-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
            /* background-color: var(--primary-light); */
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

            /* Desktop dropdown */
.nav-links .dropdown {
    position: relative;
}
.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background:var(--secondary);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 99;
}
.nav-links .dropdown-menu li a {
    display: block;
    padding: 10px;
    color: var(--light);
    text-decoration: none;
}
.nav-links .dropdown-menu li a:hover {
    background: var(--primary-light);
}
.nav-links .dropdown:hover > .dropdown-menu {
    display: block;
}

                /* Mobile sidebar dropdowns */
/* Parent toggle styling */
.mobile-sidebar .dropdown-toggle {
    width: 100%;
    padding: 12px 15px;
    padding-left: 0;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    /* justify-content: space-between; keeps text left + icon right */
    align-items: center;
}
.mobile-sidebar .dropdown-toggle:hover{
    color: var(--accent);
}
/* Caret styling */
.mobile-sidebar .dropdown-toggle i {
    margin-left: 10px;
    transition: transform 0.3s ease; /* smooth rotation */
}

/* Rotate when open */
.mobile-sidebar .dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Submenu animation */
.mobile-sidebar .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding-left: 10px;
    margin: 0;
    transition: max-height 0.3s ease; /* smooth dropdown */
}

/* Show submenu smoothly */
.mobile-sidebar .dropdown.open .dropdown-menu {
    max-height: 500px; /* big enough to fit content */
}

/* Submenu links */
.mobile-sidebar .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #f1f1f1;
    font-size: 0.95rem;
    text-decoration: none;
}
.mobile-sidebar .dropdown-menu li a:hover {
    background: var(--primary);
    border-radius: 6px;
}


        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            color: white;
            position: relative;
            overflow: hidden;
            justify-content: center;
            display: flex;
            align-items: center;
            text-align: center;
        }
        .slideshow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        }
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            animation: slideShow 18s infinite;
        }
        .slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 6s;
}
.slide:nth-child(3) {
  animation-delay: 12s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  10% {
    opacity: 1;
    transform: scale(1.1);
  }
  30% {
    opacity: 1;
    transform: scale(1.2);
  }
  40% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.45); /* Black overlay, 45% opacity */
            z-index: 0;
}
        

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 0.3s forwards;
            opacity: 0;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeInUp 1s ease-out 0.6s forwards;
            opacity: 0;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Trusted By Section */
        .trusted-by {
            background-color: var(--light);
            text-align: center;
            padding: 60px 0;
        }
        
        .trusted-by h3 {
            margin-bottom: 40px;
            font-size: 1.5rem;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .partner-item {
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .partner-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .partner-item img {
            max-width: 100%;
            height: auto;
            transition: var(--transition);
        }

        
        /* About Section */
        .about-content {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .value-item {
            padding: 20px;
            background-color: var(--light);
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
        }
        
        .value-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        .value-item h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            /* box-shadow: var(--shadow); */
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            background-color: var(--light);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 7px solid var(--secondary);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        /* Services Section */
        /* .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            padding: 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
            color: var(--accent);
        } */
        
        /* Impact Section */
        .impact {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1492496913980-501348b61469?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&h=600&q=80') no-repeat center center/cover;
            color: white;
        }
        
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .impact-item {
            padding: 30px;
            text-align: center;
            transition: var(--transition);
        }
        
        .impact-item:hover {
            transform: translateY(-5px);
        }
        
        .impact-item i {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        /* Partners Section */
        .partners {
            background-color: var(--light);
        }
        
        .partners-grid-full {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .partner-logo {
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .partner-logo img {
            max-width: 100%;
            height: auto;
            transition: var(--transition);
        }
        
        /* .partner-logo:hover img {
            filter: grayscale(0%);
        } */
        
        /* Contact Section */
        .contact-container {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-details {
            margin-top: 30px;
        }
        
        .contact-details div {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .contact-details div:hover {
            transform: translateX(5px);
        }
        
        .contact-details i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 15px;
            transition: var(--transition);
        }
        
        .contact-details div:hover i {
            color: var(--accent);
        }
        
        .contact-form {
            flex: 1;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(42, 93, 42, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
        }
        
        /* Map Section */
        .map-section {
            padding: 0;
            height: 400px;
        }
        
        .map-section iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
                /* Stats component */
       /* Utility */
        .sr-only {
            position: absolute !important;
            width: 1px; 
            height: 1px;
            padding: 0; 
            margin: -1px;
            overflow: hidden; 
            clip: rect(0, 0, 0, 0); 
            white-space: nowrap; 
            border: 0;
        }

        /* Component Styles */
        .sawa-stats { 
            /* background: var(--bg);  */
            padding: 3.5rem 1rem; 
            color: var(--text); 
            width: 100%;
            max-width: 1200px;
            border-radius: 16px;
            /* box-shadow: var(--shadow); */
        }
        
        .sawa-stats .container { 
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
        }

        /* Grid */
        .stats-grid {
            display: grid;
            gap: var(--gap);
            list-style: none;
            padding: 0; 
            margin: 0;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }

        /* Card */
        .stat-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: var(--card-bg);
            padding: 1.75rem 1.25rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            will-change: transform;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        /* Icon */
        .stat-icon { 
            width: var(--icon-size); 
            height: var(--icon-size); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: var(--primary); 
            margin-bottom: 1rem;
            background: rgba(42, 93, 42, 0.1);
            border-radius: 50%;
            padding: 10px;
        }
        
        .stat-icon svg { 
            /* width: calc(var(--icon-size) - 16px); 
            height: calc(var(--icon-size) - 16px);  */
            width:40px; height:40px;
        }

        /* Body */
        .stat-body { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 0.25rem; 
            min-width: 0; 
        }
        
        .stat-value { 
            font-family: var(--font-sans); 
            font-weight: 800; 
            font-size: var(--stat-size-lg); 
            line-height: 1; 
            color: var(--primary); 
        }
        
        .stat-label { 
            font-size: var(--label-size); 
            color: var(--muted); 
            margin: 0; 
            font-weight: 500;
        }

        /* Accent alternate cards for visual rhythm */
        .stats-grid .stat-card:nth-child(odd) .stat-value,
        .stats-grid .stat-card:nth-child(odd) .stat-icon {
            color: var(--accent);
        }

        .stats-grid .stat-card:nth-child(odd) .stat-icon {
            background: rgba(255, 196, 12, 0.15);
        }

        /* Responsive tweaks */
        @media (min-width: 768px) {
            .sawa-stats { margin: 0 auto;
            padding: 0 20px; }
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            .sawa-stats .container{
                flex-direction: column;

            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
                max-width: 320px;
                margin: 0 auto;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .stat-card { 
                transition: none; 
                transform: none; 
            }
        }

    /* === Footer Styling === */
footer {
  background: linear-gradient(135deg, #2a5d2a 0%, #3a7c3a 50%, #5a7c5a 100%);
 /* Deep green for brand identity */
  color: #fff;
  padding: 4rem 1.5rem 2rem;
  font-family: var(--font-sans);
}

footer .container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--gap);
  margin-bottom: 2.5rem;
}

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
  position: relative;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--light);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.footer-column ul li i {
  margin-right: 8px;
  color: var(--accent);
}

.footer-column a {
  color: var(--light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--accent);
}

/* Social Links */
.social-links {
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--icon-size);
  height: var(--icon-size);
  margin-right: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: var(--transition);
  font-size: 1rem;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--dark);
}

/* Copyright */
footer .copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--light);
}

footer .copyright a {
  font-weight: 600;
  text-decoration: none;
}

footer .copyright a:hover {
  color: #fff;
}
     


        /* Responsive Styles */
        @media (min-width: 768px) {
            .about-content,
            .contact-container {
                flex-direction: row;
            }
            .logo{
                height: 100px;
                font-size: 20px;
                font-weight: bold;
            }
            .hero h1 {
                font-size: 4rem;
            }
        }
        
        @media (max-width: 767px) {
            .nav-links {
                display: none;
            }
            .contact-info-top{
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }


        /* *******Chat bubble styles******* */
        .chat-bubble {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background:linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .chat-bubble:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        }
        
        .chat-bubble i {
            color: white;
            font-size: 24px;
            transition: transform 0.3s ease;
        }
        
        .chat-bubble.active i {
            transform: rotate(90deg);
        }
        
        /* Contact panel styles */
        .contact-panel {
            position: fixed;
            bottom: 100px;
            right: 25px;
            width: 280px;
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.3s ease;
        }
        
        .contact-panel.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        
        .contact-panel h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
            font-size: 18px;
        }
        
        .contact-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .contact-btn {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            border-radius: 12px;
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: all 0.2s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .contact-btn i {
            font-size: 20px;
            margin-right: 12px;
        }
        
        .contact-btn span {
            flex: 1;
            text-align: left;
        }
        
        .whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }
        
        .call {
            background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
        }
        
        .messenger {
            background: linear-gradient(135deg, #006AFF 0%, #0084FF 100%);
        }
        
        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Responsive adjustments */
        @media (max-width: 480px) {
            .chat-bubble {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
            }
            
            .contact-panel {
                bottom: 90px;
                right: 20px;
                width: calc(100% - 40px);
                max-width: 300px;
            }
        }

        .chat-bubble::after {
    content: "Looking to partner? Contact us";
    position: absolute;
    right: 70px; /* space away from bubble */
    bottom: 50%;
    transform: translateY(50%);
    background: #2c3e50;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.chat-bubble:hover::after {
    opacity: 1;
    visibility: visible;
}
