@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&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&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
    --primary: #4AA96C;
    --secondary: #F59E0B;
    --dark: #0F2A3D;
    --light: #F9FAFB;
    --accent: #60A5FA;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --modal-header: linear-gradient(135deg, #2A9D8F, #48B5A4); /* Gradient for modal header */
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08); /* Softer shadow */
}
body {
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'bookman old style';
    color: #2D3748;
    background-color: var(--light);
    overflow-x: hidden;
}
p, .card-text, .testimonial-text {
    text-align: justify;
    line-height: 1.7;
    font-weight: 400;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}
h1, h2, h3, h4, h5, h6 {
    text-align: center;
    font-weight: 600;
    color: var(--dark);
}
li::marker {
  color: var(--secondary);
}
.web-table.table{
    --bs-table-bg: var(--light);
    --bs-table-striped-color: var(--primary);
    --bs-table-striped-bg: var(--secondary);
    --bs-table-hover-bg: var(--light);
    --bs-table-hover-color: var(--secondary);
    --bs-table-border-color: var(--primary);
}
.web-table .table-primary{
    --bs-table-bg: var(--primary);
    --bs-table-color: var(--light);
}
.text-primary{
    color:var(--primary) !important;
}
.top-bar {
    background: var(--dark);
    color: white;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    padding: 0.75rem 0;
}
.navbar{
    background: var(--gradient);
    padding: 0.8rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1020;
}
.navbar-brand {
    font-weight: 700;
    color: white !important;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    display: flex;
    align-items: center;
}
.navbar-brand img {
    width: clamp(100%, 15vw, 250px);
    height: clamp(50px, 5vw, 50px);
    object-fit: contain;
    max-height: 50px;
    margin-right: 0.5rem;
}
.navbar-nav {
    gap: 0.2rem;
}
.nav-link {
    color: white !important;
    font-weight: 400;
    padding: 0.5rem 0.8rem;
    transition: color 0.3s ease, transform 0.2s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}
.nav-link:hover {
    color: var(--secondary) !important;
    transform: scale(1.05);
}
.dropdown-menu {
    background: var(--dark);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.dropdown-item {
    color: white;
    font-weight: 400;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    padding: 0.5rem 1rem;
    transition: background 0.3s ease, color 0.3s ease;
}
.dropdown-item:hover {
    background: var(--primary);
    color: white !important;
}
.hero-bg {
    position: relative;
    overflow: hidden;
}
.swiper-slide {
    position: relative;
    min-height: 300px; /* Minimum height for mobile */
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.slider-registration-btn {
    position: absolute;
    bottom: 25px;
    left:42%;
    z-index: 2;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    width: 200px; /* Fixed width to prevent shift */
    text-align: center;
}
.slider-registration-btn:hover {
    transform: none !important;
}
.swiper-button-next, .swiper-button-prev {
    background: var(--primary);
    width: clamp(35px, 5vw, 40px);
    height: clamp(35px, 5vw, 40px);
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.3s ease;
    z-index: 3;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    transform: scale(1.1);
    background: #3a8c57;
}
.swiper-button-next::after, .swiper-button-prev::after {
    color: white;
    font-size: clamp(1rem, 2vw, 1.2rem);
}
.card {
    border: none;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.about-img{
    width: 100%;
    height: 50vh;
    object-fit: cover;
}
.btn-primary {
    background: var(--primary);
    border: none;
    font-weight: 500;
    padding: clamp(0.5rem, 1.5vw, 0.7rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background: #3a8c57;
}
.btn-secondary {
    background: var(--secondary);
    border: none;
    font-weight: 500;
    padding: clamp(0.5rem, 1.5vw, 0.7rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-secondary:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background: #d97706;
}
.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.section-title h2::after {
    content: '';
    position: absolute;
    width: 55%;
    height: 3px;
    background: var(--primary);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}
footer {
    background: var(--gradient);
    color: white;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}
footer img.logo {
    width: clamp(75%, 15vw, 250px);
    height: clamp(50px, 5vw, 75px);
    object-fit: contain;
    margin-bottom: 1rem;
}
.form-control, .form-control:focus {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: clamp(0.5rem, 1vw, 0.7rem);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 169, 108, 0.1);
}
/* Testimonials Card */
.testimonial-card {
    background: white;
    border: 1px solid rgba(74, 169, 108, 0.4);
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    padding: clamp(1.5rem, 2vw, 2rem);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    opacity: 0.4;
}
.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 2px solid var(--primary);
    display: block;
}
.testimonial-text {
    font-style: italic;
    color: #4A5568;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    margin-bottom: 1rem;
    flex-grow: 1;
}
.testimonial-author {
    color: var(--primary);
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}
.testimonial-nav-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: clamp(30px, 5vw, 35px);
    height: clamp(30px, 5vw, 35px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
}
.testimonial-nav-btn:hover {
    background: #3a8c57;
    transform: scale(1.1);
}
.swiper-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px; /* Ensure equal height for both sliders */
}
/* Modal */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.modal-header {
    border-bottom: none;
    padding: clamp(1rem, 2vw, 1.5rem);
}
.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: clamp(1rem, 2vw, 1.5rem);
}
.modal-review {
    background: white;
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
}
.modal-review::before {
    content: '“';
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.4;
}
/* News and Events */
.news-list {
    background: white;
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-height: clamp(300px, 50vh, 400px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #E2E8F0;
}
.news-list::-webkit-scrollbar {
    width: 8px;
}
.news-list::-webkit-scrollbar-track {
    background: #E2E8F0;
    border-radius: 4px;
}
.news-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
.news-list::-webkit-scrollbar-thumb:hover {
    background: #3a8c57;
}
.news-item {
    margin-bottom: 1rem;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}
.news-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.news-item a:hover {
    color: var(--secondary);
}
.news-item span {
    color: #6B7280;
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    display: block;
}
/* Calendar */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.calendar-header h2 {
    font-size: 2rem;
    margin: 0;
}
.calendar-nav button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}
.calendar-nav button:hover {
    background: #1F8479;
}
.calendar-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.calendar-table th,
.calendar-table td {
    text-align: center;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
}
.calendar-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}
.calendar-table td {
    background: #fff;
    position: relative;
    transition: background 0.3s ease;
}
.calendar-table td:hover {
    background: #F1FAEE;
    cursor: pointer;
}
.calendar-table .empty {
    background: #f8f9fa;
}
.calendar-table .today {
    background: #A8DADC;
    font-weight: bold;
}
.event-dot {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}
/* Modal */
.event.modal-content {
    border-radius: 10px;
    background: #fff;
}
.event.modal-header {
    background: var(--primary);
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.event.modal-title {
    font-weight: 600;
}
.event.modal-body {
    padding: 1.5rem;
}
.event.modal-body h5 {
    font-weight: 600;
    color: var(--dark);
}
.event.modal-body p {
    margin: 0.5rem 0;
}
/* Results Slider */
.result-card {
    background: white;
    border-radius: 12px;
    text-align: center;
    padding: clamp(1rem, 2vw, 1.5rem);
    margin: 0 10px;
}
.result-card img {
    width: clamp(80px, 10vw, 100px);
    height: clamp(80px, 10vw, 100px);
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary);
}
.result-card .card-title {
    color: var(--primary);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
}
.result-card .card-text {
    color: #4A5568;
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    text-align: center;
}
.swiper-results .swiper-slide {
    display: flex;
    justify-content: center;
}
.resultsSwiper10.swiper_theme{
    --swiper-pagination-bullet-inactive-opacity:0.5;
    --swiper-pagination-color: var(--primary);
}
.resultsSwiper12.swiper_theme{
    --swiper-pagination-bullet-inactive-opacity:0.5;
    --swiper-pagination-color: var(--primary);
}
/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.gallery-img {
    width: 100%;
    height: clamp(150px, 20vw, 200px);
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-align: center;
    padding: 1rem;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}
/* Maps */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
/* Branches */
.branch-img{
    width: 85px;
    height: 85px;
    object-fit: contain;
}
/* WhatsApp Button Styles */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-btn i {
    font-size: 2rem;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background-color: #20C057; /* Slightly darker green on hover */
}
/* Video Gallery */
.video-gallery-section {
    width: 100%;
    padding: 3rem 1rem;
}
.video-gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.video-card {
    border: none;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}
.video-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #264653;
    margin-bottom: 1rem;
    text-align: center;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* Social Updates */
.social-card {
    background: white;
    border: 1px solid rgba(74, 169, 108, 0.2);
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    padding: clamp(1rem, 2vw, 1.5rem);
    height: 100%;
}
.social-card iframe {
    width: 100%;
    height: clamp(300px, 40vw, 400px);
    border: none;
}
@media (max-width: 576px) {
    .social-card iframe {
        height: 250px;
    }
}
/* Breadcrumb */
.breadcrumb-card:hover {
    transform: none; /* Explicitly ensure no transform on hover */
}
.breadcrumb-card {
    border: none;
    border-radius: 0;
    min-height: 20vh;
    position: relative;
    margin-bottom: 0;
}
.breadcrumb-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: 50% 65%;
    border-radius: 0;
}
.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding: 1rem;
}
.card-img-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15); /* Slightly darker overlay */
    z-index: 1;
}
.breadcrumb-container {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}
.breadcrumb-title {
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.breadcrumb {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    background: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}
.breadcrumb-item {
    font-weight: 500;
}
.breadcrumb-item a {
    color: #1F8479; /* Slightly darker shade of primary color */
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb-item a:hover {
    color: #2A9D8F;
    text-decoration: underline;
}
.breadcrumb-item.active {
    color: #264653;
}
.breadcrumb-item + .breadcrumb-item::before {
    margin: 0 0.5rem;
}
/* Page design */
.content-section {
    padding: 3rem 0;
}
.content-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.content-image:hover {
    transform: translateY(-5px);
}
.content-description {
    font-size: 1rem;
    text-align: justify;
    margin-top: 2rem;
}
/* Popup Image Modal */
#popupImageModal .modal-dialog {
    max-width: 800px; /* Match modal-lg */
    max-height: 90vh; /* Limit to viewport height */
    overflow: hidden; /* Prevent scrollbar */
}
#popupImageModal .modal-content {
    background: transparent;
    border: none;
    position: relative;
}
#popupImageModal .modal-body {
    padding: 0;
    position: relative; /* For positioning the button */
    overflow: hidden;
}
#popupImageModal img {
    width: 100%;
    max-height: 80vh; /* Ensure image fits within viewport */
    object-fit: contain; /* Maintain aspect ratio */
    border-radius: 8px;
}
#popupImageModal .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1050;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
#popupImageModal .btn-close:hover {
    background: rgba(0, 0, 0, 0.7);
}
#popupImageModal .btn-registration {
    position: absolute;
    /*top: 50%;*/
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    opacity: 0.85;
    text-decoration: none;
    transition: background 0.3s ease;
}
#popupImageModal .btn-registration:hover {
    background: var(--primary);
}
/* Registration */
.registration-card {
    border: none;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}
.registration-card:hover{
    transform: none;
}
.register .form-label {
    font-weight: 600;
    color: #264653;
    margin-bottom: 0.5rem;
}
.register .form-control,
.register .form-select {
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.register .form-control:focus,
.register .form-select:focus {
    border-color: #2A9D8F;
    box-shadow: 0 0 5px rgba(42, 157, 143, 0.3);
    outline: none;
}
.register .form-control::placeholder {
    color: #adb5bd;
}
.btn-submit {
    background: #2A9D8F;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn-submit:hover {
    background: #1F8479;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.branch-font{
    font-size: 0.85rem;
}
.news-card.card:hover{
    transform: none; /* Explicitly ensure no transform on hover */
}
/*House Tab*/
 .btn-house {
   color: white;
   margin: 0 0.5rem;
 }
 .btn-house.active {
   outline: 3px solid #fff;
   border: none;
 }
 #red-house{
     border:2.5px solid #dc3545;
 }
 #red-house h4{
     color:#dc3545;
 }
 .btn-red-house{
    color:#fff;
   background-color: #dc3545;
 }
 .btn-red-house.active, .btn-red-house:hover{
    color: #dc3545;
     border:2.5px solid #dc3545;
 }
 #green-house{
     border:2.5px solid #198754;
 }
 #green-house h4{
     color: #198754;
 }
 .btn-green-house{
    color:#fff;
   background-color: #198754;
 }
 .btn-green-house.active, .btn-green-house:hover{
     color: #198754;
     border:2.5px solid #198754;
 }
  #blue-house{
     border:2.5px solid #0d6efd;
 }
 #blue-house h4{
     color: #0d6efd;
 }
 .btn-blue-house{
    color:#fff;
   background-color: #0d6efd;
 }
 .btn-blue-house.active, .btn-blue-house:hover{
     color: #0d6efd;
     border:2.5px solid #0d6efd;
 }
   #yellow-house{
     border:2.5px solid #ffc107;
 }
 #yellow-house h4{
     color: #ffc107;
 }
 .btn-yellow-house{
    color:#fff;
   background-color: #ffc107;
 }
 .btn-yellow-house.active, .btn-yellow-house:hover{
     color: #ffc107;
     border:2.5px solid #ffc107;
 }
/* GSAP Animation Classes */
.animate-section {
    opacity: 0;
    transform: translateY(30px);
}
.animate-card {
    opacity: 0;
    transform: translateY(20px);
}
.animate-title {
    opacity: 0;
    transform: translateY(15px);
}
.animate-image {
    opacity: 0;
    transform: scale(0.95);
}
/* Responsive Adjustments */
@media (max-width: 576px) {
    .top-bar .row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .hero-bg {
        min-height: 300px;
    }
    .swiper-slide {
        min-height: 300px;
    }
    .hero-img {
        height: 300px;
    }
    .slider-registration-btn {
        bottom: 10px;
        padding: 0.25rem 1rem;
        width: 150px; /* Adjusted width for mobile */
        font-size: 0.9rem;
    }
    h1.display-4 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    .lead {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    .news-list {
        max-height: 300px;
    }
    .testimonial-card {
        min-height: 200px;
    }
    .contact-form-card {
        padding: 1rem;
    }
    .breadcrumb-card img {
        height: 12vh;
    }
    .breadcrumb-title {
        font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    }
    .breadcrumb {
        font-size: clamp(0.7rem, 1.2vw, 0.9rem);
        padding: 0.4rem 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 0.3rem;
    }
    .calendar-header h2 {
        font-size: 1.5rem;
    }
    .calendar-nav button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    .calendar-table th,
    .calendar-table td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    #popupImageModal .modal-dialog {
        max-width: 90vw; /* Adjust for smaller screens */
        max-height: 80vh;
    }
    #popupImageModal img {
        max-height: 70vh; /* Adjust for smaller screens */
    }
    #popupImageModal .btn-registration {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    #calendar {
        margin: 1rem;
        padding: 1rem;
    }
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-btn i {
        font-size: 1.8rem;
    }
    .breadcrumb-card img {
        height: 20vh;
    }
    .breadcrumb-title {
        font-size: clamp(0.8rem, 1.5vw, 1rem);
    }
    .breadcrumb {
        padding: 0.5rem 1rem;
        font-size: clamp(0.8rem, 1.5vw, 1rem);
    }
    .content-section {
        padding: 2rem 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .content-description {
        font-size: 0.9rem;
    }
}
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
        background: var(--dark);
        border-radius: 8px;
        margin-top: 0.5rem;
    }
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
        text-align: center;
    }
    .dropdown-menu {
        background: var(--primary);
        text-align: center;
        margin: 0 auto;
    }
    .dropdown-item {
        padding: 0.5rem 1rem;
    }
}
@media (min-width: 992px) {
    .navbar-nav {
        justify-content: center;
    }
    .breadcrumb-card img {
        height: 45vh;
    }
    .breadcrumb-title {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }
    .breadcrumb {
        padding: 0.6rem 1.2rem;
    }
}
@media (min-width: 1000px) and (max-width: 1200px) {
    .navbar-nav{
        flex-wrap: wrap;
    }
}
@media (min-width: 577px) and (max-width: 768px) {
    .hero-bg {
        min-height: 400px;
        margin-top: 40px;
    }
    .swiper-slide {
        min-height: 400px;
    }
    .slider-registration-btn {
        width: 130px;
    }
    .news-list {
        max-height: 350px;
    }
    .gallery-img {
        height: 180px;
    }
    .testimonial-card {
        min-height: 210px;
    }
}
@media (min-width: 769px) and (max-width: 992px) {
    .hero-bg {
        min-height: 500px;
    }
    .swiper-slide {
        min-height: 500px;
    }
    .result-card img {
        width: 90px;
        height: 90px;
    }
}
@media (min-width: 993px) {
    .hero-bg {
        min-height: 600px;
    }
    .swiper-slide {
        min-height: 600px;
    }
    .gallery-item.swiper-slide {
        min-height: 200px;
    }
    .result-item.swiper-slide {
        min-height: 200px;
    }
    .testimonial-item.swiper-slide {
        min-height: 250px;
    }
}