    :root {
        --primary-color: #0f172a;
        --secondary-color: #3b82f6;
        --accent-color: #06b6d4;
        --success-color: #10b981;
        --warning-color: #f59e0b;
        --danger-color: #ef4444;
        --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        --text-dark: #1e293b;
        --text-light: #64748b;
        --text-muted: #94a3b8;
        --bg-light: #f8fafc;
        --bg-white: #ffffff;
        --border-color: #e2e8f0;
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        --border-radius-sm: 8px;
        --border-radius-md: 12px;
        --border-radius-lg: 16px;
        --border-radius-xl: 24px;
    }

    :root {
        --pp-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .tc-hero {
        background: var(--gradient-1, var(--pp-gradient));
        color: #fff;
    }

    .tc-card {
        background: #fff;
        border: 1px solid #e9eef5;
        border-radius: 14px;
        box-shadow: 0 12px 35px rgba(102, 126, 234, .08);
    }

    .toc a {
        text-decoration: none;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.7;
        color: var(--text-dark);
        font-weight: 400;
        letter-spacing: 0.01em;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.025em;
    }

    h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 800;
    }

    h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
    }

    h3 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 600;
    }

    h4 {
        font-size: clamp(1.25rem, 2.5vw, 1.5rem);
        font-weight: 600;
    }

    h5 {
        font-size: clamp(1.1rem, 2vw, 1.25rem);
        font-weight: 600;
    }

    .lead {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        font-weight: 400;
        line-height: 1.6;
        color: white;
    }

    /* Smooth Scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Navigation */
    .navbar {
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        padding: 1rem 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar.scrolled {
        background: rgba(15, 23, 42, 0.98);
        padding: 0.7rem 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    .navbar-brand {
        font-size: 1.8rem;
        font-weight: 800;
        color: #fff !important;
        display: flex;
        align-items: center;
        font-family: 'Space Grotesk', sans-serif;
    }

    .navbar-brand i {
        margin-right: 12px;
        color: var(--accent-color);
        font-size: 2rem;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 500;
        margin: 0 8px;
        padding: 8px 16px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border-radius: var(--border-radius-md);
    }

    .nav-link:hover {
        color: var(--accent-color) !important;
        background: rgba(6, 182, 212, 0.1);
    }

    .nav-link.btn {
        background: var(--gradient-1);
        color: white !important;
        border-radius: var(--border-radius-xl);
        padding: 10px 20px !important;
        margin-left: 12px;
    }

    .nav-link.btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    /* Hero Banner */
    .hero-banner {
        background: var(--gradient-hero);
        min-height: 100vh;
        display: flex;
        align-items: center;
        color: #fff;
        position: relative;
        overflow: hidden;
        padding: 120px 0 80px;
    }

    .hero-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-banner h1 {
        font-weight: 800;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #06b6d4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-banner .lead {
        font-size: clamp(1.2rem, 3vw, 1.4rem);
        margin-bottom: 1.5rem;
        opacity: 0.95;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
    }

    .hero-banner p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2.5rem;
        line-height: 1.7;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .btn-primary-custom {
        background: var(--gradient-1);
        border: none;
        padding: 16px 32px;
        font-weight: 600;
        border-radius: var(--border-radius-xl);
        color: white;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        font-size: 1.05rem;
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
        color: white;
    }

    .btn-outline-custom {
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 14px 30px;
        font-weight: 600;
        border-radius: var(--border-radius-xl);
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        font-size: 1.05rem;
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    .btn-outline-custom:hover {
        background: rgba(255, 255, 255, 0.15);
        color: white;
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    /* Hero Contact Form */
    .hero-contact-form {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: var(--border-radius-xl);
        padding: 2.5rem;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }

    .hero-contact-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-1);
    }

    .hero-contact-form h3 {
        color: var(--text-dark);
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        text-align: center;
    }

    /* Floating Animation */
    .floating {
        animation: floating 6s ease-in-out infinite;
    }

    @keyframes floating {

        0%,
        100% {
            transform: translateY(0px) rotate(0deg);
        }

        33% {
            transform: translateY(-15px) rotate(1deg);
        }

        66% {
            transform: translateY(-5px) rotate(-1deg);
        }
    }

    /* Form Styles */
    .form-control {
        border: 2px solid var(--border-color);
        border-radius: var(--border-radius-md);
        padding: 14px 16px;
        margin-bottom: 1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 0.95rem;
        font-weight: 500;
        background: var(--bg-white);
    }

    .form-control:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        background: white;
        outline: none;
    }

    .form-control::placeholder {
        color: var(--text-muted);
        font-weight: 400;
    }

    /* Modal Styles */
    .modal-content {
        border-radius: var(--border-radius-xl);
        border: none;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    }

    .modal-header {
        background: var(--gradient-1);
        color: white;
        border: none;
        padding: 1.5rem 2rem;
    }

    .modal-title {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .modal-body {
        padding: 2rem;
    }

    .btn-close {
        filter: brightness(0) invert(1);
        opacity: 0.8;

    }

    .btn-close:hover {
        opacity: 1;
    }


    .btn-submit-pop {
        background: var(--gradient-1);
        color: #fff !important;
    }

    /* Section Styles */
    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 800;
        text-align: center;
        margin-bottom: 1rem;
        color: var(--text-dark);
        position: relative;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.15rem;
        color: var(--text-light);
        margin-bottom: 4rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 400;
        line-height: 1.6;
    }

    /* Course Cards */
    .course-card,
    .service-card {
        background: var(--bg-white);
        border-radius: var(--border-radius-xl);
        padding: 2.5rem;
        box-shadow: var(--shadow-md);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid var(--border-color);
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .course-card::before,
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-1);
        transform: scaleX(0);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .course-card:hover::before,
    .service-card:hover::before {
        transform: scaleX(1);
    }

    .course-card:hover,
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: rgba(59, 130, 246, 0.2);
    }

    .card-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .course-card:nth-child(6n+1) .card-icon {
        background: var(--gradient-1);
    }

    .course-card:nth-child(6n+2) .card-icon {
        background: var(--gradient-2);
    }

    .course-card:nth-child(6n+3) .card-icon {
        background: var(--gradient-3);
    }

    .course-card:nth-child(6n+4) .card-icon {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    }

    .course-card:nth-child(6n+5) .card-icon {
        background: linear-gradient(135deg, #0abde3 0%, #006ba6 100%);
    }

    .course-card:nth-child(6n+6) .card-icon {
        background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
    }

    .service-card:nth-child(6n+1) .card-icon {
        background: var(--gradient-3);
    }

    .service-card:nth-child(6n+2) .card-icon {
        background: var(--gradient-1);
    }

    .service-card:nth-child(6n+3) .card-icon {
        background: var(--gradient-2);
    }

    .service-card:nth-child(6n+4) .card-icon {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    }

    .service-card:nth-child(6n+5) .card-icon {
        background: linear-gradient(135deg, #0abde3 0%, #006ba6 100%);
    }

    .service-card:nth-child(6n+6) .card-icon {
        background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
    }

    .card-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-align: center;
        color: var(--text-dark);
    }

    .card-text {
        color: var(--text-light);
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    /* Stats Section */
    .stats-section {
        background: var(--gradient-1);
        color: white;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .stat-item {
        text-align: center;
        margin-bottom: 2rem;
        position: relative;
    }

    .stat-number {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        display: block;
        font-family: 'Space Grotesk', sans-serif;
    }

    .stat-label {
        font-size: 1.15rem;
        opacity: 0.95;
        font-weight: 500;
        margin-top: 0.5rem;
    }

    /* About Section */
    .about-section {
        padding: 6rem 0;
        background: var(--bg-light);
    }

    .about-image {
        border-radius: var(--border-radius-xl);
        box-shadow: var(--shadow-xl);
    }

    #testimonials {
        background: #f8f9fa;
        padding: 60px 15px;
        color: var(--bs-body-color, #212529);
    }

    .section-title {
        font-weight: 700;
        font-size: 2.5rem;
        margin-bottom: 0.3rem;
        color: var(--bs-body-color, #212529);
        text-align: center;
    }

    .section-subtitle {
        font-weight: 400;
        font-size: 1.1rem;
        color: var(--bs-secondary-color, #6c757d);
        text-align: center;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-carousel-wrapper {
        overflow: hidden;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    .testimonial-carousel {
        display: flex;
        will-change: transform;
        transition: transform 0.5s ease;
        margin-left: -10px;
        margin-right: -10px;
    }

    .testimonial-card {
        background: #ffffff;
        box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 0.1);
        border-radius: 0.75rem;
        padding: 50px 15px;
        margin: 15px 5px;
        flex: 0 0 35%;
        max-width: 35%;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: inherit;
    }

    .testimonial-card img {
        max-width: 80%;
    }

    .testimonial-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 3px solid var(--bs-primary, #0d6efd);
        object-fit: cover;
        margin-bottom: 20px;
        box-shadow: 0 0.3rem 0.8rem rgb(13 110 253 / 0.3);
    }

    .testimonial-card p {
        font-size: 1rem;
        color: var(--bs-body-color, #212529);
        text-align: center;
        margin-bottom: 20px;
        flex-grow: 1;
    }


    .testimonial-card h6 {
        font-weight: 700;
        margin-bottom: 5px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }



    .testimonial-card small {
        font-size: 0.9rem;
        color: var(--bs-secondary-color, #6c757d);
    }

    .text-center .btn {
        font-weight: 600;
        border-radius: 30px;
        padding: 10px 25px;
        font-size: 1rem;
        min-width: 80px;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        background: var(--gradient-1);
        cursor: pointer;
        color: whitesmoke;
        border: none;
    }

    .text-center .btn-primary {
        box-shadow: 0 0.3rem 0.75rem rgb(13 110 253 / 0.4);
    }

    .text-center .btn-primary:hover,
    .text-center .btn-primary:focus {
        background-color: #0b5ed7;
        box-shadow: 0 0.5rem 1rem rgb(11 94 215 / 0.6);
        transform: translateY(-2px);

    }

    .text-center .btn+.btn {
        margin-left: 1rem;
    }

    /* Responsive: 2 cards on md, 1 card on sm */
    @media (max-width: 991px) {
        .testimonial-card {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (max-width: 575px) {
        .testimonial-card {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }


    /* CTA Sections */
    .cta-section {
        background: var(--gradient-2);
        color: white;
        padding: 5rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .cta-section h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .cta-section .btn:hover {
        color: white;
        transform: translateY(-2px);

    }

    /* Contact Form */
    .contact-form {
        background: var(--bg-white);
        border-radius: var(--border-radius-xl);
        padding: 3rem;
        box-shadow: var(--shadow-xl);
        border: 1px solid var(--border-color);
    }

    /* Footer */
    .footer {
        background: var(--primary-color);
        color: white;
        padding: 4rem 0 2rem;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: var(--text-muted);
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 400;
    }

    .footer-links a:hover {
        color: var(--accent-color);
    }

    .footer p {
        margin-left: 18px;
    }

    .social-icons {
        display: flex;
        gap: 1rem;
        justify-content: start;
        margin-left: 18px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }

    .social-icons a:hover {
        background: var(--accent-color);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    /* Accordion Styles */
    .accordion-item {
        border: none;
        margin-bottom: 1rem;
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
    }

    .accordion-item:hover {
        box-shadow: var(--shadow-lg);
    }

    .accordion-button {
        background: var(--bg-white);
        border: none;
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--text-dark);
        padding: 1.5rem 2rem;
    }

    .accordion-button:not(.collapsed) {
        background: var(--gradient-1);
        color: white;
    }

    .accordion-body {
        padding: 1.5rem 2rem;
        color: var(--text-light);
        line-height: 1.7;
    }

    /* Alert Styles */
    .alert {
        border: none;
        border-radius: var(--border-radius-md);
        padding: 1rem 1.5rem;
        font-weight: 500;
    }

    .alert-success {
        background: rgba(16, 185, 129, 0.1);
        color: var(--success-color);
        border-left: 4px solid var(--success-color);
    }

    .alert-danger {
        background: rgba(239, 68, 68, 0.1);
        color: var(--danger-color);
        border-left: 4px solid var(--danger-color);
    }

    /* Loading Spinner */
    .spinner {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: white;
        animation: spin 1s ease-in-out infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    /* Back to Top Button */
    #backToTop {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        border-radius: 50%;
        width: 55px;
        height: 55px;
        display: none;
        background: var(--gradient-1);
        border: none;
        box-shadow: var(--shadow-xl);
        color: white;
        font-size: 1.2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #backToTop:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .hero-banner {
            text-align: center;
            padding: 100px 0 60px;
        }

        .hero-contact-form {
            margin-top: 3rem;
        }

        .cta-buttons {
            justify-content: center;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .btn-primary-custom,
        .btn-outline-custom {
            width: 100%;
            max-width: 280px;
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .navbar-nav {
            text-align: center;
            padding-top: 1rem;
        }

        .hero-banner {
            padding: 80px 0 40px;
        }

        .hero-contact-form {
            padding: 2rem;
        }

        .stats-section .row>div {
            margin-bottom: 2rem;
        }

        .contact-form {
            padding: 2rem;
        }

        .modal-body {
            padding: 1.5rem;
        }

        .course-card,
        .service-card {
            margin-bottom: 2rem;
            padding: 2rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .social-icons {
            justify-content: center;
            margin-top: 1.5rem;
        }
    }

    @media (max-width: 576px) {
        .hero-banner h1 {
            font-size: 2.2rem;
        }

        .hero-contact-form {
            padding: 1.5rem;
        }

        .course-card,
        .service-card {
            padding: 1.5rem;
        }

        .contact-form {
            padding: 1.5rem;
        }

        .cta-buttons {
            flex-direction: column;
            gap: 0.8rem;
        }

        .btn-primary-custom,
        .btn-outline-custom {
            width: 100%;
            text-align: center;
            justify-content: center;
        }
    }

    /* Custom Utilities */
    .text-gradient {
        background: var(--gradient-1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .bg-glass {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }


    /* Privacy Policy Section */


    .pp-hero {
        background: var(--gradient-1);
        color: #fff;
        position: relative;
        overflow: hidden;
        margin-top: 120px;
    }

    .pp-hero .hero-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: saturate(140%) blur(6px);
        border-radius: 14px;
    }

    .row a:hover {

        transform: translate(0, -3px);
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    }

    .feature-card {
        border: 0;
        border-radius: 14px;
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.08);
    }

    .badge-tile {
        display: flex;
        align-items: center;
        gap: .6rem;
        padding: .9rem 1rem;
        border: 1px solid #e9eef5;
        border-radius: 12px;
        background: #fff;
    }

    .badge-tile i {
        font-size: 1.2rem;
        color: #667eea;
    }

    .section-title {
        font-weight: 700;
    }


    /* Request form of privacy policy */

    /* Theme tokens (use your existing :root if already defined) */
    :root {
        --primary-color: #0f172a;
        --accent-color: #06b6d4;
        --text-dark: #1e293b;
        --text-light: #64748b;
        --bg-white: #ffffff;
        --border-color: #e2e8f0;
        --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --border-radius-md: 12px;
        --border-radius-xl: 24px;
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
    }

    /* Card container for the form */
    .contact-form {
        background: var(--bg-white);
        border-radius: var(--border-radius-xl);
        padding: 2.5rem;
        box-shadow: var(--shadow-xl);
        border: 1px solid var(--border-color);
    }

    /* Uniform control height and colors */
    .form-control.form-control-lg {
        min-height: 54px;
        /* fallback if form-control-lg not enough in some UIs */
        border: 2px solid var(--border-color);
        border-radius: var(--border-radius-md);
        padding: 14px 16px;
        font-weight: 500;
        color: var(--text-dark);
        background: #fff;
    }

    .form-control::placeholder {
        color: var(--text-light);
    }

    /* Focus state consistent with theme */
    .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
        outline: none;
        background: #fff;
    }

    /* Taller message area to match visual rhythm */
    textarea.form-control {
        min-height: 140px;
    }

    /* Primary gradient button */
    .btn-primary-custom {
        background: var(--gradient-1);
        border: none;
        padding: 16px 32px;
        font-weight: 600;
        border-radius: var(--border-radius-xl);
        color: #fff;
        text-decoration: none;
        transition: transform .25s ease, box-shadow .25s ease;
        box-shadow: 0 10px 30px rgba(102, 126, 234, .3);
        display: inline-flex;
        align-items: center;
        gap: .5rem;
    }

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(102, 126, 234, .4);
        color: #fff;
    }

    /* Optional: full-width button on small screens */
    @media (max-width: 576px) {
        .btn-primary-custom {
            width: 100%;
            justify-content: center;
        }
    }


    /* Terms and Conditions Page */

    /* Terms & Disclaimer Cards (reuse Privacy style) */
    .terms-card,
    .disclaimer-card {
        background: var(--bg-white);
        border-radius: var(--radius);
        padding: 2rem;
        margin-bottom: 1.5rem;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }

    .terms-card h2,
    .disclaimer-card h2 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        color: var(--primary);
    }

    .terms-card:hover,
    .disclaimer-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }