:root {
            --primary: #4361ee;
            --secondary: #3f37c9;
            --accent: #4895ef;
            --light: #f8f9fa;
            --dark: #212529;
            --gradient: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes expandSearch {
            from {
                width: 40px;
                opacity: 0;
            }
            to {
                width: 200px;
                opacity: 1;
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .animate-scale-in {
            animation: scaleIn 0.6s ease-out forwards;
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(90deg, #3b82f6, #22d3ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Header Styles */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 80px;
            background: linear-gradient(90deg, #1e3a8a, #0369a1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            margin-bottom: 40px; /* Added white space below header */
        }

        .logo {
            font-size: 38px;
            font-weight: 900;
            letter-spacing: 1.2px;
        }

        .logo span {
            color: #fef08a;
        }

        .logo small {
            font-size: 14px;
            letter-spacing: 2px;
            display: block;
            margin-top: 8px;
            color: #e5e7eb;
        }

        .nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav a {
            text-decoration: none;
            color: #e5e7eb;
            font-weight: 600;
            font-size: 18px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #fef08a;
            transition: width 0.3s ease;
        }

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

        .nav a:hover,
        .nav a.active {
            color: #fef08a;
        }

        /* Search Bar Styles */
        .search-container {
            position: relative;
            display: flex;
            align-items: center;
            margin-right: 25px;
        }

        .search-container input {
            width: 40px;
            height: 40px;
            padding: 0 40px 0 15px;
            border: 2px solid #4b5563;
            border-radius: 20px;
            background: #374151;
            color: #e5e7eb;
            font-size: 16px;
            transition: width 0.4s ease, background 0.3s ease, border-color 0.3s ease;
            outline: none;
        }

        .search-container input:focus,
        .search-container input.active {
            width: 200px;
            background: #1e293b;
            border-color: #60a5fa;
            animation: expandSearch 0.4s ease-out;
        }

        .search-container button {
            position: absolute;
            right: 10px;
            background: transparent;
            border: none;
            color: #60a5fa;
            font-size: 18px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .search-container button:hover {
            color: #fef08a;
        }

        .search-call {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .search-call .call-btn {
            background: linear-gradient(90deg, #fef08a, #facc15);
            color: #1e3a8a;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .search-call .call-btn:hover {
            background: linear-gradient(90deg, #facc15, #eab308);
            transform: scale(1.05);
        }

               /* Features Section */
                .features-section {
                    padding: 6rem 2rem;
                    background: var(--light);
                }

                .section-header {
                    text-align: center;
                    max-width: 800px;
                    margin: 0 auto 4rem;
                }

                .section-subtitle {
                    color: var(--accent);
                    font-weight: 600;
                    letter-spacing: 2px;
                    margin-bottom: 1rem;
                    text-transform: uppercase;
                }

                .section-title {
                    font-size: clamp(1.8rem, 3vw, 3rem);
                    color: var(--dark);
                    margin-bottom: 1.5rem;
                    line-height: 1.3;
                }

                .section-description {
                    color: #666;
                    line-height: 1.7;
                    font-size: 1.1rem;
                }

                .features-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 2rem;
                    max-width: 1200px;
                    margin: 0 auto;
                }

                .feature-card {
                    background: white;
                    border-radius: 16px;
                    padding: 2.5rem 2rem;
                    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
                    transition: all 0.3s ease;
                    position: relative;
                    overflow: hidden;
                    z-index: 1;
                }

                .feature-card::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 4px;
                    height: 0;
                    background: var(--gradient);
                    transition: height 0.3s ease;
                    z-index: -1;
                }

                .feature-card:hover {
                    transform: translateY(-10px);
                    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
                }

                .feature-card:hover::before {
                    height: 100%;
                }

                .feature-icon {
                    width: 70px;
                    height: 70px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: rgba(67, 97, 238, 0.1);
                    border-radius: 50%;
                    margin-bottom: 1.5rem;
                }

                .feature-icon svg {
                    width: 32px;
                    height: 32px;
                    color: var(--primary);
                }

                .feature-title {
                    font-size: 1.5rem;
                    margin-bottom: 1rem;
                    color: var(--dark);
                }

                .feature-description {
                    color: #666;
                    line-height: 1.7;
                    margin-bottom: 1.5rem;
                }

                .feature-link {
                    display: inline-flex;
                    align-items: center;
                    gap: 0.5rem;
                    color: var(--primary);
                    font-weight: 600;
                    text-decoration: none;
                    transition: all 0.3s ease;
                }

                .feature-link:hover {
                    gap: 1rem;
                }

                /* About Section */
                .about-section {
                    padding: 6rem 2rem;
                    background: white;
                }

                .about-container {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 4rem;
                    align-items: center;
                    max-width: 1200px;
                    margin: 0 auto;
                }

                .about-image {
                    flex: 1;
                    min-width: 300px;
                    position: relative;
                    border-radius: 16px;
                    overflow: hidden;
                    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
                }

                .about-image img {
                    width: 100%;
                    height: auto;
                    display: block;
                }

                .experience-badge {
                    position: absolute;
                    bottom: -20px;
                    left: -20px;
                    background: var(--gradient);
                    color: white;
                    padding: 1.5rem;
                    border-radius: 16px;
                    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
                }

                .experience-years {
                    font-size: 3rem;
                    font-weight: 800;
                    line-height: 1;
                }

                .experience-text {
                    font-size: 1rem;
                    font-weight: 600;
                }

                .about-content {
                    flex: 1;
                    min-width: 300px;
                }

                .about-points {
                    margin: 2rem 0;
                    list-style: none;
                }

                .about-points li {
                    margin-bottom: 1rem;
                    display: flex;
                    align-items: flex-start;
                    gap: 0.75rem;
                    color: #555;
                    line-height: 1.6;
                }

                .about-points li::before {
                    content: '✓';
                    color: var(--accent);
                    font-weight: bold;
                }

                /* Stats Section */
                .stats-section {
                    padding: 4rem 2rem;
                    background: var(--gradient);
                    color: white;
                }

                .stats-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                    gap: 2rem;
                    max-width: 1200px;
                    margin: 0 auto;
                }

                .stat-item {
                    text-align: center;
                    padding: 2rem;
                }

                .stat-number {
                    font-size: 3rem;
                    font-weight: 800;
                    margin-bottom: 0.5rem;
                }

                .stat-label {
                    font-size: 1.1rem;
                    opacity: 0.9;
                }

                /* Animations */
                @keyframes kenburns {
                    0% {
                        transform: scale(1) translate(0, 0);
                    }
                    100% {
                        transform: scale(1.1) translate(20px, 20px);
                    }
                }

                @keyframes fadeInUp {
                    from {
                        opacity: 0;
                        transform: translateY(40px);
                    }
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                /* Responsive Adjustments */
                @media (max-width: 768px) {
                    .hero-title {
                        font-size: 2.5rem;
                    }

                    .about-container {
                        flex-direction: column;
                    }

                    .experience-badge {
                        bottom: -10px;
                        left: -10px;
                    }
                }



        /* fourth page which having what we offer section */


        .homefour-premium-services-section {
            background: linear-gradient(135deg, #0b1a60 0%, #0d3c91 100%);
            color: #ffffff;
            padding: 70px 30px;
            font-family: 'Poppins', sans-serif;
            overflow-x: auto;
        }

        .homefour-section-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 50px;
            gap: 40px;
        }

        .homefour-left-text {
            flex: 1;
            min-width: 260px;
        }

        .homefour-small-title {
            color: #4faaff;
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 15px;
            margin-bottom: 10px;
        }

        .homefour-main-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.4;
            max-width: 500px;
        }

        .homefour-right-description {
            flex: 1;
            min-width: 280px;
            color: #e2e2e2;
            line-height: 1.7;
            font-size: 15px;
        }

        .homefour-cards-container {
            display: flex;
                justify-content: center;   /* ✅ centers cards horizontally */
                flex-wrap: wrap;           /* ✅ allows wrapping if needed */
                gap: 45px;
                padding-bottom: 15px;
        }

        .homefour-cards-container::-webkit-scrollbar {
            height: 8px;
        }
        .homefour-cards-container::-webkit-scrollbar-thumb {
            background: #4faaff;
            border-radius: 4px;
        }

        .homefour-card {
            background: #ffffff;
            color: #000000;
            width: 220px;
            min-width: 220px;
            height: 270px;
            border-radius: 16px;
            padding: 22px 18px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            flex-shrink: 0;
        }

        .homefour-card img {
            width: 44px;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .homefour-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #0b1a60;
        }

        .homefour-card p {
            font-size: 13.5px;
            line-height: 1.5;
            color: #333;
        }

        .homefour-card:hover {
            background: linear-gradient(180deg, #007bff 0%, #00c6ff 100%);
            transform: translateY(-10px);
            color: #ffffff;
        }

        .homefour-card:hover img {
            transform: scale(1.2);
            filter: brightness(0) invert(1);
        }

        .homefour-card:hover h3,
        .homefour-card:hover p {
            color: #ffffff;
        }

        .homefour-highlight-card {
            background: #007bff;
            color: #ffffff;
        }

        .homefour-highlight-card h3,
        .homefour-highlight-card p {
            color: #ffffff;
        }

        .homefour-highlight-card img {
            filter: brightness(0) invert(1);
        }


        /* home five section */

        #homefive-body {
            padding: 3rem 1rem;
            background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        /* Headings */
        #homefive-services {
            text-align: center;
            margin: 0 auto;
            max-width: 1200px;
        }

        .homefive-subtitle {
            color: #4a6cf7;
            font-weight: 600;
            margin-bottom: 0.75rem;
            letter-spacing: 1px;
            font-size: 0.875rem;
            text-transform: uppercase;
        }

        .homefive-title {
            font-size: clamp(1.75rem, 5vw, 2.8rem);
            font-weight: 700;
            color: #1a237e;
            margin-bottom: 1.25rem;
            line-height: 1.2;
            padding: 0 1rem;
        }

        .title-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .divider-line {
            width: 3rem;
            height: 2px;
            background: #4a6cf7;
            display: inline-block;
        }

        .divider-dot {
            width: 6px;
            height: 6px;
            background: #4a6cf7;
            border-radius: 50%;
            margin: 0 0.75rem;
            display: inline-block;
        }

        .homefive-description {
            max-width: 700px;
            margin: 0 auto 3rem;
            color: #555;
            font-size: clamp(1rem, 3vw, 1.1rem);
            line-height: 1.6;
            padding: 0 1rem;
        }

        /* Card Layout */
        .homefive-card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
            padding: 0 1rem;
        }

        .homefive-card {
            background: white;
            border-radius: 12px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(74, 108, 247, 0.08);
            border: 1px solid rgba(74, 108, 247, 0.1);
            z-index: 1;
        }

        .homefive-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4a6cf7 0%, #2541b2 100%);
            transition: height 0.3s ease;
            z-index: -1;
        }

        .homefive-card:hover::before {
            height: 100%;
        }

        .card-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(74, 108, 247, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .homefive-card:hover .card-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .card-icon svg {
            width: 30px;
            height: 30px;
            color: #4a6cf7;
            transition: all 0.3s ease;
        }

        .homefive-card:hover .card-icon svg {
            color: white;
            transform: scale(1.1);
        }

        .homefive-card h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: #1a237e;
            transition: all 0.3s ease;
        }

        .homefive-card:hover h3 {
            color: white;
        }

        .homefive-card p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: #666;
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        .homefive-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        .homefive-card a {
            display: inline-flex;
            align-items: center;
            font-size: 0.95rem;
            color: #4a6cf7;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .homefive-card:hover a {
            color: white;
        }

        .homefive-card a svg {
            width: 18px;
            height: 18px;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .homefive-card a:hover svg {
            transform: translateX(5px);
        }

        /* CTA Button */
        .cta-container {
            text-align: center;
            margin-top: 2rem;
            padding: 0 1rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            padding: 0.875rem 1.75rem;
            background: linear-gradient(90deg, #4a6cf7 0%, #2541b2 100%);
            color: white;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
            font-size: 1rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(74, 108, 247, 0.4);
        }

        .cta-button svg {
            width: 20px;
            height: 20px;
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(5px);
        }

        /* Mobile-Specific Adjustments */
        @media (max-width: 480px) {
            #homefive-body {
                padding: 2rem 0.5rem;
            }

            .homefive-title {
                font-size: 1.5rem;
                padding: 0 0.5rem;
            }

            .homefive-description {
                margin-bottom: 2rem;
                padding: 0 0.5rem;
            }

            .homefive-card-container {
                gap: 1rem;
                padding: 0 0.5rem;
            }

            .homefive-card {
                padding: 1.5rem 1rem;
            }

            .card-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 1rem;
            }

            .card-icon svg {
                width: 25px;
                height: 25px;
            }

            .homefive-card h3 {
                font-size: 1.1rem;
            }

            .homefive-card p {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }

            .cta-button {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Tablet Adjustments */
        @media (min-width: 481px) and (max-width: 768px) {
            .homefive-card-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .homefive-card {
                padding: 1.75rem 1.25rem;
            }
        }

        /* home testimonial section */
         .test-body {
              background: linear-gradient(135deg, #101820, #1f2e38);
              padding: 2rem;
              overflow: hidden;
              height: 100vh;
            }

            .testimonial-section {
              text-align: center;
              max-width: 1000px;
              margin: auto;
              position: relative;
            }

            .testimonial-section h2 {
              font-size: 2.5rem;
              color: #FFFFFF;
              font-weight: 700;
              margin-bottom: 0.5rem;

            }

            .testimonial-section p.subtitle {
              font-size: 1.1rem;
              color: #FFFFFF;
              margin-bottom: 40px;
            }

            #homefive-testimonials-container {
              width: 100%;
              height: 100%;
              position: relative;
              overflow: hidden;
            }

            .homefive-testimonial {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              width: 400px;
              height: 200px;
              background: linear-gradient(135deg, #ffffff22, #ffffff11);
              border-radius: 16px;
              border: 1px solid #ffffff33;
              box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
              padding: 1rem;
              color: white;
              backdrop-filter: blur(6px);
              opacity: 0;
              animation: slideInOut 150s linear infinite;
            }

            .homefive-testimonial:hover {
              background: linear-gradient(to bottom, #00c6ff, #0072ff);
              color: #fff;
            }

            @keyframes slideInOut {
              0% { transform: translate(100%, -50%); opacity: 0; }
              3% { transform: translate(-50%, -50%); opacity: 1; }
              30% { transform: translate(-50%, -50%); opacity: 1; }
              33% { transform: translate(-150%, -50%); opacity: 0; }
              100% { transform: translate(-150%, -50%); opacity: 0; }
            }

            /* Stagger delays for 30 testimonials */
            /* Delay increases by 5s for each testimonial */
            .homefive-testimonial:nth-child(1)  { animation-delay: 0s; }
            .homefive-testimonial:nth-child(2)  { animation-delay: 5s; }
            .homefive-testimonial:nth-child(3)  { animation-delay: 10s; }
            .homefive-testimonial:nth-child(4)  { animation-delay: 15s; }
            .homefive-testimonial:nth-child(5)  { animation-delay: 20s; }
            .homefive-testimonial:nth-child(6)  { animation-delay: 25s; }
            .homefive-testimonial:nth-child(7)  { animation-delay: 30s; }
            .homefive-testimonial:nth-child(8)  { animation-delay: 35s; }
            .homefive-testimonial:nth-child(9)  { animation-delay: 40s; }
            .homefive-testimonial:nth-child(10) { animation-delay: 45s; }
            .homefive-testimonial:nth-child(11) { animation-delay: 50s; }
            .homefive-testimonial:nth-child(12) { animation-delay: 55s; }
            .homefive-testimonial:nth-child(13) { animation-delay: 60s; }
            .homefive-testimonial:nth-child(14) { animation-delay: 65s; }
            .homefive-testimonial:nth-child(15) { animation-delay: 70s; }
            .homefive-testimonial:nth-child(16) { animation-delay: 75s; }
            .homefive-testimonial:nth-child(17) { animation-delay: 80s; }
            .homefive-testimonial:nth-child(18) { animation-delay: 85s; }
            .homefive-testimonial:nth-child(19) { animation-delay: 90s; }
            .homefive-testimonial:nth-child(20) { animation-delay: 95s; }
            .homefive-testimonial:nth-child(21) { animation-delay: 100s; }
            .homefive-testimonial:nth-child(22) { animation-delay: 105s; }
            .homefive-testimonial:nth-child(23) { animation-delay: 110s; }
            .homefive-testimonial:nth-child(24) { animation-delay: 115s; }
            .homefive-testimonial:nth-child(25) { animation-delay: 120s; }
            .homefive-testimonial:nth-child(26) { animation-delay: 125s; }
            .homefive-testimonial:nth-child(27) { animation-delay: 130s; }
            .homefive-testimonial:nth-child(28) { animation-delay: 135s; }
            .homefive-testimonial:nth-child(29) { animation-delay: 140s; }
            .homefive-testimonial:nth-child(30) { animation-delay: 145s; }




        /* Testimonial Section Styling */
        .testimonial-area {
          padding: 4rem 1rem;
          background-color: #f7f9fc;
          font-family: 'Poppins', sans-serif;
          text-align: center;
        }

        .testimonial-title h2 {
          font-size: 2.5rem;
          color: #222;
          margin-bottom: 0.5rem;
        }
        .testimonial-title p {
          font-size: 1.1rem;
          color: #555;
          margin-bottom: 2.5rem;
        }

        /* Grid */
        .testimonial-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 2rem;
          max-width: 1200px;
          margin: 0 auto;
        }

        /* Card */
        .testimonial-card {
          background: #fff;
          border-radius: 16px;
          padding: 2rem 1.5rem;
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease;
        }
        .testimonial-card:hover {
          transform: translateY(-5px);
        }

        /* Avatar */
        .avatar {
          width: 70px;
          height: 70px;
          border-radius: 50%;
          margin-bottom: 1rem;
          object-fit: cover;
        }

        /* Client Name */
        .testimonial-card h4 {
          font-size: 1.2rem;
          color: #222;
          margin: 0.5rem 0;
        }

        /* Stars */
        .stars {
          color: #f5b301;
          font-size: 1.1rem;
          margin-bottom: 1rem;
        }

        /* Message */
        .message {
          font-size: 1rem;
          color: #444;
          line-height: 1.5;
        }

        /* Testmonial Responsive Adjustments */
        @media (max-width: 768px) {
          .testimonial-title h2 {
            font-size: 2rem;
          }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .header {
                padding: 20px 40px;
                margin-bottom: 30px;
            }

            .nav {
                gap: 30px;
            }

            .search-container input:focus,
            .search-container input.active {
                width: 180px;
            }

            .service-header {
                height: 450px;
                margin-bottom: 40px;
            }

            .service-content {
                padding: 60px;
                margin-bottom: 40px;
            }

            .content {
                gap: 30px;
                padding: 60px 20px;
                margin-bottom: 60px;
            }

            .flecontainer {
                padding: 100px 20px;
                margin-bottom: 60px;
            }

            .fleservice-card {
                width: 220px;
            }

            .novarsis-container {
                padding: 60px 20px;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                gap: 25px;
                padding: 15px 20px;
                margin-bottom: 25px;
            }

            .nav {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .search-container {
                margin-right: 0;
                width: 100%;
            }

            .search-container input {
                width: 100%;
                max-width: 300px;
            }

            .search-container input:focus,
            .search-container input.active {
                width: 100%;
            }

            .search-call {
                flex-direction: column;
                gap: 20px;
            }

            .service-header {
                height: 350px;
                margin-bottom: 30px;
            }

            .service-header h1 {
                font-size: 36px;
            }

            .service-header p {
                font-size: 18px;
            }

            .service-content {
                padding: 40px;
                margin-bottom: 30px;
            }

            .service-content h3 {
                font-size: 32px;
            }

            .content {
                gap: 25px;
                padding: 40px 20px;
                margin-bottom: 40px;
            }

            .fleservice-card {
                width: 100%;
                max-width: 320px;
            }

            .flecontainer {
                padding: 80px 20px;
                margin-bottom: 40px;
            }

            .novarsis-container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 40px 20px;
            }

            .novarsis-container .quick-links-grid {
                grid-template-columns: 1fr;
            }

            .novarsis-container .newsletter-form {
                flex-direction: column;
            }

            .novarsis-container .newsletter-form input {
                border-radius: 8px;
                margin-bottom: 12px;
            }

            .novarsis-container .newsletter-form button {
                border-radius: 8px;
            }
        }


