header div#logo img{width: 80%;}
.footer-logo{width: 30%;}
header div#logo{max-width: 100px;}
.whychooseTTC .ttcBox img{padding: 15px;
    overflow: initial;
    background: rgb(113 149 1 / 16%);}

.daily-schedule-section {
    /*background-color: #f9f9f9;*/
    position: relative;
    overflow: hidden;
}

.schedule-container {
    position: relative;
    z-index: 1;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    position: relative;
}

.schedule-item:last-child {
    border-bottom: none;
}

.time-badge {
    flex: 0 0 150px;
    padding: 8px 10px;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    margin-right: 20px;
}

.activity-details {
    flex: 1;
}

.activity-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.activity-details p {
    margin-bottom: 0;
    color: #666;
    font-size: 14px;
}

.activity-icon {
    flex: 0 0 40px;
    text-align: center;
    margin-left: 15px;
}

.sticky-form-container {
    position: sticky;
    top: 120px;
}

.quick-form {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.program-highlights ul {
    margin-bottom: 0;
}

.program-highlights li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .sticky-form-container {
        position: static;
        margin-top: 40px;
    }
    
    .schedule-item {
        flex-wrap: wrap;
    }
    
    .activity-icon {
        display: none;
    }
}
.yoga-courses-section {
    position: relative;
    overflow: hidden;
}

.yoga-course-card {
    transition: all 0.3s ease;
    border-radius: 20px;
}

.yoga-course-card:hover {
    transform: translateY(-5px);
}

.course-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.course-image-container img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.yoga-course-card:hover .course-image-container img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.popular-tag {
    position: absolute;
    top: 15px;
    left: -5px;
    padding: 5px 20px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.popular-tag:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--secondary-color);
}

.course-content {
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: none;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.course-price .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.course-comparison-table {
    border: 1px solid rgba(0,0,0,0.05);
}

.course-comparison-table table {
    margin-bottom: 0;
}

.course-comparison-table th {
    font-weight: 600;
    background: rgba(0,0,0,0.02);
}

.course-comparison-table td, 
.course-comparison-table th {
    padding: 12px 15px;
    vertical-align: middle;
}

.course-comparison-table tr:nth-child(even) {
    background: rgba(0,0,0,0.02);
}

@media (max-width: 991px) {
    .yoga-course-card {
        margin-bottom: 30px;
    }
    
    .course-comparison-table {
        overflow-x: auto;
    }
}
.inclusions-section {
    position: relative;
}

.inclusion-card, .exclusion-card {
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.inclusion-card:hover, .exclusion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.included-items, .excluded-items {
    list-style: none;
    padding-left: 0;
}

.included-items li, .excluded-items li {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.included-items li:hover {
    background: rgba(var(--secondary-color-rgb), 0.05);
}

.excluded-items li:hover {
    background: rgba(220,53,69,0.05);
}

.note-box {
    border: 1px dashed rgba(255,255,255,0.3);
}

@media (max-width: 767px) {
    .inclusion-card, .exclusion-card {
        margin-bottom: 30px;
    }
}
.curriculum-section {
    background-color: #f9f9f9;
}

.curriculum-tabs {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.curriculum-tabs .nav-link {
    padding: 12px 25px;
    font-weight: 600;
    color: #666;
    border: none;
    background: transparent;
    position: relative;
}

.curriculum-tabs .nav-link.active {
    color: var(--secondary-color);
}

.curriculum-tabs .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
}

.curriculum-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.curriculum-list {
    list-style: none;
    padding-left: 0;
}

.curriculum-list li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.curriculum-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.timeline-schedule {
    max-width: 400px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-time {
    flex: 0 0 80px;
    font-weight: 600;
    color: var(--secondary-color);
}

.timeline-content {
    flex: 1;
    text-align: left;
}

@media (max-width: 767px) {
    .curriculum-tabs .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
}
.excursions-section {
    position: relative;
}

.excursion-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.excursion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.excursion-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.excursion-highlights {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.excursion-highlights li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
}

.excursion-note {
    border: 1px dashed rgba(0,0,0,0.1);
}

.course-meta{flex-flow: wrap;}
.ob-cover{object-fit: cover;}

.c-prices {display: flex;gap: 20px;padding: 10px 0px; justify-content: space-around;}
.c-price-box {
    background: rgb(227 249 218);
    padding: 1em;
    border-radius: 12px;
    width: auto;
}
.c-price-box h4 {
    /*color: var(--primary-color);*/
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 10px;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 18px;
}
.c-price-box p {
	 color: var(--secondary-color);
    font-size: 22px;
    margin: 0px;
    font-weight: 500;
}
.fix-social {
  position: fixed;
  right: 40px;
  bottom: 20px;
  z-index: 999;
}
.fix-social a i {
  height: 50px;
    width: 50px;
    font-size: 31px;
    text-align: center;
    border-radius: 100%;
    overflow: hidden;
    transition: .5s all;
   
    color: #fff;
    padding: 9px 
}
.fix-social a {
  display: block;
  margin: 5px 0;
  background: #129809;
    max-width: 60px;
    max-height: 60px;
    padding: 14px;
    border-radius: 100%; animation-name: pulsess; animation-duration: 1.5s; animation-timing-function: ease-out;
    animation-iteration-count: infinite; transition: all 0.3s;}
  @keyframes pulsess {  
 50% {
    box-shadow:  0 0 0 0 #1ea10e;
    scale: 0.9;
}

   100% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    scale: 1;
}
}

.career-opportunities {
    background-color: #f9f9f9;
}

.career-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.career-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-details {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.career-details li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.career-testimonial {
    border: 1px dashed rgba(0,0,0,0.1);
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.support-feature {
    border-left: 3px solid var(--secondary-color);
    padding-left: 15px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.success-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.graduate-image {
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
}

.graduate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.graduate-meta {
    font-size: 14px;
}

.graduate-social a {
    transition: all 0.3s ease;
}

.graduate-social a:hover {
    color: var(--secondary-color) !important;
}

@media (max-width: 767px) {
    .career-image-box {
        margin-top: 40px;
    }
}

.living-dining-section {
    position: relative;
}

.accommodation-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.accommodation-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accommodation-card:hover .accommodation-image img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
}

.accommodation-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.accommodation-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.facility-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.facility-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dining-gallery img {
    transition: all 0.3s ease;
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.dining-gallery img:hover {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .dining-gallery {
        margin-top: 30px;
    }
    
    .dining-gallery img {
        height: 120px;
    }
}








/*==========Responsive css=========*/

@media screen and (max-width: 576px) {

	header div#logo img{width: 30%;}
	.slider-section{    padding-top: 3em;}
	.abt-icons{padding-bottom: 0em;}
	.subfooter{margin-top: 10px;}
	.widget{padding-bottom: 20px;}
	.social-icons{margin-bottom: 0px;}
}

@media screen and (max-width: 490px) {
    h2{font-size: 28px;}
    .fs-72{font-size: 52px;}
    .fs-64{    font-size: 50px;}
    .jaraSection p{font-size: 16px; font-weight: 400;}
    p.lead{font-size: 16px;}
    #services-sec .h-100{height: auto!important;}
    #services-sec .img-fluid.circle{padding: 8px;}
     #services-sec .spacer-single{display: none;}
    .de_count h3 span{font-size: 30px;}
    .de_count h3{line-height: 22px;}
    .numbersection .row .mb-sm-30{        margin-bottom: 8px;}
    .mobhide{display: none;}
    .footer-light .copyright-text{text-align: center;}
    .included-items li, .excluded-items li{    white-space: normal;}
    .icon-box{width: 30px;height: 30px;}
    .excursion-card{height: auto;}
    .excursion-card.p-4{padding: 1rem !important;}
    .excursion-card h3{font-size: 20px;}
    .no-bottom .col-md-12{height: min-content;}
}

@media screen and (max-width: 430px) {
    #de-subheader.op-2{margin-top: 40px;}
    ol.ol-style-1 li{    font-size: 16px;}
    h3{    font-size: 24px;}
    .time-badge{    flex: 0 0 110px;padding: 6px 4px; margin-right: 10px;}
    .quick-form.p-5{    padding: 1rem !important;}
    .c-price-box p{font-size: 20px;}
    .included-items li, .excluded-items li{padding: 0px;}
    .living-dining-section .row.pt-5{    padding-top: 0rem !important;}
    .facility-card{height: auto !important;margin-bottom: 22px;}
}