   :root {
            --primary: #219A7D;
            --primary-dark: #1a7a63;
            --primary-light: #4cbda3;
            --background: #E7F8F1;
            --background-light: #f5fdfa;
            --heading: #212121;
            --text: #666666;
            --success: #28A745;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.15);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --transition-slow: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: linear-gradient(135deg, #f5fdfa 0%, #e7f8f1 100%);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            color: var(--heading);
            font-weight: 700;
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 16px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(33, 154, 125, 0.3);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(33, 154, 125, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(33, 154, 125, 0.3);
        }

        /* Advanced Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            padding: 18px 0;
            transition: var(--transition-slow);
            transform: translateY(0);
        }

        .navbar.hidden {
            transform: translateY(-100%);
        }

        .navbar.scrolled {
            padding: 12px 0;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            width: 170px;
            height: 90px;
            
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo i {
            margin-right: 8px;
            font-size: 24px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 35px;
            position: relative;
        }

        .nav-links a {
            font-weight: 500;
            transition: var(--transition);
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a {
    position: relative;
}

/* Active text color */
.nav-links a.active {
    color: var(--primary);
}

/* Active underline */
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

        .nav-buttons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
            z-index: 1001;
        }

        .mobile-menu:hover {
            color: var(--primary);
            transform: scale(1.1);
        }

        /* Mobile Menu Overlay */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100%;
            background-color: var(--white);
            z-index: 1000;
            padding: 80px 30px 30px;
            transition: right 0.4s ease;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }



        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
            margin-bottom: 30px;
        }

        .mobile-nav-links li {
            margin-bottom: 20px;
        }

        .mobile-nav-links a {
            font-size: 18px;
            font-weight: 500;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .mobile-nav-links a:hover {
            color: var(--primary);
            padding-left: 10px;
        }

        .mobile-nav-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-nav-buttons .btn {
            text-align: center;
        }

        .close-menu {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-menu:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }

        /* Enhanced Hero Section */
        .hero {
            padding: 180px 0 100px;
            background: linear-gradient(135deg, #f5fdfa 0%, #e7f8f1 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(33, 154, 125, 0.1) 0%, rgba(33, 154, 125, 0) 70%);
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(33, 154, 125, 0.08) 0%, rgba(33, 154, 125, 0) 70%);
            z-index: 0;
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 52px;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--heading) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 35px;
            color: var(--text);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .hero-image {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            perspective: 1200px;
        }

        .mobile-showcase-container {
            position: relative;
            width: 320px;
            height: 640px;
        }

        .mobile-device {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
            border-radius: 40px;
            box-shadow: var(--shadow-heavy);
            overflow: hidden;
            transform-style: preserve-3d;
            transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 2;
        }

        .mobile-device::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background-color: #333;
            border-radius: 10px;
            z-index: 3;
        }

        .mobile-screen {
            position: absolute;
            top: 25px;
            left: 15px;
            right: 15px;
            bottom: 25px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
        }

     .screen-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1) rotate(2deg);
    transition: opacity 1s ease, transform 1.5s ease;
    border-radius: 15px;
}

.slide.active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.mobile-showcase-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.control-dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.control-dot.active {
    background-color: var(--primary, #219A7D);
    transform: scale(1.3);
}


        /* Trusted By Section */
        .trusted-by {
            padding: 80px 0;
            text-align: center;
            background-color: var(--white);
            position: relative;
        }

        .trusted-by::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }

        .trusted-by h3 {
            font-size: 18px;
            margin-bottom: 40px;
            color: var(--text);
            font-weight: 500;
        }

        .client-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 50px;
        }

        .client-logo {
            height: 45px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--text);
        }

        .client-logo img{
            height: 100px;
            width: 100px;
        }

        .client-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: translateY(-5px) scale(1.05);
            color: var(--primary);
        }

        /* Features Section */
        .features {
            padding: 120px 0;
            background-color: var(--background);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: 42px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            border-radius: 2px;
        }

        .section-header p {
            max-width: 600px;
            margin: 0 auto;
            font-size: 18px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .feature-card {
            background-color: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-heavy);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--white);
            font-size: 32px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

   /* FOOTER */
.footer {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 70px 20px 20px;
    overflow: hidden;
}

/* Animated gradient wave top */
.footer::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('https://svgshare.com/i/15AQ.svg') repeat-x;
    background-size: cover;
    animation: wave 6s linear infinite;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1000px; }
}

.footer .container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/* Logo Section */
.footer-logo .logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.footer-logo .logo i {
    background: var(--white);
    color: var(--primary);
    padding: 8px;
    border-radius: 12px;
    font-size: 1.1rem;
}

.footer-logo .logo:hover {
    transform: translateY(-3px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    animation: slideUp 1s ease forwards;
    opacity: 0;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(20px); }
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    color: var(--white);
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 10px 0;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.footer-column ul li a::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column ul li a:hover::before {
    transform: translateY(-50%) scale(1);
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
}

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(10px, -15px) rotate(5deg);
            }
            50% {
                transform: translate(-5px, -10px) rotate(-5deg);
            }
            75% {
                transform: translate(-10px, 5px) rotate(3deg);
            }
            100% {
                transform: translate(0, 0) rotate(0deg);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Responsive Styles */
        @media (max-width: 1100px) {
            .hero .container {
                flex-direction: column;
                text-align: center;
            }

            .hero-content {
                margin-bottom: 80px;
                max-width: 100%;
            }

            .hero h1 {
                font-size: 44px;
            }

            .mobile-showcase-container {
                width: 300px;
                height: 600px;
            }

            .hero-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 992px) {
            .nav-links,
            .nav-buttons {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .hero {
                padding: 150px 0 80px;
            }

            .hero h1 {
                font-size: 38px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-links {
                flex-direction: column;
                gap: 30px;
            }

            .footer-column {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 34px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
            }

            .section-header h2 {
                font-size: 36px;
            }

            .mobile-showcase-container {
                width: 280px;
                height: 560px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 30px;
            }

            .section-header h2 {
                font-size: 30px;
            }

            .mobile-showcase-container {
                width: 260px;
                height: 520px;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .hero p {
                font-size: 16px;
            }

            .client-logos {
                gap: 30px;
            }

            .client-logo {
                height: 35px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }

            .mobile-showcase-container {
                width: 240px;
                height: 480px;
            }

            .screen-content {
                padding: 20px;
            }

            .list-item {
                padding: 12px;
            }

            .feature-card {
                padding: 25px 15px;
            }
        }
        /* --------------------------------------------------------------------- Privacy Section --------------------------------------------------------------------------------------- */

        
        .privacy-section {
                    background: linear-gradient(135deg, #f5fdfa 0%, #e7f8f1 100%);
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 100px;
            padding: 60px 20px;
        }

        /* Header Styles */
        .privacy-header {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.3s;
        }

        .privacy-header h1 {
            font-size: 2.8rem;
            color: var(--heading);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .privacy-header h1::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .effective-date {
            background: var(--primary-light);
            color: var(--white);
            display: inline-block;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 15px;
            box-shadow: var(--shadow);
        }

        /* Content Layout */
        .privacy-content {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
        }

        @media (max-width: 992px) {
            .privacy-content {
                grid-template-columns: 1fr;
            }
            
            .privacy-nav {
        display: none;
            }
        }

        /* Navigation Styles */
        .privacy-nav {
            position: sticky;
            top: 30px;
            align-self: start;
            background: var(--white);
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateX(-30px);
            animation: fadeInLeft 1s forwards 0.6s;
        }

        .privacy-nav h3 {
            color: var(--heading);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--background);
        }

        .nav-links-policy {
            list-style: none;
        }

        .nav-links-policy li {
            margin-bottom: 12px;
        }

        .nav-links-policy a {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text);
            padding: 10px 15px;
            border-radius: 8px;
            transition: var(--transition);
        }

        .nav-links-policy a:hover {
            background: var(--background-light);
            color: var(--primary);
            transform: translateX(5px);
        }

        .nav-links-policy a.active {
            background: var(--primary-light);
            color: var(--white);
        }

        .nav-links-policy i {
            width: 20px;
            text-align: center;
        }

        /* Policy Content Styles */
        .policy-content {
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.9s;
        }

        .policy-intro {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .policy-intro p {
            margin-bottom: 15px;
        }

        .policy-section {
            margin-bottom: 50px;
            scroll-margin-top: 30px;
        }

        .policy-section h2 {
            color: var(--heading);
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--background);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .policy-section h2 i {
            color: var(--primary);
            width: 30px;
            height: 30px;
            background: var(--background);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .policy-section p {
            margin-bottom: 15px;
        }

        .policy-section ul {
            margin: 20px 0;
            padding-left: 20px;
        }

        .policy-section li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
                list-style-type:none;
        }

        .policy-section li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
        }

        .highlight-box {
            background: var(--background-light);
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }

        .contact-info {
            background: var(--primary-light);
            color: var(--white);
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
            text-align: center;
        }

        .contact-info h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
            color: white;
        }

        .contact-details {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-item i {
            font-size: 1.2rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: var(--shadow-heavy);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 100;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .privacy-section {
                padding: 40px 15px;
            }
            
            .privacy-header h1 {
                font-size: 2.2rem;
            }
            
            .policy-content {
                padding: 25px 20px;
            }
            
            .contact-details {
                flex-direction: column;
                gap: 15px;
            }
        }


        /* --------------------------------------------------------------------- Terms And Condition Section --------------------------------------------------------------------------------------- */


                .terms-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            margin-top: 120px;
        }

        /* Header Styles */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.3s;
        }

        .section-subtitle {
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
            font-size: 1rem;
        }

        .section-title {
            font-size: 3rem;
            color: var(--heading);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .section-description {
            max-width: 700px;
            margin: 30px auto 0;
            font-size: 1.2rem;
            color: var(--text);
            opacity: 0.9;
        }

        /* Content Layout */
        .terms-content {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
        }

        @media (max-width: 992px) {
            .terms-content {
                grid-template-columns: 1fr;
            }
            
            .terms-nav {
                order: 2;
            }
        }

        @media (max-width: 992px) {
    .terms-nav {
        display: none;
    }
    
    .terms-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

        /* Navigation Styles */
        .terms-nav {
            position: sticky;
            top: 30px;
            align-self: start;
            background: var(--white);
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateX(-30px);
            animation: fadeInLeft 1s forwards 0.6s;
        }

        .terms-nav h3 {
            color: var(--heading);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--background);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .terms-nav h3 i {
            color: var(--primary);
        }

        .nav-links-terms {
            list-style: none;
        }

        .nav-links-terms li {
            margin-bottom: 12px;
        }

        .nav-links-terms a {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text);
            padding: 12px 15px;
            border-radius: 8px;
            transition: var(--transition);
            font-weight: 500;
        }

        .nav-links-terms a:hover {
            background: var(--background-light);
            color: var(--primary);
            transform: translateX(5px);
        }

        .nav-links-terms a.active {
            background: var(--primary-light);
            color: var(--white);
        }

        .nav-links-terms i {
            width: 20px;
            text-align: center;
            font-size: 0.9rem;
        }

        /* Terms Content Styles */
        .terms-container {
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.9s;
        }

        .terms-intro {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .terms-intro p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .terms-section-item {
            margin-bottom: 50px;
            scroll-margin-top: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #f0f0f0;
        }

        .terms-section-item:last-child {
            border-bottom: none;
        }

        .terms-section-item h2 {
            color: var(--heading);
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--background);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .terms-section-item h2 i {
            color: var(--primary);
            width: 40px;
            height: 40px;
            background: var(--background);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .terms-section-item p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }

        .terms-section-item ul {
            margin: 20px 0;
            padding-left: 20px;
        }

        .terms-section-item li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
            font-size: 1.05rem;
                list-style-type:none;

        }

        .terms-section-item li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
        }

        .highlight-box {
            background: var(--background-light);
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }

        .contact-info {
            background: var(--primary-light);
            color: var(--white);
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
            text-align: center;
        }

        .contact-info h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .contact-details {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-item i {
            font-size: 1.2rem;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: var(--shadow-heavy);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 100;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }

        /* Last Updated */
        .last-updated {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            color: var(--text);
            opacity: 0.8;
            font-size: 0.95rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .terms-section {
                padding: 60px 15px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .terms-container {
                padding: 25px 20px;
            }
            
            .contact-details {
                flex-direction: column;
                gap: 15px;
            }
        }


        /* --------------------------------------------------------------------- Features Section --------------------------------------------------------------------------------------- */

        .features-section {
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 100px;
            padding: 80px 20px;
        }

        /* Header Styles */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.3s;
        }

        .section-subtitle {
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
            font-size: 1rem;
        }

        .section-title {
            font-size: 2.8rem;
            color: var(--heading);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--primary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-description {
            max-width: 700px;
            margin: 30px auto 0;
            font-size: 1.1rem;
        }

        /* Hexagonal Grid Layout */
        .features-hex-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 70px;
            position: relative;
        }

        @media (max-width: 1100px) {
            .features-hex-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .features-hex-grid {
                grid-template-columns: 1fr;
            }
        }

        .hex-feature {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 2px solid transparent;
        }

        .hex-feature:nth-child(1) { animation-delay: 0.4s; }
        .hex-feature:nth-child(2) { animation-delay: 0.5s; }
        .hex-feature:nth-child(3) { animation-delay: 0.6s; }
        .hex-feature:nth-child(4) { animation-delay: 0.7s; }
        .hex-feature:nth-child(5) { animation-delay: 0.8s; }
        .hex-feature:nth-child(6) { animation-delay: 0.9s; }
        .hex-feature:nth-child(7) { 
            animation-delay: 1s; 
            grid-column: 2;
        }

        @media (max-width: 1100px) {
            .hex-feature:nth-child(7) { 
                grid-column: auto;
            }
        }

        .hex-feature::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
              background: linear-gradient(135deg, #f5fdfa 0%, #e7f8f1 100%);
;
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .hex-feature:hover::before {
            opacity: 1;
        }

        .hex-feature:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-heavy);
            border-color: var(--primary);
        }

        .hex-icon {
            width: 90px;
            height: 90px;
            background: var(--background);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            transition: var(--transition);
            border: 3px solid var(--primary-light);
        }

        .hex-feature:hover .hex-icon {
            background: var(--primary);
transform: rotate(2.5deg) scale(1.08);
        }

        .hex-icon i {
            font-size: 2.2rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .hex-feature:hover .hex-icon i {
            color: var(--white);
        }

        .hex-content h3 {
            font-size: 1.5rem;
            color: var(--heading);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .hex-content h3::before {
            font-size: 1.2rem;
        }

        .hex-content p {
            margin-bottom: 0;
            font-size: 1.05rem;
        }

        /* Summary Section */
        .summary-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            border-radius: 20px;
            padding: 60px 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 1.1s;
            max-width: 900px;
            margin: 0 auto;
        }

        .summary-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.05)"><polygon points="50,0 100,50 50,100 0,50"/></svg>');
            background-size: 80px;
            animation: float 20s linear infinite;
        }

        .summary-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            display: inline-block;
            animation: pulse 2s infinite;
        }

        .summary-content h2 {
            font-size: 2.3rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .summary-content h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--white);
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .summary-content p {
            font-size: 1.25rem;
            line-height: 1.8;
            margin-top: 30px;
        }

        .cta-button {
            display: inline-block;
            background: var(--white);
            color: var(--primary);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            margin-top: 35px;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-20px, -20px) rotate(360deg); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.3rem;
            }
            
            .summary-section {
                padding: 50px 30px;
            }
        }

        @media (max-width: 768px) {
            .features-section {
                padding: 60px 15px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hex-feature {
                padding: 30px 20px;
            }
            
            .summary-content h2 {
                font-size: 1.9rem;
            }
            
            .summary-content p {
                font-size: 1.1rem;
            }
        }

        /* --------------------------------------------------------------------- Pricing Section --------------------------------------------------------------------------------------- */

        
        .pricing-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
            width: 100%;
            margin-top: 120px;
        }

        /* Header Styles */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-subtitle {
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
            font-size: 1rem;
        }

        .section-title {
            font-size: 2.8rem;
            color: var(--heading);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .section-description {
            max-width: 700px;
            margin: 30px auto 0;
            font-size: 1.2rem;
            color: var(--text);
            opacity: 0.9;
        }

        /* Pricing Cards Layout */
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
            align-items: stretch;
        }

        @media (min-width: 1200px) {
            .pricing-cards {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .pricing-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        /* Popular Plan Styling */
        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.03);
            z-index: 2;
        }

        .pricing-card.popular:hover {
            transform: scale(1.03) translateY(-10px);
        }

        
       .popular-badge {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);

    background: var(--primary);
    color: var(--white);
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(33, 154, 125, 0.3);
    width: 250px;
    text-align: center;
    border-radius: 24px;
}
        /* Card Header */
        .card-header {
            padding: 40px 30px 30px;
            text-align: center !important;
            position: relative !important;
            background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .popular .card-header {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            color: var(--white);
        }

        .plan-name {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 15px;
            
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 5px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 5px;
            color: black;
        }
        

        .currency {
            font-size: 1.5rem;
            margin-top: 8px;
        }

        .plan-period {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .plan-description {
            font-size: 1rem;
            line-height: 1.5;
            max-width: 250px;
            margin: 0 auto;
        }

        /* Card Body */
        .card-body {
            padding: 30px !important;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .features-list {
            list-style: none;
            margin-bottom: 30px;
            flex-grow: 1;
        }

        .features-list li {
            margin-bottom: 15px ;
            display: flex;
            align-items: flex-start !important;
            gap: 12px;
            font-size: 1rem;
            padding: 8px 0 !important;
        }

        .features-list li:last-child {
            margin-bottom: 0;
        }

        .feature-icon-pricing {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .feature-included .feature-icon-pricing {
            background: var(--success);
            color: var(--white);
            font-size: 0.7rem;
        }

        .feature-excluded .feature-icon-pricing {
            background: #f5f5f5;
            color: #ccc;
            font-size: 0.8rem;
        }

        .feature-excluded {
            color: #bbb;
        }

        /* CTA Button */
        .cta-button {
            display: block;
            text-align: center;
            padding: 18px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            margin-top: auto;
            letter-spacing: 0.5px;
        }

        .standard-button {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(33, 154, 125, 0.3);
        }

        .standard-button:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(33, 154, 125, 0.4);
        }



   

        /* Feature Comparison Table */
        .feature-comparison {
            margin: 80px 0;
        }

        .comparison-title {
            text-align: center;
            font-size: 2.2rem;
            color: var(--heading);
            margin-bottom: 40px;
            font-weight: 700;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .comparison-table th,
        .comparison-table td {
            padding: 20px 15px;
            text-align: center;
            border-bottom: 1px solid #f0f0f0;
        }

        .comparison-table thead th {
            background: var(--primary);
            color: var(--white);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 25px 15px;
        }

        .comparison-table thead th:first-child {
            background: var(--heading);
            text-align: left;
        }

        .comparison-table tbody tr:hover {
            background: var(--background-light);
        }

        .comparison-table tbody td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--heading);
            background: var(--background-light);
        }

        .plan-highlight {
            background: #14544F !important;
            color: white !important;
            font-weight: 700;
        }

        .feature-value {
            font-weight: 600;
            color: var(--heading);
        }

        .plan-highlight span{
            color: white !important;
        }

        .custom-plan {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
        }

        .custom-plan .feature-value {
            color: var(--white);
            font-weight: 700;
        }

        /* FAQ Section */
        .faq-section {
            margin-top: 80px;
        }

        .faq-title {
            text-align: center;
            font-size: 2.2rem;
            color: var(--heading);
            margin-bottom: 50px;
            font-weight: 700;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-heavy);
        }

        .faq-question {
            padding: 25px 30px;
            font-weight: 600;
            color: var(--heading);
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            transition: var(--transition);
            color: var(--primary);
            font-size: 1.2rem;
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition-slow);
            color: var(--text);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            padding: 0 30px 30px;
            max-height: 500px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Trust Badges */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 200px;
        }

        .badge-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: var(--white);
            font-size: 1.5rem;
        }

        .badge-text {
            font-weight: 600;
            color: var(--heading);
            margin-bottom: 5px;
        }

        .badge-desc {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 992px) {
            .section-title {
                font-size: 2.3rem;
            }
            
            .plan-price {
                font-size: 2.5rem;
            }
            
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }

        @media (max-width: 768px) {
            .pricing-section {
                padding: 40px 15px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .plan-price {
                font-size: 2.2rem;
            }
            
            .card-header {
                padding: 30px 20px 20px;
            }
            
            .card-body {
                padding: 25px 20px;
            }
            
            .comparison-title, .faq-title {
                font-size: 1.8rem;
            }
            
            .trust-badges {
                gap: 30px;
            }
        }


        /* --------------------------------------------------------------------- Contact Section --------------------------------------------------------------------------------------- */


        .contact-section {
            margin: 0 auto;
            margin-top: 120px;
            max-width: 1200px;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        @media (max-width: 992px) {
            .contact-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        /* Welcome Content Styles */
        .welcome-content {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.3s;
        }

        .welcome-content h2 {
            font-size: 2.5rem;
            color: var(--heading);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .welcome-content h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--primary);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }

        .welcome-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .contact-info {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: var(--transition);
            padding: 15px;
            border-radius: 10px;
        }

        .info-item:hover {
            background: var(--background-light);
            transform: translateX(10px);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .info-text h3 {
            color: var(--heading);
            margin-bottom: 5px;
        }

        /* Form Styles */
        .contact-form-container {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow-heavy);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.6s;
            position: relative;
            overflow: hidden;
        }

        .contact-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
        }

        .form-header {
            margin-bottom: 30px;
            text-align: center;
        }

        .form-header h3 {
            font-size: 1.8rem;
            color: var(--heading);
            margin-bottom: 10px;
        }

        .form-header p {
            color: var(--text);
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--heading);
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
            background: var(--background-light);
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(33, 154, 125, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(33, 154, 125, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Success Message */
        .success-message {
            background: var(--success);
            color: var(--white);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            margin-top: 20px;
            display: none;
            animation: fadeIn 0.5s ease;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: var(--primary-light);
            opacity: 0.1;
            z-index: -1;
        }

        .floating-1 {
            top: 10%;
            right: 5%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-2 {
            bottom: 15%;
            left: 5%;
            animation: float 8s ease-in-out infinite 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .contact-section {
                padding: 40px 15px;
            }
            
            .welcome-content h2 {
                font-size: 2rem;
            }
            
            .contact-form-container {
                padding: 30px 20px;
            }
            
            .info-item {
                padding: 10px;
            }
        }

        /* --------------------------------------------------------------------- Login Register --------------------------------------------------------------------------------------- */

         
    .main-sr-cont{
        background:var(--background);
        min-height:100vh;
        display:flex;
        align-items:center;
        justify-content:center;
        padding:20px;
        overflow-x: hidden;
    }
   

         /* Card container */
    .sr-container{
        width:100%;
        max-width:1100px;
        background:var(--white);
        border-radius:18px;
        overflow:hidden;
        box-shadow:var(--shadow-heavy);
        display:flex;
        gap:0;
        align-items:stretch;
        align-items:center;
        justify-content:center;
        position: relative;
        transform: translateY(20px);
        opacity: 0;
        animation: sr-container-fade-in 0.6s forwards;
        
    }

    @keyframes sr-container-fade-in {
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Welcome (left) */
    .sr-welcome{
        width:40%;
        padding:40px;
        background:linear-gradient(135deg,var(--primary),var(--primary-dark));
        color:var(--white);
        position:relative;
        border-top-left-radius:18px;
        border-bottom-left-radius:18px;
        overflow:hidden;
        transform: translateX(-10px);
        opacity: 0;
        animation: sr-welcome-slide-in 0.6s 0.2s forwards;
    }
    
    @keyframes sr-welcome-slide-in {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    .sr-welcome::before,
    .sr-welcome::after{
        content:"";
        position:absolute;
        border-radius:50%;
        background:rgba(255,255,255,0.08);
        transition: var(--transition);
    }
    .sr-welcome::before{
        width:300px;height:300px;top:-120px;right:-120px;
        animation: sr-blob-1 8s infinite alternate ease-in-out;
    }
    .sr-welcome::after{
        width:200px;height:200px;bottom:-80px;left:-80px;
        animation: sr-blob-2 10s infinite alternate ease-in-out;
    }
    
    @keyframes sr-blob-1 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(-20px, 20px) scale(1.05); }
    }
    
    @keyframes sr-blob-2 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(15px, -15px) scale(1.1); }
    }
    
    .sr-welcome-icon{
        font-size:72px;
        opacity:.9;
        margin-bottom:20px;
        transform: translateY(20px);
        opacity: 0;
        animation: sr-icon-fade-in 0.6s 0.5s forwards;
    }
    .sr-welcome img{
        height: 120px;
        width: 250px;
        filter: invert(1) brightness(2);
        display: block;
        margin: 0 auto;
    }
    
    @keyframes sr-icon-fade-in {
        to {
            transform: translateY(0);
            opacity: 0.9;
        }
    }
    
    .sr-welcome-title{
        font-size:28px;
        font-weight:700;
        margin-bottom:8px;
        transform: translateY(20px);
        opacity: 0;
        animation: sr-title-fade-in 0.6s 0.6s forwards;
    }
    
    @keyframes sr-title-fade-in {
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .sr-welcome-subtitle{
        opacity:.95;
        font-size:15px;
        line-height:1.4;
        transform: translateY(20px);
        opacity: 0;
        animation: sr-subtitle-fade-in 0.6s 0.7s forwards;
    }
    
    @keyframes sr-subtitle-fade-in {
        to {
            transform: translateY(0);
            opacity: 0.95;
        }
    }

    /* Form area (right) */
    .sr-form{
        width:60%;
        padding:36px 40px;
        position:relative;
        border-top-right-radius:18px;
        border-bottom-right-radius:18px;
        background:transparent;
        transform: translateX(10px);
        opacity: 0;
        animation: sr-form-slide-in 0.6s 0.3s forwards;
    }
    
    @keyframes sr-form-slide-in {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    /* Panes (only one visible at a time) */
    .sr-pane{
        display:none;
        opacity:0;
        transition: var(--transition);
        transform: translateY(8px);
    }
    .sr-pane.active{
        display:block;
        opacity:1;
        transform:none;
    }

    .sr-form-title{
        font-size:26px;
        color:var(--heading);
        font-weight:600;
        margin-bottom:6px;
        transition: var(--transition);
    }
    .sr-form-subtitle{
        font-size:14px;
        color:var(--text);
        margin-bottom:20px;
        transition: var(--transition);
    }

    .sr-form-group{
        margin-bottom:14px;
        transition: var(--transition);
    }
    .sr-form-group label{
        display:block;
        margin-bottom:6px;
        color:var(--heading);
        font-weight:500;
        font-size:14px;
        transition: var(--transition);
    }
    .sr-form-control{
        width:100%;
        padding:11px 14px;
        border-radius:8px;
        border:1px solid #e6e6e6;
        background:#f5fdfa;
        font-size:14px;
        transition: var(--transition);
    }
    .sr-form-control:focus{
        outline:none;
        box-shadow:0 0 0 4px rgba(33,154,125,0.07);
        border-color:var(--primary);
        transform: translateY(-2px);
    }

    .sr-form-row{
        display:flex;
        gap:14px;
        transition: var(--transition);
    }
    .sr-form-row .sr-form-group{
        flex:1;
    }

    .sr-checkbox-group{
        display:flex;
        align-items:center;
        gap:8px;
        margin-bottom:10px;
        color:var(--text);
        transition: var(--transition);
    }
    .sr-btn{
        width:100%;
        padding:13px;
        border-radius:8px;
        background:var(--primary);
        color:var(--white);
        font-weight:600;
        border:none;
        cursor:pointer;
        margin-top:8px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }
    .sr-btn:hover{
        background:var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(33, 154, 125, 0.3);
    }
    .sr-btn:active{
        transform: translateY(0);
    }
    
    .sr-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }
    
    .sr-btn:focus:not(:active)::after {
        animation: sr-ripple 1s ease-out;
    }
    
    @keyframes sr-ripple {
        0% {
            transform: scale(0, 0);
            opacity: 0.5;
        }
        20% {
            transform: scale(25, 25);
            opacity: 0.3;
        }
        100% {
            transform: scale(40, 40);
            opacity: 0;
        }
    }

    .sr-social-login{
        text-align:center;
        margin-top:20px;
        border-top:1px solid #eee;
        padding-top:18px;
        color:var(--text);
        transition: var(--transition);
    }
    .sr-social-icons{
        display:flex;
        justify-content:center;
        gap:12px;
        margin-top:12px;
    }
    .sr-social-icon{
        width:40px;
        height:40px;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        background:#f5fdfa;
        cursor:pointer;
        transition: var(--transition);
    }
    .sr-social-icon:hover{
        background: var(--primary);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .sr-toggle-container{
        text-align:center;
        margin-top:18px;
        color:var(--text);
        transition: var(--transition);
    }
    .sr-toggle-link{
        color:var(--primary);
        cursor:pointer;
        font-weight:600;
        text-decoration:none;
        transition: var(--transition);
        position: relative;
    }
    .sr-toggle-link:hover{
        color: var(--primary-dark);
    }
    .sr-toggle-link::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: var(--primary);
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.3s ease;
    }
    .sr-toggle-link:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    /* Registration scroll inside pane */
    .sr-register-scroll{
        max-height:60vh;
        overflow-y:auto;
        padding-right:6px;
        transition: var(--transition);
    }
    .sr-register-scroll::-webkit-scrollbar{width:6px}
    .sr-register-scroll::-webkit-scrollbar-thumb{background:rgba(33,154,125,0.25);border-radius:10px; transition: var(--transition);}
    .sr-register-scroll::-webkit-scrollbar-thumb:hover{background:rgba(33,154,125,0.5);}

    /* Form field animations */
    .sr-form-group {
        animation: sr-form-field-fade-in 0.5s forwards;
        opacity: 0;
        transform: translateY(10px);
    }
    
    @keyframes sr-form-field-fade-in {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Stagger animation for form fields */
    .sr-pane.active .sr-form-group:nth-child(1) { animation-delay: 0.1s; }
    .sr-pane.active .sr-form-group:nth-child(2) { animation-delay: 0.15s; }
    .sr-pane.active .sr-form-group:nth-child(3) { animation-delay: 0.2s; }
    .sr-pane.active .sr-form-group:nth-child(4) { animation-delay: 0.25s; }
    .sr-pane.active .sr-form-group:nth-child(5) { animation-delay: 0.3s; }
    .sr-pane.active .sr-form-group:nth-child(6) { animation-delay: 0.35s; }
    .sr-pane.active .sr-form-group:nth-child(7) { animation-delay: 0.4s; }
    .sr-pane.active .sr-form-group:nth-child(8) { animation-delay: 0.45s; }
    .sr-pane.active .sr-form-group:nth-child(9) { animation-delay: 0.5s; }
    .sr-pane.active .sr-form-group:nth-child(10) { animation-delay: 0.55s; }
    .sr-pane.active .sr-form-group:nth-child(11) { animation-delay: 0.6s; }
    .sr-pane.active .sr-form-group:nth-child(12) { animation-delay: 0.65s; }
    .sr-pane.active .sr-form-group:nth-child(13) { animation-delay: 0.7s; }
    
    /* Responsive */
    @media (max-width: 992px){
        .sr-welcome{width:35%}
        .sr-form{width:65%}
    }
    @media (max-width:768px){
        .sr-container{
            flex-direction:column;
            max-width:520px;
            border-radius:12px;
        }
        .sr-welcome{
            width:100%;
            border-top-left-radius:12px;
            border-top-right-radius:12px;
        }
        .sr-form{
            width:100%;
            border-bottom-left-radius:12px;
            border-bottom-right-radius:12px;
        }
    }


/* CSS For About Us Page */
@media (max-width: 768px) {
    .section {
        padding: 20px !important;
    }
    .about-us p{
        font-size: 14px;
        text-align: justify;
    }
    .about-us ul li {
        text-align: left;
    }
    .footer .container {
        padding: 0 10px;
    }
}