:root {
    --primary-color: #7b114d;
    --primary-tint: #c03062;
    --primary-dark: #5a0c38;
    --primary-light: #f5e6ee;
    --on-primary: #ffffff;

    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --text-white: #ffffff;

    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;

    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    --transition-base: all 0.3s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --section-padding: 100px 0;
    --container-max: 1320px;

    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-tint) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(123, 17, 77, 0.9) 0%, rgba(192, 48, 98, 0.85) 100%);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-light);
}

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

.img-fluid {
    width: 100%;
    height: auto;
}

.w-100 {
    width: 100%;
}

.mt-5 {
    margin-top: 3rem;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.title-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin-bottom: 20px;
    border-radius: 2px;
}

.title-divider.center {
    margin-left: auto;
    margin-right: auto;
}

.title-divider.light {
    background: var(--on-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 700px;
}

.section-header .section-description {
    margin: 0 auto;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--on-primary);
    box-shadow: 0 4px 15px rgba(123, 17, 77, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 17, 77, 0.4);
    color: var(--on-primary);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--on-primary);
    border: 2px solid var(--on-primary);
}

.btn-secondary-custom:hover {
    background: var(--on-primary);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.main-header.scrolled {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.main-header.scrolled .nav-link {
    color: var(--text-dark);
}

.main-header.scrolled .logo {
    color: var(--primary-color);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--on-primary);
    transition: var(--transition-base);
}

.logo span {
    color: var(--primary-tint);
}

.logo img {
    height: 40px;
    /* filter: brightness(0) invert(1); */
}

.main-header.scrolled .logo img {
    filter: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--on-primary);
    color: #000;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-tint);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--on-primary);
    background: #ffffff;
    transition: var(--transition-base);
}

.main-header.scrolled .nav-toggle span {
    background: var(--primary-color);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/hero-new.webp') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(123, 17, 77, 0.5) 0%, rgba(192, 48, 98, 0.25) 100%); */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 100%);
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--on-primary);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--on-primary);
    margin-bottom: 24px;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--on-primary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--on-primary);
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--on-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        top: 10px;
        opacity: 1;
    }

    50% {
        top: 30px;
        opacity: 0.5;
    }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    background: var(--bg-white);
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.about-content {
    padding-left: 40px;
}

.stats-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 8px;
    font-weight: 500;
}

/* ==========================================
   WHAT WE DO SECTION
   ========================================== */
.what-we-do-section {
    background: var(--bg-light);
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
    height: 100%;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: var(--on-primary);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ==========================================
   PROGRAMS SECTION
   ========================================== */
.programs-section {
    background: var(--bg-white);
}

.programs-slider {
    margin-top: 40px;
}

.program-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 0 15px;
    transition: var(--transition-base);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.program-image .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--on-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}

.program-content {
    padding: 30px;
}

.program-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.program-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.program-location svg {
    width: 16px;
    height: 16px;
}

.program-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.program-features {
    margin-bottom: 24px;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-medium);
}

.program-features svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

/* Slick Slider Custom Styles */
.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 50px;
    color: var(--primary-color);
}

/* ==========================================
   WHY CHOOSE SECTION
   ========================================== */
.why-choose-section {
    position: relative;
    background: var(--bg-dark);
    color: var(--on-primary);
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/university.jpg') center/cover no-repeat fixed;
    opacity: 0.1;
    z-index: 0;
}

.dark-section {
    position: relative;
    z-index: 1;
}

.why-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

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

.why-icon svg {
    width: 32px;
    height: 32px;
    color: var(--on-primary);
}

.why-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--on-primary);
}

.why-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ==========================================
   PARTNERSHIPS SECTION
   ========================================== */
.partnerships-section {
    background: var(--bg-white);
}

.partners-grid {
    margin-top: 40px;
}

.partner-logo {
    padding: 30px;
    background: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.partner-logo img {
    max-height: 80px;
    width: auto;
    /* filter: grayscale(100%); */
    opacity: 1;
    transition: var(--transition-base);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-logo:hover img {
    /* filter: grayscale(0%); */
    opacity: 1;
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.how-it-works-section {
    background: var(--bg-light);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 20px;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--on-primary);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-medium);
    line-height: 1.7;
}

.step-connector {
    position: absolute;
    top: 120px;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: -1;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--primary-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* ==========================================
   OUTCOMES SECTION
   ========================================== */
.outcomes-section {
    background: var(--bg-white);
}

.outcomes-content {
    padding-right: 40px;
}

.outcome-list {
    margin-top: 30px;
}

.outcome-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.outcome-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.outcome-item:hover .outcome-icon {
    background: var(--gradient-primary);
}

.outcome-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    transition: var(--transition-base);
}

.outcome-item:hover .outcome-icon svg {
    color: var(--on-primary);
}

.outcome-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.outcome-text p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.outcomes-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.outcomes-image img {
    transition: var(--transition-smooth);
}

.outcomes-image:hover img {
    transform: scale(1.05);
}

/* ==========================================
   ELIGIBILITY SECTION
   ========================================== */
.eligibility-section {
    background: var(--bg-light);
}

.eligibility-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.eligibility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.eligibility-card.featured {
    border: 2px solid var(--primary-color);
}

.eligibility-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--on-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.eligibility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.eligibility-card:hover .eligibility-icon {
    background: var(--gradient-primary);
}

.eligibility-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary-color);
    transition: var(--transition-base);
}

.eligibility-card:hover .eligibility-icon svg {
    color: var(--on-primary);
}

.eligibility-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.eligibility-description {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.eligibility-list {
    text-align: left;
}

.eligibility-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-medium);
}

.eligibility-list svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* ==========================================
   HIGHLIGHTS SECTION
   ========================================== */
.highlights-section {
    background: var(--bg-white);
}

.highlights-grid {
    margin-top: 40px;
}

.highlight-card {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    cursor: pointer;
}

.highlight-image {
    width: 100%;
    height: 100%;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: var(--gradient-overlay);
    transform: translateY(60%);
    transition: var(--transition-base);
}

.highlight-card:hover .highlight-overlay {
    transform: translateY(0);
}

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

.highlight-title {
    font-size: 1.5rem;
    color: var(--on-primary);
    margin-bottom: 12px;
}

.highlight-text {
    color: var(--on-primary);
    opacity: 0.95;
    margin: 0;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-slider {
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin: 0 15px;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    color: #ffc107;
    fill: #ffc107;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-name {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================
   BATCHES SECTION
   ========================================== */
.batches-section {
    background: var(--bg-white);
}

.batches-table {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.batch-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 24px 30px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.batch-row:last-child {
    border-bottom: none;
}

.batch-row:not(.batch-header):hover {
    background: var(--bg-light);
    transform: scale(1.02);
}

.batch-header {
    background: var(--gradient-primary);
    color: var(--on-primary);
    font-weight: 700;
}

.batch-col {
    display: flex;
    align-items: center;
    gap: 8px;
}

.batch-col svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.batch-header .batch-col svg {
    color: var(--on-primary);
}

.batch-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.batch-badge.open {
    background: #d4edda;
    color: #155724;
}

.batch-badge.filling {
    background: #fff3cd;
    color: #856404;
}

.batch-badge.coming {
    background: #d1ecf1;
    color: #0c5460;
}

.text-white {
    color: #fff;
}

.slick-track {
    padding: 20px 0;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: url('../img/ban.jpeg') center/cover no-repeat fixed;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 17, 77, 0.7) 0%, rgba(192, 48, 98, 0.25) 100%);
    ;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--on-primary);
}

.cta-title {
    font-size: 3rem;
    color: var(--on-primary);
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--on-primary);
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    background: var(--bg-light);
}

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    margin: 0;
    color: var(--text-dark);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    background: var(--gradient-primary);
    transform: rotate(45deg);
}

.faq-item.active .faq-icon svg {
    color: var(--on-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    margin: 0;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    background: var(--bg-white);
}

.contact-info {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    height: 100%;
}

.contact-info-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-info-description {
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--on-primary);
}

.contact-details h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-details p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control-custom {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-base);
    font-family: inherit;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(123, 17, 77, 0.1);
}

textarea.form-control-custom {
    resize: vertical;
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: var(--bg-dark);
    color: var(--on-primary);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--on-primary);
    margin-bottom: 16px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--on-primary);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-tint);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--primary-tint);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    color: var(--on-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablets */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--text-dark);
    }

    .nav-toggle {
        display: flex;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .outcomes-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-connector {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .batch-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .slick-prev {
        left: 10px;
    }

    .slick-next {
        right: 10px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    .cta-title {
        font-size: 2rem;
    }

    .hero-section {
        height: 100vh;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

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

    .stats-container {
        justify-content: space-around;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .why-item {
        flex-direction: column;
        text-align: center;
    }

    .outcome-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 576px) {

    .hero-section {
        height: 100vh;
        background-image: url('../img/hero-new.webp');
    }


    .container {
        padding: 0 15px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .feature-card,
    .eligibility-card,
    .testimonial-card {
        padding: 30px 20px;
    }
}