:root {
    --primary-red: #ef4444;
    --dark-black: #000000;
    --light-gray: #f9fafb;
    --border-gray: #e5e7eb;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --max-width: 1200px;
    --max-width-fluid: 1400px;
    --transition: all 0.3s ease;
    --section-padding: 1rem 0;
    --section-padding-mobile: 3rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
}

.container-fluid {
    max-width: var(--max-width-fluid);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--dark-black);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 300;
    text-align: center;
    overflow: hidden;
}

.marquee p {
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Header Styles */
.main-header {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo Section */
.header-logo {
    display: block;
    max-width: 200px;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .header-logo {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        max-width: 120px;
    }
}

/* Right Header Section */
.header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.refer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.refer-link:hover {
    border-bottom-color: var(--primary-red);
}

.refer-link svg {
    width: 20px;
    height: 20px;
}

.auth-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn {
    padding: 8px 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-login {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-login:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(225, 29, 72, 0.2);
}

.btn-signup {
    background-color: var(--dark-black);
    color: var(--white);
}

.btn-signup:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

/* Nav and Search Row */
.nav-search-row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.dropdown-toggle {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-black);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    padding: 5px 0;
}

.dropdown-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--primary-red);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-gray);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-red);
}

.search-bar {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-gray);
    border-radius: 50px;
    padding: 4px 4px 4px 1.5rem;
    width: 350px;
    transition: var(--transition);
    background: var(--white);
}

.search-bar:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.search-bar input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-main);
}

.search-btn {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: #dc2626;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-black);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    transition: 0.4s ease;
    padding: 2rem;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-links a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-black);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .search-bar {
        width: 250px;
    }
}

@media (max-width: 900px) {
    .header-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo-main {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 1.5rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }
}

/* Hero Section */
.hero-section {
    background-color: #f3f4f6;
    overflow: hidden;
}

.hero-slide {
    padding: 6rem 0 4rem;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 2rem; */
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark-black);
    margin-bottom: 1.5rem;
}

.highlight-red {
    color: var(--primary-red);
}

.highlight-script {
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.text-red {
    color: var(--primary-red);
    font-weight: 700;
}

.btn-watch {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-block;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #9ca3af;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-red);
    width: 30px;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.swiper-pagination {
    bottom: 30px !important;
}

/* Slide specific tweaks */
.slide-1,
.slide-2,
.slide-3 {
    background-image: url("/static/indigo/images/hero_section/bg.4ab60c09e43c.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 0px 100px;
}


.slide-2 {
    background-color: #fef2f2;
}

.slide-3 {
    background-color: #f0f9ff;
}

/* Responsive Hero Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
}


@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-slide {
        padding: 4rem 0;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero_title_img_container {
        max-width: 280px;
        margin: 0 auto;
    }

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

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

    .hero-slide {
        padding: 3rem 0;
    }
}


/* Fellowship Program Section */
.fellowship-program-section {
    padding: var(--section-padding);
    background-color: #f9fafb;
}

.fellowship-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: start;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-black);
}

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

.title-red {
    color: var(--primary-red);
}

.fellowship-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.skills-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.skills-list {
    list-style: none;
    margin-bottom: 3rem;
}

.skills-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
}

.skills-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 900;
    color: var(--dark-black);
}

.details-row {
    display: flex;
    gap: 4rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

@media (max-width: 768px) {
    .details-row {
        flex-direction: column;
        gap: 2rem;
    }
}

.label {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.logo-placeholder {
    height: 130px;
    /* width: 200px; */
    background: transparent;
    display: flex;
    align-items: center;
}

.logo-placeholder img {
    max-height: 100%;
}

.eligibility-box {
    border-left: 1px solid lightblue;
    padding-left: 15px !important;
}

.eligibility-box p {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: #4b5563;
}

/* Fellowship Card */
.video-card {
    background: var(--primary-red);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.video-preview {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    background: #e5e7eb;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.play-btn svg {
    color: var(--primary-red);
    fill: var(--primary-red);
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.card-footer-banner {
    padding: 1.25rem 1.5rem;
    text-align: center;
    color: var(--white);
}

.banner-headings h4 {
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 600;
}

.sub-heading {
    margin-bottom: 1.2rem;
}

.meta-info {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.meta-info p {
    margin-bottom: 0.3rem;
}

.meta-info span {
    font-weight: 700;
}

.btn-register {
    background: var(--white);
    color: var(--primary-red);
    display: block;
    width: 100%;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-register:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .fellowship-grid {
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .fellowship-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .video-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .fellowship-program-section {
        padding: var(--section-padding-mobile);
    }

    .skills-block h3 {
        font-size: 1.15rem;
    }
}

/* Trending Courses Section */
.trending-courses-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.courses-swiper {
    padding: 3rem 0 4rem;
}

.course-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark-black);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

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

.course-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f3f4f6;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cpd-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 90px;
    text-align: center;
}

.cpd-header {
    background: var(--primary-red);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    text-transform: uppercase;
}

.cpd-hours {
    padding: 6px 10px;
    color: var(--primary-red);
    font-weight: 800;
    font-size: 0.85rem;
    line-height: 1.1;
}

.cpd-hours span {
    color: var(--dark-black);
    font-size: 0.7rem;
    display: block;
}

.course-info {
    padding: 1rem 1.5rem 2rem;
    text-align: center;
    color: white;
}

.course-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.4rem;
    /* Keeps alignment consistent */
}

.course-info .fee {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-explore {
    background-color: var(--primary-red);
    color: white;
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: var(--transition);
    width: 100%;
    letter-spacing: 0.5px;
}

.btn-explore:hover {
    background-color: #dc2626;
    transform: scale(1.02);
}

.courses-pagination .swiper-pagination-bullet-active {
    background: var(--primary-red);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.testimonials-swiper {
    padding: 3rem 0 4rem;
}

.testimonial-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: var(--white);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    background-color: #f1f5f9;
}

.testimonial-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.play-icon-overlay svg {
    color: var(--primary-red);
    fill: var(--primary-red);
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.testimonial-info {
    background-color: var(--primary-red);
    padding: 1rem 1.5rem;
    color: white;
    text-align: center;
}

.testimonial-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonials-pagination {
    bottom: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--primary-red);
}

/* PG Course Section Settings */
.pg-course-section {
    padding: var(--section-padding);
    background-color: #f3f4f6;
}

.pg-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.pg-desc {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.learning-areas h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.learning-list {
    list-style: none;
    margin-bottom: 3.5rem;
}

.learning-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.learning-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--dark-black);
}

.accredited-logos {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.logo-item {
    height: 120px;
    /* width: 100px; */
    /* background: #e5e7eb; */
    /* Placeholder background */
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.logo-item img {
    max-height: 100%;
    max-width: 100%;
}

/* PG Card Specifics */
.pg-video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-gray);
}

.pg-card-banner {
    background-color: #ef4444;
    padding: 1rem 2rem;
    text-align: center;
    color: var(--white);
}

.banner-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pg-meta-info {
    margin-bottom: 2rem;
}

.pg-meta-info p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    opacity: 0.95;
}

.pg-meta-info span {
    font-weight: 700;
}

.btn-explore-pg {
    background: var(--white);
    color: #ef4444;
    display: inline-block;
    padding: 12px 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-explore-pg:hover {
    background-color: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive PG Section */
@media (max-width: 900px) {
    .pg-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pg-video-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .pg-content-left {
        text-align: center;
    }

    .learning-list li {
        padding-left: 0;
    }

    .learning-list li::before {
        position: relative;
        margin-right: 8px;
    }

    .accredited-logos {
        justify-content: center;
    }
}

/* Learn More Section */
.learn-more-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.learn-more-swiper {
    padding: 2rem 0 4rem;
}

.learn-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.learn-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.learn-card-image {
    position: relative;
    aspect-ratio: 1 / 1.1;
    background-color: #f1f5f9;
}

.learn-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.play-icon-circle {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.play-icon-circle:hover {
    transform: scale(1.1);
}

.play-icon-circle svg {
    color: var(--primary-red);
    fill: var(--primary-red);
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.learn-card-red-footer {
    background-color: #ef4444;
    padding: 1rem 1.5rem;
    text-align: center;
    color: var(--white);
}

.learn-card-red-footer h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.2rem;
}

.learn-more-pagination {
    bottom: 0 !important;
}

.learn-more-pagination .swiper-pagination-bullet-active {
    background: var(--primary-red);
}

@media (max-width: 768px) {
    .play-icon-circle {
        width: 50px;
        height: 50px;
    }

    .play-icon-circle svg {
        width: 20px;
        height: 20px;
    }
}

/* Aesthetic Medicine Section */
.aesthetic-medicine-section {
    padding: var(--section-padding);
    background-color: #f9fafb;
}

.aesthetic-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.course-group-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--dark-black);
}

.aesthetic-list {
    list-style: none;
    margin-bottom: 2rem;
}

.aesthetic-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.aesthetic-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--dark-black);
}

.mt-4 {
    margin-top: 2rem;
}

.accredited-logos-flex {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.logo-box {
    /* width: 100px; */
    height: 120px;
    /* background-color: #e2e8f0; */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-box img {
    max-width: 90%;
    max-height: 90%;
}

.aesthetic-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-gray);
}

.video-preview-box {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    background: #cbd5e1;
}

.video-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.play-btn-circle svg {
    color: var(--primary-red);
    fill: var(--primary-red);
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.aesthetic-card-banner {
    background-color: #ef4444;
    padding: 1rem 2rem;
    text-align: center;
    color: var(--white);
}

.banner-tag {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.aesthetic-info-rows {
    margin-bottom: 2rem;
}

.aesthetic-info-rows p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    opacity: 0.9;
}

.aesthetic-info-rows span {
    font-weight: 700;
}

.btn-aesthetic-explore {
    background: var(--white);
    color: #ef4444;
    display: inline-block;
    padding: 12px 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-aesthetic-explore:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .aesthetic-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .aesthetic-card {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .aesthetic-list li {
        padding-left: 0;
    }

    .aesthetic-list li::before {
        position: relative;
        margin-right: 10px;
    }

    .accredited-logos-flex {
        justify-content: center;
    }
}

/* Other Courses Section */
.other-courses-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.other-courses-swiper {
    padding: 2rem 0 4rem;
}

.other-course-card {
    background: var(--dark-black);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.other-course-card:hover {
    transform: translateY(-8px);
}

.other-course-image {
    aspect-ratio: 1 / 1;
    background-color: #f1f5f9;
}

.other-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-course-info {
    padding: 1rem 1.5rem 2rem;
    text-align: center;
    color: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Changed to start for better top alignment */
    align-items: center;
}

.other-course-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.5rem;
    /* Ensures consistent alignment across all cards */
}

.course-fee {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-explore-other {
    background-color: #ef4444;
    color: var(--white);
    text-decoration: none;
    padding: 12px 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    transition: var(--transition);
}

.btn-explore-other:hover {
    background-color: #dc2626;
    transform: scale(1.02);
}

.other-courses-pagination {
    bottom: 0 !important;
}

.other-courses-pagination .swiper-pagination-bullet-active {
    background: var(--primary-red);
}

/* Experts Section */
.experts-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.experts-swiper {
    padding: 1rem 0 4rem;
}

.expert-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f1f1;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.expert-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1.25;
    background-color: #f8fafc;
    overflow: hidden;
}

.expert-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.expert-card:hover img {
    transform: scale(1.05);
}

/* Hover Overlay */
.expert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 15;
    padding: 20px;
    pointer-events: none;
    /* Let clicks pass through unless specifically handled */
}

/* Allow clicks on children like play button */
.expert-overlay>* {
    pointer-events: auto;
}

.expert-card:hover .expert-overlay {
    background-color: rgba(239, 68, 68, 0.9);
    /* More deep red for full coverage */
}

.expert-hover-info {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    text-align: center;
    color: var(--white);
    margin-top: 20px;
    /* Space below play button */
}

.expert-card:hover .expert-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.expert-hover-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.expert-hover-info p {
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
    max-width: 95%;
    margin: 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Play Button Styling */
.expert-overlay .play-icon-circle {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.expert-overlay .play-icon-circle:hover {
    transform: scale(1.1);
}

.expert-overlay .play-icon-circle svg {
    color: var(--primary-red);
    fill: var(--primary-red);
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

/* Bottom Footer (Non-hover state) */
.expert-card-footer {
    background-color: #ef4444;
    padding: 1.2rem;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
}


.expert-card-footer h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.overlay-inner h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.overlay-inner p {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
}

.experts-pagination {
    bottom: 0 !important;
}

.experts-pagination .swiper-pagination-bullet-active {
    background: var(--primary-red);
}

/* Footer Styles */
.main-footer {
    background-color: var(--dark-black);
    color: var(--white);
    padding: var(--section-padding);
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--primary-red);
    opacity: 1;
}

.newsletter-box {
    margin-top: 3rem;
}

.newsletter-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    max-width: 450px;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 0.9rem;
    color: var(--text-main);
}

.newsletter-form button {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0 1.5rem;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #dc2626;
}

.footer-social p,
.footer-app p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.social-icons i,
.social-icon-svg {
    width: 18px;
    height: 18px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.app-btn {
    width: 100px;
    height: 42px;
    /* background-color: #1a1a1a; */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid #333; */
    overflow: hidden;
}

.app-btn img {
    height: 70%;
    width: auto;
}

.footer-logo {
    margin-top: 1rem;
    max-width: 250px;
}

@media (max-width: 640px) {
    .footer-logo {
        max-width: 200px;
    }
}

.support-agent-bubble {
    position: absolute;
    right: 3rem;
    bottom: 4rem;
    z-index: 10;
}

.agent-img-box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary-red);
    overflow: hidden;
    background-color: #f0f4f8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.agent-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bottom {
    background-color: #333;
    padding: 1.5rem 0;
    text-align: left;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }

    .support-agent-bubble {
        right: 2rem;
        bottom: 6rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
    }

    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }

    .newsletter-form button {
        padding: 12px;
        border-radius: 4px;
    }

    .support-agent-bubble {
        display: none;
    }
}



/* @media (max-width: 1500px) {
    .hero_title_img_container {
        width: 60%;
    }

    .hero_title_img_container img {
        width: 100%;
    }
} */

@media (max-width: 1550px) {
    .hero_title_img_container {
        width: 100%;
    }

    .hero_title_img_container img {
        width: 100%;
    }

    .slide-1,
    .slide-2,
    .slide-3 {
        padding: 0px 50px !important;
    }

    .hero-image {
        flex: 2;
        display: flex;
        justify-content: flex-end;
    }
}

.video-trigger {
    cursor: pointer;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.modal-close i {
    width: 32px;
    height: 32px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Floating Action Buttons Group - Revamped */
.floating-actions-group {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    /* Align icons to the edge */
}

.floating-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* The trick: hide everything except the icon box (60px) */
    transform: translateX(calc(100% - 50px));
}

.floating-btn:hover {
    transform: translateX(0);
}

.floating-btn .icon-box {
    width: 50px;
    height: 50px;
    background-color: #009900;
    /* Rich Green as in image */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 12px 0 0 12px;
    flex-shrink: 0;
    order: 1;
    /* Icon on the left */
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
}

.floating-btn .icon-box svg {
    width: 24px;
    height: 24px;
}

.floating-btn .btn-text {
    background-color: var(--white);
    color: #1a1a1a;
    padding: 0 25px;
    height: 50px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    order: 2;
    /* Text on the right */
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Specific */
.whatsapp-btn .icon-box {
    background-color: #25D366;
    /* WhatsApp Green */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-actions-group {
        top: auto;
        bottom: 20px;
        transform: none;
        gap: 10px;
    }

    .floating-btn {
        transform: translateX(calc(100% - 44px));
    }

    .floating-btn .icon-box {
        width: 44px;
        height: 44px;
        border-radius: 8px 0 0 8px;
    }

    .floating-btn .icon-box svg {
        width: 20px;
        height: 20px;
    }

    .floating-btn .btn-text {
        height: 44px;
        padding: 0 15px;
        font-size: 0.85rem;
    }
}

/* Hero Swiper Navigation */
.hero-next,
.hero-prev {
    color: var(--primary-red) !important;
    background: var(--white);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero-next:after,
.hero-prev:after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.hero-next:hover,
.hero-prev:hover {
    background: var(--primary-red);
    color: var(--white) !important;
}

/* Hide hero navigation on tablets and mobile screens */
@media (max-width: 1024px) {

    .hero-next,
    .hero-prev {
        display: none !important;
    }
}

/* Hero Pagination Container */
.hero-pagination-container {
    padding: 15px 0;
    display: flex;
    justify-content: center;
    background-color: #F9FAFB;
    /* border-bottom: 1px solid var(--border-gray); */
}

.hero-pagination {
    position: relative !important;
    bottom: 0 !important;
    width: auto !important;
    display: flex;
    gap: 8px;
}