 :root {
            --primary: #0f172a;
            --secondary: #0ea5e9;
            --accent: #8b5cf6;
            --success: #10b981;
            --light: #fffdf0;
            --dark: #0f172a;
            --gradient-1: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
            --gradient-2: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 100%);
            --gradient-3: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background: #ffffff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 26px 24px;
        }

        /* Modern Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

     header.scrolled {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: padding 0.3s ease;
        }

        header.scrolled nav {
            padding: 12px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            text-decoration: none;
            color: inherit;
            z-index: 1001;
        }

        .logo-img {
            height: 60px;
            width: auto;
            object-fit: contain;
        }
header .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 24px;
}


        .logo-text {
            font-size: 20px;
            font-weight: 800;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
        }

        .nav-links li {
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            font-size: 15px;
        }

        .nav-links a:not(.cta-btn):hover {
            color: var(--secondary);
        }

        .nav-links a:not(.cta-btn)::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-2);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-links a:not(.cta-btn):hover::after {
            width: 100%;
        }

        .cta-btn {
            background: var(--gradient-2);
            color: white !important;
            padding: 14px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            font-size: 15px;
            box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary);
            z-index: 1001;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background: var(--light);
        }

        /* Hero Section */
        .hero {
            background: var(--gradient-1);
            color: white;
            padding: 80px 0 120px;
            margin-top: 82px;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
            opacity: 0.8;
        }

        .hero-dots {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.5;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, transparent, #ffffff);
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            max-width: 650px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 0.6s ease forwards;
        }

        .hero-badge i {
            color: var(--success);
        }

        .hero h1 {
            font-size: clamp(36px, 5vw, 65px);
            margin-bottom: 24px;
            line-height: 1.15;
            letter-spacing: -0.5px;
            font-weight: 800;
            animation: fadeInUp 0.6s ease 0.1s forwards;
            opacity: 0;
        }

        .hero h1 span {
            background: linear-gradient(135deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: clamp(16px, 2vw, 20px);
            margin-bottom: 36px;
            opacity: 0;
            font-weight: 300;
            line-height: 1.8;
            max-width: 600px;
            animation: fadeInUp 0.6s ease 0.2s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease 0.3s forwards;
            opacity: 0;
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            padding: 14px 28px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border: 2px solid transparent;
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-color: var(--secondary);
            background: var(--light);
        }

        .btn-secondary i {
            font-size: 18px;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: fadeInRight 0.8s ease 0.4s forwards;
            opacity: 0;
        }

        .hero-graphic {
            width: 100%;
            max-width: 450px;
            aspect-ratio: 1;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 4s ease-in-out infinite;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .hero-graphic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            padding: 30px;
            border-radius: 24px;
        }

        .hero-graphic::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shimmer 3s linear infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Trust Bar */
        .trust-bar {
            background: var(--light);
            padding: 60px 0;
            position: relative;
            z-index: 2;
            margin-top: -60px;
            border-radius: 24px 24px 0 0;
        }

        .trust-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .trust-item {
            background: white;
            padding: 32px 24px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }

        .trust-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-2);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .trust-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }

        .trust-item:hover::before {
            transform: scaleX(1);
        }

        .trust-number {
            font-size: clamp(32px, 4vw, 42px);
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
            font-family: 'Inter', sans-serif;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .trust-label {
            color: #64748b;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Services Overview */
        .services-overview {
            padding: 50px 0;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header .badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.1));
            color: var(--secondary);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            color: var(--primary);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 18px;
            color: #64748b;
            line-height: 1.7;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .service-card {
            background: #fffdf0;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.03), rgba(139, 92, 246, 0.03));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-left: 4px solid var(--secondary);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 72px;
            height: 72px;
            background: var(--gradient-2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
        }

        .service-icon i {
            font-size: 32px;
            color: white;
        }

        .service-card h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--primary);
            position: relative;
            z-index: 1;
            font-weight: 700;
        }

        .service-card p {
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            font-weight: 400;
        }

        .learn-more {
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
            position: relative;
            z-index: 1;
            font-size: 15px;
        }

        .learn-more:hover {
            gap: 12px;
        }

        .learn-more i {
            transition: transform 0.3s ease;
        }

        .learn-more:hover i {
            transform: translateX(4px);
        }

        /* Why Choose Us */
        .why-choose {
            padding: 50px 0;
            background: var(--light);
            position: relative;
            overflow: hidden;
        }

        .why-choose::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to bottom, white, transparent);
            z-index: 0;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }

        .why-item {
            text-align: center;
            background: white;
            padding: 40px 24px;
            border-radius: 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .why-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
        }

        .why-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-2);
            color: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
            position: relative;
            overflow: hidden;
        }

        .why-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
        }

        .why-icon i {
            font-size: 36px;
            color: white;
            position: relative;
            z-index: 1;
        }

        .why-item h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--primary);
            font-weight: 700;
        }

        .why-item p {
            color: #64748b;
            line-height: 1.7;
            font-size: 15px;
            font-weight: 400;
        }

        /* Testimonials */
        .testimonials {
            padding: 50px 0;
            background: white;
        }

        .testimonial-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: var(--light);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.03);
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-3);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }

        .testimonial-card:hover::before {
            transform: scaleX(1);
        }

        .quote-icon {
            font-size: 80px;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.2;
            position: absolute;
            top: 10px;
            right: 20px;
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }

        .testimonial-text {
            font-style: italic;
            color: #475569;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
            line-height: 1.8;
            font-size: 15px;
            font-weight: 400;
            border-left: 3px solid var(--secondary);
            padding-left: 16px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            z-index: 1;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            background: var(--gradient-2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
        }

        .author-info h4 {
            color: var(--primary);
            font-size: 16px;
            margin-bottom: 4px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
        }

        .author-info p {
            color: #64748b;
            font-size: 13px;
            line-height: 1.4;
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: var(--gradient-2);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .served-industries  .why-choose {
        padding: 50px 0;
        background: var(--light);
        position: relative;
        overflow: hidden;
        }
        .served-industries  .why-choose img{
        border-radius:10px;
        }
        .served-industries  .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 32px;
        margin-top: 60px;
        position: relative;
        z-index: 1;
        }
        .served-industries  .why-item img{    border-radius: 10px;
        height: 240px;
        object-fit: cover;width:100%;}

        .served-industries  .why-item h3 {
        font-size: 22px;
        margin-bottom: 12px;
        color: var(--primary);
        font-weight: 700;
        padding-top: 10px;
        }

        .served-industries  .why-item {
        text-align: center;
        background: white;
        padding:0;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.03);
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(255,255,255,0.15) 0%, transparent 30%),
                radial-gradient(circle at 90% 80%, rgba(255,255,255,0.15) 0%, transparent 30%);
        }

.served-industries{padding:50px 0;}
        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .cta-section p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cta-section .btn-secondary {
            background: white;
            color: var(--primary);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        .cta-section .btn-secondary:hover {
            background: var(--light);
            border-color: white;
        }

        /* Associations */
        .associations-section {
            padding: 80px 0;
            background: white;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .associations-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px 0;
        }

        .associations-logos img {
            max-width: 100%;
            object-fit: contain;
            opacity: 0.8;
         /*   filter: grayscale(100%);
            transition: all 0.4s ease;*/
        }
/*
        .associations-logos img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }*/

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 80px 0 0px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
        }

        .footer-section h3 {
            margin-bottom: 24px;
            font-size: 20px;
            font-weight: 700;
            color: white;
            font-family: 'Playfair Display', serif;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            font-weight: 400;
            line-height: 1.7;
            font-size: 15px;
        }

        .footer-section a:hover {
            color: var(--secondary);
            transform: translateX(4px);
        }
  /* FAQs Section */
        .faqs-section {
            padding: 100px 0;
            background: var(--light);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            padding: 28px 32px;
            border-radius: 16px;
            margin-bottom: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            cursor: pointer;
        }

        .faq-item:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .faq-item.active {
            border-color: var(--secondary);
            box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .faq-question h4 {
            font-size: 18px;
            color: var(--primary);
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            line-height: 1.4;
        }

        .faq-toggle {
            width: 36px;
            height: 36px;
            background: var(--gradient-2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-toggle i {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle i {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-top: 20px;
        }

        .faq-answer p {
            color: #475569;
            line-height: 1.9;
            font-size: 16px;
            font-weight: 400;
            padding-left: 0;
            border-left: 3px solid var(--secondary);
            padding-left: 16px;
        }


        .footer-section p strong {
            color: white;
            font-weight: 600;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
            margin: 0 8px;
        }

        .footer-bottom a:hover {
            color: var(--secondary);
        }

        /* Animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loading-overlay.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid var(--light);
            border-top-color: var(--secondary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }

        /* Focus Styles */
        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }

        /* Ripple Animation */
        @keyframes ripple {
            to {
                transform: scale(2);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonial-slider {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }
            
            .hero-text {
                max-width: 100%;
            }
            
            .hero p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }

            .hero-graphic {
                max-width: 380px;
                margin: 0 auto;
            }

            .trust-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                left: -100%;
                top: 0;
                height: 100vh;
                width: 100%;
                background: white;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                padding: 0;
                gap: 32px;
                z-index: 1000;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                font-size: 22px;
                font-weight: 600;
            }
            
            .nav-links a:not(.cta-btn)::after {
                display: none;
            }

            .hero {
                padding: 120px 0 80px;
                margin-top: 70px;
                min-height: auto;
            }

            .hero-graphic {
                max-width: 300px;
            }

            .services-grid,
            .testimonial-slider,
            .why-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .footer-section a:hover {
                transform: none;
            }

            .logo-img {
                height: 36px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            
            .trust-content {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons a {
                width: 100%;
                justify-content: center;
            }

            .hero-graphic {
                max-width: 260px;
            }

            .service-card,
            .testimonial-card,
            .why-item {
                padding: 30px 20px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons a {
                width: 100%;
                justify-content: center;
            }
        }