:root {
            --avinya-blue: #0052A3;
            --avinya-blue-light: #2196F3;
            --avinya-blue-dark: #002B5C;
            --avinya-orange: #FF6B00;
            --avinya-orange-light: #FF8533;
            --text-dark: #002B5C;
            --text-light: #4A6FA5;
            --bg-light: #F7FAFF;
            --bg-off-white: #EAF2FB;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--bg-light);
            font-weight: 400;
        }
        
        .hero {
            background: var(--avinya-blue-dark);
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            padding: 8rem 5% 6rem 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-image-container {
            position: relative;
            overflow: hidden;
        }

        .hero-image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--avinya-blue-dark) 0%, transparent 60%);
            z-index: 1;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .features {
            padding: 8rem 10%;
            background: white;
        }

        .features-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 43, 92, 0.1);
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover{
            border: #FF8533 2px solid;
        }

        .why-choose {
            background: var(--bg-light);
            padding: 8rem 10%;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .why-item {
            background: white;
            padding: 3rem;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 43, 92, 0.08);
            transition: transform 0.3s ease;
        }

        .why-item:hover {
            transform: translateY(-10px);
        }

        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            background: var(--avinya-blue-dark);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--bg-off-white);
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .hero-tagline {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .hero-title {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .features-title {
            color: var(--avinya-blue-dark);
            font-size: 2.8rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .features-subtitle {
            color: var(--text-light);
            font-size: 1.2rem;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .hero-image-container {
                display: none;
            }

            .features-container {
                grid-template-columns: 1fr;
            }
        }

        .cta-button {
            background: var(--avinya-blue);
            color: white;
            padding: 16px 36px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
            margin-top: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 82,163, 0.12);
        }

        .cta-button:hover {
            background: var(--avinya-orange);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.15);
        }

        .cta-button:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(0, 82,163, 0.10);
        }

        .cta-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
            transform: translateX(-100%);
        }

        .cta-button:hover::after {
            transform: translateX(100%);
            transition: transform 0.6s ease;
        }
        
        .section-title {
            color: var(--avinya-blue-dark);
        }

        .scroll-top {
            background: var(--avinya-orange);
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #017e84;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            transform: translateY(100px);
        }

        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero h1 {
            animation: slideDown 1s ease-out;
        }

        .hero p {
            animation: slideDown 1s ease-out 0.2s backwards;
        }

        .hero .cta-button {
            animation: slideDown 1s ease-out 0.4s backwards;
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            animation: fadeInLeft 0.8s ease forwards;
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            animation: fadeInRight 0.8s ease forwards;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-element {
            opacity: 0;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .delay-1 { animation-delay: 0.3s; }
        .delay-2 { animation-delay: 0.6s; }
        .delay-3 { animation-delay: 0.9s; }
        .delay-4 { animation-delay: 1.2s; }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                align-items: flex-start;
            }

            .navbar h1 {
                margin-bottom: 1rem;
            }

            .features {
                padding: 3rem 5%;
            }

            .cta-button {
                padding: 12px 24px;
                font-size: 1rem;
            }

            .navbar-menu {
                display: none;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background: var(--bg-light);
                padding: 1rem;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }

            .navbar-menu.active {
                display: block;
            }

            .nav-item {
                width: 100%;
                margin: 0.5rem 0;
            }

            .dropdown {
                position: static;
                box-shadow: none;
                background: var(--bg-off-white);
                margin: 0.5rem 0;
            }

            .hero {
                padding: 8rem 1rem 4rem;
            }

            .hero .section-title {
                font-size: 2rem;
            }

            .hero .tagline {
                font-size: 1.2rem;
            }

            .features, .why-choose {
                padding: 3rem 1rem;
            }

            .feature-card {
                margin: 1rem 0;
            }

            .contact-section {
                padding: 3rem 1rem;
            }

            .social-links {
                justify-content: center;
            }

            .map-container {
                height: 300px;
            }

            .contact-form input,
            .contact-form textarea {
                font-size: 16px; /* Stops Zoom on Mobile */
            }
        }

        .why-choose {
            padding: 5rem 10%;
            background: var(--bg-light);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .why-item {
            text-align: center;
            padding: 2rem;
        }

        .why-item i {
            font-size: 2.5rem;
            color: var(--avinya-blue);
            margin-bottom: 1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: auto auto;
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            padding: 5rem 10%;
            background: var(--bg-light);
        }

        .contact-info {
            padding: 2rem;
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
            max-width: 500px;
            margin: 2rem auto;
            padding: 2.5rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0,82,163,0.12);
            border-top: 4px solid var(--avinya-blue);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .contact-form input,
        .contact-form textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #e1e8f5;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--avinya-blue);
            box-shadow: 0 0 0 3px rgba(0, 82, 163, 0.1);
        }

        .contact-form textarea {
            min-height: 100px;
            resize: vertical;
        }

        .contact-form .cta-button {
            margin-top: 1rem;
            width: 100%;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-links a {
            color: var(--text-dark);
            font-size: 1.5rem;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f8f9fa;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--avinya-blue);
            color: white;
        }

        .map-container {
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
        }
     
        .about-us {
            padding: 5rem 10%;
            background: var(--bg-light);
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 0;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
            text-align: left;
        }

        .about-text p {
            margin-bottom: 2rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 82, 163, 0.08);
        }

        .stat-item h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: var(--avinya-blue);
            margin-bottom: 0.5rem;
            font-size: 2.5rem;
        }

        .stat-item p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .feature-icon img,
        .why-icon img {
            width: 40px;
            height: 40px;
            //*filter: brightness(0) invert(1); /* Makes icons white */
        }
        
        .why-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .why-icon img {
            filter: none; /* Keep original color */
        }

        .discover-link {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-top: 1.5rem;
        }

        .discover-link i {
            transition: transform 0.3s ease;
        }

        .discover-link:hover {
            color: var(--avinya-orange);
        }

        .discover-link:hover i {
            transform: translateX(5px);
        }
