:root {
    --bg-color: #ffffff;
	--bg-color2: #f8fafc;
	--affiliations: #fff1d7;
    --text-main: #0f172a;
    --text-muted: #475569;
    --primary: #2563eb;
    --white: #ffffff;
	--lightwhite: #ccc;
    --border: #e2e8f0;
    --blue2: #eef7ff;
    --font-family: system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.navbar { background: rgba(255, 255, 255, 1); position: fixed; top: 0; width: 100%; z-index: 1000; border-bottom: 1px solid var(--border); transition: all 0.2s ease; }
.nav-links a.active { color: var(--primary-color) !important; font-weight: 600; border-bottom: 2px solid var(--primary); }

.nav-links a:hover { font-weight: 600;}
@media (max-width: 768px) {.nav-links a.active { border-bottom: 0px solid var(--primary);}}

@media (max-width: 992px) {.nav-links a.active { border-bottom: 0px solid var(--primary);}}

.nav-container { display: flex; justify-content: space-between; align-items: center; height: 65px; }
.logo { display: flex; align-items: center; }
.logo img { height: 45px; width: auto; }
@media (max-width: 768px) {.logo img { height: 40px;}}
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 500; }
.nav-links a:not(.btn) { color: var(--text-muted); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 101; }
.hamburger span { display: block; width: 25px; height: 3px; background-color: var(--text-main); border-radius: 3px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
/* Padding */
.pad5 {
	padding: 0 5px;
}
.pad10 {
	padding: 0 10px;
}
.text-center {
	text-align: center;
}

/* Course Sub Nav */
#course-overview #course-design #course-outcome #course-fee #course-pay{
	scroll-margin-top: 130px
}
#course-fee {
	margin-bottom: -40px;
}

#important-dates {
	margin: 60px 0 -30px;
}

.course-sub-nav {
	position: sticky;
    top: 82px;
    background: #f2f2f2;
    z-index: 900;
    padding: 0;
    border-bottom: 1px solid var(--border);
    margin: 20px -24px 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 30px 30px;
    max-width: 700px;
    margin: auto;
}

@media (max-width: 768px) {
	.course-sub-nav {
	position: sticky;
    top: 82px;
    background: #f2f2f2;
    z-index: 900;
    padding: 0 10px;
    margin: 20px -24px 40px !important;
    box-shadow: 0px 5px 50px 10px rgba(0, 0, 0, 0.05);
    margin: auto;
	border-radius: 0 0 0 0 !important;
	border-bottom: 2px solid #ccc;
}
}

.sub-nav-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sub-nav-container a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    padding: 5px 8px;
    border-radius: 4px;
}

.sub-nav-container a:hover {
    color: var(--primary);
    background: #f1f5f9;
}

@media (max-width: 768px) {
    .sub-nav-container {
        gap: 15px;
    }
    .sub-nav-container a {
        font-size: 0.8rem;
        padding: 5px 3px;
    }
}

/* Buttons */
.btn { display: inline-flex; padding: 12px 24px; border-radius: 9999px; font-weight: 600; cursor: pointer; border: none; align-items: center; justify-content: center; transition: all 0.2s ease; }
.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-primary:hover { opacity: 0.9; background-color: var(--bs-btn-hover-bg);}
.btn-outline { background-color: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 10px 22px; }
.btn-outline:hover { background-color: var(--primary); color: var(--white); }
.btn-dark { background-color: var(--primary); color: var(--white); padding: 8px 20px; }
.btn-dark:hover { background-color: var(--bs-btn-hover-bg) !important; color: var(--white); padding: 8px 20px; }

/* Announcement Bar */
.announcement-bar {
    position: relative;
    margin-top: 80px;
    width: 100%;
    background-color: #1e293b;
    color: #f8fafc;
    padding: 5px 0;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 999;
    display: flex;
    overflow: hidden;
    border-bottom: 1px solid #334155;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.announcement-bar:hover .marquee-content {
    animation-play-state: running;
}
.marquee-content {
    display: flex;
    flex-shrink: 0;
    width: max-content;
    align-items: center;
    animation: scroll-rtl 40s linear infinite;
}
.marquee-content span {
    white-space: nowrap;
    padding: 0 20px;
}
.marquee-content .separator {
    color: #8b5cf6;
    font-size: 1.2rem;
    padding: 0;
}
.badge img {
    height: 25px !important;
    vertical-align: bottom;
}
@keyframes scroll-rtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero */
.hero { padding: 30px 0 60px; text-align: left; background: radial-gradient(circle at top, #e0e7ff 0%, var(--bg-color) 50%); scroll-margin-top: 120px; }
.hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: center; }
.hero-content { text-align: left; }
.hero-ebook { display: block; width: 100%; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; margin-bottom: ; background: #dbeafe; color: #1e40af; border: 1px solid #b8cced;}
.red-dot {
    width: 10px;
    height: 10px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 24px; font-weight: 700;}
.hero h1 span { color: var(--primary); }
.hero p { color: var(--text-muted); margin-bottom: 30px; max-width: 800px; }
.hero-buttons { display: flex; justify-content: flex-start; gap: 16px; flex-wrap: wrap; }

@media (max-width: 768px) {
    .hero { padding: 20px 0; text-align: center; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.05rem; }
    .hero-buttons { justify-content: center; }
    .badge { margin: 12px auto 12px auto; }
}

/* Stats Section */
.stats-section { 
    padding: 40px 0;
    text-align: center;
}
.stats-grid { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 200px; text-align: center; padding: 20px; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(0, 0, 0, 0.1); }
.stat-value { display: flex; justify-content: center; align-items: baseline; margin-bottom: 10px; }
.stat-number { font-size: 3.5rem; font-weight: 800; line-height: 1; color: var(--text-dark); }
.stat-plus { font-size: 3rem; font-weight: 700; color: var(--primary); line-height: 1; margin-left: 4px; }
.stat-label { font-size: 1.125rem; font-weight: 600; color: var(--text-muted); margin: 0; }

@media (max-width: 992px) {
    .stat-item { min-width: 45%; }
    .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
    .stats-section { padding: 40px 0; }
    .stats-grid { gap: 0; }
    .stat-item { 
        min-width: 50%; 
        flex: 0 0 50%; 
        padding: 20px 10px; 
        box-sizing: border-box;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(0, 0, 0, 0.1); }
    .stat-item:nth-child(even) { border-right: none; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .stat-number, .stat-plus { font-size: 2.2rem; }
    .stat-label { font-size: 0.9rem; }
}

/* Affiliations */
.affiliations {background-color: var(--affiliations); margin: 0; padding: 40px 0;}
.affiliations-container { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; align-items: flex-start; }
.affiliation-group { display: flex; flex-direction: column; gap: 16px; }
.affiliation-title { font-size: 1.125rem; font-weight: 700; margin: 0; text-align: left; }
.affiliation-logos { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.affiliation-logos img { max-height: 60px; width: auto; object-fit: contain; mix-blend-mode: multiply; }

/* Sections */
section { padding: 100px 0; margin: 0;}
.section-header { text-align: left; max-width: 100%; margin: 0 0 40px 0; }
.section-header h2 { font-size: 2rem; margin-bottom: 15px; color: #0f3d6e; text-align: center; line-height: 2rem; font-weight: 700;}
.section-header .divider { width: 60px; height: 3px; background-color: var(--primary); margin: 0 auto; }
.divider-inner { width: 60px; height: 3px; background-color: var(--lightwhite); margin: 0 auto; }

.section-header p { margin-top: 15px; color: var(--text-muted) font-size: 1.05rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.card { background: var(--white); padding: 32px; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 5px 25px rgba(0,0,0,0.1); transition: transform 0.2s ease, border-color 0.3s ease; }
.card:hover { transform: translateY(-5px);}

.features { background: var(--blue2);}
/* 
.features .card:nth-child(1) { border-bottom: 4px solid #3b82f6; } 
.features .card:nth-child(2) { border-bottom: 4px solid #10b981; } 
.features .card:nth-child(3) { border-bottom: 4px solid #f59e0b; } 
.features .card:nth-child(4) { border-bottom: 4px solid #8b5cf6; } 
.features .card:nth-child(5) { border-bottom: 4px solid #ec4899; } 
.features .card:nth-child(6) { border-bottom: 4px solid #14b8a6; }  */ 

.card h3 { margin-bottom: 12px; font-size: 1.25rem; font-weight: 600;}
.card p { color: var(--text-muted); }

.card-number {
    position: absolute;
    top: -5px;
    right: 15px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(15, 61, 110, 0.04);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
	text-style: italic;
}

/* Course Overview */
.program-features {background: var(--white);}

.sub-section {
    margin-top: 40px;
    padding: 40px 0 20px 0;
    border-top: 0px solid var(--border);
	scroll-margin-top: 110px;
}

.sub-section:first-of-type {
    margin-top: 60px;
    padding-top: 0;
    border-top: none;
}

.sub-section .section-header {
    margin-bottom: 40px;
}

.sub-section .section-header h3 {
    font-size: 2rem;
    color: var(--text-main);
    text-align: center;
}

.sub-section .section-header p {
    text-align: center;
    max-width: 800px;
    margin: 10px auto 0;
}

.sub-section .section-header .divider {
    margin: 15px auto;
}
.feature-item { display: flex; align-items: flex-start; gap: 20px; background: var(--white); padding: 30px; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.1); transition: transform 0.2s ease; }
.feature-item:hover { transform: translateY(-5px); }
.feature-icon { flex-shrink: 0; color: var(--primary); width: 40px; height: 40px; }
.feature-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.feature-text h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--text-main); font-weight: 600;}
.feature-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.5; }

/* Faculty Section */
.faculty-section { background: var(--blue2); }

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.faculty-card-new {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    border-left: 0px solid #0056b3;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.faculty-card-new:hover {
    transform: translateY(-5px);
}

.faculty-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.faculty-avatar-new {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0056b3;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    object-fit: cover;
    margin-bottom: 4px;
}

.faculty-linkedin-btn {
    color: #0077b5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
    padding: 2px;
}

.faculty-linkedin-btn:hover {
    color: #005582;
    transform: scale(1.1);
}

.faculty-info-new h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    color: #333;
    line-height: 1rem;
    padding: 5px 0;
}

.faculty-info-new p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .faculty-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .faculty-card-new {
        flex-direction: column;
        text-align: center;
        padding: 16px 12px;
    }
    .faculty-avatar-new {
        margin-right: 0;
        margin-bottom: 12px;
        width: 60px;
        height: 60px;
    }
}

/* Testimonials Section */
.testimonials-section { background: var(--white); color: #333; overflow: hidden; }
.testimonials-section .section-header.light h2 { color: #1e293b; }
.testimonials-section .section-header .divider { background-color: var(--primary); }

.testimonial-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 20px; }
/*.filter-btn { background-color: transparent; color: #475569; border: 1px solid #cbd5e1; padding: 6px 16px; border-radius: 9999px; cursor: pointer; transition: all 0.2s ease; font-weight: 600; } */
/*.filter-btn:hover, .filter-btn.active { background-color: var(--primary); color: #ffffff; border-color: var(--primary); }*/
.filter-btn[data-filter="all"].active, .filter-btn[data-filter="all"]:hover { background-color: #1e293b; border-color: #1e293b; color: #ffffff; }

.testimonial-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.testimonial-grid {
    display: flex;
    transition: transform 0.2s ease;
    gap: 30px;
}

.testimonial-card { 
    flex: 0 0 calc(33.333% - 20px);
    background-color: #ffffff; 
    border-radius: 12px; 
    padding: 30px; 
    color: #333333; 
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    display: flex; 
    flex-direction: column; 
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.testimonial-card.active-slide {
    opacity: 1;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px;
}

.slider-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #475569;
    transition: all 0.2s ease;
}

.slider-btn:hover:not(:disabled) {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.slider-pagination {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 60%;
}

.slider-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.pagination-ellipsis {
    color: #475569;
    font-size: 1rem;
    line-height: 10px;
    display: flex;
    align-items: center;
    padding: 0 2px;
}

.slider-bullet.active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

.t-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.t-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.t-image-container { 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    padding: 3px; 
    background: #e0f2fe; 
    margin-bottom: 6px;
}

.t-linkedin-btn {
    color: #0077b5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
    padding: 2px;
}

.t-linkedin-btn:hover {
    color: #005582;
    transform: scale(1.1);
}
.t-image-container img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid #ffffff; }

.t-info {
    display: flex;
    flex-direction: column;
}

.t-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 2px; color: #1e3a8a; }
.t-batch { font-size: 0.85rem; color: #64748b; margin-bottom: 5px; }

.t-stars {
    display: flex;
    gap: 2px;
}
.t-stars svg {
    width: 16px;
    height: 16px;
}

.t-text { 
    font-size: 0.95rem; 
    line-height: 1.2; 
    color: #475569; 
    font-style: italic; 
    position: relative;
}

.quote-icon {
    width: 20px;
    height: 20px;
    color: #93c5fd;
    display: inline-block;
}
.quote-icon.start {
    margin-right: 5px;
    vertical-align: top;
}
.quote-icon.end {
    margin-left: 5px;
    vertical-align: bottom;
}

@media (max-width: 992px) { 
    .testimonial-card { flex: 0 0 calc(50% - 15px); } 
}
@media (max-width: 768px) { 
    .testimonial-card { flex: 0 0 100%; } 
}

/* Sponsors Section */
.sponsors-section { background-color: var(--white); overflow: hidden; margin:0; }
.sponsors-marquee-container { width: 100%; overflow: hidden; position: relative; background: var(--white); padding: 20px 0; }
.sponsors-marquee-container::before,
.sponsors-marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.sponsors-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}
.sponsors-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}
.sponsors-marquee-track { 
    display: flex; 
    gap: 20px; 
    align-items: center;
    width: max-content;
    animation: scroll-sponsors 75s linear infinite; 
}
.sponsors-marquee-track:hover { animation-play-state: running; }
.sponsor-logo { display: flex; justify-content: center; align-items: center; height: 80px; width: 180px; padding: 10px; transition: transform 0.2s ease; flex-shrink: 0; }
.sponsor-logo:hover { transform: scale(1.1); }
.sponsor-logo img { max-width: 100%; max-height: 100%; object-fit: contain; opacity: 0.9; transition: all 0.2s ease; }
.sponsor-logo:hover img { filter: grayscale(0%); opacity: 1; }

@keyframes scroll-sponsors {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 30px)); } /* -50% for duplicated content, -30px for half the gap */
}

/* FAQ Section */
.faq-section { background: var(--blue2); padding: 100px 0; }

.faq-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-filter-btn  {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn {
	padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.faq-filter-btn:hover {
    background: rgba(13, 148, 136, 0.05);
}

.faq-filter-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}
.filter-btn:hover {
    background: rgba(13, 148, 136, 0.05);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}


.faq-category-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.faq-category-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-list { display: flex; flex-direction: column; gap: 15px; }
.faq-item { background-color: #ffffff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); border: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: center; padding: 20px 25px; background: none; border: none; cursor: pointer; text-align: left; font-size: 1.05rem; font-weight: 600; font-family: inherit; transition: all 0.2s; color: var(--text-dark); }
.faq-question:hover { background-color: #f8fafc; color: var(--primary); }
.faq-icon { display: flex; align-items: center; justify-content: center; margin-right: 18px; width: 24px; height: 24px; flex-shrink: 0; color: var(--primary); }
.faq-icon svg { width: 100%; height: 100%; stroke-width: 2; }
.faq-text { flex-grow: 1; padding-right: 15px; line-height: 1.4; }
.faq-chevron { display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s ease; color: #94a3b8; }
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: all 0.3s ease; background-color: #ffffff; font-size: 1rem; line-height: 1.7; padding: 0px 25px; color: var(--text-muted); }
.faq-item.active .faq-answer { max-height: 500px; padding: 10px 25px 25px; border-top: 1px solid #f1f5f9;}
.faq-item.active .faq-question { background-color: #f8fafc; color: var(--primary); }

/* About Combined Section */

.about-col p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; font-size: 1.05rem; }

/* Footer */
.footer { background-color: #0f172a; color: #cbd5e1; padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; text-align: left; }
.footer-col h3 { color: #ffffff; font-size: 1.2rem; margin-bottom: 20px; font-weight: 600; }
.footer-logo { margin-bottom: 15px; }
.footer-logo img { height: 60px; width: auto; background-color: white; padding: 5px; border-radius: 4px; }
.footer-logo2 { margin-bottom: 15px; }
.footer-logo2 img { height: 60px; width: auto; background-color: white; padding: 5px; border-radius: 4px; margin: 0 6px 0 0;}


.about-col p { line-height: 1.6; font-size: 0.95rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.footer-col ul li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: #8b5cf6; }
.links-col a { color: #cbd5e1; transition: color 0.3s; text-decoration: none; }
.links-col a:hover { color: #8b5cf6; }
.social-links { display: flex; gap: 15px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background-color: #1e293b; color: #ffffff; transition: background-color 0.3s, transform 0.2s; }
.social-links a:hover { background-color: #8b5cf6; transform: translateY(-3px); }
.social-links svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom { border-top: 1px solid #334155; padding-top: 20px; text-align: center; font-size: 0.85rem; color: #94a3b8; }

@media (max-width: 1024px) {
    .hamburger { display: flex; }
    .nav-links { display: none; position: fixed; top: 65px; left: 0; width: 100%; background-color: var(--white); flex-direction: column; padding: 15px 20px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); border-bottom: 1px solid var(--border); gap: 5px; }
    .nav-links.active { display: flex; }
    .nav-links a { width: 100%; text-align: center; padding: 8px 0; border-radius: 6px; transition: background-color 0.2s ease; }
    .nav-links a:not(.btn):hover { background-color: #f1f5f9; }
    .nav-links a:not(.btn):active { background-color: #dbeafe; }
    .nav-links .btn { width: 100%; margin: 5px auto 0; padding: 10px 25px; }
	
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-combined-grid { gap: 40px; }
}
@media (max-width: 768px) {
    .affiliations-container { flex-direction: column; align-items: center; text-align: center; gap: 32px; }
    .affiliation-title { text-align: center; }
    .affiliation-logos { justify-content: center; }
    .hero-buttons { gap: 10px; }
    .testimonial-filters { gap: 6px; }
    .filter-btn { padding: 5px 10px; }
	.faq-filter-btn { padding: 5px 10px; }
	.category-btn { padding: 5px 10px !important;}
    .faq-grid { grid-template-columns: 1fr; }
    .about-combined-grid { grid-template-columns: 1fr; }
	.nav-links {border-top: 2px solid #f2f2f2; margin: 10px 0;}
	.quote-text { font-size: 1.15rem; line-height: 1.5rem;}
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Course Fee Redesign */
/* Course Fee Redesign */

.fee-payment-section {
    background-color: #f2f2f2;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 40px;
    gap: 30px;
	scroll-margin-top: 140px;
}

.fee-payment-left {
    flex: 1;
}

.fee-payment-left p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.fee-payment-left ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.fee-payment-left ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
	padding: 0 0 0 10px;
}

.fee-payment-left .terms {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.fee-payment-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 250px;
}

.fee-payment-right .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .fee-payment-section {
        flex-direction: column;
        text-align: left;
        padding: 30px 20px;
		margin: 0 0 40px;
		scroll-margin-top: 140px;
    }
    .fee-payment-left ul li {
        justify-content: left;
    }
}

.fee-announcement {
    background-color: #fffbeb;
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    border: 1px solid #fef3c7;
    display: none;
}

.batch-info {
    font-weight: 700;
    color: #92400e;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.discount-info {
    color: #b45309;
    font-weight: 500;
}

.register-now-btn {
    background-color: transparent;
    color: #f59e0b;
    border: 1px solid #fde68a;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.register-now-btn:hover {
    background-color: #ffffff;
    border-color: #f59e0b;
}

.fee-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.fee-tab-input {
    display: none;
}

.fee-tab-content {
    display: none;
}

#tab-individual:checked ~ .fee-details-content .individual,
#tab-student:checked ~ .fee-details-content .student,
#tab-corporate:checked ~ .fee-details-content .corporate,
#tab-international:checked ~ .fee-details-content .international {
    display: block;
}

#tab-individual:checked ~ .fee-categories label[for="tab-individual"],
#tab-student:checked ~ .fee-categories label[for="tab-student"],
#tab-corporate:checked ~ .fee-categories label[for="tab-corporate"],
#tab-international:checked ~ .fee-categories label[for="tab-international"] {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
}

.category-btn {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
	font-size: 0.95rem;
}

.category-btn:hover {
	background-color: rgba(13, 148, 136, 0.05);
}

@media (max-width: 768px) {

}

.text-white { color: var(--text-main) !important; }
.text-gray-400 { color: var(--text-muted) !important; }

@media (max-width: 768px) {
    .fee-announcement {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .register-now-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Course Fee Details Styling */
.fee-details-content {
    margin-top: 20px;
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.fee-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .fee-grid, .fee-grid-4, .installments-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 10px 24px 20px;
        margin-left: -24px;
        margin-right: -24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .fee-grid::-webkit-scrollbar, .fee-grid-4::-webkit-scrollbar, .installments-grid::-webkit-scrollbar {
        display: none;
    }
    .fee-card, .fee-card-special, .installment-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 280px;
    }
    .fee-card.featured {
        transform: scale(1);
    }
}

.fee-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.fee-card:hover {

}

.fee-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
    z-index: 1;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.fee-badge-container {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.fee-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-green { background-color: #dcfce7; color: #166534; }
.badge-blue { background-color: #dbeafe; color: #1e40af; }
.badge-orange { background-color: #ffedd5; color: #9a3412; }
.badge-gray { background-color: #f1f5f9; color: #475569; }

.discount-text {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
	font-style: italic;
}

.main-price {
    color: var(--text-main);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.main-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.original-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.savings-text {
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 20px;
}

.validity-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.select-plan-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background-color: var(--white);
    color: var(--text-main);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
    text-align: center;
}

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

.fee-card.featured .select-plan-btn {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.fee-card.featured .select-plan-btn:hover {
    opacity: 0.9;
}

/* Installments Section */
.installments-section {
    margin-top: 30px;
}

.installments-header {
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.installments-subheader {
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 700;
}


.installments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
	padding-bottom: 30px;
}

.installment-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.installment-card:hover {
}

/* Removed .inst-label as it is replaced by .fee-badge-container */

.inst-percentage {
    color: var(--text-main);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.inst-timing {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.installments-note {
    color: var(--text-muted)
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 32px;
}

.pay-fees-container {
    margin-top: 0px !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.pay-fees-btn {
    padding: 14px 48px;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.3);
	min-width: 300px;
}

.payment-powered {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    opacity: 0.8;
	width: 300px;
    text-align: center;
}

@media (max-width: 768px) {
    .pay-fees-container {
        align-items: center;
        text-align: center;
    }
    .pay-fees-btn {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .fee-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fee-card-special .new-price {
        font-size: 2rem !important;
    }
}

.fee-description {
    color: var(--text-muted)
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.6;
}

.fee-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.fee-link:hover {
    text-decoration: underline;
}

/* Inclusions Section */
.inclusions-section {
    display: none;
    margin-top: 60px;
    padding-top: 40px;
}

.inclusions-header {
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 0px;
}

.inclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted)
    font-size: 0.95rem;
    line-height: 1.4;
}

.inclusion-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Corporate Table */
.corporate-table-container {
    overflow-x: auto;
    margin-bottom: 32px;
}

.corporate-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-muted);
}

.corporate-table th {
    text-align: left;
    color: var(--text-main);
    font-weight: 500;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
}

.corporate-table td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--border);
}

.corporate-table tr:last-child td {
    border-bottom: none;
}

.table-discount-badge {
    
    color: #16a34a;
    padding: 4px 12px;
    font-weight: 600;
}

.table-savings {
    color: #16a34a;
    font-weight: 600;
}

/* Important Dates Table */
.important-dates-table-container {
    overflow-x: auto;
    margin-bottom: 32px;
}

.important-dates-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-main);
}

.important-dates-table th {
    text-align: left;
    color: var(--text-main);
    font-weight: 500;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    font-size: ;
}

.important-dates-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.important-dates-table tr:last-child td {
    border-bottom: none;
}

.important-dates-discount-badge {
    color: #16a34a;
    padding: 4px 12px;
    font-weight: 600;
}

.table-savings {
    color: #16a34a;
    font-weight: 600;
}

.enquire-btn {
    background-color: var(--white);
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

/* Student Specific */
.eligibility-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.eligibility-list li {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.docs-required {
    margin-top: 20px;
}

.docs-header {
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 8px;
}

.docs-text {
    color: var(--text-muted)
    font-size: 0.9rem;
}

/* Fee Footer */
.fee-footer {
    display: none;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted)
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .inclusions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.2s ease, background-color 0.3s ease;
    z-index: 9999;
}
.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}
.back-to-top:hover {
    transform: translateY(-5px);
    background-color: #3b82f6;
}
.back-to-top svg {
    width: 24px;
    height: 24px;
}
@media (max-width: 1024px) {
    .back-to-top {
        bottom: 25px;
        right: 25px;
        width: 45px;
        height: 45px;
    }
}
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Accordion Styles */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.accordion-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--primary); 
    transition: transform 0.2s ease;
	margin: 0 0 10px 0;
	padding: 5px 0;
}
.accordion-item:hover {
    transform: translateY(-5px); 

}

/* Specific left border colors for each level */
.accordion-item:nth-child(1) { border-bottom: 4px solid #3b82f6; } /* Blue - Bridge Course */
.accordion-item:nth-child(2) { border-bottom: 4px solid #10b981; } /* Green - Level I */
.accordion-item:nth-child(3) { border-bottom: 4px solid #f59e0b; } /* Orange - Level II */
.accordion-item:nth-child(4) { border-bottom: 4px solid #8b5cf6; } /* Purple - Level III */

.accordion-header {
    padding: 20px 24px;
    font-size: 1.15rem;
    font-weight: 600;
    color: ;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: background-color 0.2s ease;
}
.accordion-header::-webkit-details-marker {
    display: none;
}
.accordion-header:hover {
    background-color: ;
}
.accordion-header .duration {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    text-align: right;
    padding: 4px 12px;
    border-radius: 9999px;
}
.header-title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}
details[open] .accordion-icon {
    transform: rotate(90deg);
}
.accordion-content {
    padding: 0 24px 24px 24px;
    color: var(--text-muted)
    line-height: 1.6;
    border-top: 1px solid var(--border);
    margin-top: 0px;
    padding-top: 16px;
}
.accordion-content ul {
    list-style-type: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}
details[open] .accordion-header {
    border-bottom: 1px solid var(--border);
}

/* Hero Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    max-height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
}
.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
}
.slide {
    min-width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0;
    text-align: center;
    background: var(--white);
    display: flex;
    flex-direction: column;
}
.slide-image {
    width: 100%;
    height: 55%;
    overflow: hidden;
    background: #f8fafc;
}
.slide-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}
.slide:hover .slide-image img {
    transform: scale(1.08);
}
.slide-content {
    padding: 25px 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.slide-content-inner {
	margin: 10px 0;
	justify-content: center;
}
.slide h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}
.slide p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 280px;
}
.slide-content-inner p {
    color: var(--text-muted);
    margin-bottom: 0px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 280px;
}
.slide-content-inner div {
	justify-content: center;
}
.slide .btn {
    width: 100%;
    font-weight: 600;
}
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}
.dot.active {
    background: var(--primary);
    width: 16px;
    border-radius: 10px;
}

/* Testimonial Stars */
.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: #fbbf24;
}

.card-hidden {
    display: none !important;
}

/* FAQ Section Header */
.faq-header-p {
    text-align: center;
}

/* About & Contact Sections */
.about-combined-section {
    background-color: var(--white);
	text-align: justify;
}
.about-combined-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
@media (max-width: 768px) {
    .about-combined-grid {
        grid-template-columns: 1fr;
    }
}
.about-col {
    flex: 1;
}
.contact-section {
    background-color: var(--blue2);
}
.contact-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
	
}
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 200px;
	transition: transform 0.2s ease;
	
}
.contact-item:hover {
	transform: translateY(-5px); 
}
.contact-icon {
    background: #e0f2fe;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}
.contact-icon svg {
    width: 24px;
    height: 24px;
}
.contact-item h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}
.contact-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.contact-item p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* Quote Section */
.quote-section {
    background-color: var(--white);
}
.quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.quote-icon-large {
    width: 48px;
    height: 48px;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 20px;
}
.quote-text {
	font-size: 1.25rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
}
.quote-author h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}
.quote-author p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Super Early Bird Special Card Design */
.fee-card-special {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    height: 100%; /* Ensure same height in grid */
    border: 1px solid var(--card-border) !important;
}

.fee-card-special.variant-green { --card-primary: #00c853; --card-header-bg: #e8f5e9; --card-border: #00c853; }
.fee-card-special.variant-orange { --card-primary: #f59e0b; --card-header-bg: #fff7ed; --card-border: #f59e0b; }
.fee-card-special.variant-gray { --card-primary: #64748b; --card-header-bg: #f8fafc; --card-border: #cbd5e1; }
.fee-card-special.variant-blue { --card-primary: #2563eb; --card-header-bg: #eff6ff; --card-border: #2563eb; }
.fee-card-special.variant-installment { --card-primary: #6366f1; --card-header-bg: #f5f3ff; --card-border: #6366f1; }

.fee-card-special:hover {
    transform: translateY(-5px);
}

.fee-card-special .card-header {
    background-color: var(--card-header-bg);
    padding: 16px; /* Match horizontal padding of other cards */
    position: relative;
    border-bottom: 1px solid var(--card-primary);
}

.fee-card-special .card-header h3 {
    color: var(--card-primary);
    font-size: 1.25rem; /* Match .card h3 */
    font-weight: 800;
    font-style: italic;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: -0.2px;
}

.fee-card-special .card-header .discount-badge {
    color: #475569;
    font-size: 1.1rem; /* Match .discount-text */
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
}

.fee-card-special .card-header .card-icon {
    position: absolute;
    top: 15px;
    right: 5px;
    width: 45px;
    height: 45px;
    opacity: 0.8;
}

.fee-card-special .card-header .card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--card-primary);
}

.fee-card-special .card-body {
    padding: 16px; /* Match .fee-card padding */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fee-card-special .price-label {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
    font-size: 1rem;
}

.fee-card-special .old-price {
    color: var(--text-muted);
    font-size: 1.1rem; /* Match .original-price */
    text-decoration: line-through;
    margin-bottom: 20px;
    font-weight: 600;
}

.fee-card-special .new-price {
    color: var(--text-main);
    font-size: 2.25rem; /* Match .main-price */
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.2;
}

.fee-card-special .gst-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 30px;
}

.fee-card-special .breakdown {
    margin-top: auto;
    padding-top: 5px;
}

.fee-card-special .breakdown-row {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.fee-card-special .breakdown-row.discount {
    color: var(--card-primary);
}

.fee-card-special .dashed-line {
    border-top: 1px dashed #cbd5e1;
    margin: 8px 0;
}

.fee-card-special .card-footer {
    background-color: #f1f5f9;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    font-style: italic;
    color: var(--text-main);
    font-size: 0.875rem; /* Match .validity-text */
}




