/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --primary: #5c7794; 
    --primary-light: #8fa0b5; 
    --primary-dark: #3b4e66; 
    --secondary: #e96302; 
    --accent: #c75100; 
    --dark: #2b2f33; 
    --light: #f8f9fa;
    --white: #ffffff; 
    --gray: #6c757d; 
    --light-gray: #e9ecef;
}


/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    background-color: #e9630208;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Philosopher', serif;
    font-weight: 700;
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(142, 121, 62, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(142, 121, 62, 0.4);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* Section Header */
.section-header {
    margin-bottom: 20px;
    position: relative;
}

.section-header span {
    display: block;
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin-top: 20px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lotus-loader {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 20px;
}

.petal {
    position: absolute;
    width: 40px;
    height: 15px;
    background: var(--secondary);
    border-radius: 20px;
    transform-origin: 40px 40px;
    animation: bloom 1.5s ease-in-out infinite;
}

.petal:nth-child(1) { transform: rotate(0deg); animation-delay: 0.1s; }
.petal:nth-child(2) { transform: rotate(45deg); animation-delay: 0.2s; }
.petal:nth-child(3) { transform: rotate(90deg); animation-delay: 0.3s; }
.petal:nth-child(4) { transform: rotate(135deg); animation-delay: 0.4s; }
.petal:nth-child(5) { transform: rotate(180deg); animation-delay: 0.5s; }
.petal:nth-child(6) { transform: rotate(225deg); animation-delay: 0.6s; }
.petal:nth-child(7) { transform: rotate(270deg); animation-delay: 0.7s; }
.petal:nth-child(8) { transform: rotate(315deg); animation-delay: 0.8s; }

.center {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-dark);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes bloom {
    0%, 100% { height: 15px; opacity: 0.8; }
    50% { height: 25px; opacity: 1; }
}

.preloader h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 24px;
    margin-top: 20px;
}

/* Navigation */
.navbar {
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 50px;
        color: var(--primary);
    font-weight: bold;
}

.nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    padding: 8px 10px !important;
    position: relative;
    margin: 0 5px;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.navCourse:after{
    background: none;
    position: relative;
}


.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.navCourse:hover:after,
.navCourse.active:after {
    width: 0%;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

/* Navbar Dropdown Fixes */

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 10px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.dropdown-item:hover, 
.dropdown-item:focus {
    background: var(--secondary);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/home-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.mandala-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/mandala-pattern.png');
    opacity: 0.04;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: #faf7f0;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-btns .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.hero-img img {
    border-radius: 10px;
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

/* Updated About Section */
.about-img-container {
    position: relative;
    margin-bottom: 30px;
}
.about-img-main {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}
.about-img-secondary {
    position: absolute;
    width: 40%;
    bottom: -30px;
    left: -30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
    z-index: 1;
}
.stat-item {
    text-align: center;
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 12%);
}
.stat-item h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    margin-bottom: 0;
    font-size: 14px;
}




/* Updated Features Section Styles */
.features-section {
    padding: 100px 0;
    background-color: #f9f6ee;
    position: relative;
    overflow: hidden;
}

.features-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/feature-bg.jpg');
    opacity: 0.2;
    z-index: 0;
}

.feature-card-new {
    background: white;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(142, 121, 62, 0.08);
    border: 1px solid rgba(142, 121, 62, 0.1);
}

.feature-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(142, 121, 62, 0.15);
}

.feature-icon-new {
    margin-bottom: 20px;
    text-align: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(142, 121, 62, 0.2);
}

.icon-circle img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.feature-content-new h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.feature-content-new p {
    color: var(--gray);
    text-align: center;
    margin-bottom: 20px;
}

.feature-badge {
    display: inline-block;
    background: rgba(142, 121, 62, 0.1);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    text-align: center;
    width: 100%;
}



/* Retreat Courses Section */
.retreat-section {
    padding: 100px 0;
    background: var(--white);
    background-size: cover;
    position: relative;
}

.retreat-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(142, 121, 62, 0.1);
}

.retreat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(142, 121, 62, 0.15);
}

.featured-retreat {
    border: 2px solid var(--primary);
    position: relative;
}

.retreat-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.retreat-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.retreat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.retreat-card:hover .retreat-img img {
    transform: scale(1.05);
}

.retreat-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 3px 12px;
    border-radius: 30px;
    font-size: 12px;
}

.retreat-content {
    padding: 25px;
}

.retreat-category {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.retreat-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.retreat-description {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.retreat-features {
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.feature-item i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.retreat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(142, 121, 62, 0.2);
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: var(--gray);
}

.retreat-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    padding: 3px;
}

.cta-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
}

.cta-box h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.cta-box p {
    color: var(--gray);
    margin-bottom: 0;
}

.btn-outline-light {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-light:hover {
    background: var(--primary);
    color: white;
}


/* Yoga Masters Redesign */
.teachers-section {
    padding: 100px 0;
    background: linear-gradient(rgb(234 249 247), rgb(232 245 245 / 65%)), url(../img/bg-mandala.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.teacher-card-new {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(142, 121, 62, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(142, 121, 62, 0.1);
}

.teacher-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(142, 121, 62, 0.2);
}

.teacher-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.teacher-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.teacher-card-new:hover .teacher-img-wrapper img {
    transform: scale(1.05);
}

.teacher-social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.teacher-card-new:hover .teacher-social-links {
    bottom: 20px;
    opacity: 1;
}

.teacher-social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.teacher-social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.teacher-info-new {
    padding: 25px;
    text-align: center;
}

.teacher-info-new h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.specialty {
    display: block;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 15px;
}

.teacher-bio {
    margin-bottom: 15px;
}

.teacher-bio p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
}

.teacher-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 12px;
    color: var(--gray);
}

.teacher-meta span {
    display: flex;
    align-items: center;
}

.teacher-meta i {
    margin-right: 5px;
    color: var(--primary-light);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-card {
    background: #b6e5f124;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 5%);
    height: 100%;
    border: 1px solid rgba(142, 121, 62, 0.1);
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon img {
    width: 10%!important;
    height: auto;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 70px!important;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray);
    display: block;
    margin-bottom: 5px;
}

.rating {
    color:#ffb400;
}

.owl-carousel .owl-nav .owl-prev { position: absolute;
    top: 45%; left: -20px;}
.owl-carousel .owl-nav i {height: 45px; width: 45px; line-height: 45px;
    text-align: center; color: #fff; background: var(--primary);}
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 45%;
    right: -20px;
}

/* Gallery Section */
.gallery-section {
    padding: 65px 0;
    background-color: #f9f4ea;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(142, 121, 62, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transform: scale(0);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-btn {
    transform: scale(1);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 70%;
    height: auto;
}

.contact-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.contact-form {
    background: #e1eaf4;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(142, 121, 62, 0.25);
}

textarea.form-control {
    height: auto;
    min-height: 150px;
}

/* Map Section */
.map-section {
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: linear-gradient(to right, #5c7794, #5985b4d6, #497193);
    color: var(--white);
    padding: 70px 0 0;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/footer-bg.png');
    opacity: 0.35;
    z-index: 0;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-widget {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.footer-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 85px;
    height: 2px;
    background:var(--secondary);
}

.footer-widget ul{padding-left: 0px;}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #fff;
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    height: 50px;
    background: rgb(255 255 255 / 17%);
    border: none;
    padding: 0 20px;
    color: var(--white);
    border-radius: 5px;
}
.newsletter-form input::placeholder{color: #eae6e6e6;}
.newsletter-form button {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.footer-menu {
    text-align: right;
}

.footer-menu a {
    color: #fff;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--secondary);
}

.quickLink ul li::before {
    content: '';
    display: inline-block;
    height: 14px;
    width: 26px;
    background-image: url(../img/list-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.footer-social a.fb-icon{background: #38539b;}
.footer-social a.insta-icon{background: linear-gradient(10deg, #efa513, #9007dc);}
.footer-social a.yt-icon{background: #FF0000;}
.footer-social a.wp-icon{background: #00a000;}
.footer-widget .para{color: #fff;}
.footer-logo{width: 70%;}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Contact Page Banner */
.contact-banner {
    background: linear-gradient(rgb(0 0 0 / 16%), rgb(0 0 0 / 16%)), url(../img/home-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}

.enroll-banner {
    background: linear-gradient(rgb(0 0 0 / 16%), rgb(0 0 0 / 16%)), url(../img/enroll-bg.webp);
    background-size: cover;
    background-position: top;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}



.contact-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    color: #fff;
}

.contact-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.contact-banner .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.contact-banner .breadcrumb-item.active {
    color: #eee;
}

.contact-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

/* Yoga Alliance Full-Width Section */
.yoga-alliance-section {
  background-color: #eef4f9;
  position: relative;
  overflow: hidden;
}

.yoga-alliance-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/mandala-bg-light.png');
  opacity: 0.03;
  z-index: 0;
}

.certification-image {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.certification-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(142,121,62,0.1));
}

.certification-content {
  padding:0px 40px;
  position: relative;
  z-index: 1;
}

.alliance-badge {
  max-width: 150px;
  margin-bottom: 30px;
}

.alliance-badge img {
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.yoga-alliance-section h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 20px;
}

.divider {
  width: 80px;
  height: 3px;
  background: var(--primary);
  margin: 25px 0;
}

.yoga-alliance-section .lead {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 30px;
}

.certification-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.certification-benefits li {
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
}

.certification-benefits i {
  color: var(--secondary);
  margin-right: 12px;
  font-size: 20px;
  margin-top: 3px;
}

.certification-benefits strong {
  font-weight: 600;
  color: var(--dark);
}

.certification-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
}
/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), 
              url('img/mandala-bg-light.png');
  background-size: cover;
  position: relative;
}

.faq-accordion {
  border-radius: 12px;
  overflow: hidden;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(142,121,62,0.1);
}

.accordion-button {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-button:hover {
  background: rgba(142,121,62,0.03);
}

.accordion-button i:first-child {
  color: var(--primary);
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.accordion-button span {
  flex-grow: 1;
  font-weight: 600;
  font-size: 17px;
  color: var(--dark);
  text-align: left;
}

.accordion-button i:last-child {
  color: var(--primary);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.accordion-button.active i:last-child {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.accordion-content p,
.accordion-content ul {
  padding: 0 25px 25px;
  margin-bottom: 0;
}

.accordion-content ul {
  list-style: none;
  padding-left: 60px;
}

.accordion-content li {
  position: relative;
  margin-bottom: 8px;
}

.accordion-content li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.faq-cta {
  background: rgba(142,121,62,0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px dashed var(--primary);
}

.faq-cta p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--dark);
}

/*========About Page CSS============= */

/* Aims and Objectives Section */
.aims-section {
    padding: 100px 0;
    background-color: #f9f6ee;
}

.aim-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    transition: all 0.3s ease;
}

.aim-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.aim-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.aim-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.aim-content ul {
    list-style: none;
    padding-left: 0;
}

.aim-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.aim-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* Location and Environment Section */
.location-section {
    padding: 100px 0;
    background-color: white;
}

.location-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.location-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.location-badge i {
    margin-right: 8px;
    color: var(--primary);
}

.environment-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 20px;
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: rgba(142,121,62,0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-item p {
    margin-bottom: 0;
    color: var(--gray);
}
/*=============End About PAge ===============*/


/*====================Gallery Page css ==============*/
/* Inner Banner Styles */
.inner-banner {
    background: linear-gradient(rgb(0 0 0 / 16%), rgb(0 0 0 / 16%)), url(../img/village-tour.jpg);
    background-size: cover;
    background-position: center;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}

.gallery-banner{
    background: linear-gradient(rgb(0 0 0 / 16%), rgb(0 0 0 / 16%)), url(../img/gallery-bg.jpg);
    background-size: cover;
    background-position: top;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}
.inner-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    color: #fff;
}

.inner-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.inner-banner .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.inner-banner .breadcrumb-item.active {
    color: #eee;
}

.inner-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

/* Gallery Page Styles */
.gallery-page-section {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-filter {
    margin-bottom: 40px;
}

.btn-filter {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    margin: 0 5px 10px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.btn-filter:hover, 
.btn-filter.active {
    background: var(--primary);
    color: var(--white);
}

.gallery-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(142,121,62,0.2);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(142,121,62,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    padding: 20px;
    color: var(--white);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.gallery-info p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Lightbox Overrides */
.lightbox .lb-image {
    border: 5px solid var(--white);
    border-radius: 3px;
}

.lb-data .lb-caption {
    font-size: 16px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.lb-data .lb-number {
    font-family: 'Poppins', sans-serif;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .inner-banner {
        padding: 80px 0 50px;
    }
    
    .inner-banner h1 {
        font-size: 36px;
    }
    
    .gallery-card img {
        height: 200px;
    }
    
    .btn-filter {
        padding: 6px 15px;
        font-size: 12px;
        margin: 0 3px 8px;
    }
}

@media (max-width: 575.98px) {
    .inner-banner h1 {
        font-size: 30px;
    }
    
    .gallery-card img {
        height: 180px;
    }
}


/*====================End Gallery Page css ==============*/

/*================teacher page============*/
/* Additional styles for team page */
        .team-banner{    background: linear-gradient(rgb(0 0 0 / 16%), rgb(0 0 0 / 16%)), url(../img/team-bg.jpg);     background-size: cover;
    background-position: center;}
        
        .team-hero h1 {
            font-size: 48px;
            margin-bottom: 15px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        
        .teacher-detail-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(142,121,62,0.15);
            margin-bottom: 50px;
            border: 1px solid rgba(142,121,62,0.1);
        }
        
        .teacher-main-info {
            padding: 40px;
            background: linear-gradient(135deg, rgba(142,121,62,0.05) 0%, rgba(255,255,255,1) 100%);
        }
        
        .teacher-img-container {
            height: 100%;
            min-height: 400px;
            overflow: hidden;
        }
        
        .teacher-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .teacher-detail-card:hover .teacher-img-container img {
            transform: scale(1.03);
        }
        
        .teacher-name {
            font-size: 32px;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .teacher-title {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 20px;
            display: block;
            font-size: 18px;
        }
        
        .teacher-bio {
            margin-bottom: 30px;
            font-size: 16px;
        }
        
        .teacher-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .stat-item {
            background: white;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            min-width: 120px;
        }
        
        .stat-item h4 {
            color: var(--primary);
            margin-bottom: 5px;
            font-size: 24px;
        }
        
        .stat-item p {
            font-size: 14px;
            margin-bottom: 0;
        }
        
        .teacher-details {
            padding: 40px;
        }
        
        .detail-section {
            margin-bottom: 30px;
        }
        
        .detail-section h3 {
            font-size: 22px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .detail-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--primary);
        }
        
        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .skill-tag {
            background: rgba(142,121,62,0.1);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 14px;
        }
        
        .teacher-social {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .teacher-social a {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .teacher-social a:hover {
            transform: translateY(-5px);
            background: var(--primary-dark);
        }
        
        @media (max-width: 991.98px) {
            .teacher-img-container {
                min-height: 300px;
            }
            
            .teacher-main-info,
            .teacher-details {
                padding: 30px;
            }
        }
        
        @media (max-width: 767.98px) {
            .team-hero h1 {
                font-size: 36px;
            }
            
            .teacher-name {
                font-size: 28px;
            }
        }

/*================end teacher page============*/

/*==============food-Accommodation Page=============*/
.accom-section{background: #f9f4ea;}
.additional-ammen{background: #fff;}

/*==============end food-Accommodation page=============*/


/*====================TTC page CSS==================*/
/* Course Banner */
.course-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/100-hour-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}

.course-200{background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/200-hour.jpg');
    background-size: cover;
    background-position: center;}

.course-300{background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/300-hour-bg.jpg');
    background-size: cover;
    background-position: center;}

.course-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    color: #fff;
}

.course-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.course-banner .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.course-banner .breadcrumb-item.active {
    color: #eee;
}

.course-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

/* Course Overview */
.course-overview-section {
    padding: 100px 0;
    background-color: var(--white);
}

.course-img-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.course-badge span {
    display: block;
    font-weight: 700;
    font-size: 18px;
}

.course-badge p {
    margin-bottom: 0;
    font-size: 12px;
}

.course-highlights {
    margin: 25px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.highlight-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 18px;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    background: rgba(142,121,62,0.1);
    padding: 15px;
    border-radius: 10px;
}

.meta-item i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 15px;
}

.meta-item span {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.meta-item strong {
    font-size: 18px;
    color: var(--dark);
    font-weight: 700;
}

/* Course Features */
.course-features-section {
    padding: 80px 0;
    background-color: #f9f6ee;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(142,121,62,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 100%;
    height: auto;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Curriculum Section */
.curriculum-section {
    padding: 100px 0;
    background-color: #f9f6ee;
}

.curriculum-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    /*height: 100%;*/
    border: 1px solid rgba(142,121,62,0.1);
}

.curriculum-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.curriculum-header img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.curriculum-header h3 {
    font-size: 22px;
    margin-bottom: 0;
    color: var(--dark);
}

.curriculum-card ul {
    list-style: none;
    padding-left: 0;
}

.curriculum-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.curriculum-card ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* Schedule with Form Section */
.schedule-with-form-section {
    padding: 100px 0;
    background-color: var(--white);
}

.daily-schedule {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(142,121,62,0.1);
}

.schedule-item {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(142,121,62,0.2);
}

.schedule-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.schedule-time {
    width: 200px;
    flex-shrink: 0;
    font-weight: 600;
    color: var(--primary);
}

.schedule-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.schedule-content p {
    margin-bottom: 0;
    color: var(--gray);
    font-size: 16px;
}

.schedule-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

.quick-enroll-form {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(142,121,62,0.1);
    position: sticky;
    top: 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray);
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(142,121,62,0.25);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray);
}

.form-footer i {
    color: var(--primary);
    margin-right: 5px;
}

@media (max-width: 991.98px) {
    .schedule-item {
        flex-direction: column;
    }
    
    .schedule-time {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .quick-enroll-form {
        position: static;
        margin-top: 50px;
    }
}



/* Activities Section */
.activities-section {
    padding: 100px 0;
    background-color: var(--white);
}

.activity-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(142,121,62,0.2);
}

.activity-img {
    height: 200px;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.05);
}

.activity-content {
    padding: 20px 0px;
    background: white;
    text-align: center;
}

.activity-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary);
}

/* Facilities Section */
.facilities-section {
    padding: 100px 0;
    background-color: #f9f6ee;
}

.facility-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.facility-img img {
    width: 100%;
    height: auto;
}

.facility-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}



.meal-features {
    margin-top: 15px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: #f9f4ea;
}
.upcoming-card{    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 10px;}

.pricing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    /*height: 100%;*/
    position: relative;
    border: 1px solid rgba(142,121,62,0.1);
    margin: 30px 20px;
}

.pricing-card.featured {
    border: 2px dashed var(--primary);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(142,121,62,0.1) 0%, rgba(255,255,255,1) 100%);
}

.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.pricing-header span {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.pricing-features {
    padding: 0 30px 30px;
    list-style: none;
}

.pricing-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.pricing-features li i {
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 5px;
}

.pricing-card .btn {
    margin: 0 30px 30px;
    display: block;
    width: calc(100% - 60px);
}

.dates-table {
  /*  background: white;*/
    padding: 30px;
    /*border-radius: 10px;*/
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
}

.dates-table th {
    font-weight: 600;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.dates-table td {
    vertical-align: middle;
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .course-banner h1 {
        font-size: 36px;
    }
    
    .enroll-content h2 {
        font-size: 30px;
    }
    
    .timeline-content h4 {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .course-banner {
        padding: 100px 0 60px;
    }
    
    .course-banner h1 {
        font-size: 30px;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .schedule-timeline:before {
        left: 40px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-time {
        width: 70px;
        padding-right: 15px;
    }
    
    .enroll-content {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .enroll-features {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .course-banner h1 {
        font-size: 26px;
    }
    
    .pricing-header {
        padding: 20px;
    }
    
    .price {
        font-size: 30px;
    }
    
    .pricing-features {
        padding: 0 20px 20px;
    }
    
    .pricing-card .btn {
        margin: 0 20px 20px;
        width: calc(100% - 40px);
    }
}

/* Highlights Section */
.highlights-section {
    padding: 80px 0;
    background-color: #fff;
}

.highlight-list {
    list-style: none;
    padding-left: 0;
}

.highlight-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.highlight-list i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 20px;
    color: var(--primary);
}

@media (max-width: 767.98px) {
    .highlight-list {
        margin-bottom: 30px;
    }
}
/*====================EndTTC page CSS==================*/

/*==============RETREAT PAGE CSS -=======================*/
/* Retreat Banner */
.retreat-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/gallery-bg.jpg');
    background-size: cover;
    background-position: top;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}
.retreat-banner2 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/retreat-bg.jpg');
    background-size: cover;
    background-position: top;
    padding: 140px 0 90px;
    text-align: center;
    color: white;
    position: relative;
}

.retreat-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    color: #fff;
}

.retreat-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.retreat-banner .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.retreat-banner .breadcrumb-item.active {
    color: var(--primary);
}

.retreat-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

/* Retreat Overview */
.retreat-overview-section {
    padding: 100px 0;
    background-color: var(--white);
}

.retreat-img-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.retreat-meta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    background: rgba(142,121,62,0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 200px;
}

.meta-item i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 15px;
}

.meta-item span {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.meta-item strong {
    font-size: 18px;
    color: var(--dark);
    font-weight: 700;
}

/* Retreat Benefits */
.retreat-benefits-section {
    padding: 80px 0;
    background-color: #f9f6ee;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(142,121,62,0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(142,121,62,0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Retreat Schedule */
.retreat-schedule-section {
    padding: 100px 0;
    background-color: var(--white);
}

.schedule-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.schedule-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 100px;
    width: 3px;
    height: 100%;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 130px;
}

.timeline-time {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    text-align: right;
    padding-right: 20px;
    color: var(--primary);
    font-weight: 600;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(142,121,62,0.1);
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.note {
    font-style: italic;
    color: var(--gray);
}

/* Retreat Activities */
.retreat-activities-section {
    padding: 100px 0;
    background-color: #f9f6ee;
}

.activity-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(142,121,62,0.2);
}

.activity-img {
    height: 200px;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.05);
}

.activity-content {
    padding: 20px;
    background: white;
}

.activity-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Retreat Pricing */
.retreat-pricing-section {
    padding: 100px 0;
    background-color: var(--white);
}

.pricing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(142,121,62,0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(142,121,62,0.1) 0%, rgba(255,255,255,1) 100%);
}

.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.pricing-header span {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.pricing-features {
    padding: 0 30px 30px;
    list-style: none;
}

.pricing-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.pricing-features i {
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 5px;
}

.inclusion-note {
    font-size: 14px;
    color: var(--gray);
}

/* Dates Section */
.dates-section {
    padding: 80px 0;
    background-color: #f9f6ee;
}

.dates-table {
   /* background: white;
    padding: 30px;
    border-radius: 10px;*/
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
}

.dates-table th {
    font-weight: 600;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.dates-table td {
    vertical-align: middle;
}
.enroll-section{padding: 80px 0px;}

/* Quick Enroll Section */
.quick-enroll-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.enroll-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.enroll-box h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}

.enroll-box p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .retreat-banner h1 {
        font-size: 36px;
    }
    
    .meta-item {
        min-width: 150px;
    }
    
    .schedule-timeline:before {
        left: 60px;
    }
    
    .timeline-item {
        padding-left: 90px;
    }
    
    .timeline-time {
        width: 60px;
    }
}

@media (max-width: 767.98px) {
    .retreat-banner {
        padding: 100px 0 60px;
    }
    
    .retreat-banner h1 {
        font-size: 30px;
    }
    
    .schedule-timeline:before {
        left: 40px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-time {
        width: 40px;
        font-size: 14px;
    }
    
    .enroll-box .col-lg-8 {
        margin-bottom: 20px;
    }
    
    .enroll-box .col-lg-4 {
        text-align: left !important;
    }
}

@media (max-width: 575.98px) {
    .retreat-banner h1 {
        font-size: 26px;
    }
    
    .meta-item {
        min-width: 100%;
    }
    
    .schedule-timeline:before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
    }
    
    .timeline-time {
        position: static;
        text-align: left;
        margin-bottom: 10px;
    }
}
/*==============END RETREAT PAGE CSS -=======================*/



/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .accordion-button {
    padding: 15px 20px;
  }
  
  .accordion-content p,
  .accordion-content ul {
    padding: 0 20px 20px;
  }
}

@media (max-width: 767.98px) {
  .accordion-button span {
    font-size: 16px;
  }
  
  .accordion-content ul {
    padding-left: 40px;
  }
}
/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .about-img {
        margin-bottom: 50px;
    }
    
    .teacher-img {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .hero-section,
    .hero-slide {
        min-height: 600px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .footer-menu {
        text-align: left;
        margin-top: 15px;
    }
    
    .footer-menu a {
        margin: 0 10px 0 0;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
    
    .teacher-img {
        height: 200px;
    }
    
    .hero-img {
        margin-top: 50px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 30px;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .hero-btns .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .teacher-img {
        height: 250px;
    }
}

/* Updated Button Styles */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-gradient:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.btn-gradient:hover {
    color: var(--white)
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(142, 121, 62, 0.3);
}

.btn-gradient:hover:before {
    opacity: 1;
}


/* Uniform TTC Cards */
.ttc-uniform-section {
  padding: 100px 0;
  background: var(--white);
  background-size: cover;
  position: relative;
}

.ttc-uniform-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(142,121,62,0.1);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  border: 1px solid rgba(142,121,62,0.1);
}

.ttc-uniform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(142,121,62,0.2);
}

.ttc-uniform-card.featured {
  border: 2px solid var(--primary);
}

.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: white;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.course-duration {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  text-align: center;
}

.course-duration span {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.course-duration small {
  font-size: 14px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.course-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.course-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
}

.course-level {
  position: absolute;
  bottom: 15px;
  left: 0;
  background: var(--secondary);
  color: white;
  padding: 5px 15px;
  padding-left: 10px;
  border-radius: 0 30px 30px 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.course-content {
  padding: 25px;
}

.course-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
}

.divider-small {
  width: 50px;
  height: 2px;
  background: var(--primary);
  margin: 15px 0;
}

.course-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.course-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.course-features i {
  color: var(--secondary);
  margin-right: 10px;
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.course-meta {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(142,121,62,0.2);
}

.meta-item {
  display: flex;
  align-items: center;
  font-size: 13px;
}

.meta-item i {
  color: var(--primary);
  margin-right: 5px;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: rgba(142,121,62,0.05);
  border-top: 1px solid rgba(142,121,62,0.1);
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
}




@media screen and (max-width: 768px) {
    .hero-img{display:none; }
    .certification-content{padding: 10px 40px;}
    .cta-box{padding: 20px;}
    .footer-logo{width: 50%;}
    .hero-section, .hero-slide{        min-height: 500px;}
    .dropdown-menu{display: none;}

}
@media screen and (max-width: 667px) {
    .teacher-img-wrapper img{object-position: top;}
}
@media screen and (max-width: 640px) {}
@media screen and (max-width: 576px) {
    .hero-section{height: auto;}
    .hero-content h1{font-size: 32px;}
    .about-img-secondary{width: 53%;bottom: -30px;left: 0px;}
    .divider{margin: 10px 0;}
    .stat-item{padding: 8px 8px;}
    .features-section{padding: 60px 0;}
    .ttc-uniform-section{padding: 60px 0;}
    .retreat-section{padding: 60px 0;}
    .teachers-section{padding: 60px 0;}
    .about-section{padding: 60px 0;}
    .testimonials-section{padding: 60px 0;}
    .faq-section{padding: 60px 0;}
    .course-image{height: 250px;}
    .retreat-img{height: 250px;}
    .yoga-alliance-section h2{font-size: 32px;}
    .footer-widget{margin-bottom: 30px;}
    .retreat-img img{object-position: top;}

}
@media screen and (max-width: 490px) {
    .hero-content h1{text-align: }
    .about-img-secondary{width: 40%;bottom: -9px;}
    .section-header span{margin-bottom: 5px;}
    .section-header{margin-bottom: 10px;}
    .stat-item{        padding: 8px 12px;}
    .certification-benefits li{    display: block;}
    .contact-banner{padding: 70px 0 40px;}
    .contact-banner h1{font-size: 30px;}
    .teacher-card-new{margin: 0 55px;}
    .copyright{padding: 8px 0;margin-top: 5px;}
    .copyright p{margin-bottom: 0px;}
    .copyright .footer-menu{display: none;}
    .section-header span{padding-top: 10px;}
    .course-overview-section{    padding: 60px 0px;}
    .activities-section{    padding: 60px 0px;}
    .schedule-time h4{font-size: 20px;}
    .upcoming-card{margin:0;}
    .dates-table{    padding: 18px;}
    .dates-table h3{font-size: 20px;}
    .pricing-header{    padding: 16px;}
    .price{font-size: 20px;}
    .pricing-header h3{font-size: 20px;}
    .pricing-section{padding: 60px 0px;}
    .retreat-overview-section{padding: 60px 0px;}
    .schedule-with-form-section{    padding: 60px 0;}
    .curriculum-section{padding: 60px 0;}
    .quick-enroll-form{margin-top: 0;}
    .retreat-schedule-section{    padding: 60px 0;}
    .timeline-time{width: 100%;}
    .retreat-activities-section{padding: 60px 0px;}
    .retreat-pricing-section{padding: 60px 0px;}
    .schedule-timeline{    margin: 0 auto;}
    .retreat-schedule-section .mt-5{margin-top: 0px!important;}
    .retreat-benefits-section{    padding: 60px 0;}
    .timeline-content{    padding: 15px;}
    .footer-widget h3{font-size: 18px;    margin-bottom: 12px;}

}
@media screen and (max-width: 430px) {
    .navbar{padding: 10px 0;}
    .icon-circle img{width: 35px;    height: 35px;}
    .icon-circle{width: 60px;height: 60px;}
    .feature-content-new h3{    margin-bottom: 8px;}
    .feature-icon-new{margin-bottom: 10px;}
    .feature-content-new h3{    font-size: 18px;}
    .footer{    padding: 50px 0 0;}
    .hero-content h1{text-align: center;        font-size: 28px;}
    .hero-content p{text-align: center;}
    .hero-btns .btn{margin: auto;width: 50%; margin-bottom: 15px;}
    .section-header h2{    margin-bottom: 10px;}
    .course-content{padding: 16px;}
    .yoga-alliance-section h2{font-size: 28px;}
    .certification-benefits i{    margin-right: 5px;}
    .feature-item i{width: 40px;    font-size: 18px;height: 40px;}
    .retreat-content{padding: 16px;}
    .retreat-description{margin-bottom: 10px;}
    .feature-item{margin-bottom: 8px;}
    .retreat-footer{margin-top: 10px;}
    .retreat-features{margin-bottom: 10px;}
    .price{font-size: 20px;}
    .teacher-info-new h3{font-size: 20px;}
    .specialty{font-size: 14px;}
    .gallery-section{padding: 50px 0;}
    .footer-social a{width: 30px;height: 30px;}
    .copyright p{text-align: center;}
    .section-header span{font-size: 16px;}
    .preloader{display: none;}
}
@media screen and (max-width: 400px) {
    .section-header h2{font-size: 26px;}
    .certification-content{padding: 10px 18px;}
    .yoga-alliance-section h2{font-size: 26px;}
    .yoga-alliance-section .lead{font-size: 16px;}
    .retreat-content h3{font-size: 20px;}
    .teacher-info-new{padding: 15px;}
    .navbar-brand img{height: 40px;}
    .copyright p{font-size: 15px;}
    .footer-widget ul li{margin-bottom: 8px;}
    .hero-content h1{font-size: 26px;}
    .preloader h4{font-size: 22px;}
    .btn{        padding: 8px 14px;}
    .meta-item i{font-size: 20px;}
    .course-meta{margin-top: 10px;padding-top: 10px;}
    .course-duration span{font-size: 32px;}
    .hero-section, .hero-slide{min-height: 430px;}
    .contact-banner h1{        font-size: 28px;}
    .section-header h2{        font-size: 24px;}
    .location-section{    padding: 60px 0;}
    .aims-section{    padding: 60px 0;}
    .curriculum-section{    padding: 60px 0;}
    .schedule-with-form-section{    padding: 60px 0;}
    .aims-section h5{font-size: 16px;}
    .teacher-name{        font-size: 24px;}
    .teacher-title{font-size: 16px;margin-bottom: 8px;}
    .teacher-main-info, .teacher-details{        padding: 15px;}
    .gallery-page-section{padding: 60px 0;}
    .contact-section{padding: 60px 0;}
    .contact-icon img{width: 90%;}
    .contact-icon{    width: 40px;    height: 60px;}
    .contact-text h4{    font-size: 16px;margin-bottom: 4px;}
    .social-links{padding-bottom: 20px;}
    .enroll-section{    padding: 40px 0px;}
    .course-banner h1{font-size: 24px;}
    
}
@media screen and (max-width: 390px) {
    .section-header h2{font-size: 24px;}
    .section-header span{        font-size: 14px;}
}
@media screen and (max-width: 360px) {
    .hero-content h1{font-size: 24px;}
    .section-header h2{font-size: 22px;}
    .course-duration span{font-size: 28px;}
    .teacher-info-new h3{font-size: 18px;}
}
@media screen and (max-width: 330px) {}