/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #500a14;
    --primary-light: #7a1c2a;
    --accent-color: #d4af37;
    /* Gold */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --off-white: #f9f9f9;
    /* --font-heading: 'Playfair Display', serif; */
    --font-heading: 'Lato', serif;
    /* --font-body: 'Lato', sans-serif; */
    --font-body: "poppins";
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --container-width: 1200px;
}

/* <!-- -------------------------------------------------------Gloabal--------------------------------------------------------------- --> */

h1 h2 h3 h4 h5 h6 {
    font-family: "poppins";
    color: black;
}

p {
    font-family: "poppins";
    /* font-size: 15px; */
    font-size: 1.1em;
    color: black;
}

.custombtn {
    background-color: #79444c;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    font-family: poppins;
    color: #fff;
    transition: transform .5s;
    width: fit-content;
}

a.custombtn:hover,
button.custombtn:hover {
    transform: scale(0.95) !important;
}

.custombtn-light {

    background-color: #bc9b7a;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    font-family: poppins;
    font-weight: 600;
    color: #79444c;
    transition: transform .5s;
    width: fit-content;

}

.custombtn-light:hover {
    transform: scale(0.95);
}


.cont-sec {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    border-radius: 20px;
}

.cont-sec img {
    transition: transform 0.5s ease;
}

.cont-sec img:hover {
    transform: scale(0.99);
}

.cont-sec ul li {
    font-size: large;
}

/* <!-- -------------------------------------------------------Header--------------------------------------------------------------- --> */

.top-bar {
    background-color: #2c2c2c;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.top-bar a:hover {
    color: #d4af8c;
}

.logo-img {
    /* height: 120px;
		width: 220px; */
    height: 120px;
    width: 240px;
}

.main-nav {
    background-color: #f8f9fa;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #d4af8c !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-calendar {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-calendar:hover {
    background-color: #d4af8c;
    color: white;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas Styles */
.offcanvas-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.offcanvas-body {
    background-color: #f8f9fa;
    padding: 0 !important;
}

.offcanvas .navbar-nav {
    width: 100%;
}

.offcanvas .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 15px 20px !important;
    border-bottom: 1px solid #dee2e6;
    margin: 0 !important;
    display: block;
    width: 100%;
}

.offcanvas .nav-link:hover {
    color: #d4af8c !important;
    background-color: rgba(212, 175, 140, 0.1);
}


.offcanvas .dropdown-menu {
    background-color: rgba(212, 175, 140, 0.05);
    border: none;
    box-shadow: none;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    width: 100% !important;
    border-radius: 0 !important;
}

.offcanvas .dropdown-item {
    padding: 12px 40px;
    color: #666;
    border-bottom: 1px solid #eee;
    margin: 0;
}

.offcanvas .dropdown-item:hover {
    background-color: rgba(212, 175, 140, 0.1);
    color: #d4af8c;
}

.offcanvas .dropdown-item:last-child {
    border-bottom: none;
}

.offcanvas .btn-calendar {
    margin: 20px;
    width: calc(100% - 40px);
}


.offcanvas .dropdown-toggle::after {
    display: none;
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
    .top-bar {
        text-align: center;
    }

    .top-bar .row>div {
        margin-bottom: 5px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .desktop-nav {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .mobile-nav-toggle {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 12px;
        padding: 5px 0;
    }

    .top-bar .col-6 {
        margin-bottom: 3px;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .navbar-brand {
        font-size: 1rem !important;
    }
}





/* Scoped to .home-page */
.home-page {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--off-white);
    /* overflow-x: hidden; */
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4,
.home-page h5,
.home-page h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-page h1 {
    font-size: 3rem;
}

.home-page h2 {
    font-size: 2.5rem;
}

.home-page h3 {
    font-size: 2rem;
}

.home-page p {
    margin-bottom: 1rem;
}

.home-page a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

.home-page ul {
    list-style: none;
}

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

.home-page .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.home-page .text-center {
    text-align: center;
}

.home-page .d-flex {
    display: flex;
}

.home-page .justify-content-center {
    justify-content: center;
}

.home-page .align-items-center {
    align-items: center;
}

.home-page .gap-2 {
    gap: 1rem;
}

/* Buttons */
.home-page .custombtn,
.home-page .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}

.home-page .custombtn:hover,
.home-page .btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 10, 20, 0.2);
}

.home-page .custombtn-light {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
}

.home-page .custombtn-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Header (Minimal placeholder) */
.home-page header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Carousel Section */
.home-page .hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    /* Reduced to medium size */
    overflow: hidden;
    background: #000;
}

.home-page .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.home-page .hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.home-page .hero-caption {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
}

.home-page .hero-slide.active .hero-caption {
    transform: translateY(0);
    opacity: 1;
}

.home-page .hero-caption h1 {
    color: var(--white);
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.home-page .hero-caption h3 {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.home-page .hero-caption p {
    color: var(--off-white);
}

.home-page .hero-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .hero-controls button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.home-page .prev-btn {
    left: 20px;
}

.home-page .next-btn {
    right: 20px;
}

.home-page .hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.home-page .hero-indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.home-page .hero-indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

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

.home-page .centered-image-text {
    text-align: center;
    background: var(--white);
}

.home-page .centered-img {
    /* max-width: 600px; */
    max-width: 75%;
    margin-bottom: 2rem;
}

.home-page .top-section-description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--primary-color);
}

/* About / Welcome Section */
.home-page .welcome-img {
    border-radius: 100px 0 100px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Slider Section */
.home-page .slider-section {
    text-align: center;
    background-color: var(--off-white);
}

.home-page .mission-slider-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.home-page .mission-slider-container img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 300px;
    object-fit: cover;
    width: 300px;
}

.home-page .mission-slider-container img:hover {
    transform: scale(1.05);
}

/* Values Section */
.home-page .values-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.home-page .values-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: -12.5px;
}

/* Academics Section - Dark */
.home-page .academics-section {
    background: linear-gradient(rgba(80, 10, 20, 0.9), rgba(80, 10, 20, 0.9)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&q=80');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
}

.home-page .academics-section h1 {
    color: var(--white);
}

/* Background Variations for other sections */
/* Background Variations for other sections */
/* Kept: clinic-bg, diploma-bg, events-bg, questions-bg */

.home-page .clinic-bg {
    background: linear-gradient(rgba(20, 50, 60, 0.9), rgba(20, 50, 60, 0.9)), url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&q=80');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
}

.home-page .diploma-bg {
    background: linear-gradient(rgba(70, 50, 30, 0.9), rgba(70, 50, 30, 0.9)), url('https://images.unsplash.com/photo-1551076805-e1869033e561?auto=format&fit=crop&q=80');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
}

.home-page .events-bg {
    background: linear-gradient(rgba(100, 40, 40, 0.9), rgba(100, 40, 40, 0.9)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
}

.home-page .questions-bg {
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&q=80'); */
    /* background-size: cover; */
    /* background-attachment: fixed; */
}

.home-page .questions-bg .appoint-con {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

.home-page .questions-bg h1 {
    color: var(--primary-color) !important;
}

.home-page .questions-bg p {
    color: var(--text-dark) !important;
}

/* Ensure text remains white on these dark backgrounds */
.home-page .clinic-bg h1,
.home-page .diploma-bg h2,
.home-page .events-bg h2 {
    color: var(--white);
}

/* Home Section (Zig Zag) */
.home-page .home-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 40px 0;
}

.home-page .home-section.reverse {
    flex-direction: row-reverse;
}

.home-page .section-content {
    flex: 1;
}


.home-page .section-image {
    flex: 1;
}

.home-page .section-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.home-page .home-section:hover .section-image img {
    transform: scale(1.02);
}


/* Divider */
.home-page .styled-hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 0;
    opacity: 0.3;
}

/* Appointment Section */
.home-page .appoint-sec {
    background-color: var(--off-white);
    padding: 60px 0;
}

.home-page .appoint-con {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 800px;
}

/* Animation Classes - Scoped to avoid conflicts */
.home-page .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.home-page .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.home-page .slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    /* Reduced from 50px for mobile safety */
    transition: all 0.8s ease-out;
}

.home-page .slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    /* Reduced from 50px for mobile safety */
    transition: all 0.8s ease-out;
}

.home-page .slide-in-left.visible,
.home-page .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {

    .home-page .home-section,
    .home-page .home-section.reverse {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .home-page h1 {
        font-size: 2.5rem !important;
    }

    .home-page .carousel-caption h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .home-page h1 {
        font-size: 2rem !important;
    }

    .home-page h2 {
        font-size: 1.75rem !important;
    }

    .home-page .carousel-item {
        height: 50vh;
        /* Further reduced for mobile */
    }

    .home-page .hero-slider {
        height: 50vh;
        /* Further reduced for mobile */
    }

    .home-page .carousel-caption h1 {
        font-size: 1.8rem !important;
    }

    .home-page .carousel-caption h3 {
        font-size: 1.2rem !important;
    }

    /* Disable horizontal slide animations on small screens to prevent overflow */
    .home-page .slide-in-left,
    .home-page .slide-in-right {
        transform: translateY(20px);
        /* Fallback to simple fade-up */
        opacity: 0;
    }

    .home-page .slide-in-left.visible,
    .home-page .slide-in-right.visible {
        transform: translateY(0);
        opacity: 1;
    }

    .home-page .col-lg-6 {
        width: 100%;
    }

    .home-page .row {
        flex-direction: column;
    }
}

/* End Home Page Changes */


/* <!-- -------------------------------------------------------Banner Section--------------------------------------------------------------- --> */


.carousel-control-prev-icon {
    background: #79444c;
    padding: 20px;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background: #79444c;
    padding: 20px;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.carousel-item {
    background-color: #000000;
}

.carousel-item img {
    opacity: 0.6;
}

/* .carousel-item img:hover {
    opacity: 1.0;
} */

.carousel-caption {
    bottom: 250px !important;
}

.carousel-caption h1 {
    font-size: 60px;
    color: #E1D9D1;
    font-weight: 700;
}

.carousel-caption h3 {
    /* font-size: 60px; */
    color: #E5E4E2;
    font-weight: 500;
}

.carousel-caption p {
    color: #E5E4E2;
}


/* <!-- -------------------------------------------------------About-Us Section--------------------------------------------------------------- --> */


.abt-sec {
    background-image: url('/assets/images/abt-bg.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.abt-sec img {
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.abt-sec img:hover {
    transform: scale(1.05);
}

.abt-sec ul li {
    font-size: large;
}

.abt-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.abt-txt h1 {
    font-family: "poppins";
    color: #500a14;
}


.bg-flip {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.bg-flip::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/abt-bg.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
    pointer-events: none;
}

/* <!-- -------------------------------------------------------Services Section--------------------------------------------------------------- --> */


.programs-section {
    padding: 80px 0;
    background-color: #f0e6da;
    /* Beige background color */
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    flex-direction: column;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #8b4b55;
    /* Burgundy color */
    max-width: 400px;
}

.section-description {
    max-width: 450px;
    font-size: 16px;
    color: #666;
}

/* Programs Slider */
.programs-slider {
    margin: 0 -15px;
}

/* Program Card */
.program-card {
    padding: 0 15px;
}

.program-image {
    /* border-radius: 10px; */
    overflow: hidden;
    height: 300px;
    margin-bottom: 15px;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.program-content {
    height: 220px;
    margin-top: -25px;
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
}

.program-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.program-description {
    font-size: 10px;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: #8b4b55;
    /* Burgundy color */
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #6a3640;
}

.arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover .arrow {
    transform: translateX(5px);
}

/* Slick Slider Custom Styles */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    z-index: 1;
}

.slick-prev {
    left: -30px !important;
}

.slick-next {
    right: -25px !important;
}

.slick-prev:before,
.slick-next:before {
    color: #8b4b55 !important;
    font-size: 25px !important;
    opacity: 1;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0px;
    padding: 10px 0 !important;
}

.slick-dots {
    bottom: -30px !important;
}

.slick-dots li button:before {
    font-size: 20px;
    color: #ccc;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: #8b4b55 !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-header {
        flex-direction: column;
    }

    .section-title {
        margin-bottom: 20px;
        max-width: 100%;
    }

    .section-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {


    .main-header {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px 0px;
    }

    .logo-img {
        width: 160px;
        height: auto;
        margin-bottom: 10px;
    }

    .calander-btn {
        margin-top: 10px;
        justify-content: center;
    }

    .nav {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .nav .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav .nav-link {
        padding: 8px 0;
        font-size: 14px;
        text-align: center;
    }

    .top-bar {
        background-color: black;
        padding: 10px 0px;
    }


    .programs-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .program-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 24px;
    }

    .program-image {
        height: 400px;
    }

    .program-content {
        padding: 20px;
        height: 200px;
    }

    .program-title {
        font-size: 18px;
    }

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

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



}





/* <!-- -------------------------------------------------------Academics Section--------------------------------------------------------------- --> */


.academics-section {
    background-color: #79444c;
    background-image: url('/assets/images/drk-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.academics-txt {

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.academics-txt h1 {
    font-family: "poppins";
    color: #fff;
}

.academics-txt h4 {
    font-family: "poppins";
    color: #fff;
}

.academics-txt p {
    font-family: "poppins";
    color: #fff;
}

.academics-txt hr {
    font-family: "poppins";
    color: #fff;
}




/* <!-- -------------------------------------------------------Clinic Section--------------------------------------------------------------- --> */



.clinic-section {
    background-color: #bc9b7a;
    background-image: url('/assets/images/abt-bg.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.clinic-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clinic-txt h1 {
    font-family: "poppins";
    color: #fff;
}

.clinic-txt h4 {
    font-family: "poppins";
    color: #fff;
}

.clinic-txt hr {
    color: #fff;
}

.clinic-txt p {
    color: #fff;
}


/* <!-- -------------------------------------------------------News Section--------------------------------------------------------------- --> */


.news-section h1 {
    font-family: "poppins";
    color: black;
}

.blog-card:hover {
    cursor: pointer;
    ;
}

.blog-card:hover>h3 {
    color: #79444c;
}



/* <!-- -------------------------------------------------------Testimonail Section--------------------------------------------------------------- --> */



.testimonial-section {

    background-color: #79444c;
    background-image: url('/assets/images/drk-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.testimonial-con {
    padding: 80px 0px;
}

.testimonial-con h4 {
    color: #bc9b7a;
}

.testimonial-con h1 {
    color: #ffffff;
}



/* Headings */
.subtitle {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #bc9b7a;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.title {
    text-align: center;
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

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

.customer-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.customer-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 28px;
    }

    .testimonials {
        padding: 60px 20px;
    }
}

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

    .title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .leaf {
        width: 150px;
        height: 150px;
    }
}










/* <!-- -------------------------------------------------------Gallery Section--------------------------------------------------------------- --> */







/* Gallery Section */
.gallery-section {
    padding: 60px 20px;
}



/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* .gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
} */

.gallery-item {
    aspect-ratio: 1/1;
    /* square thumbnail */
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* View All Button */
.view-all-container {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    background-color: #7d4e57;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.view-all-btn:hover {
    background-color: #6a424a;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .gallery-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-section {
        padding: 40px 15px;
    }

    .gallery-title {
        font-size: 24px;
        margin-bottom: 30px;
    }


}

/* <!-- ------------------------------------------------------- Program Mission Section--------------------------------------------------------------- --> */

/* .program-mission-sec {
    display: flex;
    background-color: white;
    margin: auto;

}

.program-mission-sec .image-section {
    flex: 1;
}

.program-mission-sec .image-section img {
    width: 50%;
    height: 50%;
    object-fit: cover;
}

.program-mission-sec .content-section {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-mission-sec .content-section h2 {
    color: #008fa2;
    font-size: 28px;
    margin-bottom: 15px;
}

.program-mission-sec .content-section p {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
} */

/* .program-mission-sec {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    z-index: 1;
} */

/* .program-mission-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/assets/images/abt-bg.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
} */

/* .program-mission-con {
    display: flex;
    flex-direction: column;
    align-items: center;
} */

/* <!-- ------------------------------------------------------- Appointment Section--------------------------------------------------------------- --> */

.appoint-sec {
    background-color: #FEF8E6;
    padding: 80px 0;
}

.appoint-con {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apply-btn {
    padding: 10px 35px;
    background-color: #bc9b7a;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    font-family: poppins;
    font-weight: 600;
    color: #fff;
    transition: transform .5s;
    justify-content: center !important;
}

.apply-btn:hover {
    transform: scale(0.95);
}



/* <!-- -------------------------------------------------------Footer Section--------------------------------------------------------------- --> */



/* Footer Styles */
.footer {
    background: url('/assets/images/footer-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 0;
}


.gap-link {
    display: flex !important;
    gap: 20px;
}

.footer-content {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    /* padding: 80px 5% 50px 5%; */
    padding: 80px 1% 50px 1%;
    max-width: 1400px;
    margin: 0 auto;
    /* justify-items: start; */
    /* flex-direction: row; */
    justify-content: space-between;
}


/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    margin-bottom: 100px;
}

.logo img {
    width: 250px;
    height: auto;
}


.about-text {

    font-size: 14px;
    color: #fff;
    max-width: 300px;
}

/* Links Sections */
.footer-links-section {
    padding-right: 20px;
}

.footer-heading {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #fff;
    /* Gold color */
    letter-spacing: 1px;
}

.heading-line {
    display: inline-block;
    width: 3px;
    height: 20px;
    background-color: #bc9b7a;
    margin-right: 10px;
}

.footer-links {
    list-style: none;
    padding: 0%;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #bc9b7a;
}

/* Contact Section */
.footer-contact-section {
    max-width: 300px;
}

.contact-intro {
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: #bc9b7a;
    margin-right: 10px;
    font-size: 16px;
    margin-top: 4px;
}

.contact-item p {
    font-size: 14px;
    color: #eee;
}

.contact-item a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #bc9b7a;
}

/* Copyright Bar */
.copyright-bar {
    text-align: center;
    display: flex;
    padding: 15px 100px;
    font-size: 14px;
    color: #fff;
    justify-content: space-between;
}

.copyright-bar a {
    color: #bc9b7a;
    text-decoration: none;
}

.copyright-bar p {
    color: #fff;
}

/* Responsive Styles */
.footer-content {
    display: flex;
    /*grid-template-columns: repeat(2, 1fr);*/

}

.footer-logo-section {
    grid-column: span 2;
}
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo-section {
        grid-column: span 1;

    }



    .footer-links-section,
    .footer-contact-section {
        padding-right: 10;
    }


}

@media (max-width: 480px) {
    .footer-content {
        padding: 40px 5%;
        flex-direction: column;
    }

    .copyright-bar {
        text-align: center;
        display: flex;
        padding: 15px 0;
        font-size: 14px;
        color: #fff;
        justify-content: space-between;
        flex-direction: column;
    }

    .diploma-container {
        display: flex;
        flex-direction: column;
    }

    .diploma-item {
        padding: 15px 25px;
        width: 100% !important;
        position: relative;
    }

}





/* ----------------------------------------------------------------Contact Us Page--------------------------------------------------------------------- */


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

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #8c4a4a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.icon-circle svg {
    width: 22px;
    height: 22px;
    color: #8c4a4a;
}

.info-text h3 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #8c4a4a;
    font-weight: 500;
}

.info-text p {
    font-size: 16px;
    color: #b08e8e;
}

.form-container {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    background-color: white;
    padding: 40px;
}

.form-container h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #8c4a4a;
}

.form-group textarea {
    min-height: 100px;
    resize: none;
}



/* Responsive Design */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .form-container {
        width: 100%;
    }

    .contact-content {
        padding: 30px;
    }

    .form-container {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .contact-content h1 {
        font-size: 24px;
    }

    .form-container h2 {
        font-size: 20px;
    }

    .contact-content {
        padding: 25px;
    }

    .form-container {
        padding: 25px;
    }

    .info-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 400px) {
    .contact-content h1 {
        font-size: 22px;
    }

    .form-container h2 {
        font-size: 18px;
    }

    .contact-content {
        padding: 20px;
    }

    .form-container {
        padding: 20px;
    }
}









/* --------------------------------------------------Breadcrum--------------------------------------------------------------- */



/* .breadcrum-sec {
    background-image: url('/assets/images/title-img.PNG');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
} */

.breadcrum-sec {
    position: relative;
    background-image: url('/assets/images/title-img.PNG');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* BLACK OPACITY OVERLAY */
.breadcrum-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    /* adjust opacity here */
    z-index: 1;
}

/* TEXT STYLING */
.breadcrum-sec h1 {
    position: relative;
    font-family: 'Poppins';
    font-size: 36px;
    color: #fff;
    text-align: end;
    letter-spacing: -2px;
    z-index: 2;
    /* POP-UP EFFECT */
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: textPop 0.8s ease-out forwards;
}

/* POP-UP ANIMATION */
@keyframes textPop {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.breadcrum-sec h2 {
    font-family: 'Poppins';
    font-size: 32px;
    color: #fff;
    text-align: end;
}

.breadcrum-sec h3 {
    font-family: 'Poppins';
    font-size: 28px;
    color: #fff;
    text-align: end;
}

.breadcrum-sec h4 {
    font-family: 'Poppins';
    font-size: 24px;
    color: #fff;
    text-align: end;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */
.program-sec {
    padding: 80px 0;
    background-color: #FEF8E6;
}

.course-series-sec {
    padding: 80px 0;
    background-color: white;
}

.styled-hr {
    border: none;
    height: 4px;
    width: 80%;
    background: #79444C;
    background: linear-gradient(90deg, rgba(121, 68, 76, 1) 0%, rgba(188, 155, 122, 1) 100%);
    border-radius: 10px;
    margin: 20px auto;
    /* Centers it horizontally */
    display: block;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleX(1);
    }

    50% {
        opacity: 0.6;
        transform: scaleX(1.1);
    }
}

/* --------------------------------------------------Trimesters--------------------------------------------------------------- */


.trimesters-sec {
    padding: 80px 0;
    background-color: #f0e6da;
    /* Beige background color */
}

.trimesters-title {
    color: #8c4a4a;
    font-family: "poppins";
}


.part-content {
    margin-top: -25px;
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0px 15px rgb(0 0 0 / 42%);

    min-height: 150px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-evenly;
}




/* --------------------------------------------------LMT Cohort--------------------------------------------------------------- */

.lmt-card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 38%);
}




/* -----------------------------------------------------Apply--------------------------------------------------------------------- */

.apply-form {
    padding: 80px 0px;
    background-color: #f0e6da;
    display: flex;
    justify-content: center;
}


.form-container {
    background-color: #f0e6da;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    padding: 30px;
}

.progress-container {
    position: relative;
    margin-bottom: 40px;
}

.progress-bar {
    position: absolute;
    top: 15px;
    left: 0;
    height: 2px;
    background-color: #ccc;
    width: 100%;
    z-index: 1;
}

.progress-fill {
    position: absolute;
    top: 15px;
    left: 0;
    height: 2px;
    background-color: #3498db;
    width: 0%;
    z-index: 2;
    transition: width 0.3s ease;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.step.active {
    background-color: #8c4a4a;
}

.step.completed {
    background-color: #8c4a4a;
}

.form-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #0000;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.date-input-container {
    position: relative;
}

.date-input-container i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.btn-prev {
    background-color: #95a5a6;
    color: white;
}

.btn-prev:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn-next {
    background-color: #8c4a4a;
    color: white;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
}


/* Additional CSS for step 3 */
.note {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.section-title {
    font-size: 20px;
    margin: 25px 0 15px 0;
    color: #333;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

/* Form container styles */
.form-container {
    background-color: #f0e6da;
    padding: 30px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

/* Form title styles */
.form-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Form group styles */
.form-group {
    margin-bottom: 20px;
}

/* Label styles */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

/* Input styles */
.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Row layout for side-by-side inputs */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.form-row .col {
    flex: 1;
}

/* Enhanced checkbox styles */
.form-check {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.form-check-input {
    margin-right: 8px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-label {
    font-weight: normal;
    cursor: pointer;
}

/* Custom checkbox styling */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #aaa;
    border-radius: 3px;
    outline: none;
    background-color: white;
    position: relative;
}

input[type="checkbox"]:checked {
    background-color: #8d6e63;
    border-color: #8d6e63;
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    top: 2px;
    left: 6px;
    transform: rotate(45deg);
}

/* Custom radio button styling */
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #aaa;
    border-radius: 50%;
    outline: none;
    background-color: white;
    position: relative;
}

input[type="radio"]:checked {
    border-color: #8d6e63;
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #8d6e63;
    top: 4px;
    left: 4px;
}






/* Signature pad styles */
.signature-pad {
    position: relative;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    margin-bottom: 15px;
}

#signature-canvas {
    width: 100%;
    height: 200px;
    border-radius: 4px;
    cursor: crosshair;
    background-color: #fff;
}

.signature-pad-tools {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.btn-clear-signature {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
}

.btn-clear-signature:hover {
    background-color: #e9ecef;
}



/* File upload styling */
.form-control-file {
    display: block;
    width: 100%;
}

.file-upload {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.file-upload:hover {
    background-color: #e9ecef;
}

.file-upload input[type="file"] {
    display: none;
}

.file-name {
    margin-left: 10px;
    font-size: 14px;
}

/* Legal text styling */
.legal-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}


/* --------------------------------------------------------------------Library Page----------------------------------------------------- */


.book-sec {
    padding: 80px 0;
}

.booksummery-img {
    height: auto;
    width: 300px;
}

.pub-year {
    color: #8c4a4a;
}

.scan-icon {
    height: 150px;
    width: 150px;
}





/* --------------------------------------------------------------------Spacialist Programs Page----------------------------------------------------- */



.program-body {
    display: flex;
    justify-content: space-between;
}

.program-content {
    height: 220px;
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0px 15px rgb(0 0 0 / 42%);
}


.program-logo {

    height: 135px;
    width: 135px;
}

.service-logo {

    height: 250px;
    width: 100%;
}

.service-logo img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.pagination-info {
    font-size: 14px;
    color: #6c757d;
}

.card-body {
    padding: 1.5rem;
}

.website-link {
    color: #7d4e57;
    text-decoration: none;
}

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

.no-website {
    color: #6c757d;
}




/* ---------------------------------------------------------------------CE Page--------------------------------------------------------------------- */


.box-link {
    text-decoration: none;
}

.box-part-content {
    display: flex;
    height: 180px;
    margin-top: -25px;
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0px 15px rgb(0 0 0 / 42%);
    flex-direction: column;
    align-items: center;
}


.logo-c {
    width: 300px;
    height: 300px;
    align-items: center;
}

.box-part-title {
    text-decoration: none;
    font-family: "poppins";
    color: black;
}





.form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1 0 300px;
}

.form-group.full-width {
    flex: 1 0 100%;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.required {
    color: #e74c3c;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.radio-group {
    margin-top: 20px;
    margin-bottom: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

input[type="radio"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.price-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.price-label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 24px;
    color: #333;
    font-weight: 500;
}

.btn-register {
    background-color: #8d6e63;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.btn-register:hover {
    background-color: #7d5d52;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        flex: 1 0 100%;
    }
}





/* -------------------------------------------Course Series------------------------------------------------------ */



/* Course table */
.course-table {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

/* Table header */
.table-header {
    display: grid;
    /* grid-template-columns: 2fr 1fr 3fr; */
    /* grid-template-columns: 1fr 2fr 1fr 3fr; */
    grid-template-columns: 1fr 2fr 3fr;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
    font-size: 14px;
}

.header-cell {
    padding: 12px 16px;
    color: #000000;
}

.header-cell i {
    margin-left: 5px;
    font-size: 12px;
    color: #999;
}

/* Table rows */
.table-row {
    display: grid;
    /* grid-template-columns: 1fr 1fr 2fr; */
    /* grid-template-columns: 1fr 2fr 1fr 3fr; */
    grid-template-columns: 1fr 2fr 3fr;
    border-bottom: 1px solid #e0e0e0;
}

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

.cell {
    padding: 16px;
    display: flex;
    align-items: center;
}

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

.course-name {
    font-weight: 500;
    color: #333;
}

.hours {
    font-weight: 500;
    color: #333;
    justify-content: center;
}

.courses-list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    align-items: flex-start;
}

.course-item {
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.course-item.highlight {
    background-color: #f0f4f8;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
}

.page-info {
    color: #999;
    font-size: 14px;
}

.page-controls {
    display: flex;
    gap: 8px;
}

.page-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
}

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

.page-btn:not(:disabled):hover {
    background-color: #f5f5f5;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .table-header,
    .table-row {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }


}

@media (max-width: 576px) {

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .header-cell,
    .cell {
        border-bottom: 1px solid #eee;
    }

    .table-row {
        border-bottom: 2px solid #ddd;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .cell {
        padding: 8px 16px;
    }

    .hours {
        justify-content: flex-start;
    }

    .header-cell:not(:first-child),
    .cell:not(:first-child) {
        padding-top: 0;
    }
}




/* ---------------------------------------------------CE Inner Page---------------------------------- */

.border-card {

    border-style: solid none none;
    border-width: 0.375rem 1px 1px;
    border-radius: 10px;
    border-color: #79444c;
    padding: 20px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 38%);
}



.registration-form {
    background-color: #f0e6da;
    padding: 80px 0;
}


/* ---------------------------- Courses Levels ---------------------------- */


#courses_level_accordion {
    margin: 100px auto;
    /* width: 1000px; */
    min-width: 800px;
}

#courses_level_accordion li {
    list-style: none;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
}

#courses_level_accordion li label {
    padding: 10px;
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: #79444c;
    flex-direction: column;
    align-content: space-around;
    flex-wrap: nowrap;
}

#courses_level_accordion label span {
    transform: rotate(90deg);
    font-size: 22px;
    color: #333;
}

#courses_level_accordion label+input[type="radio"] {
    display: none;
}

#courses_level_accordion .content {
    padding: 5px 10px;
    line-height: 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s linear;
    border-top: 3px solid #bc9b7a;
}

#courses_level_accordion label+input[type="radio"]:checked+.content {
    max-height: 400px;
}


/* Tab container styling */
.scroll_tabs_container {
    background-color: transparent;
    /* Optional: Adjust if you want a background for the container */
}

/* Tab styling (default state) */
.scroll_tab_inner span {
    cursor: pointer;
    padding: 1px 0px;
    background-color: #79444c !important;
    /* Tab background color */
    color: white !important;
    /* Text color */
    margin-right: 5px;
    display: inline-block;
    border: 1px solid #79444c !important;
    border-bottom: none;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    font-weight: bold;
}

/* Active tab styling */
.scroll_tab_inner span.active {
    background-color: #bc9b7a !important;
    /* Slightly lighter shade for active tab */
    color: white !important;
    border-color: #bc9b7a !important;
}

/* Content area styling */
.tab-content {
    display: none;
    padding: 15px;
    border: 1px solid #79444c;
    border-top: none;
    background-color: #fff;
    /* White background for content */
    color: #333;
    /* Dark text for readability */
}

.tab-content.active {
    display: block;
}

/* Arrow styling */
.scroll_tab_left_button::before,
.scroll_tab_right_button::before {
    border-color: #bc9b7a !important;
    /* Arrow color */
}

.scroll_tab_left_button,
.scroll_tab_right_button {
    /* background-color: transparent !important; */
    background-color: #79444c !important;
    /* Remove default background */
}







/* Tab container styling */
.scroll_tabs_container {
    background-color: transparent;
    /* Optional: Adjust if you want a background for the container */
}

/* Tab styling (default state) */
.scroll_tab_inner span {
    cursor: pointer;
    padding: 1px 0px;
    background-color: #79444c !important;
    /* Tab background color */
    color: white !important;
    /* Text color */
    margin-right: 5px;
    display: inline-block;
    border: 1px solid #79444c !important;
    border-bottom: none;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    font-weight: bold;
}

/* Active tab styling */
.scroll_tab_inner span.active {
    background-color: #bc9b7a !important;
    /* Slightly lighter shade for active tab */
    color: white !important;
    border-color: #bc9b7a !important;
}

/* Content area styling */
.tab-content {
    display: none;
    padding: 15px;
    border: 1px solid #79444c;
    border-top: none;
    background-color: #fff;
    /* White background for content */
    color: #333;
    /* Dark text for readability */
}

.tab-content.active {
    display: block;
}

/* Arrow styling */
.scroll_tab_left_button::before,
.scroll_tab_right_button::before {
    border-color: #bc9b7a !important;
    /* Arrow color */
}

.scroll_tab_left_button,
.scroll_tab_right_button {
    /* background-color: transparent !important; */
    background-color: #79444c !important;
    /* Remove default background */
}

/* <!--------------------------------------------------------- Home -----------------------------------------------------------------> */
.centered-image-text {
    /* padding: 80px 20px; */
    padding: 50px 50px;
    text-align: center;
    background-color: #f9f9f9;
}

.centered-image-text .container {
    max-width: 800px;
    margin: 0 auto;
}

.centered-image-text .centered-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    padding: 30px;
    transition: transform 0.5s ease;
}

.centered-image-text img:hover {
    transform: scale(1.04);
}

.centered-image-text .top-section-description {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.5;
}



.wow-image-text {
    padding: 100px 20px;
    background: linear-gradient(135deg, #fffaf5, #f4ebe3);
}

.wow-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* Image Block */
.wow-image img {
    width: 100%;
    max-width: 580px;
    border-radius: 20px;
    transition: transform 0.5s ease;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.1);
    padding: 65px;
    min-height: 346px;
}

.wow-image img:hover {
    transform: scale(1.04);
}

/* Text Block */
.wow-text {
    flex: 1;
    min-width: 300px;
}

.glass-content {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

/* Optional glowing edge */
.glass-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, #bc9b7a, #ffdab3, #bc9b7a);
    z-index: -1;
    opacity: 0.2;
}

/* Text Styling */
.glass-content h2 {
    font-size: 2.5rem;
    color: #500a14;
    margin-bottom: 20px;
}

.glass-content h3 {
    font-size: 28px;
    color: #500a14;
    margin-bottom: 20px;
}

.glass-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Button */
.wow-button {
    display: inline-block;
    padding: 12px 28px;
    background: #bc9b7a;
    color: white;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.3s ease;
}

.wow-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.wow-button:hover::before {
    left: 100%;
}

.wow-button:hover {
    background: #79444c;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .glass-content h3 {
        font-size: 1.8rem;
    }

    .glass-content h2 {
        font-size: 2rem;
    }

    .glass-content p {
        font-size: 1rem;
    }

    .wow-container {
        flex-direction: column;
        gap: 30px;
    }
}


/* Main Hero Section */

.main-hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 199, 176, 0.9), rgba(188, 155, 122, 0.7)), #D4C7B0;
    /* Soft taupe with gradient overlay */
}

.main-hero-section .hero-image {
    height: 70%;
    width: 70%;
    object-fit: contain;
    opacity: 0.3;
    /* Increased for better visibility */
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

.main-hero-section .moon-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #3A1E1A;
    /* Slightly darker brown for contrast */
    padding: 40px;
    max-width: 900px;
}

.main-hero-section .moon-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInDown 1s ease-out;
    color: #3A1E1A;
}

.main-hero-section .moon-details {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: backwards;
    color: #3A1E1A;
    font-weight: 500;
}

.main-hero-section .cta-button {
    display: inline-block;
    padding: 14px 40px;
    background-color: #bc9b7a;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: backwards;
}

.main-hero-section .cta-button:hover {
    transform: translateY(-3px);
    background-color: #500a14;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-hero-section {
        height: 70vh;
    }

    .main-hero-section .moon-title {
        font-size: 2.5rem;
    }

    .main-hero-section .moon-details {
        font-size: 1.1rem;
    }

    .main-hero-section .hero-image {
        height: 60%;
        width: 80%;
    }

}

@media (max-width: 480px) {
    .main-hero-section .moon-title {
        font-size: 2rem;
    }

    .main-hero-section .moon-details {
        font-size: 0.95rem;
    }

    .main-hero-section .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .main-hero-section .hero-image {
        height: 50%;
        width: 70%;
    }

}

.slider-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    /* background-color: #f0e6da !important; */
    border-radius: 30px;
}

.slider-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #500a14;
}

.slider-section p {
    font-size: 1.1em;
    color: black;
    max-width: 700px;
    margin: 0 auto 40px;
}

.slider-section .slider {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.slider-section .slider img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.slider-section .btn {
    display: inline-block;
    background-color: #79444c;
    color: white;
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(121, 68, 76, 0.3);
}

.slider-section .btn:hover {
    background-color: #c8b297;
    box-shadow: 0 6px 20px rgba(200, 178, 151, 0.5);
}

.slider img:hover {
    transform: scale(1.05);
}

/* -------------------------------------------------------------------- */

/* Each section is a .home-section */
.home-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    margin-top: 100px;
    gap: 40px;
}

/* Alternate layout: reverse flex for even sections */
.home-section.reverse {
    flex-direction: row-reverse;
}

.home-section .section-content {
    flex: 1;
}

.home-section .section-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    /* color: #222; */
    color: #500a14;
}

.home-section .section-content p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: #555;
    max-width: 500px;
}

.home-section .section-content ul {
    font-size: 1.125rem;
    color: #555;
    text-align: justify;
}

.home-section .btn {
    display: inline-block;
    background-color: #79444c;
    color: white;
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(121, 68, 76, 0.3);
}

.home-section .btn:hover {
    background-color: #c8b297;
    box-shadow: 0 6px 20px rgba(200, 178, 151, 0.5);
}

.home-section .section-image {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.home-section .section-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 15px;
}

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

@media (max-width: 480px) {
    .home-section .section-image img {
        max-height: 250px;
    }
}

@media (max-width: 768px) {
    .home-section .section-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .home-section .section-image {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .home-section {
        flex-direction: column;
        text-align: center;
    }

    .home-section.reverse {
        flex-direction: column;
    }

    .home-section .section-content,
    .home-section .section-image {
        width: 100%;
    }

    .home-section .section-content p {
        max-width: 100%;
    }

    .home-section .btn {
        padding: 12px 26px;
        font-size: 0.95rem;
    }
}

.animated {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated.aos-animate {
    opacity: 1;
    transform: none;
}


.features-wrapper {
    padding: 80px 20px;
    /* background: url('/assets/images/Core LMT Curriculum.jpeg') no-repeat center center/cover; */
    /* background: #fff7f0; */
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.features-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 247, 240, 0.5);
    /* soft overlay to keep readability */
    z-index: -1;
}

.features-header {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-section-title {
    font-size: 2.5rem;
    color: #a2183f;
    margin-bottom: 15px;
    font-weight: 700;
}

.features-section-subtitle {
    font-size: 1.1rem;
    /* color: #666; */
    color: #2d2d2d;
    line-height: 1.5;
    font-weight: 700;
}

.features-section-btn {
    margin: 5px 5px;
    display: inline-block;
    background-color: #79444c;
    color: white;
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(121, 68, 76, 0.3);
}

.features-section-btn:hover {
    background-color: #c8b297;
    box-shadow: 0 6px 20px rgba(200, 178, 151, 0.5);
}


/* Feature Card Row */
.feature-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Feature Cards */
.feature-card {
    flex: 1 1 calc(33.333% - 30px);
    /* background: white; */
    background: rgba(255, 255, 255, 0.55);
    /* More transparent */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    border-left: 6px solid #bc9b7a;
    backdrop-filter: blur(6px);
    /* Optional: adds frosted glass effect */
    /* Optional: adds frosted glass effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.7);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #bc6c25;
}

.feature-card p {
    color: #2d2d2d;
    margin-bottom: 15px;
}

.feature-card ul {
    padding-left: 20px;
    color: #2d2d2d;
}

.feature-card ul li {
    margin-bottom: 8px;
    list-style-type: disc;
    font-size: 0.95rem;
}

.feature-card .btn {
    display: inline-block;
    background-color: #79444c;
    color: white;
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(121, 68, 76, 0.3);
}

.feature-card .btn:hover {
    background-color: #c8b297;
    box-shadow: 0 6px 20px rgba(200, 178, 151, 0.5);
}



/* Responsive */
@media (max-width: 992px) {
    .feature-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .feature-card {
        flex: 1 1 100%;
    }

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

    .features-section-subtitle {
        font-size: 1rem;
    }
}




.section-style-1 {
    padding: 100px 20px;
    background: #faf5f0;
    display: flex;
    justify-content: center;
}

.section-style-1 .content-box {
    background: #fff;
    max-width: 700px;
    padding: 40px 30px;
    text-align: center;
    border-left: 6px solid #bc9b7a;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-style-1 .content-box h1 {
    font-size: 2.5rem;
    color: #500a14;
    margin-bottom: 15px;
}

.section-style-1 .content-box h2 {
    font-size: 2.2rem;
    color: #500a14;
    margin-bottom: 15px;
}

.section-style-1 .content-box p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}



.section-style-2 {
    padding: 100px 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-style-2 .text-content {
    max-width: 800px;
    border-left: 5px solid #6f4f3d;
    padding-left: 40px;
}

.section-style-2 .text-content h2 {
    font-size: 2rem;
    color: #3c1f1f;
    margin-bottom: 10px;
}

.section-style-2 .text-content p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
}



.section-style-3 {
    background: linear-gradient(to right, #e4dad2, #fff);
    padding: 120px 20px;
    text-align: center;
}

.section-style-3 .banner-content {
    max-width: 1050px;
    /* max-width: 900px; */
    margin: 0 auto;
}

.section-style-3 .banner-content h1 {
    font-size: 3.0rem;
    color: #2f1a1a;
    margin-bottom: 20px;
}

.section-style-3 .banner-content h2 {
    font-size: 2.8rem;
    color: #2f1a1a;
    margin-bottom: 20px;
}

.section-style-3 .banner-content p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
}

/* Applies to any <ul> inside content sections */
.section-style-1 ul,
.section-style-2 ul,
.section-style-3 ul {
    margin-top: 15px;
    padding-left: 25px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    list-style-type: disc;
}

.section-style-1 ul li,
.section-style-2 ul li,
.section-style-3 ul li {
    margin-bottom: 10px;
}


.section-style-1 .btn,
.section-style-2 .btn,
.section-style-3 .btn {
    display: inline-block;
    background-color: #79444c;
    color: white;
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(121, 68, 76, 0.3);
}

.section-style-1 .btn:hover,
.section-style-2 .btn:hover,
.section-style-3 .btn:hover {
    background-color: #c8b297;
    box-shadow: 0 6px 20px rgba(200, 178, 151, 0.5);
}



.section-style-4 {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}

/* Overlay tint to control contrast */
.section-style-4::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    /* Adjust for more or less visibility */
    z-index: 1;
}

/* Inner content block with glass effect */
.section-style-4 .banner-content {
    position: relative;
    z-index: 2;
    /* max-width: 1000px; */
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    /* Translucent white */
    padding: 40px 40px;
    /* border-radius: 20px; */
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Heading */
.section-style-4 .banner-content h1 {
    font-size: 3.0rem;
    color: #2f1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-style-4 .banner-content h2 {
    font-size: 2.8rem;
    color: #2f1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Paragraph */
.section-style-4 .banner-content p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
}

/* Optional: Button styling (reusing your existing style) */
.section-style-4 .btn {
    display: inline-block;
    background-color: #79444c;
    color: white;
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(121, 68, 76, 0.3);
}

.section-style-4 .btn:hover {
    background-color: #c8b297;
    box-shadow: 0 6px 20px rgba(200, 178, 151, 0.5);
}



.section-style-5 {
    padding: 100px 20px;
    background: #fff7f0;
    text-align: center;
}

.slider-header {
    max-width: 800px;
    margin: 0 auto 40px;
}

.slider-header h1 {
    font-size: 2.8rem;
    color: #2f1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.slider-header h2 {
    font-size: 2.5rem;
    color: #2f1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.slider-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Slick Carousel Custom Styles */
.section-style-5-slick-carousel {
    max-width: 1000px;
    margin: 0 auto;
}

.section-style-5-slick-carousel .slide-item {
    padding: 10px;
}

.section-style-5-slick-carousel .slide-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.section-style-5-slick-carousel .slide-item img:hover {
    transform: scale(1.02);
}

/* .slick-prev:before,
.slick-next:before {
    color: #79444c;
    font-size: 30px;
} */

/* ===================== Common Image Style ===================== */
.slider-container img,
.section-style-8 .slick-slider img {
    width: 100%;
    max-width: 500px;
    max-height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

/* ===================== Section 6 ===================== */
.section-style-6 {
    background: linear-gradient(to right, #fefaf6, #f0e8dd);
    padding: 100px 20px;
}

.section-style-6-inner {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    justify-content: space-around;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.section-style-6 .slider-container,
.section-style-6 .text-container {
    flex: 1 1 500px;
    max-width: 500px;
}

.section-style-6 .text-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2f1a1a;
}

.section-style-6 .text-container p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===================== Section 7 ===================== */
.section-style-7 {
    background: #f0f5f7;
    padding: 100px 20px;
}

.section-style-7-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.section-style-7 .text-container,
.section-style-7 .slider-container {
    flex: 1 1 500px;
    max-width: 500px;
}

.section-style-7 .text-container {
    color: #1e3c3c;
}

.section-style-7 .text-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-style-7 .text-container p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===================== Section 8 ===================== */
.section-style-8 {
    background: #fdf6f2;
    padding: 100px 20px;
    text-align: center;
}

.section-style-8-container {
    max-width: 900px;
    margin: 0 auto;
}

.section-style-8 .slick-slider img {
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.section-style-8 .text-container h2 {
    font-size: 2.2rem;
    color: #3d1c1c;
    margin-top: 40px;
}

.section-style-8 .text-container p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin: 20px 0;
}

.section-style-8 .text-container ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.section-style-8 .text-container ul li {
    font-size: 1rem;
    margin: 8px 0;
    color: #1d3c55;
}

.section-style-8 .cta-button {
    display: inline-block;
    background: #511e1e;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.section-style-8 .cta-button:hover {
    background: #381414;
}

/* ===================== Shared UL / LI / Button Styles ===================== */
.section-style-6 ul,
.section-style-7 ul,
.section-style-8 ul {
    margin-top: 15px;
    padding-left: 25px;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    list-style-type: disc;

}

.section-style-6 ul li,
.section-style-7 ul li,
.section-style-8 ul li {
    margin-bottom: 10px;
    text-align: justify;
}

.section-style-6 .btn,
.section-style-7 .btn,
.section-style-8 .btn {
    display: inline-block;
    background-color: #79444c;
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(121, 68, 76, 0.3);
}

.section-style-6 .btn:hover,
.section-style-7 .btn:hover,
.section-style-8 .btn:hover {
    background-color: #c8b297;
    box-shadow: 0 6px 20px rgba(200, 178, 151, 0.5);
    color: #2f1a1a;
}

/* ===================== Responsive Fixes ===================== */
@media (max-width: 768px) {

    .section-style-6-inner,
    .section-style-7-container {
        flex-direction: column;
        text-align: center;
    }

    .section-style-6 .text-container,
    .section-style-7 .text-container {
        text-align: center;
    }

    .section-style-6 .slider-container,
    .section-style-7 .slider-container {
        width: 100%;
        max-width: 100%;
    }

    .section-style-6 .slider-container img,
    .section-style-7 .slider-container img,
    .section-style-8 .slick-slider img {
        max-width: 100%;
        max-height: 250px;
    }







}

/* Responsive for Section 7 reverse stack */
@media (max-width: 991px) {
    .section-style-7-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .section-style-7 .text-container,
    .section-style-7 .slider-container {
        max-width: 100%;
    }
}



.diploma-section {
    padding: 100px 20px;
    background: #fffdf9;
    position: relative;
}

.diploma-title {
    text-align: center;
    font-size: 2.5rem;
    color: #500a14;
    margin-bottom: 60px;
}

.diploma-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
}

.diploma-item {
    flex: 1 1 calc(50% - 30px);
    box-sizing: border-box;
}

.diploma-item .content {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #bc9b7a;
    transition: transform 0.3s ease;
}

.diploma-item:hover .content {
    transform: translateY(-5px);
}

.diploma-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #79444c;
}

.diploma-item p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

.diploma-item .diploma-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
    margin: -25px -25px 20px -25px;
    border-bottom: 5px solid #bc9b7a;
    overflow: hidden;
    position: relative;
}

.diploma-item .diploma-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: inherit;
    transform: scale(1);
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(1);
    z-index: 1;
}

.diploma-item:hover .diploma-image::before {
    transform: scale(1.1);
    filter: brightness(0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
    .diploma-item {
        flex: 1 1 100%;
    }

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

@media (max-width: 576px) {
    .diploma-item .content {
        padding: 20px;
    }

    .diploma-item h3 {
        font-size: 1.1rem;
    }

    .diploma-item p {
        font-size: 0.85rem;
    }

    .diploma-image {
        height: 180px;
    }
}







.timeline-section {
    padding: 100px 20px;
    background: #fffdf9;
    position: relative;
}

.timeline-title {
    text-align: center;
    font-size: 2.5rem;
    color: #500a14;
    margin-bottom: 60px;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.timeline-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #bc9b7a;
    transform: translateX(-50%);
}

.timeline-item {
    /* padding: 20px 30px; */
    padding: 15px 25px;
    width: 50%;
    position: relative;
}

.timeline-item .content {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #bc9b7a;
}

.timeline-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #79444c;
}

.timeline-item ul {
    padding-left: 20px;
    list-style-type: disc;
}

.timeline-item ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
}

/* Positioning Left and Right */
.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

/* Push content over from center line */
.timeline-item.left .content {
    margin-right: 30px;
    text-align: left;
}

.timeline-item.right .content {
    margin-left: 30px;
    text-align: left;
}


.timeline-item .timeline-image {
    /* width: 100%; */
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
    margin: -25px -25px 20px -25px;
    border-bottom: 5px solid #bc9b7a;
    overflow: hidden;
    position: relative;
}

.timeline-item .timeline-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: inherit;
    transform: scale(1);
    /* transition: transform 0.5s ease; */
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(1);
    z-index: 1;
}

.timeline-item:hover .timeline-image::before {
    transform: scale(1.1);
    filter: brightness(0.9);
}

/* ✅ RESPONSIVE STYLES */
@media (max-width: 992px) {
    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 40px;
        padding-right: 20px;
        text-align: left !important;
    }

    .timeline-item .content {
        margin: 0 0 40px 0 !important;
    }
}

@media (max-width: 576px) {
    .timeline-section {
        padding: 60px 15px;
    }

    .timeline-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .timeline-item .timeline-image {
        height: 160px;
    }

    .timeline-item h3 {
        font-size: 1rem;
    }

    .timeline-item p {
        font-size: 0.85rem;
        color: #444;
        line-height: 1.6;
    }
}



/* .contact-section {
    padding: 100px 20px;
    background: #fff;
} */

.contact-header {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #500a14;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 per row */
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    border-left: 6px solid #bc9b7a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

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

.contact-card h3 {
    font-size: 1.4rem;
    color: #79444c;
    margin-bottom: 15px;
}

.contact-card p,
.contact-card ul {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-card ul {
    padding-left: 20px;
    list-style-type: disc;
}

.newsletter-link {
    display: inline-block;
    margin-top: 10px;
    background: #bc9b7a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.newsletter-link:hover {
    background: #79444c;
}

/* Social Media Style */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
    color: white;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.facebook {
    background-color: #3b5998;
}

.instagram {
    background: radial-gradient(circle at 30% 30%, #fccc63, #e1306c 60%, #c13584 100%);
}

.linkedin {
    background-color: #0077b5;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

@media (max-width: 600px) {
    .contact-header {
        font-size: 2rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }
}





.info-section {
    background: #fefefe;
    padding: 80px 20px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    /* max-width: 1100px; */
    /* max-width: 1200px; */
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    align-items: center;
}

.info-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-content {
    flex: 1 1 500px;
}

.info-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.info-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
}

.info-overview {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.info-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.info-time {
    font-size: 1rem;
    color: #444;
}

.info-button {
    display: inline-block;
    background-color: #5a2e2e;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.info-button:hover {
    background-color: #381a1a;
}




.section-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 30px;
    /* font-size: 2.2em; */
    font-size: 1.8em;
    color: #333;
}

.section-paragraph {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.3em;
    color: #333;
}

.list-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    max-width: 900px;
    margin: 0 auto 25px;
    transition: 0.3s;
    text-decoration: none;
}

.list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.list-img {
    /* width: 70px; */
    /* height: 70px; */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
    border: 3px solid #ddd;
}

.list-text {
    width: 100%;
}

.list-text h3 {
    margin: 0;
    font-size: 1.6em;
    color: #333;
}

.list-text h4 {
    margin: 0;
    font-size: 1.4em;
    color: #333;
}

.list-text p {
    margin: 6px 0 0;
    color: #777;
    font-size: 1em;
}

@media (max-width: 700px) {
    .list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .list-img {
        margin-bottom: 12px;
    }

    .section-heading {
        font-size: 1.6em;
    }
}






.lmt-card-section {
    padding: 100px 20px;
    background: #fffdf9;
    /* font-family: 'Segoe UI', sans-serif; */
}

.lmt-card-section .container {
    max-width: 1200px;
    margin: auto;
}

.lmt-card-section .card-heading {
    text-align: center;
    /* font-size: 2.8rem; */
    font-size: 2.0rem;
    color: #500a14;
    margin-bottom: 30px;
    font-weight: bold;
}

.lmt-card-section .card-paragraph {
    text-align: center;
    /* font-size: 2.8rem; */
    /* font-size: 2.0rem; */
    color: #500a14;
    margin-bottom: 30px;
    font-weight: 500;
}

.lmt-card-section .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.lmt-card-section .program-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lmt-card-section .program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.lmt-card-section .program-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px 15px 15px 15px;
    margin-top: 15px;
}

.lmt-card-section .program-card a {
    text-decoration: none;
}

.lmt-card-section .card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lmt-card-section .card-body h3 {
    font-size: 1.5rem;
    color: #500a14;
    margin-bottom: 8px;
}

.lmt-card-section .card-body h4 {
    font-size: 1rem;
    color: #a2183f;
    margin-bottom: 15px;
}

.lmt-card-section .card-body h5 {
    font-size: 0.95rem;
    color: #a2183f;
    margin-bottom: 15px;
}

.lmt-card-section .card-body p {
    font-size: 0.8rem;
    color: #444;
    flex-grow: 1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lmt-card-section .card-body span {
    font-size: 0.8rem;
    color: #444;
    /* flex-grow: 1; */
    margin-bottom: 5px;
}

.lmt-card-section .program-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.lmt-card-section .card-button {
    display: inline-block;
    padding: 8px 22px;
    background-color: #500a14;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
    align-self: flex-start;
    /* prevents stretching in flex container */
    width: auto;
    /* forces button to fit content */
}

.lmt-card-section .card-button:hover {
    background-color: #a2183f;
    transform: translateY(-2px);
}



.tabs-wrapper {
    max-width: 1000px;
    margin: 60px auto;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    background: #500a14;
}

.tab-button {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    background: #500a14;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.tab-button:hover,
.tab-button.active {
    background: #741c22;
}

.tabs-content {
    padding: 30px;
    max-height: 500px;
    overflow-y: auto;
    background: #fffdf9;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tabs-content p {
    margin-bottom: 1em;
    line-height: 1.7;
    font-size: 1rem;
    color: #333;
}

.tabs-content h2,
.tabs-content h3 {
    color: #500a14;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}



.bookstore-search-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.bookstore-search {
    width: 100%;
    max-width: 500px;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 30px;
    outline: none;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.bookstore-search:focus {
    border-color: #79444c;
    /* Match your brand color */
    box-shadow: 0 0 5px rgba(121, 68, 76, 0.3);
}


.image-overlay-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* margin: 40px 10px; */
    margin: 80px 10px;
    justify-content: space-evenly;
    /* justify-content: flex-start; */
}

.image-box {
    position: relative;
    /* width: 350px; */
    width: 400px;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    /* default slight black shade */
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-content {
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.image-content p {
    font-style: italic;
    color: #bc9b7a;
}

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

.image-box:hover .image-overlay {
    background: rgba(0, 0, 0, 0.6);
    /* on hover, darker */
}

.image-box:hover .image-content {
    opacity: 1;
}








.gallery-category {
    padding: 80px 20px;
    background: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.section-header p {
    color: #666;
    font-size: 1.0rem;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid1 {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: inherit;
}

.gallery-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-content {
    padding: 20px;
}

.gallery-content h3 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 10px;
}

.gallery-content p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0;
}

#load-more-btn {
    display: inline-block;
    background-color: #79444c;
    color: white;
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(121, 68, 76, 0.3);
}

#load-more-btn:hover {
    background-color: #c8b297;
    box-shadow: 0 6px 20px rgba(200, 178, 151, 0.5);
}

.lightbox .lb-close {
    display: none !important;
}


.stories-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.stories-slider .story-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stories-slider .story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.story-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.story-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.story-content {
    padding: 15px;
}

.story-date {
    color: #a2183f;
    font-size: 0.8rem;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.story-title {
    color: #500a14;
    font-size: 1.2rem;
    margin: 0 0 8px;
}

.story-description {
    color: #444;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}


.container-box h1,
.container-box h2 {
    color: #500a14;
}

.container-box h1 {
    border-bottom: 2px solid #bc9b7a;
    padding-bottom: 5px;
    margin-top: 40px;
}

.container-box ul {
    list-style-type: disc;
    margin-left: 40px;
}

.container-box p {
    margin-bottom: 15px;
}

.container-box {
    max-width: 800px;
    background: white;
    padding: 30px;
    margin: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}



.teacher-section {
    padding: 60px 30px;
    text-align: center;
}

/* Make full card clickable and remove underline */
.teacher-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.teacher-link:hover {
    transform: scale(1.02);
}

.teacher-section-title {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #222;
    text-align: center;
}

.teacher-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.teacher-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
}

.teacher-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    /* object-fit: fill; */
}

.teacher-content {
    padding: 20px;
}

.teacher-content h3 {
    font-size: 20px;
    color: #a2183f;
    margin: 0 0 10px;
}

.teacher-content p {
    /* font-style: italic; */
    font-size: 12px;
    color: #444;
    margin-bottom: 10px;
}

.teacher-content .desc {
    font-size: 10px;
    margin-bottom: 12px;
    color: #555;
}

.specialties {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: #500a14;
}

.specialties span {
    background: #f5e9ec;
    padding: 6px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* Responsive: 2 in a row on tablets, 1 on small phones */
@media (max-width: 1000px) {
    .teacher-card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .teacher-card {
        width: 100%;
    }
}



.sessions-section {
    padding: 40px;
}

.sessions-section h2 {
    text-align: center;
    color: #500a14;
    margin-bottom: 30px;
}

.sessions-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    flex-direction: column;
}

.session-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-width: 280px;
}

.session-card h3 {
    color: #a2183f;
    margin-top: 0;
}

.session-card p {
    font-size: 14px;
    color: #333;
}

.session-card strong {
    color: #555;
}

.session-details {
    margin-top: 15px;
}

.session-details h4 {
    color: #444;
    font-size: 16px;
    margin-bottom: 10px;
}

.session-details ul {
    padding-left: 20px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 992px) {
    .session-card {
        flex: 1 1 calc(50% - 20px);
    }

}

@media screen and (max-width: 600px) {
    .session-card {
        flex: 1 1 100%;
    }
}

/* ==== Brochure Section ==== */
.brochure-section {
    background: linear-gradient(135deg, #bc9b7a, #500a14);
    color: white;
    text-align: center;
    padding: 90px 25px;
    position: relative;
    overflow: hidden;
}

/* Subtle animated pattern overlay */
.brochure-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 10%, transparent 10%) 0 0 / 25px 25px;
    animation: move-bg 15s linear infinite;
    opacity: 0.3;
}

@keyframes move-bg {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(25px, 25px);
    }
}

.brochure-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

.brochure-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brochure-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.92);
}

/* ==== Button Styling ==== */
.brochure-btn {
    display: inline-block;
    background: white;
    color: #500a14;
    font-weight: bold;
    padding: 14px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(188, 155, 122, 0.4);
}

.brochure-btn:hover {
    background: linear-gradient(135deg, #bc9b7a, #500a14);
    color: white;
    box-shadow: 0 0 30px rgba(188, 155, 122, 0.8);
    transform: scale(1.08) rotate(-1deg);
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
    .brochure-section {
        padding: 70px 20px;
    }

    .brochure-content h2 {
        font-size: 26px;
    }

    .brochure-content p {
        font-size: 15px;
    }

    .brochure-btn {
        padding: 12px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .brochure-content h2 {
        font-size: 22px;
    }

    .brochure-content p {
        font-size: 14px;
    }

    .brochure-btn {
        padding: 10px 28px;
        font-size: 14px;
    }
}


/* LMT section  */
/* ===========================
   Section Background
=========================== */

.custom-why-choose-section {
    padding: 80px 20px;
    background: linear-gradient(135deg,
            #f6f3ef 0%,
            #fdfdfc 50%,
            #f1efe9 100%);
}

/* Container */
.custom-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* ===========================
   Card Style
=========================== */

.custom-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Glow Effect */
.custom-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left,
            rgba(190, 160, 120, 0.18),
            transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* ===========================
   Typography
=========================== */

.custom-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #3b2f2f;
    margin-bottom: 20px;
}

.custom-section-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* ===========================
   List Styling
=========================== */

.custom-section-list {
    list-style: none;
    padding: 0;
}

.custom-section-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 18px;
    font-size: 17px;
    color: #333;
    transition: transform 0.3s ease;
}

/* Custom Bullet */
.custom-section-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: #b89b6a;
    font-size: 18px;
}

.custom-section-list li:hover {
    transform: translateX(6px);
}

.custom-section-list strong {
    color: #3b2f2f;
}

/* ===========================
   Mobile Responsive
=========================== */

@media (max-width: 768px) {
    .custom-card {
        padding: 30px 24px;
    }

    .custom-section-title {
        font-size: 28px;
    }

    .custom-section-description {
        font-size: 16px;
    }

    .custom-section-list li {
        font-size: 15.5px;
    }
}

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



/* ====================================================== */

.custom-course-features {
    padding: 90px 20px;
    background: linear-gradient(180deg, #fffaf4, #fdf2e8);
}

.custom-one-container {
    max-width: 1200px;
    margin: auto;
}

/* Grid */
.custom-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.custom-feature-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 32px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Accent Bar */
.custom-feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #c89b6d, #9f6b3f);
    opacity: 0.9;
}

/* Header */
.custom-feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.custom-feature-icon {
    font-size: 24px;
    background: #f6e6d6;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-feature-card h3 {
    font-size: 20px;
    color: #6b3f23;
    margin: 0;
}

/* Text */
.custom-feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Hover (Subtle & Professional) */
.custom-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .custom-feature-grid {
        grid-template-columns: 1fr;
    }
}
