/* 
================================================================
   SHUVAM CLASSES - STYLESHEET
   Excellence in Commerce Education
   Colors: Primary (#F17720), Dark Blue (#1E2A44)
================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #F17720;
    --primary-hover: #D65F10;
    --primary-light: #FFF0E6;
    --dark-blue: #1E2A44;
    --dark-blue-light: #2A3C60;
    --dark-blue-dark: #121A2A;
    --light-bg: #F8F9FA;
    --accent-gold: #FFC107;
    --white: #FFFFFF;
    --text-dark: #212529;
    --text-light: #6C757D;
    --border-color: #E9ECEF;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 20px rgba(30, 42, 68, 0.08);
    --shadow-lg: 0 15px 35px rgba(30, 42, 68, 0.12);
    --shadow-orange: 0 10px 20px rgba(241, 119, 32, 0.2);
}

/* Base Styles */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-blue);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--primary-hover);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Header & Navigation Styles */
.top-bar {
    background-color: var(--dark-blue-dark);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.8);
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar-badge {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

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

.navbar-brand img {
    height: 70px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .navbar-brand img {
    height: 58px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark-blue) !important;
    padding: 8px 16px !important;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 16px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
    width: calc(100% - 32px);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Button Custom Styles */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    padding: 10px 24px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-orange);
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(241, 119, 32, 0.35);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--dark-blue);
    font-family: var(--font-heading);
    font-weight: 600;
    border: 2px solid var(--dark-blue);
    padding: 10px 24px;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-login-header {
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 30px;
    box-shadow: var(--shadow-orange);
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    border: none;
}

.btn-login-header:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(241, 119, 32, 0.35);
}

/* Hero Section */
.hero-carousel {
    position: relative;
    height: 70vh;
    min-height: 480px;
}

.hero-item {
    height: 70vh;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 42, 68, 0.9) 0%, rgba(30, 42, 68, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 650px;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 25px;
    background-size: 40% 40%;
}

/* Sections General Styling */
.section-padding {
    padding: 80px 0;
}

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

.section-title-wrapper {
    margin-bottom: 55px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title.left::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Why Choose Us Section */
.feature-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    opacity: 0;
    transition: var(--transition-smooth);
}

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

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

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.feature-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-color);
}

.feature-card:hover .feature-icon-wrapper i {
    color: var(--white);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* About Section homepage */
.about-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-image-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    position: relative;
}

.about-experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

.about-experience-badge h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.about-experience-badge p {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.about-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
    color: var(--text-dark);
}

.about-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Course Cards */
.course-card {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(241, 119, 32, 0.2);
}

.course-header {
    padding: 30px 30px 20px 30px;
    border-bottom: 1px dashed var(--border-color);
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
}

.course-badge {
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.course-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.course-icon-float {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 2rem;
    color: rgba(30, 42, 68, 0.1);
}

.course-body {
    padding: 25px 30px;
    flex-grow: 1;
}

.course-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.subject-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.subject-badge {
    background-color: var(--light-bg);
    color: var(--dark-blue-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.course-footer {
    padding: 20px 30px 30px 30px;
    background-color: var(--white);
}

.btn-course-learn {
    width: 100%;
    text-align: center;
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    border-radius: 30px;
    font-weight: 600;
    padding: 8px 20px;
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-course-learn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

/* Results Slider */
.results-carousel-container {
    position: relative;
    padding: 20px 0 50px 0;
}

.result-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 25px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.result-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--accent-gold);
    color: var(--dark-blue-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 35px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.result-avatar-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 18px auto;
    border: 4px solid var(--primary-light);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
}

.result-avatar-wrapper svg,
.result-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.result-class {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 12px;
}

.result-score-badge {
    background-color: var(--dark-blue);
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 800;
    font-family: var(--font-heading);
    padding: 6px 18px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
}

.result-achievement {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* Success Statistics Counters */
.stats-section {
    background: linear-gradient(135deg, var(--dark-blue-dark) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(241, 119, 32, 0.08);
    top: -100px;
    left: -100px;
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    bottom: -150px;
    right: -100px;
}

.stat-box {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-counter {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 5px;
    color: var(--white);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Study Materials Section */
.material-card {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 25px;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.material-img-wrapper {
    background-color: var(--light-bg);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.material-img-wrapper img {
    max-height: 100%;
    border-radius: 4px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.material-card:hover .material-img-wrapper img {
    transform: scale(1.05) rotate(2deg);
}

.material-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--dark-blue);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.material-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.material-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.material-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.material-type {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
}

.btn-material-action {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    border: none;
    transition: var(--transition-smooth);
}

.btn-material-action:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}

/* Counselling Promo Section */
.counselling-promo {
    background-color: var(--light-bg);
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.counselling-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 35px;
}

.counselling-list li {
    font-size: 1rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 32px;
}

.counselling-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Testimonials Slider */
.testimonials-slider-container {
    padding: 20px 0 50px 0;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 35px;
    position: relative;
    height: 100%;
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 2.5rem;
    color: rgba(241, 119, 32, 0.1);
}

.testimonial-rating {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.testimonial-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.testimonial-author-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 500;
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: var(--shadow-orange);
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cta-phone-display {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.cta-phone-display i {
    margin-right: 10px;
}

/* Contact Section & Form */
.contact-info-wrapper {
    height: 100%;
}

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

.contact-icon {
    width: 55px;
    height: 55px;
    background-color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.35rem;
    color: var(--primary-color);
}

.contact-details h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 35px;
}

.social-btn-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.social-btn-circle:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.social-btn-circle.fb:hover {
    background-color: #3b5998;
    border-color: #3b5998;
}

.social-btn-circle.ig:hover {
    background-color: #e1306c;
    border-color: #e1306c;
}

.social-btn-circle.yt:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.contact-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark-blue);
}

.form-control-custom {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #CED4DA;
    padding: 10px 16px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

textarea.form-control-custom {
    height: auto;
}

.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(241, 119, 32, 0.15);
    outline: none;
}

/* Footer Section */
.footer {
    background-color: var(--dark-blue-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-top {
    padding: 80px 0 50px 0;
}

.footer-brand h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
}

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

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 4px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* Page Hero Header (Inside Sub-pages) */
.page-hero {
    background: linear-gradient(135deg, var(--dark-blue-dark) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-custom li {
    display: flex;
    align-items: center;
}

.breadcrumb-custom li+li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-custom a:hover {
    color: var(--primary-color);
}

.breadcrumb-custom li.active {
    color: var(--primary-color);
}

/* Sub-page Specific Styles */
/* About Page */
.director-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.method-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-smooth);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.method-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(241, 119, 32, 0.15);
    line-height: 1;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

/* Courses Page details */
.course-detail-card {
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 40px;
    margin-bottom: 40px;
    transition: var(--transition-smooth);
}

.course-detail-card:hover {
    box-shadow: var(--shadow-lg);
}

.course-info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.course-info-item {
    display: flex;
    align-items: center;
}

.course-info-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-right: 12px;
}

.course-info-item div h6 {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.course-info-item div p {
    font-size: 0.95rem;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--dark-blue);
}

/* Study Materials Filter Tab & Mockups */
.materials-filter-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.btn-filter {
    background-color: var(--white);
    color: var(--dark-blue);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.btn-filter.active,
.btn-filter:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-orange);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(241, 119, 32, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(241, 119, 32, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(241, 119, 32, 0);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--white);
        border-radius: 12px;
        padding: 20px;
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-color);
    }

    .nav-link::after {
        display: none;
    }

    .btn-login-header {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }

    .hero-carousel {
        height: 60vh;
    }

    .hero-item {
        height: 60vh;
    }

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

    .counselling-promo {
        padding: 40px 30px;
    }

    .cta-banner {
        padding: 40px 30px;
        text-align: center;
    }

    .cta-phone-display {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.85rem;
    }

    .hero-carousel {
        height: 55vh;
        min-height: 400px;
    }

    .hero-item {
        height: 55vh;
        min-height: 400px;
    }

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

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

    .hero-text {
        font-size: 0.95rem;
    }

    .about-image-wrapper {
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 30px;
    }
}

/* Custom header responsive styling to keep all items on a single row */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-brand img {
        height: 45px !important;
    }

    .main-header.scrolled .navbar-brand img {
        height: 40px !important;
    }

    .nav-link {
        padding: 6px 4px !important;
        font-size: 0.78rem !important;
    }

    .nav-link:not(.dropdown-toggle)::after {
        left: 4px;
    }

    .nav-link:not(.dropdown-toggle):hover::after,
    .nav-link:not(.dropdown-toggle).active::after {
        width: calc(100% - 8px);
    }

    .navbar-nav .nav-item {
        margin-left: 2px !important;
    }

    .btn-login-header,
    .btn-demo-header {
        padding: 5px 8px !important;
        font-size: 0.7rem !important;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .navbar-brand img {
        height: 50px !important;
    }

    .main-header.scrolled .navbar-brand img {
        height: 45px !important;
    }

    .nav-link {
        padding: 6px 6px !important;
        font-size: 0.82rem !important;
    }

    .nav-link:not(.dropdown-toggle)::after {
        left: 6px;
    }

    .nav-link:not(.dropdown-toggle):hover::after,
    .nav-link:not(.dropdown-toggle).active::after {
        width: calc(100% - 12px);
    }

    .navbar-nav .nav-item {
        margin-left: 2px !important;
    }

    .btn-login-header,
    .btn-demo-header {
        padding: 6px 10px !important;
        font-size: 0.75rem !important;
    }
}

@media (min-width: 1400px) {
    .navbar-brand img {
        height: 60px !important;
    }

    .main-header.scrolled .navbar-brand img {
        height: 52px !important;
    }

    .nav-link {
        padding: 8px 10px !important;
        font-size: 0.88rem !important;
    }

    .nav-link:not(.dropdown-toggle)::after {
        left: 10px;
    }

    .nav-link:not(.dropdown-toggle):hover::after,
    .nav-link:not(.dropdown-toggle).active::after {
        width: calc(100% - 20px);
    }

    .navbar-nav .nav-item {
        margin-left: 5px !important;
    }

    .btn-login-header,
    .btn-demo-header {
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
    }
}
}

/* Glowing Highlighted Free Demo Class button */
.btn-demo-header {
    background: linear-gradient(135deg, #FF8D3B 0%, var(--primary-color) 100%) !important;
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: none !important;
    box-shadow: 0 0 25px rgba(241, 119, 32, 0.95) !important;
    transition: all 0.3s ease !important;
}

.btn-demo-header:hover {
    background: linear-gradient(135deg, #FF8D3B 0%, var(--primary-color) 100%) !important;
    color: var(--white) !important;
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 12px 30px rgba(241, 119, 32, 0.6) !important;
}

@keyframes demo-pulse-glow {
    0% {
        box-shadow: 0 0 12px rgba(241, 119, 32, 0.6), 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    100% {
        box-shadow: 0 0 22px rgba(241, 119, 32, 0.9), 0 6px 12px rgba(241, 119, 32, 0.3);
    }
}

/* Results Page Year Tabs & Custom Tables */
.btn-tab {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    color: var(--dark-blue) !important;
    background-color: var(--light-bg) !important;
    border: 2px solid transparent !important;
    transition: var(--transition-smooth);
}

.btn-tab::after {
    display: none !important;
    /* Hide standard nav-link underline */
}

.btn-tab:hover {
    color: var(--primary-color) !important;
    background-color: rgba(241, 119, 32, 0.05) !important;
}

.btn-tab.active {
    color: var(--white) !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: var(--shadow-orange) !important;
}

.table-custom {
    font-size: 0.95rem;
    width: 100%;
}

.table-custom th {
    background-color: #f8f9fa;
    color: var(--dark-blue);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 15px 20px;
    border-bottom: 2px solid #dee2e6;
}

.table-custom td {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    color: #444;
}

.table-custom tbody tr:nth-of-type(even) {
    background-color: #fafafa;
}

.table-custom tbody tr:hover {
    background-color: #fcfcfc;
}

.score-badge-success {
    background-color: #2e7d32;
    color: var(--white);
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 20px;
}

.score-badge-primary {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 20px;
}

.score-badge-secondary {
    background-color: var(--dark-blue);
    color: var(--white);
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Navbar Dropdown Animation & Premium Styles */
.dropdown-menu {
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px !important;
    padding: 8px 0 !important;
}

.dropdown-item {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-blue) !important;
    padding: 8px 20px !important;
    transition: var(--transition-smooth);
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item.active {
    background-color: rgba(241, 119, 32, 0.08) !important;
    color: var(--primary-color) !important;
}

@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .navbar-nav .dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
}

/* Premium Dropdown Caret Styling & Rotation Animation */
.dropdown-toggle::after {
    vertical-align: middle !important;
    margin-left: 6px !important;
    border-top: 4px solid !important;
    border-right: 4px solid transparent !important;
    border-left: 4px solid transparent !important;
    color: var(--dark-blue) !important;
    transition: transform 0.3s ease !important;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg) !important;
    color: var(--primary-color) !important;
}

.dropdown-toggle.show::after {
    transform: rotate(180deg) !important;
}

/* Activities Page Styles */
.activity-img-wrapper {
    position: relative;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.activity-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.activity-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-img-wrapper:hover .activity-img {
    transform: scale(1.05);
}

.activity-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
    z-index: 5;
    font-family: var(--font-heading);
}

.activity-date-badge .day {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.activity-date-badge .month {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.activity-highlights .badge {
    font-size: 0.85rem;
    border-radius: 30px;
}