/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@700&family=Yatra+One&family=Kadwa:wght@400;700&family=Gurajada&family=Sahitya:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Eagle+Lake&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quattrocento:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --orange: #FF7703;
    --light-orange: #FF7703;
    --dark-orange: #FF7703;
    --off-white: #f8f9fa;
    --dark-gray: #343a40;
    --light-gray: #6c757d;
    --font-family: 'Poppins', sans-serif;
}

.centered-section {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    /* Add this for the underline positioning */
    padding-bottom: 10px;
    /* Add space for the underline */
}

.centered-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #ff7703;
}

body {
    font-family: var(--font-family);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    font-size: 16px;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-orange {
    background-color: #67080E;
    border-color: #67080E;
    color: white;
    margin-top: 10px;
    margin-left: 12px;
    margin-bottom: 20px;
}

.btn-orange:hover {
    background-color: var(--dark-orange);
    border-color: var(--dark-orange);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-orange {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-outline-orange:hover {
    background-color: var(--orange);
    color: white;
}

.text-orange {
    color: var(--orange) !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}

.bg-light {
    background-color: var(--off-white) !important;
}

/* on  */
.navbar {
    justify-content: space-between !important;
    /* Force left-right distribution */
    padding: 12px 0 !important;
}

.navbar-brand-wrapper {
    margin-right: auto !important;
    /* Push brand to far left */
}

/* new on */
@media (min-width: 320px) and (max-width: 660px) {

    /* Navbar background */
    .navbar {
        background-color: #f4e3c1 !important;
    }

}

@media (min-width: 320px) and (max-width: 660px) {

    body {
        padding-top: -70px;
        /* same as navbar height */
    }

    .navbar {
        background-color: #f4e3c1 !important;
    }

}

/* new off  */
.nav-item.ms-lg-3 {
    margin-left: auto !important;
    /* Push contact to far right */
    margin-right: 20px !important;
    /* Optional: Add right spacing */
}

/* Reset for mobile */
@media (max-width: 992px) {

    .navbar-brand-wrapper,
    .nav-item.ms-lg-3 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

/* More specific selector to force white text on contact button */
.navbar-nav .nav-item.ms-lg-3 .nav-link.contact-btn {
    color: white !important;
}
/* // no need above  */

.navbar[data-bs-theme=dark],
.navbar-dark {
    margin-right: 20px !important;
}

.navbar-brand-wrapper {
    margin-right: auto !important;
    transform: translateX(-25px) !important;
}

/* Reduce space between navbar links */
.navbar-nav {
    gap: 0px !important;
}

/* Keep Contact button fixed at the far right */
.nav-item.ms-lg-3 {
    margin-left: auto !important;
    padding-right: 0 !important;
}

/* Bold all navbar links */
.navbar-nav .nav-link {
    font-weight: 400 !important;
}

.navbar-nav .nav-item:not(.ms-lg-3) {
    margin-right: 3px !important; /* Adjust spacing (default was 15px) */
}

/* Ensure Contact stays fixed on the right */
.nav-item.ms-lg-3 {
    margin-left: auto !important;
    margin-right: 0 !important;
}

.navbar-brand {
    margin-right: auto !important;
    transform: translateX(-30px) !important;
}

/* Isolate brand name movement */
.navbar-brand-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: auto;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-brand {
    position: relative;
    left: 5px;
    margin-right: 0 !important;
    display: inline-block;
}
/* Lock other elements in place */

/* nav corrections  */
/* Change contact button text color to white */
.navbar .contact-btn {
    color: white !important;
}

.navbar-brand {
    font-family: 'Tangerine', cursive !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ff7703 !important;
}

/* Navbar Container */
.navbar {
    font-family: 'Kadwa', serif;
    /* background-color: #ffffff; */
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 10px;
}

/* Navigation Links */
.navbar-nav {
    font-family: 'Kadwa', serif;
    gap: 2px !important;
    margin-left: auto !important;
    justify-content: flex-end !important;
    width: auto !important;
}

.nav-link {
    font-size: 1.1rem;
    color: #333333 !important;
    margin: 0 12px;
    padding: 6px 12px !important;
    position: relative;
    padding: 8px 0 !important;
    display: inline-block !important;
    align-items: center;
}

.nav-link:hover {
    color: #FF7703 !important;
}

/* Active Link Styling */
.nav-link.active {
    color: #67080E !important;
    font-weight: 700;
}

/* Contact Button Special Styling */
.contact-btn {
    font-family: 'Yatra One', cursive;
    background-color: #ff7703;
    color: white !important;
    border-radius: 30px;
    margin-left: 5px !important;
    transition: all 0.3s ease;
    margin-left: 8px !important;
    padding: 6px 18px !important;
}

.contact-btn:hover {
    background-color: #ff7703 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(227, 98, 9, 0.3);
}

/* Mobile Menu Styling */
.navbar-toggler {
    border-color: rgba(227, 98, 9, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(227, 98, 9, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* new style for active menu on  */

/* on  */
/* Add these new rules to your existing CSS */
.navbar-collapse {
    flex-grow: 1;
}

.navbar-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Center all nav items */
    gap: 30px;
    /* Add space between all nav items */
}

.nav-item.ms-lg-3 {
    margin-left: auto !important;
    /* Push contact button to far right */
    margin-right: 20px !important;
    /* Add some right margin */
}

/* Optional: Adjust spacing for mobile view */
@media (max-width: 992px) {
    .navbar-nav {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .nav-item.ms-lg-3 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Add space between brand name and first nav item */
.navbar-brand {
    margin-right: 4rem !important;
}

/* Mobile view adjustments */
@media (max-width: 992px) {
    .navbar-nav {
        margin-left: 0 !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }

    .navbar-brand {
        margin-right: 0 !important;
    }

    .nav-item.ms-lg-3 {
        margin-left: 0 !important;
        margin-top: 10px;
    }
}

/* Navbar Layout Fix */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand-wrapper {
    display: flex;
    align-items: center;
    /* This will keep logo and brand on the left */
}

.navbar-collapse {
    flex-grow: 0 !important;
    /* Prevent from taking all space */
}

.navbar-nav {
    margin-left: auto !important;
    /* Push nav items to right */
    justify-content: flex-end !important;
}

/* Adjust spacing */
.navbar-brand {
    margin-right: 2rem !important;
    /* Space after brand */
}

.nav-item {
    margin-left: 15px !important;
}

/* Contact button alignment */
.nav-item.ms-lg-3 {
    margin-left: 30px !important;
}

/* Mobile view adjustments */
@media (max-width: 992px) {
    .navbar-nav {
        margin-left: 0 !important;
        justify-content: flex-start !important;
        width: 100%;
    }

    .nav-item {
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }

    .nav-item.ms-lg-3 {
        margin-left: 0 !important;
        margin-top: 10px;
    }
}
/* off  */

/* Ensure contact button stays properly aligned */
.nav-item.ms-lg-3 {
    margin-left: 15px !important;
}

.navbar-nav {
    margin-left: 2rem;
    /* Add space before first nav item */
}

.navbar>.container {
    padding-left: 3rem;
    padding-right: 3rem;
}

.navbar-brand {
    margin-right: 17rem !important;
}

.navbar-nav {
    margin-left: 3rem;
}

/* Add these new rules at the end of your CSS */
.navbar-nav {
    width: 100%;
    /* Ensure nav takes full width */
    justify-content: right;
    /* Center main nav items */
}

.nav-item:not(:last-child) {
    margin-right: 20px;
    /* Increase space between regular nav items */
}

.nav-item.ms-lg-3 {
    margin-left: auto !important;
    /* Push contact button to far right */
    margin-right: 0 !important;
}

/* Optional: Add Poppins light to contact button */
.contact-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Add this at the end of your CSS */
.navbar>.container {
    justify-content: flex-start !important;
    padding-left: 1rem;
}

/* Ensure contact button stays on the right */
.nav-item.ms-lg-3 {
    margin-left: auto !important;
}

/* Add this at the end of your CSS file */
.nav-link::after,
.nav-link:hover::after,
.nav-link.active::after {
    display: none !important;
}
/* off */
.navbar {
    padding: 0px !important;
    transition: all 0.3s ease;
    position: absolute;
    width: 100%;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    padding: 12px 0;
    backdrop-filter: blur(8px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 28px;
    color: #67080E !important;
    letter-spacing: 0.5px;
    text-transform: none;
    margin-left: 5px !important;
}

.nav-link {
    color: #67080E !important;
    margin: 0 4px;
    position: relative;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
}

.nav-link:hover {
    color: #ff7703 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.contact-btn:hover::after {
    display: none;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

.navbar-collapse {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
    border-radius: 5px;
    margin-top: 10px;
}

.navbar-collapse {
    justify-content: space-between !important;
}

.navbar-nav.me-auto {
    margin-left: auto;
    margin-right: auto;
    transform: translateX(-50px);
}

@media (max-width: 991.98px) {
    .navbar-nav.me-auto {
        transform: none;
        margin: 0;
    }
}

@media (min-width: 992px) {
    .navbar-collapse {
        background-color: transparent;
        padding: 0;
        margin-top: 0;
    }

    .navbar-nav {
        align-items: center;
    }

    .nav-link {
        padding: 8px 18px !important;
    }

    .navbar-nav .nav-item:first-child {
        margin-left: auto;
        margin-right: auto;
    }
}

.navbar .contact-btn {
    background-color: #ff7703;
    color: #222 !important;
    border-radius: 4px;
    padding: 6px 15px !important;
    margin-left: 15px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    box-shadow: none;
    text-transform: capitalize;
    font-size: 15px;
    letter-spacing: 0.5px;

    display: inline-flex;
    align-items: center;
}

.navbar .contact-btn:hover {
    background-color: rgb(250, 247, 244);
    color: #222 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.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='%2367080E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

.navbar-collapse {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 5px;
    margin-top: 5px;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background-color: transparent;
        padding: 0;
        margin-top: 0;
    }

    .navbar-nav {
        align-items: center;
    }

    .nav-link {
        padding: 2px 2px !important;
    }

    /* .inner-page .nav-link {
        padding: 10px 4px !important;
    } */

    .navbar-nav .nav-item:first-child {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    color: white;
    overflow: hidden;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    max-height: 90vh;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    padding-top: 30px;
    /* This moves whole content down */
}

.hero-text h1 {
    margin-top: 90px !important;
    color: #FF7703;
    font-size: 3.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    max-width: 635px;
}

.hero-text p {
    color: black;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    max-width: 1000px;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-row {
    display: flex;
    align-items: stretch;
}

/* Image Column */
.about-img-container {
    display: flex;
    height: 100%;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
}

.about-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.03);
}

.about-content {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100% !important;
    padding-left: 40px;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 5px;
    color: #333;
}

/* Button container to align with image bottom */
.about-content .btn-container {
    margin-top: auto;
    padding-top: 20px;
}

/* Row adjustments */
.row.align-items-center {
    align-items: stretch;
}

/* Column spacing */
.col-lg-6 {
    padding: 15px;
}

/* Teachers Section */
.teachers-section {
    background-color: white;
    padding: 0px !important;
    padding-bottom: 40px !important;
}

.section-header p {
    color: #0e0d0d;
    font-size: 1.1rem;
}

.teacher-card {
    background-color: rgba(241, 241, 241, 0.836);
    box-shadow: 0px 25px 50px rgba(211, 180, 180, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.teacher-img {
    width: 150px;
    height: 150px;
    border: 5px solid rgba(253, 126, 20, 0.2);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.teacher-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teacher-card h4 {
    margin-top: 5px;
    color: #333;
}

.teacher-card p.text-muted {
    color: var(--orange) !important;
    font-weight: 500;
}

.social-links a {
    color: #666;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.social-links a:hover {
    color: white;
}

/* Ensure content stays above the image */
.content-wrapper {
    position: relative;
    z-index: 1;
}
/* off  */
/* image off  */

/* Section Header */
.section-header {
    margin-bottom: 5px;
}

.section-header {
    position: relative;
    /* padding-bottom: 15px; */
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 18px;
    color: #fffbfb;
    margin-top: 5px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 10px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7703 0%, #ff7703 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 5px;
}

.feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Consultation Button */
.consultation-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff7703 0%, #ff7703 100%);
    color: #f8f7fa;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 90, 95, 0.3);
}

.consultation-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 90, 95, 0.4);
}

.button-icon {
    margin-right: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }
}

/* Class Section - Icon Style */
.course-card-icon {
    background: white;
    border-radius: 10px;
    box-shadow: 1000px 1000px 1000px 1000px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: auto;
    position: relative;
    overflow: hidden;
    /* text-align: center; */
}

.course-card-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.course-card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.course-card-icon:hover::before {
    transform: scaleX(1);
}

.course-icon {
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(253, 126, 20, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.course-card-icon:hover .course-icon {
    background-color: var(--off-white);
    color: white;
}

.course-card-icon h3 {
    font-size: 1.5rem;
    margin: 5px 0;
    color: #333;
}

.course-card-icon p {
    color: #666;
    margin-bottom: 5px;
}

.course-details ul {
    list-style: none;
    padding-left: 0;
}

.course-details li {
    margin-bottom: 5px;
    color: #555;
    font-size: 0.95rem;
}

/* Responsive adjustments for courses */
@media (max-width: 992px) {
    .course-card-icon {
        padding: 30px !important;
    }
}

@media (max-width: 768px) {
    .course-card-icon {
        margin-bottom: 5px;
    }
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.course-category {
    margin-bottom: 5px;
}

.category-title {
    font-size: 1.8rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--orange);
}

.category-description {
    color: #666;
    font-size: 1.1rem;
}

.course-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: auto;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.course-img {
    height: 200px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.course-card:hover .course-img img {
    transform: scale(1.1);
}

.course-body {
    padding: 25px;
}

.course-body h3,
.course-body h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
}

.course-body p {
    color: #666;
    margin-bottom: 5px;
}

.course-features {
    background-color: rgba(253, 126, 20, 0.05);
    padding: 15px;
    border-radius: 6px;
    margin: 5px 0;
    max-height: none;
}

.course-features p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.language-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.language-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.language-icon {
    color: var(--orange);
}

.course-highlight {
    background-color: white;
    border-left: 4px solid var(--orange);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

/* Events Section Styles */
/* events.css */
.event-details {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
    display: inline-block;
    margin: 0 auto;
}

.event-details li {
    margin-bottom: 8px;
    text-align: left;
}

.event-list-container {
    text-align: center;
}

.event-details mb-3 {
    text-align: left;

}

.events-section {
    background-color: transparent;
    /* event background color  */
    text-align: center;
}

.event-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.event-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 102, 0, 0.9);
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

.event-content {
    position: relative;
    z-index: 1;
}

.event-content h3 {
    color: #333;
    font-weight: 700;
}

.event-details {
    list-style: none;
    padding-left: 0;
}

.event-details li {
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.event-details i {
    color: #ff6600;
    width: 20px;
    text-align: center;
}

.btn-outline-orange {
    color: #ff6600;
    border-color: #ff6600;
    background-color: transparent;
}

.btn-outline-orange:hover {
    color: #fff;
    background-color: #ff6600;
    border-color: #ff6600;
}
/* start copy  */

/* ===== Newsletter Overlap - MusicY Style ===== */
.events-section {
    padding-bottom: 500px;
    position: relative;
    z-index: 1;
}

.newsletter-overlap {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    /* Pull up more for deeper overlap */
    margin-bottom: -120px;
    margin-top: -80px !important;
}

.newsletter-box {
    background-color: #FF7703;
    /* Your orange color */
    border-radius: 10px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 1170px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
}

.newsletter-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    /* White text for better contrast */
    font-family: 'Poppins', sans-serif;
    /* Matching MusicY font */
}

.newsletter-box p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.form-input {
    flex: 1;
    height: 60px;
    border: none;
    border-radius: 5px;
    padding: 0 25px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
}

.newsletter-form input {
    flex: 1;
    height: 60px;
    border: none;
    border-radius: 5px;
    padding: 0 25px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
}

.newsletter-form button {
    background-color: #181D23;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    align-self: center;
}

.newsletter-form button:hover {
    background-color: #000000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row {
        display: block;
    }

    .form-input {
        width: 100%;
        margin-bottom: 20px;
    }
}

.site-footer {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    background-color: #181D23;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .newsletter-box {
        max-width: 900px;
        padding: 50px;
    }
}

@media (max-width: 992px) {
    .newsletter-box {
        padding: 40px;
    }

    .newsletter-box h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .events-section {
        padding-bottom: 200px;
    }

    .newsletter-overlap {
        margin-top: -100px;
    }

    .newsletter-box {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .newsletter-box h2 {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .newsletter-form button {
        height: 50px;
    }

    .site-footer {
        padding-top: 80px;
        margin-top: -40px;
    }
}
/* end copy  */

.site-footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.work-hours p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
}

.footer-about {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    line-height: 1.6;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    max-height: 100px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px;
    }
}

/* container in the middle of home and about  */
.hero-section {
    padding-bottom: 200px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-overlap-box {
    position: relative;
    z-index: 10;
    margin-top: -150px;
    margin-right: 50px;
    margin-left: auto;
    max-width: 700px;
}

.overlap-content {
    background-color: #FF7703;
    border-radius: 10px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
}

.overlap-content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(0, 0, 0);
    font-family: 'Poppins', sans-serif;
}

.overlap-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.overlap-content .btn {
    background-color: #67080E;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}

.overlap-content .btn:hover {
    background-color: #FE7603;
    border-color: #67080E;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-overlap-box {
        margin-left: 30px;
        margin-right: 30px;
        max-width: calc(100% - 60px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-bottom: 150px;
    }

    .about-overlap-box {
        margin-top: -100px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .overlap-content {
        padding: 30px;
    }

    .overlap-content h3 {
        font-size: 24px;
    }

    .overlap-content p {
        font-size: 15px;
    }
}

/* Banner section -- okay  */
.banner {
    height: 50vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark overlay (simple, full banner) */
.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner .container {
    position: relative;
    z-index: 2;
}

/* Title */
.banner-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* SIMPLE BREADCRUMB */
.breadcrumb-container {
    display: flex;
    justify-content: center;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #ddd;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #fff;
    padding: 0 8px;
}

/* Section styles */
section {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--dark-gray);
    font-size: 40px;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin-top: 15px;
    position: relative;
    left: 47%;
}

.about-section .container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/img/history-bg.jpg') no-repeat center center/cover;
    color: white;
    position: relative;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--orange);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border: 4px solid var(--orange);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
    text-align: right;
}

.right {
    left: 50%;
}

.left::after {
    right: -13px;
}

.right::after {
    left: -13px;
}

.timeline-content {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.timeline-content h3 {
    color: var(--orange);
    margin-top: 0;
    font-weight: 600;
}

.timeline-content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 18px;
    }

    .left,
    .right {
        left: 0;
        text-align: left;
    }

    .history-section {
        padding: 60px 0;
    }
}

/* Programs section */
.program-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    color: var(--orange);
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 250px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-caption p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 15px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--orange);
}

.lightbox-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.lightbox-control:hover {
    color: var(--orange);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .gallery-item {
        height: 200px;
    }

    .filter-btn {
        padding: 6px 15px;
        font-size: 14px;
    }
}

.contact-section {
    padding: 80px 0;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 119, 3, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    background: var(--off-white);
}

.form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 119, 3, 0.25);
    background: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 119, 3, 0.4);
    background: linear-gradient(135deg, var(--dark-orange), var(--orange));
}

.social-links {
    margin-top: 30px;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 119, 3, 0.4);
    color: white;
}

.contact-title {
    position: relative;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark-gray);
}

.contact-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin-top: 15px;
    position: relative;
}

/* Section Styles */
.section-title1 {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--dark-gray);
    font-size: 40px;
}

.section-title1:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin-top: 15px;
}

.foundation-section {
    padding: 80px 0;
}

.mission-section {
    background-color: var(--off-white);
}

.foundation-logo {
    max-height: 350px !important;
    height: 100% !important;
}

/* Card Styles */
.initiative-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    border: none;
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.initiative-img {
    height: 200px;
    object-fit: cover;
}

.initiative-card .card-body {
    padding: 25px;
}

.initiative-card .card-title {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 15px;
}

.initiative-card .card-text {
    color: var(--light-gray);
    margin-bottom: 20px;
}

.btn-donate {
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-donate:hover {
    background-color: var(--dark-orange);
    transform: translateY(-2px);
}

/* Impact Stats */
.impact-stats {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../images/sliderhome.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Support Section */
.support-section {
    background-color: var(--off-white);
}

.support-option {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.support-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.btn-support {
    background-color: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-support:hover {
    background-color: var(--orange);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .foundation-header {
        padding: 80px 0 40px;
    }

    .initiative-card,
    .team-card,
    .support-option {
        margin-bottom: 25px;
    }

    .section-title:after {
        margin-left: auto;
        margin-right: auto;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-toggle i {
    font-size: 13px;
}

.dropdown-item {
    padding: 10px 15px;
    font-family: var(--font-family);
    font-size: 16px;
}

.registration-container {
    padding: 60px 0;
}

.registration-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.form-icon {
    color: var(--orange);
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.form-title {
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-gray);
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--orange);
    left: 43%;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.btn-register {
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
}

.btn-register:hover {
    background-color: var(--dark-orange);
    transform: translateY(-2px);
}

.form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

@media (max-width: 768px) {
    .registration-header {
        padding: 60px 0 30px;
    }

    .registration-card,
    .info-sidebar {
        padding: 20px;
    }
}

/* Fullscreen Loader Overlay */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* From Uiverse.io by dovatgabriel */
.three-body {
    --uib-size: 35px;
    --uib-speed: 0.8s;
    --uib-color: var(--orange);
    position: relative;
    display: inline-block;
    height: var(--uib-size);
    width: var(--uib-size);
    animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
}

.three-body__dot {
    position: absolute;
    height: 100%;
    width: 30%;
}

.three-body__dot:after {
    content: '';
    position: absolute;
    height: 0%;
    width: 100%;
    padding-bottom: 100%;
    background-color: var(--uib-color);
    border-radius: 50%;
}

.three-body__dot:nth-child(1) {
    bottom: 5%;
    left: 0;
    transform: rotate(60deg);
    transform-origin: 50% 85%;
}

.three-body__dot:nth-child(1)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 var(--uib-speed) infinite ease-in-out;
    animation-delay: calc(var(--uib-speed) * -0.3);
}

.three-body__dot:nth-child(2) {
    bottom: 5%;
    right: 0;
    transform: rotate(-60deg);
    transform-origin: 50% 85%;
}

.three-body__dot:nth-child(2)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 var(--uib-speed) infinite calc(var(--uib-speed) * -0.15) ease-in-out;
}

.three-body__dot:nth-child(3) {
    bottom: -5%;
    left: 0;
    transform: translateX(116.666%);
}

.three-body__dot:nth-child(3)::after {
    top: 0;
    left: 0;
    animation: wobble2 var(--uib-speed) infinite ease-in-out;
}

@keyframes spin78236 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes wobble1 {

    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-66%) scale(0.65);
        opacity: 0.8;
    }
}

@keyframes wobble2 {

    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(66%) scale(0.65);
        opacity: 0.8;
    }
}

.courses-section {
    padding: 80px 0;
}

/* Category Tabs */
.category-tabs-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding-bottom: 50px;
}

.category-tabs-container {
    overflow-x: hidden;
    /* hide scrollbar */
    width: 80%;
    position: relative;
}

.category-tabs {
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-btn {
    flex: 0 0 auto;
    padding: 10px 18px;
    background: #f5f5f5;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 15px;
    white-space: nowrap;
}

.category-btn.active,
.category-btn:hover {
    background: var(--light-orange);
    color: #fff;
}

/* Scroll buttons */
.scroll-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    z-index: 10;
    transition: background 0.2s;
}

.scroll-btn:hover {
    background: #f0f0f0;
}

.scroll-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Course Cards */
.course-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    margin-bottom: 25px;
    /* min-height: 400px; */
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.course-img {
    height: 200px;
    object-fit: cover;
}

.course-card .card-body {
    padding: 25px;
    flex: 1;
    overflow: visible;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-card .card-title {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.course-card .card-text {
    color: var(--light-gray);
    margin-bottom: 20px;
}

.course-features {
    list-style: none;
    margin-bottom: 20px;
}

.course-features li {
    margin-bottom: 8px;
    display: block;
    align-items: center;
    font-size: 0.9rem;
}

.course-features li i {
    color: var(--orange);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* new 07 */
.course-features .sub-list {
    margin-left: 35px;
    margin-top: 8px;
    list-style-type: disc;
}

.sub-list {
    margin-left: 20px;
}

.course-features .sub-list li {
    margin-bottom: 4px;
    font-size: 15px;
}
/* new off  */

/* Push the button to the bottom */
.btn-register {
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
    margin: 20px auto;
    width: fit-content;
}

.btn-register:hover {
    background-color: var(--dark-orange);
    transform: translateY(-2px);
}

/* Course Categories */
.course-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.category-icon {
    font-size: 2rem;
    color: var(--orange);
    margin-right: 15px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .courses-header {
        padding: 80px 0 40px;
    }

    .category-tabs {
        flex-direction: row;
        align-items: center;
    }

    .category-btn {
        font-size: 10px;
        width: 180px;
        margin-bottom: 10px;
    }

    .about-content {
        padding-left: 0;
    }

    .dropdown-item {
        white-space: normal;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .navbar-brand {
        font-weight: 700;
        font-size: 28px !important;
        color: #67080E !important;
        letter-spacing: 0.5px;
        text-transform: none;
    }

    .navbar img {
        height: 100px;
        width: 100px;
        margin-right: 10px;
        margin-left: 8px;
    }

    .scroll-btn {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        border: none;
        background: #fff;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
        cursor: pointer;
        display: contents;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        z-index: 10;
        transition: background 0.2s;
    }

    .course-features li {
        margin-bottom: 8px;
        display: block;
        align-items: center;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .clearfix img {
        width: 100%;
    }

    .section-title:after {
        left: 0;
    }

    .footer-bottom {
        flex-direction: column;
    }

    /* Content and Navbar should stay ABOVE overlay */
    .navbar {
        position: relative;
        z-index: 2;
        color: #fff !important;
    }

    .navbar {
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .navbar .nav-link {
        color: #333 !important;
        /* dark text */
    }

    .navbar .nav-link:hover {
        color: #FF7703 !important;
        /* orange hover effect */
    }

    .navbar-brand {
        font-weight: 400;
        font-size: 18px;
        color: #FF7703 !important;
        letter-spacing: 0.5px;
        text-transform: none;
    }

    .navbar img {
        height: 80px;
        width: 100px;
        margin-right: 10px;
        margin-left: 5px;
    }
}

/* Apply styles only on mobile & tablet (below lg = 992px) */
@media (max-width: 1199.98px) {
    .custom-navbar {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        background: #fff;
        padding: 1rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1050;
        padding-top: 60px;
        overflow: auto;
    }

    /* Open state */
    .custom-navbar.show {
        transform: translateX(0);
    }

    /* Close button inside menu */
    .custom-navbar .btn-close {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    /* Nav link colors (mobile only) */
    .navbar-nav .nav-link {
        color: #333 !important;
        transition: color 0.2s ease-in-out;
        text-align: left;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .navbar-nav .nav-link:hover {
        color: var(--orange) !important;
    }

    .navbar-nav .nav-link.active {
        color: var(--orange) !important;
        font-weight: 600;
    }

    .hero-section,
    .hero-content {
        min-height: 45vh !important;
        height: 100% !important;
    }

}
/* 18 new  */
/* Mobile Responsive: 320px to 630px */
/* 320px to 450px */
@media (min-width: 320px) and (max-width: 660px) {
    /* Hero section little down */
    .hero-section {
        position: relative;
        top: 40px;
    }

    /* H1 smaller */
    .hero-text h1 {
        font-size: 1rem;
        margin: 0 !important;
        max-width: 100%;
        line-height: 1.3;
    }

    /* Paragraph also smaller */
    .hero-text p {
        font-size: 12px;
        margin: 4px 0 !important;
    }

    /* Button slightly smaller */
    .btn-hero {
        font-size: 12px;
        padding: 5px 12px;
    }

    .navbar {
        padding: 8px 15px;
    }

    .navbar-brand img {
        height: 45px;
    }

}

@media (max-width: 660px) {

    .navbar {
        background-color: #f4e3c1 !important;
        padding: 10px 15px;
    }

}

@media (max-width: 768px) {
    .section-title:after {
        left: 0;
    }
}

@media (max-width: 450px) {

    .hero-section,
    .hero-content {
        min-height: 40vh !important;
        height: 100% !important;
    }

}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.mission-vision {
    padding: 0px 0;
    background-color: #ecefec;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #063d6d;
    margin-bottom: 50px;
    font-size: 36px;
    padding-top: 5px;
}

.content-wrapper {
    display: flex;
    gap: 50px;
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    flex-direction: column;
    width: 350px;
    gap: 10px;
}

.tab-btn {
    padding: 20px 25px;
    background: #E3F2FD;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: #3e3a74;
}

.tab-btn:hover {
    background: #BBDEFB;
}

.tab-btn.active {
    background: #3e3a74;
    color: white;
}

/* Tab Content */
.tab-content-wrapper {
    flex: 1;
    position: relative;
    min-height: 100px;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    box-sizing: border-box;
    padding: 10px;
    /* Increased from 30px */
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 1;
    padding-top: 0px;
    padding-left: 10px;
}

.content-image {
    width: 100%;
    max-width: 700px;
    max-height: 400px;
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding-top: 0%;
    margin: 40px auto 0;
}

.content-image img {
    width: 700px;
    height: 300px;
    display: block;
    transition: transform 0.3s ease;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.top-header-bar {
    margin: auto;
}

.content-text {
    flex: 1;
    order: 2;
}

.content-text h2 {
    font-size: 24px;
    color: #3e3a74;
    padding-top: 1px;
}

.content-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #424242;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .tab-buttons {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .tab-btn {
        white-space: nowrap;
    }

    .tab-content.active {
        flex-direction: column;
        position: relative;
    }

    .content-image {
        margin-bottom: 20px;
    }
}

/* home page foundation section  */
.vf-about-section {
    max-width: 1200px;
    margin: 10px auto 80px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    font-family: var(--font-family);
}

.vf-content-wrapper {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--off-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.vf-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--orange);
}

.vf-section-heading {
    font-size: 2.2rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.vf-section-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--orange);
    border-radius: 2px;
}

.vf-content-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--light-gray);
    line-height: 1.8;
    font-weight: 400;
}

.vf-action-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--orange);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 119, 3, 0.3);
    position: relative;
    overflow: hidden;
    font-family: var(--font-family);
}

.vf-action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 119, 3, 0.4);
    background: #e56a02;
}

.vf-action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.vf-action-button:hover::before {
    left: 100%;
}

.vf-image-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.vf-image-container img.vf-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.vf-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 119, 3, 0.1), rgba(255, 119, 3, 0.05));
    z-index: 1;
}

.vf-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vf-image-container:hover .vf-featured-image {
    transform: scale(1.05);
}

.vf-decoration-element {
    position: absolute;
    width: 120px;
    height: 120px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23FF7703" opacity="0.1" d="M50,10 C70,10 90,30 90,50 C90,70 70,90 50,90 C30,90 10,70 10,50 C10,30 30,10 50,10 Z M50,20 C65,20 80,35 80,50 C80,65 65,80 50,80 C35,80 20,65 20,50 C20,35 35,20 50,20 Z M50,30 C60,30 70,40 70,50 C70,60 60,70 50,70 C40,70 30,60 30,50 C30,40 40,30 50,30 Z"/></svg>');
    bottom: -30px;
    right: -30px;
    z-index: 0;
}

@media (max-width: 768px) {
    .vf-about-section {
        flex-direction: column;
    }

    .vf-content-wrapper,
    .vf-image-container {
        width: 100%;
    }

    .vf-section-heading {
        font-size: 1.8rem;
    }
}
/* home page foundation section end  */

/* new  */
.courses-wrapper {
    display: flex;
    gap: 30px;
}

/* Sidebar */
.sidebar {
    flex: 0 0 250px;
    position: sticky;
    top: 100px;
}

.category-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-btn {
    padding: 12px 15px;
    border-radius: 6px;
    background-color: #f0f0f0;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
}

.category-btn.active {
    background-color: #FF7703;
    color: white;
}

.category-btn:hover {
    background-color: #e0e0e0;
}

/* Right content */
.course-content {
    flex: 1;
}

.course-category {
    display: none;
}

.course-category.active {
    display: block;
}

/* new for responsive  */
/* Layout */
.courses-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.sidebar {
    flex: 0 0 250px;
    /* desktop sidebar width */
}

.course-content {
    flex: 1;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .courses-wrapper {
        flex-direction: column;
        /* stack sidebar and content */
    }

    .sidebar {
        position: relative;
        top: auto;
        /* distance from top */
    }

    .course-content {
        width: 100%;
        order: 2;
    }

    .category-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Show/hide course categories */
.course-category {
    display: none;
}

.course-category.active {
    display: block;
}

@media (min-width: 768px) {
    .sidebar {
        position: sticky;
        top: 20px;
        /* distance from top */
    }

    .category-btn.active {
        background-color: #FF7703;
        color: white;
    }
}

/* style for button  */
/* Subheading buttons container */
.subheading-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

/* Subheading button styles */
.subheading-btn {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    padding: 5px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.subheading-btn.active {
    background-color: var(--orange);
    color: white;
    border-color: var(--orange);
}

/* toggle button expanded  */
@media (min-width: 1200px) {

    .navbar-expand-custom .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-custom .navbar-toggler {
        display: none;
    }

    .navbar-expand-custom .navbar-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
}

/* Mobile view (< 1200px) */
@media (max-width: 1199.98px) {

    .navbar-expand-custom .navbar-collapse {
        display: none;
        width: 100%;
    }

    .navbar-expand-custom .navbar-collapse.show {
        display: block;
    }

    .navbar-expand-custom .navbar-toggler {
        display: block;
    }
}

/* inner page header style  */
body:not(.inner-page) .navbar {
    position: absolute;
    background: transparent;
}

body.inner-page .navbar {
    position: relative;
    background-color: #FFEECB;
}

/* event page side menu started  */

/* event page side menu off  */

/* hamburger menu hides in mobile view */
.navbar-toggler,
.hamburger-menu,
.your-menu-selector {
    position: relative;
    z-index: 9999;
}

/* For the banner - lower z-index for hamburger menu display the content*/
.banner {
    position: relative;
    z-index: 1;
}

/* Only apply these styles between 320px and 660px */
@media screen and (min-width: 320px) and (max-width: 1200px) {
    .hamburger-button,
    .navbar-toggler {
        display: block !important;
    }

    .close-button,
    .menu-close {
        display: none !important;
    }

    /* When menu is open */
    .menu-open .hamburger-button,
    .menu-open .navbar-toggler,
    .navbar-collapse.show~.hamburger-button,
    [aria-expanded="true"].navbar-toggler {
        display: none !important;
    }

    .menu-open .close-button,
    .menu-open .menu-close,
    .navbar-collapse.show~.close-button,
    .navbar-collapse.show+.menu-close {
        display: block !important;
    }
}

/* responsive for 125% button */
@media (max-width: 786px) and (max-height: 304px) {
    .hero-text h1 {
        margin-top: 90px !important;
        color: #FF7703;
        font-size: 1rem !important;
        font-weight: 500;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        text-align: left;
        padding: 10px 15px;
        border-radius: 8px;
        display: inline-block;
        max-width: 635px;
    }
}

/* gallery section started here  */
.gallery-heading {
    text-align: center;
    color: #063d6d;
    margin-bottom: 30px;
    font-size: 36px;
    padding-top: 20px;
    position: relative;
}

.gallery-heading:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #FF7703;
    margin: 15px auto 0;
}

/* Masonry grid */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.grid-item {
    aspect-ratio: 1/1;
    background: #d9c8b4;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 18px -6px rgba(60, 40, 30, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.03);
}

.grid-item:hover {
    box-shadow: 0 15px 28px -8px #7a5e4e80;
}

/* Slider Overlay */
.slider-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    pointer-events: none;
}

.slider-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.slider-container {
    position: relative;
    width: min(90vw, 1000px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slider-frame {
    background: transparent;
    border-radius: 20px;
    padding: 0;
    box-shadow: none;
    width: 100%;
}

.slider-main-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 16px;
    background: transparent;
}

/* Navigation buttons - REDUCED SIZE */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FF7703;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
    z-index: 12;
}

.slider-btn:hover {
    background: #e56700;
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 5px;
}

.next-btn {
    right: 5px;
}

/* Close button - REDUCED SIZE */
.close-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #343a40;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.15s;
    z-index: 13;
}

.close-btn:hover {
    background: #6c757d;
}

/* Counter indicator */
.counter-indicator {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #f8f9fa;
    color: #343a40;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-size: 1rem;
    border: 1px solid #dee2e6;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .close-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        top: 0;
        right: 0;
    }

    .counter-indicator {
        bottom: -40px;
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Fix for body scroll */
/* body.slider-open {
    overflow: hidden;
} */

/* nav active menu on  */
.navbar-home.active {
    color: #FF7703 !important;
    text-decoration: underline !important;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
}

.contact-btn.active {
    color: #FF7703 !important;
    text-decoration: none !important;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
}

.navbar-home.active::after,
.contact-btn.active::after {
    width: 100% !important;
    background-color: #FF7703 !important;
}
/* nav active menu off  */

/* new event section button in index page on  */
.event-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #67080E;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 119, 3, 0.3);
    position: relative;
    overflow: hidden;
    font-family: inherit;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    margin-left: 12px;
    margin-bottom: 20px;
}

.event-btn:hover {
    background-color: var(--dark-orange);
    border-color: var(--dark-orange);
    color: white;
    transform: translateY(-2px);
}
/* new event section button in index page off  */

/* whatsapp button on  */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-button:hover {
    background-color: #a4eecb;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-button i {
    margin-top: 2px;
    /* Adjust icon alignment */
}
/* whatsapp button off  */

/* new img for staff  */
.staff-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;

    background: linear-gradient(135deg, #CCCCCC, #EBEBEB);
    color: #555;
}