:root {
    /* Color Palette - Educavo Redesign */
    --primary-color: #0C4983;
    /* New Brand Blue */
    --primary-dark: #093966;
    --secondary-color: #111111;
    /* Dark Headings */
    --accent-color: #ffbc13;
    /* Gold/Yellow stars */
    --text-main: #111111;
    /* Headings */
    --text-muted: #444444;
    /* Body Text */
    --text-light: #888888;
    --bg-main: #ffffff;
    --bg-light: #f8fafd;
    /* Light Blue-Grey */
    --bg-dark: #111111;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing & Layout */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --max-width: 1280px;
    --border-radius: 12px;

    /* Transitions & Shadows */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-muted);
    /* Use muted dark grey for readability */
    background-color: var(--bg-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    /* Heavier weights for Educavo feel */
    line-height: 1.3;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Global Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    /* Pill Shape */
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #d99a0d;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}



/* Header & Nav */
.header {
    width: 100%;
    background-color: white;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
}

.header.sticky-header {
    box-shadow: var(--shadow-md);
    padding: 0.6rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
    color: var(--primary-color);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-fast);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Responsive basics */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1.5rem;
        box-shadow: var(--shadow-md);
        gap: 1rem;
        border-radius: 0 0 16px 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }
}

/* Hero Section (Educavo 50/50 Layout) */
.hero {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 8rem;
    overflow: hidden;
    background: radial-gradient(circle at 0% 0%, rgba(12, 73, 131, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(12, 73, 131, 0.03) 0%, transparent 50%);
}

.hero-split {
    display: block;
    position: relative;
}

.hero-text {
    width: 100%;
    max-width: 1200px;
    display: block;
    text-align: left;
    position: relative;
    padding: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.mobile-only-badge {
    display: none;
}

.hero-text .badge,
.mobile-only-badge .badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(12, 73, 131, 0.1);
    color: var(--primary-color);
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    display: block;
    font-weight: 800;
}

.hero-text .highlight {
    background: var(--primary-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 20;
}

.hero-buttons .btn {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(12, 73, 131, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}



/* Hero Image Container */
.hero-image {
    float: right;
    width: 620px;
    height: 620px;
    position: relative;
    padding: 0;
    z-index: 10;
    shape-outside: polygon(50% 0%, 90% 10%, 100% 50%, 90% 90%, 50% 100%, 10% 90%, 0% 50%, 10% 10%);
    margin-left: 0rem;
    margin-bottom: 0rem;
    background: transparent;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: -1;
    transform: rotate(45deg);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, rgba(12, 73, 131, 0.05) 0%, transparent 80%);
    border-radius: 30% 70% 70% 30% / 50% 40% 60% 50%;
    z-index: -2;
    transform: rotate(-15deg);
}

.hero-deco-elements {
    display: none !important;
}

.deco-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 20;
}

.deco-badge.top {
    top: 5%;
    right: 5%;
}

.deco-badge.bottom {
    bottom: 10%;
    left: 15%;
}

.deco-badge i {
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.deco-badge .badge-text span {
    display: block;
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1;
}

.deco-badge .badge-text small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.hero-image>img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40% !important;
    position: relative;
    left: 32px;
    z-index: 2;
    animation: none;
    background: linear-gradient(135deg, rgba(12, 73, 131, 0.1), rgba(12, 73, 131, 0.05));
    border: 3px solid #0a3c6c;
}

@keyframes morph-blob {
    0% {
        border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    }

    33% {
        border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
    }

    66% {
        border-radius: 30% 70% 70% 30% / 50% 40% 60% 50%;
    }

    100% {
        border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float-random {
    from {
        transform: translateY(0) translateX(0);
    }

    to {
        transform: translateY(-20px) translateX(10px);
    }
}

.mobile-only-img {
    display: none;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Common Section Styling */
.section-title {
    margin-bottom: var(--spacing-lg);
}

.text-center {
    text-align: center;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary-color);
}

/* About / Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid #eeeeee;
    /* Clean static border */
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    /* Soft lift on hover */
    border-color: rgba(12, 73, 131, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(32, 173, 150, 0.1);
    /* Mint green background */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem auto;
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Courses Section */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.course-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #eeeeee;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.course-img {
    position: relative;
    height: 240px;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-img img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.course-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.course-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-meta {
    display: none;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-light);
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

.course-meta span i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Footer Section */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding-top: var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.brand-col {
    grid-column: span 2;
}

@media (max-width: 992px) {
    .brand-col {
        grid-column: span 1;
    }
}

.footer-logo {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: #9ca3af;
    transition: var(--transition-fast);
}

.footer-col ul a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #9ca3af;
    margin-bottom: 1rem !important;
}

.contact-info li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Enhancing Responsive Design */

/* Tablet & Smaller Desktops */
@media (max-width: 1024px) {
    .hero-stats {
        gap: 1rem;
    }

    .stat-box {
        padding: 1.5rem 1rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .section {
        padding: var(--spacing-lg) 0;
    }



    .hero {
        padding-top: 5rem;
        min-height: auto;
        padding-bottom: 4rem;
        text-align: center;
    }

    .hero-split {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .mobile-only-badge {
        display: block;
        order: 1;
        margin-bottom: -1rem;
        /* Pull image slightly closer */
    }

    .desktop-only-badge {
        display: none !important;
    }

    .hero-image {
        float: none;
        order: 3;
        margin-top: 2rem;
        padding: 2.5rem 1rem;
        width: 100%;
        min-height: 300px;
        shape-outside: none;
        height: auto;
    }

    .hero-image img {
        width: 100%;
        max-width: 380px;
        border-width: 8px;
        border-radius: 50%;
        animation-play-state: paused;
    }

    /* Adjust decorative elements for mobile */
    .hero-image::before {
        width: 85%;
        height: 85%;
        opacity: 0.12;
    }

    .hero-image::after {
        width: 95%;
        height: 95%;
        opacity: 0.1;
    }

    .deco-badge {
        padding: 0.5rem 0.8rem;
        border-radius: 12px;
        scale: 0.8;
    }

    .deco-badge.top {
        top: 2%;
        right: 0%;
    }

    .deco-badge.bottom {
        bottom: 5%;
        left: 0%;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        order: 2;
        padding: 0 1rem;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }

    .header {
        padding: 0.75rem 0;
    }

    /* Improve mobile menu display */
    .nav-links[style*="display: flex"] {
        padding: 1.5rem;
        border-bottom: 1px solid var(--bg-light);
        border-radius: 0 0 16px 16px;
    }

    .nav-links a {
        font-size: 1.125rem;
        text-align: center;
        padding: 0.5rem 0;
    }

    .nav-links .btn {
        margin-top: 1rem;
        width: 100%;
    }

    .courses-grid,
    .features-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* Why Learn Here Section */
.why-learn {
    background-color: var(--bg-light);
}

.why-learn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-learn-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-learn-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    border: 10px solid white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.why-learn-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.why-learn-content .section-title p {
    margin: 0;
    max-width: 100%;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.why-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background-color: rgba(12, 73, 131, 0.1);
    color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all var(--transition-normal);
}

.why-item:hover .why-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.why-text h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.why-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .why-learn-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-learn-image {
        order: -1;
    }

    .why-learn-image img {
        max-width: 320px;
    }

    .why-learn-content .section-title {
        text-align: center;
    }

    .why-learn-content .section-title p {
        margin: 0 auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: var(--spacing-md) 0;
    }

    .stat-box h3 {
        font-size: 2rem;
    }
}

/* ==============================
   FAQ + Register Section
   ============================== */
.faq-register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* --- FAQ Accordion --- */
.faq-col .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.faq-col .section-title p {
    margin: 0;
    max-width: 100%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border: 1px solid #eeeeee;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.faq-item.open {
    border-color: rgba(32, 173, 150, 0.35);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Register Form Card --- */
.register-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid #eeeeee;
}

.register-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem 2rem 1.75rem;
    text-align: center;
}

.register-card-header i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.9;
}

.register-card-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.register-card-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.register-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap>i {
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    pointer-events: none;
}

.input-wrap input,
.input-wrap select {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background: var(--bg-light);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.input-wrap input:focus,
.input-wrap select:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(32, 173, 150, 0.12);
}

.select-wrap::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    color: var(--text-light);
    font-size: 0.75rem;
    pointer-events: none;
}

.register-form .btn-primary {
    margin-top: 0.25rem;
    font-size: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.register-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.register-note i {
    color: var(--primary-color);
}

/* Responsive: stack on tablet/mobile */
@media (max-width: 960px) {
    .faq-register-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-col .section-title {
        text-align: center;
    }
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-slider-wrapper {
    position: relative;
    margin-top: var(--spacing-md);
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: var(--spacing-md);
    padding: 1rem 0.5rem 3rem;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 calc(33.333% - (var(--spacing-md) * 2 / 3));
    min-width: 320px;
    scroll-snap-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(12, 73, 131, 0.1);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: rgba(12 73 131);
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.star-rating {
    display: flex;
    gap: 3px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    align-items: center;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(12, 73, 131, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - (var(--spacing-md) / 2));
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonials-container {
        padding: 0;
    }

    .slider-btn {
        display: none;
    }
}