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

        body {
            font-family: 'Poppins', sans-serif;
            color: #fff;
            scroll-behavior: smooth;
        }

        /* ---------- NAVBAR ---------- */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 12px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #000000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: 0.4s;
            z-index: 1000;
        }

        .nav.scrolled {
            background: #000000;
            /* solid black */
            backdrop-filter: blur(15px) saturate(150%);
            -webkit-backdrop-filter: blur(15px) saturate(150%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            /* subtle glass border */
            transition: background 0.3s ease, backdrop-filter 0.3s ease;
        }

        /* ===== LOGO ===== */
        .title {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .title img {
            width: 55px;
            height: 55px;
            border-radius: 60px;
            /* optional, for rounded corners */
        }

        .logo {
            text-align: center;
        }

        .logo .brand-title {
            color: #E63946;
            /* Brand color for VIPRAS PLUS */
            font-size: 1.4rem;
            font-weight: 600;
            margin: 0;
            letter-spacing: 1px;
            border-bottom: 1px solid #D1D5DB;
            /* Thin divider line */
            font-family: 'Times New Roman', Times, serif;
        }

        .logo span {
            color: #ffffff;
            /* Gray color for VIRTUAL HR */
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 2px;
            margin-top: 3px;
            padding-top: 3px;
        }

        /* ===== NAV LINKS ===== */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
            transition: all 0.3s ease;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--color-white);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #E63946;
        }

        .navbar .login-btn {
            background-color: #E63946de;
            /* ✅ Updated background */
            color: #111111;
            font-weight: 600;
            padding: 10px 22px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
        }

        .navbar .login-btn:hover {
            background-color: #E63946de;
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
        }

        /* ===== HAMBURGER ===== */
        .hamburger {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: transparent;
        }

        .hamburger-lines {
            height: 15px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hamburger-lines span {
            width: 20px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active .hamburger-lines span:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }

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

        .hamburger.active .hamburger-lines span:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        /* ===== MOBILE NAV ===== */

        @media (max-width: 900px) {

            /* Navbar spacing adjustments */
            .navbar {
                padding: 10px 6%;
                background: #000000;
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
            }

            /* Logo adjustments */
            .title img {
                width: 45px;
                height: 45px;
            }

            .logo .brand-title {
                font-size: 1.1rem;
            }

            .logo span {
                font-size: 0.75rem;
            }

            /* Hamburger button visible */
            .hamburger {
                display: flex;
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            /* Hide nav links initially */
            .nav-links {
                position: absolute;
                top: 70px;
                right: 6%;
                width: 230px;
                background: #000000;
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-radius: 12px;
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                padding: 20px;
                transform: translateY(-20px);
                opacity: 0;
                pointer-events: none;
                transition: all 0.3s ease;
            }

            /* Show nav when open */
            .nav-links.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }

            .nav-links a {
                display: block;
                width: 100%;
                padding: 10px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                color: #ffffff;
                font-size: 1rem;
                text-align: left;
            }

            .nav-links a:hover {
                color: #FF5252;
            }

            /* Last link (Login button) — full width */
            .nav-links .login-btn {
                width: 100%;
                margin-top: 12px;
                text-align: center;
                padding: 10px 0;
                border-radius: 8px;
                background: linear-gradient(90deg, #E63946, #FF5252);
                color: #111111;
                font-weight: 600;
            }

            /* Close menu when a link is clicked */
            .nav-links.open a {
                animation: slideIn 0.4s ease forwards;
            }

            /* Animation for menu items */
            @keyframes slideIn {
                from {
                    opacity: 0;
                    transform: translateX(20px);
                }

                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }
        }

        /* ===== VERY SMALL DEVICES (≤480px) ===== */
        @media (max-width: 480px) {
            .navbar {
                padding: 8px 5%;
            }

            .title img {
                width: 40px;
                height: 40px;
            }

            .logo .brand-title {
                font-size: 1rem;
            }

            .logo span {
                font-size: 0.7rem;
            }

            .nav-links {
                right: 5%;
                width: 200px;
            }

            .nav-links a {
                font-size: 0.95rem;
            }
        }


        /* ---------- HERO SECTION ---------- */
        .hero {
            min-height: 100vh;
            background: linear-gradient(to right, rgba(17, 17, 17, 0.8), rgba(0, 0, 0, 0.6)),
                url('Images/hero-background.avif') no-repeat center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            padding: 80px 10%;
        }

        .hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 20px;
            animation: fadeInUp 1.2s ease forwards;
        }

        .hero h1 span {
            color: #E63946;
        }

        .hero p {
            max-width: 650px;
            font-size: clamp(0.95rem, 1.5vw, 1.1rem);
            color: #d1d5db;
            margin-bottom: 30px;
            animation: fadeInUp 1.6s ease forwards;
            line-height: 1.6;
        }

        .hero .brand-link {
            font-size: 1rem;
            color: #d0d0d0;
            margin-bottom: 5px;
            animation: fadeInUp 1.4s ease forwards;
        }

        .hero .btn {
            background: #E63946de;
            color: #fff;
            padding: clamp(12px, 1.5vw, 14px) clamp(28px, 3vw, 34px);
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
            animation: fadeInUp 2s ease forwards;
            font-size: 1rem;
        }

        .hero .btn:hover {
            background: #1A1A1A;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
            animation: fadeInUp 2s ease forwards;
        }

        .hero .btn-outline {
            background: transparent;
            border: 2px solid #E63946;
        }

        .hero .btn-outline:hover {
            background: #E63946;
        }

        /* Adjustments for smaller vertical heights (common on 13" laptops) */
        @media (max-height: 800px) and (min-width: 992px) {
            .hero {
                padding: 100px 10% 50px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                margin-bottom: 20px;
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1rem;
            color: #E63946;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translate(-50%, 0);
            }

            50% {
                transform: translate(-50%, -10px);
            }
        }


        /* ---------- FEATURES HERO ---------- */
        .features-hero {
            padding: 140px 10% 80px;
            background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        .features-hero .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .hero-content {
            flex: 1;
        }

        .hero-content h1 {
            font-size: clamp(2.2rem, 4vw, 3rem);
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-content h1 span {
            color: #E63946;
        }

        .hero-content h2 {
            font-size: clamp(1.1rem, 1.5vw, 1.25rem);
            color: #e5e7eb;
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .seo-text {
            font-size: clamp(0.95rem, 1.2vw, 1rem);
            color: #9ca3af;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 90%;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
        }

        .features-hero .btn {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 0.95rem;
        }

        .features-hero .btn:first-child {
            background: #E63946;
            color: #fff;
        }

        .features-hero .btn:first-child:hover {
            background: #d62839;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
        }

        .features-hero .btn-secondary {
            background: transparent;
            color: #ffffff;
            border: 2px solid #E63946;
        }

        .features-hero .btn-secondary:hover {
            background: #E63946;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
        }

        .hero-image {
            flex: 1;
            text-align: right;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        /* Large Laptops/Desktops (Adjust for 13-14 inch screens) */
        @media (max-width: 1440px) {
            .features-hero {
                padding: 120px 8% 60px;
                min-height: 70vh;
            }

            .hero-flex {
                gap: 40px;
            }
        }

        /* Medium Laptops (<= 1200px) */
        @media (max-width: 1200px) {
            .features-hero {
                padding: 110px 5% 60px;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }
        }

        /* Mobile Responsiveness for Features Hero */
        @media (max-width: 992px) {
            .features-hero {
                padding: 100px 5% 50px;
                min-height: auto;
            }

            .hero-flex {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .seo-text {
                margin-left: auto;
                margin-right: auto;
                max-width: 100%;
            }

            .hero-btns {
                justify-content: center;
            }

            .hero-image {
                text-align: center;
                order: -1;
            }

            .hero-image img {
                max-width: 80%;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }

            .features-hero .btn {
                width: 100%;
            }
        }

        /* ---------- FEATURES LIST ---------- */
        .features-list {
            padding: 100px 10%;
            background: #ffffff;
        }

        .features-list .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #4b5563;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .feature-card {
            background: #ffffff;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            border: 1px solid #f3f4f6;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(230, 57, 70, 0.1);
            border-color: rgba(230, 57, 70, 0.2);
        }

        .icon-box {
            width: 70px;
            height: 70px;
            background: rgba(230, 57, 70, 0.1);
            color: #E63946;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .icon-box {
            background: #E63946;
            color: #ffffff;
            transform: rotateY(360deg);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            color: #1a1a1a;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            font-size: 0.95rem;
            color: #4b5563;
            line-height: 1.6;
        }

        .features-cta {
            text-align: center;
            background: #111111;
            padding: 50px;
            border-radius: 24px;
            color: #ffffff;
        }

        .features-cta p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .features-cta .btn {
            padding: 14px 34px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .features-cta .btn:first-child {
            background: #E63946;
            color: #ffffff;
        }

        .features-cta .btn:first-child:hover {
            background: #d62839;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
        }

        .features-cta .btn-outline {
            background: transparent;
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .features-cta .btn-outline:hover {
            border-color: #E63946;
            background: #E63946;
            transform: translateY(-3px);
        }

        /* Mobile Adjustments for features-list */
        @media (max-width: 992px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-list {
                padding: 80px 5%;
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .features-cta {
                padding: 40px 20px;
            }

            .features-cta p {
                font-size: 1.2rem;
            }

            .cta-btns {
                flex-direction: column;
            }
        }

        /* ---------- PRICING CTA BLOCK ---------- */
        .pricing-cta-block {
            padding: 80px 10%;
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
            overflow: hidden;
        }

        .pricing-cta-block .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .pricing-cta-content {
            flex: 1.2;
        }

        .pricing-cta-content h2 {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 25px;
            line-height: 1.2;
            font-weight: 700;
        }

        .pricing-cta-content p {
            font-size: 1.1rem;
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .highlight-text {
            color: #E63946;
            margin-bottom: 30px !important;
        }

        .pricing-cta-content .cta-btns {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .pricing-cta-content .btn {
            padding: 14px 34px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .pricing-cta-content .btn:first-child {
            background: #E63946;
            color: #ffffff;
        }

        .pricing-cta-content .btn:first-child:hover {
            background: #d62839;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
        }

        .pricing-cta-content .btn-secondary {
            background: #111111;
            color: #ffffff;
        }

        .pricing-cta-content .btn-secondary:hover {
            background: #1a1a1a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .seo-footer-text {
            font-size: 0.9rem !important;
            color: #9ca3af !important;
            line-height: 1.5;
        }

        .pricing-cta-image {
            flex: 1;
        }

        .pricing-cta-image img {
            width: 100%;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Responsive Pricing CTA Block */
        @media (max-width: 992px) {
            .pricing-cta-block {
                padding: 60px 5%;
            }

            .pricing-flex {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .pricing-cta-content h2 {
                font-size: 2rem;
            }

            .pricing-cta-content .cta-btns {
                justify-content: center;
            }

            .pricing-cta-image {
                width: 100%;
                max-width: 500px;
            }
        }

        @media (max-width: 480px) {
            .pricing-cta-content .cta-btns {
                flex-direction: column;
                gap: 15px;
            }

            .pricing-cta-content .btn {
                width: 100%;
            }
        }

        /* ---------- FAQ SECTION ---------- */
        .faq-section {
            padding: 100px 10%;
            background: #ffffff;
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto 50px;
        }

        .faq-item {
            border-bottom: 1px solid #f3f4f6;
            margin-bottom: 10px;
        }

        .faq-question {
            width: 100%;
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 1.15rem;
            font-weight: 600;
            color: #1a1a1a;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: #E63946;
        }

        .faq-question span {
            padding-right: 20px;
        }

        .faq-question i {
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-answer {
            padding-bottom: 25px;
        }

        .faq-answer p {
            font-size: 1rem;
            color: #4b5563;
            line-height: 1.6;
            margin: 0;
        }

        .faq-support-cta {
            text-align: center;
            padding: 40px;
            background: rgba(230, 57, 70, 0.05);
            border-radius: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-support-cta p {
            font-size: 1.1rem;
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .btn-support {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #E63946;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-support:hover {
            gap: 15px;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 80px 5%;
            }

            .faq-question {
                font-size: 1rem;
            }

            .faq-answer p {
                font-size: 0.95rem;
            }
        }

        /* ---------- ABOUT SECTION ---------- */
        .about {
            padding: 100px 10%;
            background: linear-gradient(180deg, #FFF5F5 0%, #FFE3E3 100%);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            position: relative;
            overflow: hidden;
        }

        /* Text Content */
        .about-content {
            flex: 1.2;
            z-index: 2;
        }

        .accent-header {
            display: inline-block;
            background: rgba(230, 57, 70, 0.1);
            color: #E63946;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .about-content h2 {
            font-size: 2.8rem;
            color: #1A1A1A;
            margin-bottom: 10px;
            line-height: 1.2;
            font-weight: 700;
        }

        .about-content h3 {
            color: #E63946;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 30px;
            line-height: 1.4;
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 35px;
            text-align: justify;
        }

        /* Pillars Block */
        .about-pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .pillar {
            background: #ffffff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #F5F5F5;
        }

        .pillar:hover {
            transform: translateY(-5px);
            border-color: #E63946;
            box-shadow: 0 15px 35px rgba(230, 57, 70, 0.1);
        }

        .pillar i {
            font-size: 1.5rem;
            color: #E63946;
            margin-bottom: 15px;
            display: block;
        }

        .pillar h4 {
            font-size: 1.1rem;
            color: #1A1A1A;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .pillar p {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.5;
            margin-bottom: 0;
            text-align: left;
        }

        .hr-item {
            i {
                font-size: 2.5rem;
                color: #E63946;
                margin-bottom: 20px;
            }

            .content {
                h3 {
                    font-size: 1.4rem;
                    color: #1A1A1A;
                    margin-bottom: 10px;
                    font-weight: 600;
                }

                p {
                    font-size: 1rem;
                    color: #444;
                    line-height: 1.6;
                }
            }
        }

        .view-all-features {
            grid-column: 1 / -1;
            text-align: center;
            background: rgba(230, 57, 70, 0.03);
            padding: 40px;
            border-radius: 20px;
            margin-top: 40px;
            border: 1px dashed rgba(230, 57, 70, 0.2);
        }

        .view-all-features p {
            font-size: 1.2rem;
            color: #1A1A1A;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .btn-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #E63946;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .btn-link:hover {
            gap: 15px;
            text-decoration: underline;
        }

        /* Stats Bar */
        .about-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 45px;
            padding: 25px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid #F5F5F5;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #E63946;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.85rem;
            color: #666;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .about-content .btn {
            background: #E63946;
            color: #fff;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            display: inline-block;
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
        }

        .about-content .btn:hover {
            background: #1A1A1A;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(26, 26, 26, 0.3);
        }

        /* Image Card */
        .about-image {
            flex: 0.8;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .image-card {
            position: relative;
            width: 95%;
            max-width: 550px;
        }

        .image-card img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            z-index: 2;
            position: relative;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .image-card img:hover {
            transform: scale(1.02) translateY(-10px);
            box-shadow: 0 40px 80px -15px rgba(230, 57, 70, 0.25);
        }

        .image-card .image-bg {
            position: absolute;
            top: 30px;
            left: 30px;
            right: -30px;
            bottom: -30px;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(26, 26, 26, 0.05) 100%);
            border: 1px solid rgba(230, 57, 70, 0.2);
            border-radius: 12px;
            z-index: 1;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .image-card:hover .image-bg {
            transform: translate(-10px, -10px);
            background: rgba(230, 57, 70, 0.15);
        }

        /* Decorative Circle Background */
        .about::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .about-image {
                order: 1;
                /* 👈 Show image first */
                width: 100%;
            }

            .about-content {
                order: 2;
                /* 👈 Then show text (Who We Are, etc.) */
                width: 100%;
            }

            .image-card {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }

            .about-content h2 {
                font-size: 2.2rem;
            }

            .about-pillars {
                grid-template-columns: 1fr;
                gap: 15px;
                max-width: 500px;
                margin: 0 auto 30px;
            }

            .about-stats {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                align-items: center;
                padding: 20px;
            }

            .about-content p {
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .about {
                padding: 60px 7%;
            }

            .about-content h2 {
                font-size: 1.8rem;
            }

            .about-content h3 {
                font-size: 1.2rem;
            }

            .stat-number {
                font-size: 1.6rem;
            }
        }

        /* ---------- TESTIMONIALS ---------- */
        .testimonial-showcase {
            background: #FFF5F5;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            position: relative;
            padding: 60px 20px 40px;
            overflow: hidden;
            min-height: 720px;
            /* ✅ Fixed height for desktop/tablet */
        }

        /* Grid Layout (Desktop/Tablet) */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-template-rows: repeat(4, 100px);
            justify-items: center;
            align-items: center;
            position: relative;
            padding: 40px;
            margin-bottom: 20px;
        }

        .image-grid img {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border-radius: 20px;
            transition: all 0.4s ease;
            cursor: pointer;
            filter: blur(2px) brightness(0.8);
            opacity: 0.7;
        }

        .image-grid img.active {
            transform: scale(1.1) translateY(-5px);
            filter: none;
            opacity: 1;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        /* Arrange 6 images neatly */
        .image-grid img:nth-child(1) {
            grid-column: 2;
            grid-row: 1;
        }

        .image-grid img:nth-child(2) {
            grid-column: 4;
            grid-row: 1;
        }

        .image-grid img:nth-child(3) {
            grid-column: 2;
            grid-row: 3;
        }

        .image-grid img:nth-child(4) {
            grid-column: 3;
            grid-row: 2;
        }

        .image-grid img:nth-child(5) {
            grid-column: 4;
            grid-row: 3;
        }

        .image-grid img:nth-child(6) {
            grid-column: 3;
            grid-row: 4;
        }

        /* ---------- TEXT CONTENT ---------- */
        .testimonial-info {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .testimonial-info h2 {
            font-size: 2.8rem;
            color: #1A1A1A;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .testimonial-info h3 {
            font-size: 1.5rem;
            color: #000000;
            margin-bottom: 20px;
            font-weight: 600;
        }

        /* Desktop: fix height to avoid movement */
        .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #444;
            transition: opacity 0.3s ease;
            max-width: 750px;
            margin: 0 auto 20px;
            text-align: justify;
            text-align-last: center;
            min-height: 180px;
            max-height: 180px;
            overflow: hidden;
        }

        .testimonial-name {
            font-weight: 600;
            color: #000000;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .testimonial-role {
            color: #000000;
            font-size: 0.95rem;
            margin-bottom: 10px;
        }

        /* ---------- MOBILE VIEW ---------- */
        @media (max-width: 768px) {
            .image-grid {
                display: flex;
                overflow: hidden;
                white-space: nowrap;
                gap: 25px;
                align-items: center;
                padding: 20px;
                position: relative;
                margin-bottom: 30px;
            }

            .image-grid img {
                width: 110px;
                height: 110px;
                flex: 0 0 auto;
                border-radius: 15px;
                transition: all 0.4s ease;
                filter: blur(2px) brightness(0.7);
                opacity: 0.6;
            }

            .image-grid img.active {
                transform: scale(1.15);
                filter: none;
                opacity: 1;
            }

            /* ✅ Keep fixed section height on mobile */
            .testimonial-showcase {
                padding: 50px 15px 30px;
                overflow: visible;
                min-height: 720px;
                /* same fixed height as desktop */
            }

            .testimonial-info {
                padding: 0 10px;
            }

            .testimonial-info h2 {
                font-size: 2rem;
                margin-bottom: 15px;
            }

            .testimonial-info h3 {
                font-size: 1.25rem;
                margin-bottom: 15px;
            }

            /* ✅ Show full text in fixed height */
            .testimonial-text {
                font-size: 0.95rem;
                line-height: 1.6;
                text-align: center;
                text-align-last: center;
                margin-bottom: 15px;
                min-height: auto;
                max-height: none;
                /* allows full text */
                overflow: visible;
            }

            .testimonial-name {
                font-size: 1rem;
                margin-bottom: 3px;
            }

            .testimonial-role {
                font-size: 0.9rem;
                margin-bottom: 10px;
            }
        }

        /* ---------- SMALL DEVICES ---------- */
        @media (max-width: 480px) {
            .testimonial-info h2 {
                font-size: 1.7rem;
            }

            .testimonial-info h3 {
                font-size: 1.1rem;
            }

            .testimonial-text {
                font-size: 0.9rem;
                line-height: 1.5;
                padding: 0 5px;
                min-height: auto;
                max-height: none;
                /* show full text */
                overflow: visible;
            }

            .testimonial-name,
            .testimonial-role {
                font-size: 0.9rem;
            }
        }


        /* ---------- PRICING SECTION ---------- */
        .pricing {
            padding: 100px 5%;
            background: linear-gradient(180deg, #FFF5F5 0%, #FFE3E3 100%);
            text-align: center;
        }

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

        .pricing-header h2 {
            font-size: 3rem;
            color: #1A1A1A;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .pricing-header h2 span {
            color: #E63946;
        }

        .pricing-header p {
            color: #555;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        /* Billing Toggle */
        .billing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
            font-weight: 600;
            color: #333;
        }

        .discount-badge {
            background: #FFF5F5;
            color: #E63946;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-left: 8px;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
        }

        input:checked+.slider {
            background-color: #E63946;
        }

        input:checked+.slider:before {
            transform: translateX(26px);
        }

        .slider.round {
            border-radius: 34px;
        }

        .slider.round:before {
            border-radius: 50%;
        }

        /* Pricing Cards */
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            align-items: stretch;
            margin-top: 20px;
        }

        .pricing .card {
            background: #ffffff;
            padding: 35px 25px;
            border-radius: 30px;
            text-align: left;
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid #F5F5F5;
            display: flex;
            flex-direction: column;
            width: auto;
            /* Override fixed width */
        }

        .pricing .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(230, 57, 70, 0.15);
            border-color: #E63946;
        }

        .pricing .card.popular {
            border: 2px solid #E63946;
            background: #fff;
            transform: scale(1.05);
            z-index: 2;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
        }

        .pricing .card.popular:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 0 25px 50px rgba(230, 57, 70, 0.2);
        }

        .popular-badge {
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, #E63946, #9B2226);
            color: #fff;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
        }

        .card-header h3 {
            font-size: 1.8rem;
            color: #1A1A1A;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .card-header p {
            color: #777;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .price-container {
            display: flex;
            align-items: baseline;
            gap: 5px;
            margin-bottom: 20px;
        }

        .pricing .card .price {
            font-size: 3.5rem;
            font-weight: 800;
            color: #333;
            margin: 0;
        }

        .pricing .card .duration {
            color: #777;
            font-size: 1rem;
        }


        .pricing .card .features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
            flex-grow: 1;
        }

        .pricing .card .features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            color: #444;
            font-size: 1rem;
        }

        .pricing .card .features li i {
            color: #E63946;
            font-size: 1.1rem;
        }

        .pricing .card .btn {
            display: block;
            text-align: center;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            text-decoration: none;
            background: #E63946;
            color: #fff;
        }

        .pricing .card .btn.btn-outline {
            background: transparent;
            color: #E63946;
            border: 2px solid #E63946;
        }

        .pricing .card .btn:hover {
            background: #1A1A1A;
            color: #fff;
            border-color: #1A1A1A;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(26, 26, 26, 0.2);
        }

        @media (max-width: 992px) {
            .pricing .card.popular {
                transform: scale(1);
            }

            .pricing .card.popular:hover {
                transform: translateY(-10px);
            }
        }

        /* ---------- why-choose-us ---------- */

        .why-choose-us {
            background: #FFF5F5;
            padding: 80px 10%;
            font-family: 'Poppins', sans-serif;
            text-align: center;
        }

        .why-choose-us h2 {
            font-size: 2.5rem;
            color: #1A1A1A;
            font-weight: 700;
            margin-bottom: 10px;
        }


        .why-choose-us .subtitle {
            color: #000000;
            font-size: 1.1rem;
            margin-bottom: 50px;
        }

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

        .feature-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 30px 20px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgb(230 57 70 / 63%);
        }

        .icon {
            font-size: 2.5rem;
            color: #E63946de;
            margin-bottom: 15px;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            color: #111111;
            margin-bottom: 10px;
        }

        .feature-card p {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Responsive Mobile View */
        @media (max-width: 768px) {
            .why-choose-us {
                padding: 60px 6%;
            }

            .why-choose-us h2 {
                font-size: 2rem;
            }

            .features {
                gap: 20px;
            }

            .feature-card {
                padding: 25px 15px;
            }

            .icon {
                font-size: 2rem;
            }
        }

        /* ---------- what-hr-does ---------- */

        .what-hr-does {
            background: #FFE3E3;
            padding: 80px 10%;
            font-family: 'Poppins', sans-serif;
            color: #ffffff;
        }

        .what-hr-does h2 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 10px;
            color: #1A1A1A;
        }

        .what-hr-does .subtitle {
            text-align: center;
            color: #000000;
            font-size: 1.1rem;
            margin-bottom: 60px;
        }

        .hr-list {
            display: flex;
            flex-direction: column;
            gap: 35px;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .hr-list::before {
            content: "";
            position: absolute;
            left: 35px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #E63946, #9B2226);
            border-radius: 3px;
        }

        .hr-item {
            display: flex;
            align-items: self-end;
            gap: 25px;
            position: relative;
        }

        .hr-item i {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 75px;
            height: 75px;
            font-size: 1.8rem;
            background: #FFF5F5;
            color: #1A1A1A;
            border-radius: 50%;
            flex-shrink: 0;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .hr-item:hover i {
            background: #E63946;
            color: #fff;
            transform: scale(1.1);
            box-shadow: 0 0 12px rgba(230, 57, 70, 0.4);
        }


        .hr-item .content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #000000;
        }

        .hr-item .content p {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Responsive for Mobile */
        @media (max-width: 768px) {
            .what-hr-does {
                padding: 60px 7%;
            }

            .what-hr-does h2 {
                font-size: 2rem;
            }

            .hr-list::before {
                left: 28px;

            }

            .hr-item {
                gap: 18px;
                align-items: flex-start;
            }

            .hr-item i {
                width: 60px;
                height: 60px;
                font-size: 1.4rem;
                padding: 0;
            }

            .hr-item .content h3 {
                font-size: 1.1rem;
            }

            .hr-item .content p {
                font-size: 0.9rem;
            }
        }


        /* ---------- CONTACT US SECTION ---------- */

        .contact-section {
            position: relative;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
            color: #111111;
            padding: 100px 10%;
        }

        /* Background */
        .contact-bg {
            position: absolute;
            inset: 0;
            background: #FFF5F5;
        }

        /* Glassmorphism Container */
        .contact-container {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 60px;
            align-items: center;
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            padding: 60px 50px;
            z-index: 1;
        }

        /* Left Side Info */
        .contact-info a {
            color: #1A1A1A;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        .contact-info a:hover {
            text-shadow: 0 0 10px #E63946;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            color: #1A1A1A;
        }

        .contact-info p {
            color: #333333;
            margin-bottom: 40px;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .info-block {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }

        .info-block:hover {
            transform: translateX(10px);
        }

        .info-block i {
            font-size: 1.8rem;
            color: #E63946de;
            background: rgba(230, 57, 70, 0.15);
            padding: 15px;
            border-radius: 50%;
        }

        .info-block h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: #111111;
        }

        .info-block p {
            font-size: 0.95rem;
            color: #444444;
        }

        /* Right Side Form */
        .contact-form {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
        }

        .contact-form h3 {
            font-size: 1.6rem;
            margin-bottom: 25px;
            color: #111111;
        }

        .input-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #D1D5DB;
            border-radius: 10px;
            outline: none;
            background: #ffffff;
            color: #111111;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #666666;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            background: #f8fafc;
            box-shadow: 0 0 0 2px #E63946;
        }

        .contact-form textarea {
            resize: none;
            margin-bottom: 20px;
            margin-top: 15px;
        }

        /* Label Styling */
        form label {
            display: block;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            color: #333333;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        /* Dropdown (select) styling */
        form label select {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #D1D5DB;
            border-radius: 10px;
            outline: none;
            background: #ffffff;
            color: #111111;
            font-size: 0.95rem;
            appearance: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        form label select:focus {
            background: #f8fafc;
            box-shadow: 0 0 0 2px #E63946;
        }

        form label select option {
            background-color: #ffffff;
            color: #111111;
            font-size: 0.95rem;
        }

        /* Button */
        .send-btn {
            background-color: #E63946de;
            color: #ffffff;
            border: none;
            padding: 12px 28px;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .send-btn:hover {
            background-color: #1A1A1A;
            transform: scale(1.03);
        }

        /* ----------- MOBILE VIEW STYLES ----------- */
        @media (max-width: 768px) {
            .contact-section {
                padding: 70px 6%;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 35px 25px;
                border-radius: 16px;
            }

            .contact-info {
                text-align: center;
            }

            .contact-info h2 {
                font-size: 2rem;
                margin-bottom: 15px;
            }

            .contact-info p {
                font-size: 0.95rem;
                margin-bottom: 25px;
                line-height: 1.5;
            }

            .info-block {
                justify-content: center;
                margin-bottom: 18px;
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .info-block i {
                font-size: 1.5rem;
                padding: 12px;
            }

            .info-block h3 {
                font-size: 1rem;
            }

            .info-block a {
                font-size: 0.9rem;
                word-break: break-word;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .contact-form h3 {
                font-size: 1.3rem;
                text-align: center;
                margin-bottom: 20px;
            }

            .input-row {
                flex-direction: column;
                gap: 15px;
            }

            .contact-form input,
            .contact-form textarea {
                padding: 12px 14px;
                font-size: 0.9rem;
                border-radius: 8px;
            }

            .send-btn {
                width: 100%;
                padding: 12px;
                font-size: 1rem;
                border-radius: 8px;
            }

            .contact-container {
                backdrop-filter: blur(6px);
            }
        }

        /* ----------- VERY SMALL DEVICES (Phones <480px) ----------- */
        @media (max-width: 480px) {
            .contact-section {
                padding: 60px 5%;
            }

            .contact-info h2 {
                font-size: 1.8rem;
            }

            .contact-form {
                padding: 25px 15px;
            }

            .send-btn {
                font-size: 0.95rem;
            }
        }


        /* ---------- SEO CONTENT SECTION ---------- */
        /* ---------- BLOG SECTION ---------- */
        .blog-section {
            padding: 80px 10%;
            background: linear-gradient(180deg, #FFF5F5 0%, #FFE3E3 100%);
            text-align: center;
        }

        .blog-section .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-section h2 {
            font-size: 2.5rem;
            color: #1A1A1A;
            margin-bottom: 15px;
            line-height: 1.3;
            font-weight: 700;
        }

        .blog-section h2 span {
            color: #E63946;
        }

        .blog-section .subtitle {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        /* Blog Cards Grid */
        .blog-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        /* Individual Blog Card */
        .blog-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            text-align: left;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
        }

        /* Blog Card Image */
        .blog-card-image {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.1);
        }

        .blog-category {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #E63946, #9B2226);
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Blog Card Content */
        .blog-card-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .blog-card-content h3 {
            font-size: 1.4rem;
            color: #1A1A1A;
            margin-bottom: 15px;
            line-height: 1.4;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-card-content h3 {
            color: #E63946;
        }

        .blog-card-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        /* Blog Meta */
        .blog-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e5e7eb;
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            color: #777;
        }

        .blog-meta i {
            color: #E63946;
            font-size: 0.95rem;
        }

        /* Read More Link */
        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #E63946;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .blog-read-more i {
            transition: transform 0.3s ease;
        }

        .blog-read-more:hover {
            color: #1A1A1A;
        }

        .blog-read-more:hover i {
            transform: translateX(5px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .blog-section {
                padding: 60px 6%;
            }

            .blog-section h2 {
                font-size: 2rem;
            }

            .blog-cards {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .blog-section {
                padding: 50px 5%;
            }

            .blog-section h2 {
                font-size: 1.8rem;
            }

            .blog-section .subtitle {
                font-size: 1rem;
                margin-bottom: 35px;
            }

            .blog-cards {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .blog-card-image {
                height: 200px;
            }

            .blog-card-content h3 {
                font-size: 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .blog-section {
                padding: 40px 4%;
            }

            .blog-section h2 {
                font-size: 1.6rem;
            }

            .blog-card-content {
                padding: 20px;
            }

            .blog-card-image {
                height: 180px;
            }

            .blog-card-content h3 {
                font-size: 1.15rem;
            }

            .blog-card-content p {
                font-size: 0.95rem;
            }

            .blog-meta {
                flex-direction: column;
                gap: 8px;
            }
        }


        /* ---------- FOOTER ---------- */
        .footer {
            background: #111111;
            color: #d1d5db;
            padding: 60px 10% 30px;
            font-family: "Poppins", sans-serif;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 50px;
            margin-bottom: 40px;
            align-items: start;
        }

        /* --- Logo & About Section --- */
        .footer-about {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-about .title {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 15px;
        }

        .footer-about .title img {
            width: 65px;
            height: 60px;
            border-radius: 50%;
        }

        .footer-about .logo h1 {
            color: #E63946;
            font-size: 1.4rem;
            font-weight: 600;
            margin: 0;
        }

        .footer-about .logo span {
            color: #d1d5db;
            font-size: 0.9rem;
            letter-spacing: 2px;
            border-top: 1px solid #111111;
            margin-top: 3px;
            padding-top: 2px;
            display: block;
        }

        .footer-about p {
            margin: 10px 0 15px;
            line-height: 1.6;
            color: #9ca3af;
            max-width: 280px;
        }

        .footer h3 {
            color: #E63946;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        /* --- Links & Contact --- */
        .footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer ul li {
            margin: 10px 0;
            font-size: 0.95rem;
            display: flex;
            align-items: flex-start;
            line-height: 1.5;
        }

        .footer ul li i {
            color: #E63946;
            margin-right: 10px;
            font-size: 1rem;
            margin-top: 3px;
        }

        .footer a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {

            color: #E63946;
        }

        /* --- Social Icons --- */
        .social-icons {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-top: 10px;
        }

        .social-icons a {
            color: #d1d5db;
            font-size: 1.1rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            color: #E63946;
            transform: translateY(-3px);
        }

        /* --- App Links --- */
        .app-links {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 60px;
            padding: 80px 20px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            margin: 60px 0;
            flex-wrap: wrap;
        }

        .app-group {
            text-align: center;
            flex: 1;
            min-width: 250px;
            max-width: 400px;
        }

        .app-links h3 {
            color: #E63946;
            margin-bottom: 25px;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .app-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: #E63946;
            border-radius: 2px;
        }

        .store-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .store-buttons a {
            display: inline-block;
            line-height: 0;
            border-radius: 10px;
            overflow: hidden;
            background: #000;
            padding: 1px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .store-buttons img {
            height: 48px;
            width: auto;
            display: block;
        }

        .store-buttons a:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 30px rgba(230, 57, 70, 0.4);
            border-color: #E63946;
        }

        @media (max-width: 768px) {
            .app-links {
                gap: 40px;
                padding: 60px 20px;
            }

            .app-group {
                min-width: 100%;
            }
        }

        .footer-note {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 0.9rem;
            line-height: 1.6;
            color: #9ca3af;
            padding: 0 20px;
        }

        /* --- Local SEO Section --- */
        .local-seo {
            background: rgba(26, 26, 26, 0.5);
            padding: 30px 8%;
            text-align: center;
            margin: 0 auto 25px;
            border-radius: 8px;
            max-width: 900px;
            border: 1px solid rgba(230, 57, 70, 0.2);
            position: relative;
        }

        .local-seo h2 {
            font-size: 1.4rem;
            color: #E63946;
            margin-bottom: 12px;
            font-weight: 600;
            line-height: 1.4;
        }

        .local-seo p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #9ca3af;
            max-width: 750px;
            margin: 0 auto;
        }

        /* Responsive styles for local-seo */
        @media (max-width: 992px) {
            .local-seo {
                padding: 25px 6%;
                margin: 0 auto 20px;
            }

            .local-seo h2 {
                font-size: 1.3rem;
                margin-bottom: 10px;
            }

            .local-seo p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .local-seo {
                padding: 20px 5%;
                margin: 0 auto 18px;
                border-radius: 6px;
            }

            .local-seo h2 {
                font-size: 1.15rem;
                margin-bottom: 10px;
            }

            .local-seo p {
                font-size: 0.85rem;
                line-height: 1.6;
            }
        }

        @media (max-width: 480px) {
            .local-seo {
                padding: 18px 4%;
            }

            .local-seo h2 {
                font-size: 1.05rem;
            }

            .local-seo p {
                font-size: 0.8rem;
            }
        }


        /* --- Footer Bottom --- */
        .footer-bottom {
            border-top: 1px solid #111111;
            text-align: center;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #9ca3af;
        }

        /* ---------- MOBILE RESPONSIVE ---------- */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-about,
            .footer-links,
            .footer-contact,
            .footer-social {
                align-items: center;
                text-align: center;
            }

            .footer-about .title {
                justify-content: center;
            }

            .footer-about p {
                max-width: 100%;
            }

            .social-icons {
                justify-content: center;
            }
        }



        /* ---------- ANIMATIONS ---------- */
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ---------- MOBILE RESPONSIVE ---------- */
        @media (max-width: 992px) {
            .about {
                flex-direction: column;
                text-align: center;
                padding: 60px 5%;
                gap: 30px;
            }

            .about img {
                width: 100%;
                max-width: 400px;
            }

            .about-content {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero .btn {
                padding: 12px 28px;
                font-size: 0.95rem;
            }

            .scroll-indicator {
                font-size: 0.9rem;
            }

            nav {
                padding: 15px 5%;
            }

            nav ul li {
                margin: 15px 0;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .hero .btn {
                padding: 10px 22px;
                font-size: 0.85rem;
            }

            .about h2 {
                font-size: 2rem;
            }

            .about-content p {
                font-size: 0.95rem;
            }
        }

        /* ---------- MOBILE RESPONSIVE ---------- */
        @media (max-width: 992px) {
            .pricing-cards {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .pricing-header h2 {
                font-size: 2rem;
            }

            .pricing-header p {
                font-size: 0.95rem;
            }

            .card {
                width: 90%;
                padding: 30px 15px;
            }

            .card h3 {
                font-size: 1.5rem;
            }

            .card .price {
                font-size: 1.5rem;
            }
        }

        /* ---------- MOBILE RESPONSIVE ---------- */
        @media (max-width: 768px) {
            .request-form {
                padding: 60px 5%;
            }

            .request-form .form-header h2 {
                font-size: 2.2rem;
            }

            .request-form .form-header p {
                font-size: 1rem;
            }

            .request-form button.btn {
                width: 100%;
                padding: 12px 0;
            }
        }

        @media (max-width: 480px) {
            .request-form .form-header h2 {
                font-size: 1.8rem;
            }

            .request-form .form-header p {
                font-size: 0.95rem;
            }
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Animation classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-fade-in {
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .animate-fade-in.animated {
            opacity: 1;
        }

        .animate-scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s ease;
        }

        .animate-scale-in.animated {
            opacity: 1;
            transform: scale(1);
        }



        /* ---------- UNIVERSAL RESPONSIVE STYLES ---------- */

        /* Tablet and below (<=992px) */
        @media (max-width: 992px) {
            nav {
                padding: 15px 5%;
            }

            nav ul {
                flex-direction: column;
                background: rgba(17, 17, 17, 0.95);
                position: fixed;
                top: 70px;
                right: -100%;
                width: 70%;
                height: 100vh;
                justify-content: center;
                align-items: center;
                transition: right 0.4s ease;
                z-index: 999;
            }

            nav ul.active {
                right: 0;
            }

            .menu-toggle {
                display: block;
            }

            nav ul li {
                margin: 20px 0;
            }

            /* About section */
            .about {
                flex-direction: column;
                text-align: center;
                padding: 60px 5%;
            }

            .about img {
                width: 100%;
                max-width: 420px;
            }

            .about-content {
                width: 100%;
            }

            /* Pricing Cards */
            .pricing-cards {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }

            /* Contact Section */
            .contact-container {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Mobile (<=768px) */
        @media (max-width: 768px) {

            /* HERO */
            .hero {
                padding: 0 5%;
                height: 90vh;
            }

            .hero h1 {
                font-size: 2rem;
                line-height: 1.3;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .hero .btn {
                padding: 12px 26px;
                font-size: 0.95rem;
            }

            /* ABOUT */
            .about {
                padding: 50px 5%;
            }

            .about-content h2 {
                font-size: 2rem;
            }

            .about-content p {
                font-size: 0.95rem;
            }

            .about-content .btn {
                width: 100%;
                display: inline-block;
            }



            /* CONTACT FORM */
            .contact-form input,
            .contact-form textarea,
            .contact-form button {
                width: 100%;
            }

            /* FOOTER */
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-about .logo {
                justify-content: center;
            }

            .footer ul li {
                justify-content: center;
            }

            .social-icons {
                justify-content: center;
            }
        }

        /* Small Phones (<=480px) */
        @media (max-width: 480px) {
            nav .logo {
                font-size: 1.4rem;
            }

            .hero {
                padding: 0 5%;
            }

            .hero h1 {
                font-size: 1.6rem;
            }

            .hero p {
                font-size: 0.85rem;
                margin-bottom: 20px;
            }

            .hero .btn {
                font-size: 0.85rem;
                padding: 10px 20px;
            }

            .scroll-indicator {
                bottom: 20px;
                font-size: 0.8rem;
            }

            /* ABOUT */
            .about-content h2 {
                font-size: 1.6rem;
            }

            .about-content p {
                font-size: 0.85rem;
            }

            /* CONTACT FORM */
            .contact-header h2 {
                font-size: 1.6rem;
            }

            /* FOOTER */
            .footer {
                padding: 40px 5% 20px;
            }
        }

        /* ---------- ABOUT HERO SECTION ---------- */
        .about-hero {
            padding: 160px 10% 100px;
            background: linear-gradient(180deg, #FFF5F5 0%, #FFE3E3 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80vh;
        }

        .about-hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            max-width: 1200px;
            width: 100%;
        }

        .about-hero-content {
            flex: 1;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease-out;
        }

        .about-hero-content.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .about-hero-content h1 {
            font-size: 3rem;
            color: #1A1A1A;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .about-hero-content h2 {
            font-size: 1.5rem;
            color: #E63946;
            font-weight: 600;
            margin-bottom: 25px;
            line-height: 1.4;
        }

        .about-hero-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 35px;
            text-align: justify;
        }

        .about-hero-content .btn {
            display: inline-block;
            background: #E63946de;
            color: #fff;
            padding: 14px 34px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
        }

        .about-hero-content .btn:hover {
            background: #1A1A1A;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 26, 26, 0.2);
        }

        .about-hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            opacity: 0;
            transform: scale(0.9);
            transition: all 1s ease-out 0.2s;
        }

        .about-hero-image.animated {
            opacity: 1;
            transform: scale(1);
        }

        .about-hero-image img {
            width: 100%;
            max-width: 550px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
        }

        /* Responsive About Hero */
        @media (max-width: 992px) {
            .about-hero {
                padding: 120px 5% 60px;
            }

            .about-hero-container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .about-hero-content h1 {
                font-size: 2.5rem;
            }

            .about-hero-content h2 {
                font-size: 1.3rem;
            }

            .about-hero-content p {
                text-align: center;
            }

            .about-hero-image {
                order: -1;
            }

            .about-hero-image img {
                max-width: 100%;
            }
        }

        /* ---------- OUR STORY SECTION ---------- */
        .our-story {
            padding: 80px 10%;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .our-story-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            max-width: 1200px;
            width: 100%;
        }

        .our-story-content {
            flex: 1.2;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease-out;
        }

        .our-story-content.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .our-story-content h2 {
            font-size: 2.5rem;
            color: #1A1A1A;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .our-story-content h3 {
            font-size: 1.4rem;
            color: #E63946;
            font-weight: 600;
            margin-bottom: 25px;
            line-height: 1.4;
        }

        .our-story-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 20px;
            text-align: justify;
        }

        .our-story-content .btn {
            display: inline-block;
            background: #E63946de;
            color: #fff;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
            margin-top: 15px;
        }

        .our-story-content .btn:hover {
            background: #1A1A1A;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 26, 26, 0.2);
        }

        .our-story-image {
            flex: 0.8;
            display: flex;
            justify-content: center;
            opacity: 0;
            transform: scale(0.9);
            transition: all 1s ease-out 0.3s;
        }

        .our-story-image.animated {
            opacity: 1;
            transform: scale(1);
        }

        .our-story-image img {
            width: 100%;
            max-width: 450px;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        }

        /* Responsive Our Story */
        @media (max-width: 992px) {
            .our-story {
                padding: 60px 8%;
            }

            .our-story-container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .our-story-content h2 {
                font-size: 2.2rem;
            }

            .our-story-content p {
                text-align: center;
            }

            .our-story-content .btn {
                margin-top: 10px;
            }

            /* Stack image below text on mobile was requested */
            .our-story-image {
                order: 2;
            }

            .our-story-content {
                order: 1;
            }
        }

        /* ---------- MISSION & VISION SECTION ---------- */
        .mission-vision {
            padding: 80px 10%;
            background: #FFE3E3;
            /* Soft red background to contrast with white Story section */
            text-align: center;
        }

        .mission-vision h2 {
            font-size: 2.8rem;
            color: #1A1A1A;
            margin-bottom: 50px;
        }

        .mv-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .mv-card {
            flex: 1;
            background: #ffffff;
            padding: 50px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease-out;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .mv-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .mv-card .icon-box {
            width: 80px;
            height: 80px;
            background: rgba(230, 57, 70, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: 0.3s;
        }

        .mv-card:hover .icon-box {
            background: #E63946;
            transform: rotateY(360deg);
        }

        .mv-card .icon-box i {
            font-size: 2rem;
            color: #E63946;
            transition: 0.3s;
        }

        .mv-card:hover .icon-box i {
            color: #ffffff;
        }

        .mv-card h3 {
            font-size: 1.8rem;
            color: #1A1A1A;
            margin-bottom: 20px;
        }

        .mv-card p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #444;
            text-align: center;
        }

        .mv-footer-line {
            margin-top: 50px;
            font-style: italic;
            color: #1A1A1A;
            font-weight: 500;
            font-size: 1.1rem;
            opacity: 0;
            transition: all 1.2s ease-out 0.5s;
        }

        .mv-footer-line.animated {
            opacity: 1;
        }

        /* Responsive Mission & Vision */
        @media (max-width: 900px) {
            .mission-vision {
                padding: 60px 5%;
            }

            .mv-container {
                flex-direction: column;
                gap: 30px;
            }

            .mission-vision h2 {
                font-size: 2.2rem;
                margin-bottom: 30px;
            }

            .mv-card {
                padding: 40px 20px;
            }
        }

        /* ---------- OUR SOLUTIONS SECTION ---------- */
        .our-solutions {
            padding: 80px 10%;
            background: #ffffff;
            text-align: center;
        }

        .solutions-header {
            max-width: 800px;
            margin: 0 auto 50px;
        }

        .solutions-header h2 {
            font-size: 2.8rem;
            color: #1A1A1A;
            margin-bottom: 10px;
        }

        .solutions-header h3 {
            font-size: 1.4rem;
            color: #E63946;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .solutions-header p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .solution-card {
            background: #f8fbff;
            padding: 40px 25px;
            border-radius: 20px;
            border: 1px solid rgba(230, 57, 70, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .solution-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(230, 57, 70, 0.1);
            background: #ffffff;
            border-color: #E63946;
        }

        .solution-card i {
            font-size: 2.5rem;
            color: #E63946;
            margin-bottom: 25px;
        }

        .solution-card h4 {
            font-size: 1.5rem;
            color: #1A1A1A;
            margin-bottom: 15px;
        }

        .solution-card p {
            font-size: 1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .solution-card .btn {
            background: #E63946;
            color: #fff;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            transition: 0.3s;
        }

        .solution-card .btn:hover {
            background: #1A1A1A;
            box-shadow: 0 5px 15px rgba(26, 26, 26, 0.2);
        }

        /* Responsive Solutions */
        @media (max-width: 992px) {
            .our-solutions {
                padding: 60px 5%;
            }

            .solutions-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }

            .solutions-header h2 {
                font-size: 2.2rem;
            }
        }

        /* ---------- TEAM & CULTURE SECTION ---------- */
        .team-culture {
            padding: 100px 10%;
            background: linear-gradient(135deg, #FFF5F5 0%, #FFF5F5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .team-culture-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
            max-width: 1200px;
            width: 100%;
        }

        .team-culture-content {
            flex: 1;
            text-align: left;
        }

        .team-culture-content .accent-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            color: #E63946;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .team-culture-content h2 {
            font-size: 2.8rem;
            color: #1A1A1A;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .team-culture-content h3 {
            font-size: 1.4rem;
            color: #E63946;
            font-weight: 600;
            margin-bottom: 30px;
            line-height: 1.4;
        }

        .team-culture-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 25px;
            text-align: justify;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease-out;
        }

        .team-culture-content p.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .team-culture-image {
            flex: 1;
            display: flex;
            justify-content: center;
            opacity: 0;
            transform: scale(0.95);
            transition: all 1s ease-out;
        }

        .team-culture-image.animated {
            opacity: 1;
            transform: scale(1);
        }

        .team-culture-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
        }

        /* Responsive Team & Culture */
        @media (max-width: 992px) {
            .team-culture {
                padding: 80px 5%;
            }

            .team-culture-container {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }

            .team-culture-content {
                text-align: center;
            }

            .team-culture-content .accent-header {
                justify-content: center;
            }

            .team-culture-content h2 {
                font-size: 2.2rem;
            }

            .team-culture-content p {
                text-align: center;
            }

            .team-culture-image {
                order: -1;
            }
        }

        /* ---------- CONTACT & JOIN SECTION ---------- */
        .contact-join {
            padding: 100px 10%;
            background: linear-gradient(180deg, #ffffff 0%, #FAFAFA 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .contact-join-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
            max-width: 1200px;
            width: 100%;
        }

        .contact-join-content {
            flex: 1.2;
            text-align: left;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease-out;
        }

        .contact-join-content.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-join-content h2 {
            font-size: 2.8rem;
            color: #1A1A1A;
            margin-bottom: 10px;
        }

        .contact-join-content h3 {
            font-size: 1.4rem;
            color: #E63946;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .contact-join-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 35px;
        }

        .contact-details-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-item i {
            font-size: 1.2rem;
            color: #E63946;
            margin-top: 5px;
        }

        .contact-item div h4 {
            font-size: 1rem;
            color: #1A1A1A;
            margin-bottom: 5px;
        }

        .contact-item div p,
        .contact-item div a {
            font-size: 0.95rem;
            color: #555;
            text-decoration: none;
            line-height: 1.5;
            display: block;
        }

        .contact-item div a:hover {
            color: #E63946;
        }

        .contact-join-buttons {
            display: flex;
            gap: 20px;
        }

        .contact-join-buttons .btn {
            background: #E63946;
            color: #fff;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
        }

        .contact-join-buttons .btn-secondary {
            background: transparent;
            color: #E63946;
            border: 2px solid #E63946;
        }

        .contact-join-buttons .btn:hover {
            background: #1A1A1A;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 26, 26, 0.2);
        }

        .contact-join-image {
            flex: 0.8;
            display: flex;
            justify-content: center;
            opacity: 0;
            transform: scale(0.95);
            transition: all 1s ease-out 0.2s;
        }

        .contact-join-image.animated {
            opacity: 1;
            transform: scale(1);
        }

        .contact-join-image img {
            width: 100%;
            max-width: 450px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
        }

        /* Responsive Contact & Join */
        @media (max-width: 992px) {
            .contact-join {
                padding: 80px 5%;
            }

            .contact-join-container {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }

            .contact-join-content {
                text-align: center;
            }

            .contact-details-grid {
                grid-template-columns: 1fr;
                text-align: left;
                max-width: 400px;
                margin: 0 auto 40px;
            }

            .contact-join-buttons {
                justify-content: center;
                flex-direction: column;
                align-items: center;
            }

            .contact-join-buttons .btn {
                width: 100%;
                max-width: 280px;
            }

            .contact-join-image {
                order: 2;
            }
        }

        /* ---------- FAQ SECTION ---------- */
        .faq {
            padding: 100px 10%;
            background: #FFF5F5;
        }

        .faq .container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .faq h2 {
            font-size: 2.5rem;
            color: #1A1A1A;
            margin-bottom: 15px;
        }

        .faq h2 span {
            color: #E63946;
        }

        .faq .subtitle {
            color: #555;
            margin-bottom: 50px;
        }

        .faq-accordion {
            text-align: left;
        }

        .faq-item {
            background: #fff;
            margin-bottom: 15px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
            border: 1px solid #F5F5F5;
        }

        .faq-item:hover {
            box-shadow: 0 8px 25px rgba(230, 57, 70, 0.1);
        }

        .faq-item.active {
            border-color: #E63946;
        }

        .faq-question {
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: #fff;
            transition: 0.3s;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        .faq-question i {
            color: #E63946;
            transition: 0.3s;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #fff;
        }

        .faq-answer p {
            padding: 0 25px 25px;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 768px) {
            .faq {
                padding: 60px 5%;
            }

            .faq h2 {
                font-size: 2rem;
            }
        }