    :root {
        --primary-color: #1e3a8a;
        --secondary-color: #60a5fa;
        --accent-color: #3b82f6;
        --dark-color: #0f172a;
        --light-color: #f8fafc;
        --border-color: #e2e8f0;
        --gradient-1: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        --gradient-2: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        --gradient-3: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
        --gradient-4: linear-gradient(135deg, #10b9817b 0%, #3b82f6 100%);
    }

    body {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        background: var(--light-color);
        color: var(--dark-color);
    }

    .navbar {
        background: var(--dark-color);
        color: #fff;
    }

    .navbar a,
    .navbar span {
        color: #fff;
    }

    .btn-enquiry {
        background: var(--accent-color);
        border: none;
        border-radius: 50px;
        padding: .5rem 1.5rem;
        font-weight: 600;
        color: #fff;
    }

    .btn-enquiry:hover {
        background: #2563eb;
        color: #fff;
    }

    .hero {
        background: radial-gradient(circle at top, var(--secondary-color)20%, var(--light-color)65%);
        padding: 6rem 0 4rem;
    }

    .hero-slide {
        min-height: 320px;
    }

    .hero-badge {
        background: rgba(15, 23, 42, .9);
        color: #e5e7eb;
        border-radius: 50px;
        padding: .35rem .9rem;
        font-size: .8rem;
    }

    .section-title {
        font-weight: 700;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    .section-sub {
        color: #6b7280;
        max-width: 650px;
    }

    .soft-shadow {
        box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    }

    .bg-soft-blue {
        background: #e0f2fe;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gradient-2);
        color: #fff;
        font-size: 1.4rem;
    }

    .bg-soft-dark {
        background: var(--dark-color);
        color: #e5e7eb;
    }

    .customer-logo {
        max-height: 60px;
        object-fit: contain;
    }

    .cta-full {
        background: var(--gradient-1);
        color: #fff;
        padding: 4rem 0;
    }

    .testimonial-card {
        background: #fff;
        border: none;
        border-radius: 1rem;
        box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
    }

    .badge-soft {
        background: #eff6ff;
        color: var(--primary-color);
        border-radius: 999px;
        padding: .3rem .8rem;
        font-size: .75rem;
    }

    .footer {
        background: #020617;
        color: #94a3b8;
        padding: 2.5rem 0 1.5rem;
        font-size: .9rem;
    }

    .footer a {
        color: #e5e7eb;
        text-decoration: none;
    }

    .footer a:hover {
        text-decoration: underline;
    }

    .navbar {
        background: #ffffff;
        color: #0f172a;
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    }

    .navbar a,
    .navbar span {
        color: #0f172a;
    }

    .navbar-brand span {
        color: #0f172a;
    }

    /* Colorful icons in navbar */
    .navbar i.bi-telephone-outbound {
        color: #16a34a;
        /* green */
    }

    .navbar i.bi-envelope {
        color: #2563eb;
        /* blue */
    }

    /* Login button */
    .btn-login {
        background: var(--gradient-2);
        border: none;
        border-radius: 50px;
        padding: .5rem 1.5rem;
        font-weight: 600;
        color: #fff;
        display: inline-flex;
        align-items: center;
        gap: .4rem;
    }

    .btn-login i {
        font-size: 1.1rem;
    }

    .btn-login:hover {
        opacity: .95;
        color: #fff;
    }

    .hero {
        background: var(--gradient-1);
        padding: 6rem 0 4rem;
        color: #fff;
    }

    .hero-badge {
        background: rgba(255, 255, 255, .15);
        color: #fff;
        border-radius: 50px;
        padding: .35rem .9rem;
        font-size: .8rem;
    }

    .btn-hero-primary {
        background: #fff;
        border: none;
        border-radius: 50px;
        padding: .6rem 1.8rem;
        font-weight: 600;
        color: var(--primary-color);
    }

    .btn-hero-primary:hover {
        background: #f1f5f9;
        color: var(--primary-color);
    }

    /* Hero Animation */
    .hero .carousel-item {
        transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    }

    .hero .carousel-item .row {
        animation: fadeInUp 0.8s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

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

    .hero .carousel-item.active .row {
        animation: fadeInUp 0.8s ease-out;
    }

    /* Module badges styling */
    .module-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #f1f5f9;
        border-radius: 12px;
        padding: 12px 16px;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--dark-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .module-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
    }

    .module-badge i {
        font-size: 1.4rem;
    }

    .module-badge.blue i {
        color: #3b82f6;
    }

    .module-badge.purple i {
        color: #8b5cf6;
    }

    .module-badge.pink i {
        color: #ec4899;
    }

    .module-badge.green i {
        color: #10b981;
    }

    .module-badge.orange i {
        color: #f59e0b;
    }

    .module-badge.cyan i {
        color: #06b6d4;
    }


    /* About Section */
    .about-section {
        background: linear-gradient(180deg, var(--light-color) 0%, #fff 100%);
        position: relative;
        overflow: hidden;
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: var(--gradient-2);
        opacity: 0.08;
        border-radius: 50%;
        filter: blur(60px);
    }

    .about-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 250px;
        height: 250px;
        background: var(--gradient-3);
        opacity: 0.06;
        border-radius: 50%;
        filter: blur(50px);
    }

    .about-content {
        position: relative;
        z-index: 1;
    }

    .about-subtitle {
        display: inline-block;
        background: var(--gradient-2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    .about-title {
        font-weight: 800;
        font-size: 2.4rem;
        color: var(--dark-color);
        margin-bottom: 1.5rem;
    }

    .about-text {
        color: #64748b;
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .about-highlight {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
        border-left: 4px solid var(--accent-color);
        padding: 1.2rem 1.5rem;
        border-radius: 0 12px 12px 0;
        margin: 1.5rem 0;
    }

    .about-highlight p {
        margin: 0;
        color: var(--dark-color);
        font-weight: 500;
    }

    /* Stats Cards */
    .stat-card {
        background: #fff;
        border-radius: 20px;
        padding: 1.8rem;
        text-align: center;
        box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
        border: 1px solid rgba(226, 232, 240, 0.8);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-2);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(30, 58, 138, 0.15);
    }

    .stat-card:hover::before {
        transform: scaleX(1);
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        margin: 0 auto 1rem;
        color: #fff;
    }

    .stat-icon.blue {
        background: var(--gradient-2);
    }

    .stat-icon.purple {
        background: var(--gradient-3);
    }

    .stat-icon.green {
        background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    }

    .stat-icon.orange {
        background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        background: var(--gradient-1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.2;
    }

    .stat-label {
        color: #64748b;
        font-size: 0.9rem;
        margin-top: 0.3rem;
    }

    /* About Animation */
    .fade-in-left {
        opacity: 0;
        transform: translateX(-40px);
        animation: fadeInLeft 0.8s ease forwards;
    }

    .fade-in-right {
        opacity: 0;
        transform: translateX(40px);
        animation: fadeInRight 0.8s ease forwards;
    }

    .fade-in-up-delay {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .fade-in-up-delay:nth-child(1) {
        animation-delay: 0.1s;
    }

    .fade-in-up-delay:nth-child(2) {
        animation-delay: 0.2s;
    }

    .fade-in-up-delay:nth-child(3) {
        animation-delay: 0.3s;
    }

    .fade-in-up-delay:nth-child(4) {
        animation-delay: 0.4s;
    }

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

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



    /* Why Need Section */
    .why-section {
        background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
        position: relative;
        overflow: hidden;
        color: #fff;
    }

    .why-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .why-section::after {
        content: '';
        position: absolute;
        bottom: -150px;
        right: -150px;
        width: 400px;
        height: 400px;
        background: var(--gradient-3);
        opacity: 0.1;
        border-radius: 50%;
        filter: blur(80px);
    }

    .why-content {
        position: relative;
        z-index: 1;
    }

    .why-subtitle {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.4rem 1rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 1rem;
        color: var(--secondary-color);
    }

    .why-title {
        font-weight: 800;
        font-size: 2.4rem;
        color: #fff;
        margin-bottom: 1rem;
    }

    .why-description {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
        max-width: 700px;
    }

    /* Problem Cards */
    .problem-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 2rem;
        height: 100%;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .problem-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .problem-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 255, 255, 0.25);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }

    .problem-card:hover::before {
        opacity: 1;
    }

    .problem-card:hover .problem-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .problem-icon {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        transition: transform 0.4s ease;
        position: relative;
        z-index: 1;
    }

    .problem-icon.red {
        background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
    }

    .problem-icon.yellow {
        background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    }

    .problem-icon.blue {
        background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }

    .problem-number {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 4rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.05);
        line-height: 1;
    }

    .problem-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.8rem;
        position: relative;
        z-index: 1;
    }

    .problem-text {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }

    .problem-list {
        list-style: none;
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 1;
    }

    .problem-list li {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        padding: 0.4rem 0;
        padding-left: 1.5rem;
        position: relative;
    }

    .problem-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--secondary-color);
    }

    /* Why Animation */
    .scale-in {
        opacity: 0;
        transform: scale(0.9);
        animation: scaleIn 0.6s ease forwards;
    }

    .scale-in:nth-child(1) {
        animation-delay: 0.1s;
    }

    .scale-in:nth-child(2) {
        animation-delay: 0.25s;
    }

    .scale-in:nth-child(3) {
        animation-delay: 0.4s;
    }

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

    /* CTA inside why section */
    .why-cta {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 2rem 2.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .why-cta-text h4 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 0.3rem;
    }

    .why-cta-text p {
        color: rgba(255, 255, 255, 0.6);
        margin: 0;
    }

    .btn-glow {
        background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        border: none;
        border-radius: 50px;
        padding: 0.8rem 2rem;
        font-weight: 600;
        color: #fff;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
        transition: all 0.3s ease;
    }

    .btn-glow:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
        color: #fff;
    }

    .scale-in:nth-child(4) {
        animation-delay: 0.55s;
    }

    .scale-in:nth-child(5) {
        animation-delay: 0.7s;
    }

    .scale-in:nth-child(6) {
        animation-delay: 0.85s;
    }


    /* Features Section */
    .features-section {
        background: linear-gradient(180deg, #fff 0%, var(--light-color) 100%);
        position: relative;
        overflow: hidden;
    }

    .features-section::before {
        content: '';
        position: absolute;
        top: 100px;
        left: -200px;
        width: 500px;
        height: 500px;
        background: var(--gradient-2);
        opacity: 0.05;
        border-radius: 50%;
        filter: blur(80px);
    }

    .features-section::after {
        content: '';
        position: absolute;
        bottom: 50px;
        right: -150px;
        width: 400px;
        height: 400px;
        background: var(--gradient-3);
        opacity: 0.05;
        border-radius: 50%;
        filter: blur(60px);
    }

    .features-content {
        position: relative;
        z-index: 1;
    }

    .features-subtitle {
        display: inline-block;
        background: var(--gradient-2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    .features-title {
        font-weight: 800;
        font-size: 2.4rem;
        color: var(--dark-color);
        margin-bottom: 1rem;
    }

    .features-description {
        color: #64748b;
        font-size: 1.1rem;
        max-width: 700px;
    }

    /* Feature Card */
    .feature-card {
        background: #fff;
        border-radius: 20px;
        padding: 1.5rem;
        height: 100%;
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-2);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(30, 58, 138, 0.12);
        border-color: transparent;
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-card:hover .feature-card-icon {
        transform: scale(1.1);
    }

    .feature-card-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .feature-card-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: #fff;
        transition: transform 0.4s ease;
        flex-shrink: 0;
    }

    .feature-card-icon.gradient-1 {
        background: var(--gradient-1);
    }

    .feature-card-icon.gradient-2 {
        background: var(--gradient-2);
    }

    .feature-card-icon.gradient-3 {
        background: var(--gradient-3);
    }

    .feature-card-icon.gradient-4 {
        background: var(--gradient-4);
    }

    .feature-card-icon.green {
        background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    }

    .feature-card-icon.orange {
        background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    }

    .feature-card-icon.red {
        background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    }

    .feature-card-icon.cyan {
        background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    }

    .feature-card-icon.indigo {
        background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    }

    .feature-card-icon.rose {
        background: linear-gradient(135deg, #f43f5e 0%, #fb7185 100%);
    }

    .feature-card-icon.teal {
        background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
    }

    .feature-card-icon.amber {
        background: linear-gradient(135deg, #f59e0b 0%, #fcd34d 100%);
    }

    .feature-card-badge {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
        color: var(--primary-color);
        font-size: 0.7rem;
        font-weight: 600;
        padding: 0.3rem 0.7rem;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .feature-card-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--dark-color);
        margin-bottom: 0.5rem;
    }

    .feature-card-text {
        color: #64748b;
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0;
    }

    /* Feature Animation */
    .feature-animate {
        opacity: 0;
        transform: translateY(30px);
        animation: featureFadeUp 0.5s ease forwards;
    }

    .feature-animate:nth-child(1) {
        animation-delay: 0.05s;
    }

    .feature-animate:nth-child(2) {
        animation-delay: 0.1s;
    }

    .feature-animate:nth-child(3) {
        animation-delay: 0.15s;
    }

    .feature-animate:nth-child(4) {
        animation-delay: 0.2s;
    }

    .feature-animate:nth-child(5) {
        animation-delay: 0.25s;
    }

    .feature-animate:nth-child(6) {
        animation-delay: 0.3s;
    }

    .feature-animate:nth-child(7) {
        animation-delay: 0.35s;
    }

    .feature-animate:nth-child(8) {
        animation-delay: 0.4s;
    }

    .feature-animate:nth-child(9) {
        animation-delay: 0.45s;
    }

    .feature-animate:nth-child(10) {
        animation-delay: 0.5s;
    }

    .feature-animate:nth-child(11) {
        animation-delay: 0.55s;
    }

    .feature-animate:nth-child(12) {
        animation-delay: 0.6s;
    }

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

    /* Module Counter */
    .module-counter {
        background: var(--gradient-1);
        border-radius: 16px;
        padding: 1.5rem 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
        margin-top: 3rem;
    }

    .counter-item {
        text-align: center;
        color: #fff;
    }

    .counter-number {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
    }

    .counter-label {
        font-size: 0.85rem;
        opacity: 0.8;
        margin-top: 0.3rem;
    }





    /* Customers Section */
    .customers-section {
        background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
        position: relative;
        overflow: hidden;
        color: #fff;
    }

    .customers-section::before {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
        pointer-events: none;
    }

    .customers-content {
        position: relative;
        z-index: 1;
    }

    .customers-subtitle {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.4rem 1rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 1rem;
        color: var(--secondary-color);
    }

    .customers-title {
        font-weight: 800;
        font-size: 2.4rem;
        color: #fff;
        margin-bottom: 1rem;
    }

    .customers-description {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
        max-width: 700px;
    }

    /* Customer Card */
    .customer-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 2.5rem 2rem;
        text-align: center;
        height: 100%;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .customer-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .customer-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 255, 255, 0.25);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }

    .customer-card:hover::before {
        opacity: 1;
    }

    .customer-card:hover .customer-logo-wrapper {
        transform: scale(1.08);
    }

    /* Logo Wrapper - BIGGER */
    .customer-logo-wrapper {
        width: 140px;
        height: 140px;
        border-radius: 20px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        padding: 20px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        transition: transform 0.4s ease;
        position: relative;
        z-index: 1;
    }

    .customer-logo-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    /* Placeholder - BIGGER */
    .customer-logo-placeholder {
        width: 140px;
        height: 140px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 3rem;
        color: #fff;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        transition: transform 0.4s ease;
        position: relative;
        z-index: 1;
    }

    .customer-logo-placeholder.blue {
        background: var(--gradient-2);
    }

    .customer-logo-placeholder.purple {
        background: var(--gradient-3);
    }

    .customer-card:hover .customer-logo-placeholder {
        transform: scale(1.08);
    }

    .customer-name {
        font-size: 1.2rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.4rem;
        position: relative;
        z-index: 1;
    }

    .customer-type {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.6);
        position: relative;
        z-index: 1;
        margin-bottom: 1rem;
    }

    .customer-badge {
        display: inline-block;
        background: rgba(16, 185, 129, 0.2);
        color: #34d399;
        font-size: 0.72rem;
        font-weight: 600;
        padding: 0.3rem 0.8rem;
        border-radius: 50px;
        margin-top: 0.5rem;
        position: relative;
        z-index: 1;
    }

    /* Customer Animation */
    .customer-animate {
        opacity: 0;
        transform: translateY(40px);
        animation: customerFadeUp 0.6s ease forwards;
    }

    .customer-animate:nth-child(1) {
        animation-delay: 0.1s;
    }

    .customer-animate:nth-child(2) {
        animation-delay: 0.2s;
    }

    .customer-animate:nth-child(3) {
        animation-delay: 0.3s;
    }

    .customer-animate:nth-child(4) {
        animation-delay: 0.4s;
    }

    .customer-animate:nth-child(5) {
        animation-delay: 0.5s;
    }

    .customer-animate:nth-child(6) {
        animation-delay: 0.6s;
    }

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

    /* Trust Stats */
    .trust-stats {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 2rem;
        margin-top: 3rem;
    }

    .trust-stat-item {
        text-align: center;
    }

    .trust-stat-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: var(--gradient-2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: #fff;
        margin: 0 auto 0.8rem;
    }

    .trust-stat-number {
        font-size: 1.8rem;
        font-weight: 800;
        color: #fff;
        line-height: 1;
    }

    .trust-stat-label {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 0.3rem;
    }





    /* Pricing Section */
    .pricing-section {
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        color: var(--dark-color);
        position: relative;
        overflow: hidden;
    }

    .pricing-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08) 0, transparent 45%),
            radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.06) 0, transparent 50%);
        opacity: .6;
        pointer-events: none;
    }

    .pricing-content {
        position: relative;
        z-index: 1;
    }

    .pricing-subtitle {
        display: inline-block;
        background: var(--gradient-2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        padding: .35rem 1rem;
        font-size: .85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: .8rem;
    }

    .pricing-title {
        font-weight: 800;
        font-size: 2.4rem;
        margin-bottom: 1rem;
        color: var(--dark-color);
    }

    .pricing-description {
        color: #64748b;
        font-size: 1.05rem;
        max-width: 700px;
    }

    /* Cards */
    .pricing-card {
        background: #fff;
        border-radius: 24px;
        border: 1px solid #e2e8f0;
        padding: 2.2rem 2rem;
        height: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
        transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pricing-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), transparent 55%);
        opacity: 0;
        transition: opacity .4s ease;
    }

    .pricing-card-inner {
        position: relative;
        z-index: 1;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        border-color: #93c5fd;
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    }

    .pricing-card:hover::before {
        opacity: 1;
    }

    .pricing-tag {
        display: inline-flex;
        align-items: center;
        gap: .35rem;
        padding: .25rem .7rem;
        border-radius: 999px;
        font-size: .7rem;
        text-transform: uppercase;
        letter-spacing: .5px;
        background: #eff6ff;
        border: 1px solid #dbeafe;
        color: var(--primary-color);
        margin-bottom: .6rem;
    }

    .pricing-tag.badge-popular {
        background: var(--gradient-2);
        border: none;
        color: #fff;
    }

    .plan-name {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: .2rem;
        color: var(--dark-color);
    }

    .plan-caption {
        font-size: .85rem;
        color: #64748b;
        margin-bottom: 1rem;
    }

    .plan-price {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary-color);
    }

    .plan-price span {
        font-size: .9rem;
        font-weight: 500;
        color: #64748b;
    }

    .pricing-divider {
        height: 1px;
        background: linear-gradient(to right, transparent, #e2e8f0, transparent);
        margin: 1.4rem 0 1.1rem;
    }

    .pricing-features {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem;
        font-size: .9rem;
    }

    .pricing-features li {
        display: flex;
        align-items: flex-start;
        gap: .6rem;
        color: #334155;
        margin-bottom: .45rem;
    }

    .pricing-features i {
        margin-top: .18rem;
        color: #22c55e;
    }

    .btn-pricing {
        width: 100%;
        border-radius: 999px;
        padding: .75rem 1.2rem;
        font-weight: 600;
        border: 1px solid #cbd5e1;
        background: transparent;
        color: var(--dark-color);
        transition: all .25s ease;
    }

    .btn-pricing:hover {
        background: var(--dark-color);
        color: #fff;
        border-color: var(--dark-color);
    }

    .btn-pricing-primary {
        background: var(--gradient-2);
        border: none;
        color: #fff;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.25);
    }

    .btn-pricing-primary:hover {
        opacity: .95;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(59, 130, 246, 0.35);
    }

    /* Animation */
    .pricing-animate {
        opacity: 0;
        transform: translateY(30px);
        animation: pricingUp .6s ease forwards;
    }

    .pricing-animate:nth-child(1) {
        animation-delay: .1s;
    }

    .pricing-animate:nth-child(2) {
        animation-delay: .25s;
    }

    .pricing-animate:nth-child(3) {
        animation-delay: .4s;
    }

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


    /* Testimonial Section */
    .testimonial-section {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        position: relative;
        overflow: hidden;
        color: #fff;
    }

    .testimonial-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.25) 0, transparent 40%),
            radial-gradient(circle at 85% 75%, rgba(236, 72, 153, 0.2) 0, transparent 50%);
        animation: bgPulse 8s ease-in-out infinite alternate;
    }

    @keyframes bgPulse {
        to {
            opacity: .7;
        }
    }

    .testimonial-content {
        position: relative;
        z-index: 1;
    }

    .testimonial-subtitle {
        display: inline-block;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: .35rem 1rem;
        border-radius: 999px;
        font-size: .85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--secondary-color);
        margin-bottom: .8rem;
        animation: fadeInScale .6s ease;
    }

    .testimonial-title {
        font-weight: 800;
        font-size: 2.4rem;
        margin-bottom: .8rem;
        animation: fadeInUp .7s ease;
    }

    .testimonial-description {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.05rem;
        max-width: 700px;
        animation: fadeInUp .8s ease;
    }

    /* Cards in row */
    .testimonial-row {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .testimonial-card-wrapper {
        flex: 1 1 calc(50% - 1rem);
        min-width: 280px;
    }

    /* Card */
    .testimonial-card {
        background: rgba(15, 23, 42, 0.7);
        backdrop-filter: blur(12px);
        border-radius: 24px;
        padding: 2.2rem 2rem;
        border: 1px solid rgba(148, 163, 184, 0.25);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        position: relative;
        overflow: hidden;
        height: 100%;
        transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
        animation: cardSlideUp .8s ease forwards;
        opacity: 0;
    }

    .testimonial-card:nth-child(1) {
        animation-delay: .2s;
    }

    .testimonial-card:nth-child(2) {
        animation-delay: .35s;
    }

    .testimonial-card:nth-child(3) {
        animation-delay: .5s;
    }

    .testimonial-card:nth-child(4) {
        animation-delay: .65s;
    }

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

    .testimonial-card {
        transform: translateY(40px);
    }

    .testimonial-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), transparent 60%);
        opacity: 0;
        transition: opacity .4s ease;
    }

    .testimonial-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-2);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .5s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-12px);
        border-color: rgba(129, 140, 248, 0.6);
        box-shadow: 0 30px 70px rgba(59, 130, 246, 0.35);
    }

    .testimonial-card:hover::before {
        opacity: 1;
    }

    .testimonial-card:hover::after {
        transform: scaleX(1);
    }

    .testimonial-quote-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 3rem;
        color: rgba(96, 165, 250, 0.15);
        animation: quoteFloat 3s ease-in-out infinite;
    }

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

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

    .testimonial-badge {
        display: inline-flex;
        align-items: center;
        gap: .35rem;
        padding: .3rem .75rem;
        border-radius: 999px;
        font-size: .7rem;
        text-transform: uppercase;
        letter-spacing: .5px;
        background: rgba(59, 130, 246, 0.2);
        border: 1px solid rgba(96, 165, 250, 0.3);
        color: #e0f2fe;
        margin-bottom: 1rem;
        animation: badgePulse 2s ease-in-out infinite;
    }

    @keyframes badgePulse {
        0%, 100% {
            box-shadow: 0 0 0 rgba(59, 130, 246, 0);
        }

        50% {
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
        }
    }

    .testimonial-text {
        color: rgba(226, 232, 240, 0.95);
        font-size: .98rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        z-index: 1;
    }

    .testimonial-avatar {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--gradient-2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 700;
        font-size: 1.2rem;
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
        transition: transform .3s ease;
    }

    .testimonial-card:hover .testimonial-avatar {
        transform: scale(1.1) rotate(5deg);
    }

    .testimonial-author-info h5 {
        font-size: 1rem;
        margin: 0 0 .15rem;
        color: #fff;
        font-weight: 600;
    }

    .testimonial-author-info small {
        font-size: .8rem;
        color: rgba(203, 213, 225, 0.7);
    }

    .testimonial-rating {
        margin-top: .4rem;
        color: #fbbf24;
        font-size: .85rem;
        animation: starTwinkle 1.5s ease-in-out infinite;
    }

    @keyframes starTwinkle {
        0%, 100% {
            opacity: 1;
        }

        50% {
            opacity: .7;
        }
    }

    /* Floating Shapes */
    .floating-shape {
        position: absolute;
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
        pointer-events: none;
    }

    .shape-1 {
        width: 80px;
        height: 80px;
        background: rgba(59, 130, 246, 0.1);
        top: 10%;
        left: 5%;
        animation-delay: 0s;
    }

    .shape-2 {
        width: 60px;
        height: 60px;
        background: rgba(236, 72, 153, 0.08);
        bottom: 15%;
        right: 8%;
        animation-delay: 1s;
    }

    .shape-3 {
        width: 100px;
        height: 100px;
        background: rgba(16, 185, 129, 0.06);
        top: 60%;
        left: 10%;
        animation-delay: 2s;
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }

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


    /* Related Apps Section */
    .related-apps-section {
        background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .related-apps-section::before {
        content: '';
        position: absolute;
        top: -100px;
        left: -100px;
        width: 350px;
        height: 350px;
        background: var(--gradient-3);
        opacity: .08;
        border-radius: 50%;
        filter: blur(70px);
    }

    .related-apps-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        right: -80px;
        width: 300px;
        height: 300px;
        background: var(--gradient-4);
        opacity: .07;
        border-radius: 50%;
        filter: blur(65px);
    }

    .related-apps-content {
        position: relative;
        z-index: 1;
    }

    .related-apps-subtitle {
        display: inline-block;
        background: var(--gradient-3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 600;
        font-size: .9rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: .5rem;
    }

    .related-apps-title {
        font-weight: 800;
        font-size: 2.4rem;
        color: var(--dark-color);
        margin-bottom: 1rem;
    }

    .related-apps-description {
        color: #64748b;
        font-size: 1.05rem;
        max-width: 700px;
    }

    /* App Card */
    .app-card {
        background: #fff;
        border-radius: 24px;
        padding: 2.5rem 2rem;
        height: 100%;
        border: 1px solid #e2e8f0;
        box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
        position: relative;
        overflow: hidden;
        transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .app-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-3);
        transform: scaleX(0);
        transition: transform .5s ease;
    }

    .app-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(139, 92, 246, 0.2);
        border-color: transparent;
    }

    .app-card:hover::before {
        transform: scaleX(1);
    }

    .app-card:hover .app-icon-wrapper {
        transform: scale(1.1) rotate(5deg);
    }

    .app-card-header {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .app-icon-wrapper {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: #fff;
        transition: transform .4s ease;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .app-icon-wrapper.clinic {
        background: var(--gradient-3);
    }

    .app-icon-wrapper.pharmacy {
        background: var(--gradient-4);
    }

    .app-card-title-wrapper h5 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--dark-color);
        margin: 0 0 .2rem;
    }

    .app-card-title-wrapper small {
        font-size: .85rem;
        color: #64748b;
    }

    .app-description {
        color: #475569;
        font-size: .95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .app-features-list {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem;
    }

    .app-features-list li {
        display: flex;
        align-items: flex-start;
        gap: .6rem;
        color: #334155;
        font-size: .9rem;
        margin-bottom: .5rem;
        padding-left: .3rem;
    }

    .app-features-list i {
        color: #8b5cf6;
        margin-top: .2rem;
    }

    .app-cta-badge {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
        border: 1px solid rgba(139, 92, 246, 0.3);
        padding: .5rem 1rem;
        border-radius: 999px;
        font-size: .85rem;
        font-weight: 600;
        color: var(--primary-color);
        transition: all .3s ease;
        cursor: pointer;
    }

    .app-cta-badge:hover {
        background: var(--gradient-3);
        color: #fff;
        border-color: transparent;
        transform: translateX(5px);
    }

    /* App Animation */
    .app-animate {
        opacity: 0;
        transform: translateX(-40px);
        animation: appSlideIn .7s ease forwards;
    }

    .app-animate:nth-child(1) {
        animation-delay: .15s;
    }

    .app-animate:nth-child(2) {
        animation-name: appSlideInRight;
        animation-delay: .3s;
    }

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

    @keyframes appSlideInRight {
        from {
            opacity: 0;
            transform: translateX(40px);
        }

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


    /* Footer */
    .footer {
        background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
        color: #94a3b8;
        position: relative;
        overflow: hidden;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(148, 163, 184, 0.3), transparent);
    }

    .footer::after {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: var(--gradient-2);
        opacity: .05;
        border-radius: 50%;
        filter: blur(80px);
    }

    .footer-content {
        position: relative;
        z-index: 1;
        padding: 3rem 0 1.5rem;
    }

    .footer-brand {
        display: flex;
        align-items: center;
        gap: .8rem;
        margin-bottom: 1rem;
    }

    .footer-brand img {
        height: 40px;
    }

    .footer-brand-text h6 {
        color: #fff;
        font-weight: 700;
        font-size: 1.1rem;
        margin: 0 0 .2rem;
    }

    .footer-brand-text p {
        color: #94a3b8;
        font-size: .85rem;
        margin: 0;
        line-height: 1.5;
    }

    .footer-section-title {
        color: #fff;
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        padding-bottom: .5rem;
    }

    .footer-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--gradient-2);
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: .6rem;
    }

    .footer-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: .9rem;
        transition: all .3s ease;
        display: inline-flex;
        align-items: center;
        gap: .4rem;
    }

    .footer-links a:hover {
        color: #fff;
        transform: translateX(4px);
    }

    .footer-links a i {
        font-size: .75rem;
        opacity: 0;
        transition: opacity .3s ease;
    }

    .footer-links a:hover i {
        opacity: 1;
    }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: .7rem;
        margin-bottom: .8rem;
        color: #94a3b8;
        font-size: .9rem;
    }

    .footer-contact-item i {
        width: 20px;
        color: var(--secondary-color);
        margin-top: .15rem;
        font-size: 1rem;
    }

    .footer-contact-item a {
        color: #94a3b8;
        text-decoration: none;
        transition: color .3s ease;
    }

    .footer-contact-item a:hover {
        color: #fff;
    }

    .footer-social {
        display: flex;
        gap: .8rem;
        margin-top: 1rem;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(148, 163, 184, 0.1);
        border: 1px solid rgba(148, 163, 184, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #94a3b8;
        font-size: .95rem;
        transition: all .3s ease;
    }

    .footer-social a:hover {
        background: var(--gradient-2);
        border-color: transparent;
        color: #fff;
        transform: translateY(-3px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(148, 163, 184, 0.15);
        padding-top: 1.5rem;
        margin-top: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-bottom-left {
        color: #64748b;
        font-size: .85rem;
    }

    .footer-bottom-links {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .footer-bottom-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: .85rem;
        transition: color .3s ease;
    }

    .footer-bottom-links a:hover {
        color: #fff;
    }

    /* Footer Animation */
    .footer-animate {
        opacity: 0;
        transform: translateY(20px);
        animation: footerUp .6s ease forwards;
    }

    .footer-animate:nth-child(1) {
        animation-delay: .1s;
    }

    .footer-animate:nth-child(2) {
        animation-delay: .2s;
    }

    .footer-animate:nth-child(3) {
        animation-delay: .3s;
    }

    .footer-animate:nth-child(4) {
        animation-delay: .4s;
    }

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


    /* Enquiry Modal */
    .modal-content {
        border: none;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3);
    }

    .modal-header {
        background: var(--gradient-1);
        color: #fff;
        padding: 1.8rem 2rem;
        border: none;
        position: relative;
    }

    .modal-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(to right, #60a5fa, #8b5cf6, #ec4899);
    }

    .modal-title {
        font-weight: 700;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        gap: .6rem;
    }

    .modal-title i {
        font-size: 1.5rem;
    }

    .btn-close {
        filter: brightness(0) invert(1);
        opacity: .8;
    }

    .btn-close:hover {
        opacity: 1;
        transform: rotate(90deg);
        transition: all .3s ease;
    }

    .modal-body {
        padding: 2.5rem 2rem;
        background: #f8fafc;
    }

    .form-floating {
        position: relative;
        margin-bottom: 1.2rem;
    }

    .form-floating .form-control {
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        padding: 1rem .9rem;
        font-size: .95rem;
        background: #fff;
        transition: all .3s ease;
        height: auto;
    }

    .form-floating .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        background: #fff;
    }

    .form-floating label {
        color: #64748b;
        font-size: .9rem;
        padding: .8rem .9rem;
    }

    .form-floating .form-control:focus~label,
    .form-floating .form-control:not(:placeholder-shown)~label {
        color: var(--accent-color);
        transform: scale(.85) translateY(-1.8rem) translateX(.15rem);
        background: #f8fafc;
        padding: 0 .5rem;
    }

    .form-icon {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        font-size: 1.1rem;
        pointer-events: none;
        z-index: 4;
    }

    .form-control:focus~.form-icon {
        color: var(--accent-color);
    }

    .btn-submit {
        width: 100%;
        background: var(--gradient-2);
        border: none;
        border-radius: 12px;
        padding: .9rem;
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .6rem;
        transition: all .3s ease;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        margin-top: 1.5rem;
    }

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
        color: #fff;
    }

    .btn-submit i {
        font-size: 1.1rem;
        transition: transform .3s ease;
    }

    .btn-submit:hover i {
        transform: translateX(4px);
    }

    .modal-footer {
        background: #fff;
        border: none;
        padding: 1.5rem 2rem;
        justify-content: flex-start;
    }

    .modal-footer-text {
        display: flex;
        align-items: flex-start;
        gap: .6rem;
        font-size: .82rem;
        color: #64748b;
        line-height: 1.6;
        margin: 0;
    }

    .modal-footer-text i {
        color: var(--accent-color);
        margin-top: .15rem;
        font-size: .9rem;
    }

    /* Form Animation */
    .form-floating {
        animation: formSlideUp .4s ease forwards;
        opacity: 0;
    }

    .form-floating:nth-child(1) {
        animation-delay: .1s;
    }

    .form-floating:nth-child(2) {
        animation-delay: .2s;
    }

    .form-floating:nth-child(3) {
        animation-delay: .3s;
    }

    .form-floating:nth-child(4) {
        animation-delay: .4s;
    }

    @keyframes formSlideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    .btn-submit {
        animation: formSlideUp .5s ease forwards;
        animation-delay: .5s;
        opacity: 0;
    }

    /* Modal Backdrop Enhancement */
    .modal-backdrop.show {
        opacity: .6;
        backdrop-filter: blur(4px);
    }
/* Toast Container */
.toast-container{
  position:fixed;
  top:90px;
  right:30px;
  z-index:9999;
}
.toast{
  min-width:420px;
  border-radius:16px;
  box-shadow:0 20px 60px rgba(15,23,42,0.25);
  border:none;
  overflow:hidden;
  animation:toastSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes toastSlideIn{
  from{
    transform:translateX(120%);
    opacity:0;
  }
  to{
    transform:translateX(0);
    opacity:1;
  }
}

/* Success Toast */
.toast.success{
  background:#d1fae5;
  border-left:5px solid #10b981;
}
.toast.success .toast-header{
  background:#d1fae5;
  color:#065f46;
  border:none;
  padding:16px 20px;
  font-weight:700;
  font-size:15px;
}
.toast.success .toast-header i{
  color:#10b981;
  font-size:22px;
  margin-right:10px;
}
.toast.success .btn-close{
  filter:brightness(0) saturate(100%) invert(13%) sepia(18%) saturate(3207%) hue-rotate(130deg);
  opacity:.7;
}
.toast.success .btn-close:hover{
  opacity:1;
  transform:scale(1.1);
}
.toast.success .toast-body{
  background:#d1fae5;
  color:#065f46;
  padding:14px 20px 18px;
  font-size:14px;
  line-height:1.6;
}
.toast.success .toast-body strong{
  color:#047857;
}

/* Error Toast */
.toast.error{
  background:#fecdd3;
  border-left:5px solid #ef4444;
}
.toast.error .toast-header{
  background:#fecdd3;
  color:#7f1d1d;
  border:none;
  padding:16px 20px;
  font-weight:700;
  font-size:15px;
}
.toast.error .toast-header i{
  color:#dc2626;
  font-size:22px;
  margin-right:10px;
}
.toast.error .btn-close{
  filter:brightness(0) saturate(100%) invert(10%) sepia(72%) saturate(4257%) hue-rotate(347deg);
  opacity:.7;
}
.toast.error .btn-close:hover{
  opacity:1;
  transform:scale(1.1);
}
.toast.error .toast-body{
  background:#fecdd3;
  color:#7f1d1d;
  padding:14px 20px 18px;
  font-size:14px;
  line-height:1.6;
}
.toast.error .toast-body strong{
  color:#991b1b;
}

/* Close button animation */
.toast .btn-close{
  transition:all .3s ease;
}
