.card, .open-badge {
    border-radius: 20px
}

.btn, .card, .profile-image {
    overflow: hidden
}

.btn, .card, .card-header, .container, .loading, .product-image, .product-showcase {
    position: relative
}

.btn, .close, .contact-item, .download-item, .social-item {
    cursor: pointer
}

.blog-grid, html {
    scroll-behavior: smooth
}

.badge-text small, .blog-date .month, .offer-badge, .section-title {
    text-transform: uppercase
}

.btn, .visit-btn {
    text-decoration: none
}

.blog-date, .blog-header, .faq-header, .gallery-info h4, .map-placeholder, .menu-header, .payment-profile, .qr-section, .support-content, .testimonials-header, .textAccept, .visit-header {
    text-align: center
}

    .faq-header h2, .testimonials-header h2, .visit-header h2 {
        -webkit-text-fill-color: transparent
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Poppins,sans-serif;
    background: 0 0;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px
}

.container {
    width: 100%;
    max-width: 1200px
}

.card {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
    transition: transform .3s,box-shadow .3s
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 60px rgba(0,0,0,.15)
    }

.card-header {
    padding: 20px;
    background: linear-gradient(135deg,#157a9d 0,#764ba2 100%)
}

.open-badge {
    display: inline-flex;
    align-items: center;
    background: #00c851;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
    animation: 2s infinite pulse
}

    .open-badge i {
        font-size: 8px;
        animation: 1s infinite blink
    }

@keyframes pulse {
    0%,100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

@keyframes blink {
    0%,50% {
        opacity: 1
    }

    100%,51% {
        opacity: .3
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes admissionPulse {
    0%,100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,255,255,.7)
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255,255,255,0)
    }
}

@keyframes videoPulse {
    0%,100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,255,255,.7)
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255,255,255,0)
    }
}

@keyframes heartbeat {
    0%,100% {
        transform: scale(1)
    }

    25% {
        transform: scale(1.15)
    }

    50% {
        transform: scale(1.1)
    }
}

.admission-button-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px
}

.admission-btn {
    background: linear-gradient(135deg,#00d67e,#00c851);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: admissionPulse 2.5s infinite;
    box-shadow: 0 0 0 0 rgba(255,255,255,.7);
    transition: all .3s ease;
    white-space: nowrap;
    flex-shrink: 0
}

    .admission-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,212,126,.4);
        animation: none;
        background: linear-gradient(135deg,#00e88f,#00d67e)
    }

    .admission-btn i {
        font-size: 16px;
        animation: bounce 2s infinite
    }

.video-btn {
    background: linear-gradient(135deg,#ff6b6b,#ff8e8e);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: videoPulse 2.5s infinite;
    box-shadow: 0 0 0 0 rgba(255,255,255,.7);
    transition: all .3s ease;
    white-space: nowrap;
    flex-shrink: 0
}

    .video-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255,107,107,.4);
        animation: none;
        background: linear-gradient(135deg,#ff7979,#ff5252)
    }

    .video-btn i {
        font-size: 16px;
        animation: heartbeat 1.5s infinite
    }

.marquee-container {
    flex: 1;
    overflow: hidden;
    background: linear-gradient(90deg,transparent 0,rgba(255,255,255,.05) 50%,transparent 100%);
    border-radius: 15px;
    padding: 0 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,.2)
}

.marquee-text {
    display: flex;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap
}

    .marquee-text span {
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        letter-spacing: 1px;
        padding-right: 100px
    }

.card-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    padding: 30px
}

.profile-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px
}

.profile-image {
    width: 80px;
    height: 80px;
    min-height: 80px;
    min-width: 80px;
    border-radius: 15px;
    border: 3px solid #157a9d;
    transition: transform .3s
}

.badge, .offer-item {
    border-radius: 12px
}

.offer-card:hover .offer-icon, .profile-image:hover {
    transform: scale(1.1) rotate(5deg)
}

.badge:hover, .btn-outline:hover, .btn-secondary:hover {
    transform: translateY(-2px)
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.business-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.2
}

.description, .hours-list, .products-header, .trust-badges {
    margin-bottom: 25px
}

.business-tag .tag {
    background: #157a9d;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500
}

.description p {
    color: #666;
    line-height: 1.6;
    font-size: 14px
}

.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9ff;
    border: 1px solid #e3e8ff;
    transition: transform .2s,background-color .2s;
    flex: 1;
    min-width: 140px
}

    .badge:hover {
        background: #f0f4ff
    }

.badge-animated {
    position: relative;
    border-radius: 12px;
    overflow: hidden
}

    .badge-animated::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        border: 2px solid #157a9d;
        border-radius: 12px;
        animation: borderFlow 3s infinite linear
    }

    .badge-animated:hover::before {
        animation: borderFlowHover 0.8s ease-out forwards
    }

@keyframes borderFlow {
    0% {
        left: -100%;
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        left: 100%;
        opacity: 0
    }
}

@keyframes borderFlowHover {
    0% {
        left: -100%;
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        left: 100%;
        opacity: 0;
        box-shadow: 0 0 10px 5px rgba(21,122,157,.3)
    }
}

.badge-icon {
    color: #157a9d;
    font-size: 16px
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.btn, .offer-item {
    align-items: center
}

.badge-text small {
    font-size: 12px;
    color: #6e6e6e;
    font-weight: 500
}

.badge-text strong {
    font-size: 17px;
    font-weight: 700;
    color: #333
}

.modal-header h3, .offer-item h4 {
    font-weight: 600
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    gap: 8px;
    transition: .3s
}

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);
        transition: left .5s
    }

    .btn:hover::before, .see-all-btn:hover::before, .see-all-offers-btn:hover::before {
        left: 100%
    }

.btn-primary {
    background: linear-gradient(135deg,#ff6b6b,#ff8e8e);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,107,107,.3)
}

    .btn-primary:hover, .see-all-offers-btn:hover {
        background: linear-gradient(135deg,#ff5252,#ff7979);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255,107,107,.4)
    }

.btn-secondary {
    background: linear-gradient(135deg,#157a9d,#764ba2);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102,126,234,.3)
}

    .btn-secondary:hover {
        background: linear-gradient(135deg,#5a6fd8,#6a42a0);
        box-shadow: 0 6px 20px rgba(102,126,234,.4)
    }

.btn-outline {
    background: #fff;
    color: #157a9d;
    border: 2px solid #e3e8ff
}

.modal-content, .product-image {
    border-radius: 20px;
    overflow: hidden
}

.btn-outline:hover {
    background: #f8f9ff;
    border-color: #157a9d
}

.product-image {
    width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,.1)
}

    .blog-image img, .product-image img, .product-image-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform .3s
    }

    .blog-card:hover .blog-image img, .product-card:hover .product-image-container img, .product-image:hover img {
        transform: scale(1.05)
    }

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent,rgba(0,0,0,.8));
    padding: 30px 25px 25px;
    color: #fff;
    transform: translateY(100%);
    transition: transform .3s
}

.close, .offer-item {
    transition: transform .2s
}

.gallery-item:hover .gallery-overlay, .product-image:hover .product-overlay, .send-message-btn:active {
    transform: translateY(0)
}

.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px
}

.product-info p {
    font-size: 14px;
    opacity: .9
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    animation: .3s modalSlideIn
}

.contact-form-header h2:after, .modal-header {
    background: linear-gradient(135deg,#157a9d 0,#764ba2 100%)
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.modal-header {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.close {
    font-size: 28px;
    font-weight: 700
}

    .close:hover {
        transform: rotate(90deg)
    }

.contact-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    animation: .3s modalSlideIn;
    border-radius: 20px
}

.contact-modal-body {
    padding: 30px
}

.contact-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all .3s ease;
    border: 2px solid #e9ecef;
    cursor: pointer
}

    .contact-option:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,.15)
    }

.contact-option-icon {
    font-size: 48px;
    margin-bottom: 15px;
    transition: transform .3s
}

    .contact-option-icon i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 15px
    }

.call-option {
    background: linear-gradient(135deg,#f0f4ff 0,#fff)
}

    .call-option .contact-option-icon i {
        background: linear-gradient(135deg,#157a9d 0,#1e88a8);
        color: #fff
    }

    .call-option:hover {
        border-color: #157a9d;
        background: #f8f9ff
    }

        .call-option:hover .contact-option-icon {
            transform: scale(1.1) rotate(-10deg)
        }

.whatsapp-option {
    background: linear-gradient(135deg,#f0fff7 0,#fff)
}

    .whatsapp-option .contact-option-icon i {
        background: linear-gradient(135deg,#25d366 0,#20b858);
        color: #fff
    }

    .whatsapp-option:hover {
        border-color: #25d366;
        background: #f0fff7
    }

        .whatsapp-option:hover .contact-option-icon {
            transform: scale(1.1) rotate(10deg)
        }

.contact-option-text h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #333
}

.contact-option-text p {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 500;
    color: #157a9d
}

.contact-option-text small {
    color: #999;
    font-size: 12px;
    display: block
}

.contact-info-text {
    text-align: center;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 10px;
    border-left: 4px solid #157a9d
}

    .contact-info-text p {
        margin: 0;
        color: #666;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px
    }

    .contact-info-text i {
        color: #157a9d;
        font-size: 16px
    }

.video-modal-content {
    background-color: #000;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    animation: .3s modalSlideIn;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.4)
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 15px
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 15px
    }

#closeVideoModal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    background: rgba(255,255,255,.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    z-index: 10
}

    #closeVideoModal:hover {
        background: rgba(255,255,255,.2);
        transform: rotate(90deg)
    }

@media (max-width:768px) {
    .admission-button-container {
        flex-wrap: wrap;
        gap: 15px
    }

    .admission-btn, .video-btn {
        flex: 1;
        min-width: 150px;
        padding: 10px 16px;
        font-size: 13px
    }

    .video-modal-content {
        width: 95%;
        margin: 15% auto
    }

    .video-wrapper {
        padding-bottom: 56.25%
    }

    #closeVideoModal {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px
    }
}

.offer-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8f9ff;
    border: 1px solid #e3e8ff
}

.contact-item, .toast {
    display: flex;
    align-items: center
}

.offer-item:hover {
    transform: translateX(5px);
    background: #f0f4ff
}

.offer-item i {
    font-size: 24px;
    color: #157a9d
}

.offer-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px
}

.offer-item p {
    font-size: 14px;
    color: #666;
    margin: 0
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #00c851;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    gap: 10px;
    transform: translateX(400px);
    transition: transform .3s;
    z-index: 1001;
    box-shadow: 0 10px 25px rgba(0,200,81,.3)
}

.contact-section, .products-section {
    box-shadow: 0 10px 30px rgba(0,0,0,.08)
}

.toast.show {
    transform: translateX(0)
}

.toast i {
    font-size: 18px
}

.contact-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #e9ecef;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto
}

.contact-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: .3s
}

.contact-icon, .social-item {
    display: flex;
    align-items: center
}

.contact-item:last-child, .hour-item:last-child, .review-item:last-child {
    border-bottom: none
}

.contact-item:hover, .social-item:hover {
    background: rgba(102,126,234,.05);
    border-radius: 8px;
    padding-left: 8px;
    transform: translateX(5px)
}

.contact-item.enquire {
    background: linear-gradient(135deg,#ff6b6b,#ff8e8e);
    color: #fff;
    border-radius: 10px;
    margin-top: 8px;
    border: none
}

    .contact-item.enquire:hover {
        background: linear-gradient(135deg,#ff5252,#ff7979);
        transform: translateX(0) translateY(-2px);
        box-shadow: 0 5px 15px rgba(255,107,107,.3)
    }

.contact-icon {
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(102,126,234,.1);
    color: #667eea
}

    .contact-icon.whatsapp {
        background: rgba(37,211,102,.1);
        color: #25d366
    }

.contact-item.enquire .contact-icon, .faq-item.active .faq-icon, .faq-item.active .faq-toggle {
    background: rgba(255,255,255,.2);
    color: #fff
}

.contact-info {
    flex: 1;
    color: #333;
    font-weight: 500;
    line-height: 1.3
}

.contact-item.enquire .contact-info {
    color: #fff;
    font-weight: 600
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right,transparent,#ddd,transparent);
    margin: 20px 0 15px
}

.section-title {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-left: 5px
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.social-item {
    padding: 8px 0;
    transition: .3s
}

.download-item, .social-icon {
    align-items: center;
    display: flex
}

.social-item.see-more {
    color: #667eea;
    font-weight: 500
}

.social-icon {
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0
}

    .social-icon.instagram {
        background: linear-gradient(45deg,#f09433 0,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
        color: #fff
    }

    .social-icon.facebook {
        background: #1877f2;
        color: #fff
    }

.social-item.see-more .social-icon {
    background: rgba(102,126,234,.1);
    color: #667eea
}

.download-info, .social-info {
    flex: 1;
    color: #333;
    font-weight: 500
}

.download-links {
    display: flex;
    gap: 12px
}

.download-item {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: .3s
}

    .download-item:hover {
        background: #f8f9ff;
        border-color: #667eea;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102,126,234,.1)
    }

.download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(102,126,234,.1);
    color: #667eea;
    flex-shrink: 0
}

.bottom-section {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 25px;
    margin-top: 20px;
    align-items: start
}

.products-section {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e9ecef;
    width: 51%;
    min-width: 100%
}

.gallery-header h2, .offers-header h2, .products-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0
}

.offers-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px
}

.brand, .by-text, .menu-title {
    display: block
}

.product-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.05)
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,.1)
    }

.product-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative
}

.product-details {
    padding: 20px
}

    .offer-details h3, .product-details h3 {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px
    }

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 15px
}

.product-menu {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-size: 12px
}

.menu-category, .menu-header {
    margin-bottom: 15px
}

.menu-header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px
}

.menu-title {
    font-weight: 700;
    color: #333;
    font-size: 14px
}

.brand, .menu-category h4 {
    font-size: 13px;
    font-weight: 600
}

.brand {
    color: #667eea;
    margin-top: 2px
}

.by-text {
    font-size: 11px;
    color: #666;
    font-style: italic
}

.menu-category h4 {
    color: #ff6b6b;
    margin-bottom: 8px;
    text-decoration: underline
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    font-size: 11px;
    color: #333
}

    .menu-item span:first-child, .offer-details {
        flex: 1
    }

.enquire-btn, .see-all-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    font-weight: 600;
    color: #fff
}

.menu-item span:last-child {
    font-weight: 600;
    color: #667eea
}

.enquire-btn {
    background: linear-gradient(135deg,#25d366,#128c7e);
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 13px;
    justify-content: space-between;
    width: 100%
}

    .enquire-btn:hover {
        background: linear-gradient(135deg,#20b858,#0f7a6b);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37,211,102,.3)
    }

    .enquire-btn i {
        font-size: 16px
    }

.see-all-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef
}

.see-all-btn {
    background: linear-gradient(135deg,#157a9d,#764ba2);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 14px;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(21,122,157,.3);
    position: relative;
    overflow: hidden
}

    .see-all-btn::before, .see-all-offers-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
        transition: left .5s
    }

    .see-all-btn:hover {
        background: linear-gradient(135deg,#0f6b87,#6a42a0);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(21,122,157,.4)
    }

    .see-all-btn i, .see-all-offers-btn i {
        font-size: 14px;
        transition: transform .3s
    }

    .see-all-btn:hover i, .see-all-offers-btn:hover i {
        transform: translateX(5px)
    }

@media (max-width:768px) {
    .see-all-container {
        margin-top: 20px;
        padding-top: 15px
    }

    .see-all-btn {
        padding: 12px 25px;
        font-size: 13px;
        width: 100%;
        max-width: 250px
    }
}

.gallery-section, .offers-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef
}

.gallery-header, .offers-header {
    margin-bottom: 30px
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px
}

.gallery-item {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.1)
}

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,.15)
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform .3s
    }

    .gallery-item:hover img {
        transform: scale(1.1)
    }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent,rgba(0,0,0,.8));
    padding: 30px 20px 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform .3s
}

.gallery-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0
}

.gallery-item.support-chat {
    background: linear-gradient(135deg,#667eea,#764ba2);
    display: flex;
    align-items: center;
    justify-content: center
}

.support-content {
    color: #fff;
    padding: 20px
}

.support-icon {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: .9
}

.support-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px
}

.support-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1
}

.support-label {
    font-size: 14px;
    font-weight: 500;
    opacity: .9
}

.support-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px
}

    .support-features i {
        font-size: 18px;
        opacity: .8;
        transition: .3s
    }

.gallery-item.support-chat:hover .support-features i {
    opacity: 1;
    transform: translateY(-2px)
}

@media (max-width:768px) {
    .card-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px
    }

    .business-name, .gallery-header h2 {
        font-size: 20px
    }

    .trust-badges {
        flex-direction: column;
        gap: 10px
    }

    .badge {
        min-width: unset
    }

    .action-buttons {
        gap: 10px
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        height: 100%
    }

    .toast {
        right: 15px;
        bottom: 15px;
        left: 15px;
        transform: translateY(100px)
    }

        .toast.show {
            transform: translateY(0)
        }

    .gallery-section {
        margin-top: 30px;
        padding-top: 20px
    }

    .gallery-header {
        margin-bottom: 20px
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
        gap: 15px
    }

    .gallery-item {
        height: 180px
    }

    .gallery-overlay {
        padding: 20px 15px 15px
    }

    .gallery-info h4 {
        font-size: 14px
    }

    .support-icon {
        font-size: 30px;
        margin-bottom: 10px
    }

    .support-number {
        font-size: 24px
    }

    .support-label {
        font-size: 12px
    }

    .support-features i {
        font-size: 16px
    }

    * {
        transition: .3s cubic-bezier(.4, 0, .2, 1)
    }

    .contact-section {
        transition: .3s
    }

    .product-card {
        transition: transform .2s,box-shadow .2s
    }
}

.blog-scroll-btn, .nav-btn {
    transform: translateY(-50%)
}

.contact-form-section, .visit-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important
}

    .contact-form-section[style*="display: none"], .visit-section[style*="display: none"] {
        display: block !important
    }

    .contact-form-section[style*="visibility: hidden"], .visit-section[style*="visibility: hidden"] {
        visibility: visible !important
    }

    .contact-form-section[style*="opacity: 0"], .visit-section[style*="opacity: 0"] {
        opacity: 1 !important
    }

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #157a9d;
    border-radius: 50%;
    animation: 1s linear infinite spin
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px
}

::-webkit-scrollbar-thumb {
    background: #157a9d;
    border-radius: 10px
}

    ::-webkit-scrollbar-thumb:hover {
        background: #157a9d
    }

.contact-section::-webkit-scrollbar {
    width: 4px
}

.contact-section::-webkit-scrollbar-track {
    background: #f8f9fa
}

.contact-section::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px
}

    .contact-section::-webkit-scrollbar-thumb:hover {
        background: #bbb
    }

@media (max-width:1024px) {
    .bottom-section {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .contact-section {
        order: 2;
        position: static;
        max-height: none
    }

    .products-section {
        order: 1
    }
}

@media (max-width:768px) {
    .products-grid {
        grid-template-columns: 1fr
    }

    .product-card {
        margin-bottom: 15px
    }

    .products-section {
        padding: 20px
    }

    .bottom-section {
        gap: 15px;
        margin-top: 15px
    }

    .contact-section {
        padding: 15px;
        position: static;
        max-height: none;
        display: contents
    }

    .contact-item {
        padding: 10px 0
    }

    .contact-icon, .download-icon, .social-icon {
        width: 32px;
        height: 32px;
        font-size: 13px
    }

    .contact-info, .download-info, .social-info {
        font-size: 12px
    }

    .section-title {
        font-size: 10px;
        margin-bottom: 10px
    }

    .section-divider {
        margin: 15px 0 12px
    }
}

.form-row, .visit-content {
    grid-template-columns: 1fr 1fr
}

.contact-icon, .download-icon, .social-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin-right: 8px
}

.contact-info, .social-info {
    font-size: 15px
}

.download-info, .offer-badge {
    font-size: 10px
}

.download-links {
    gap: 8px
}

.download-item {
    padding: 8px
}

.contact-item.enquire {
    padding: 10px 8px
}

.offer-card {
    background: #fff;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.05)
}

.offer-badge, .offer-icon {
    background: linear-gradient(135deg,#ff6b6b,#ff8e8e);
    color: #fff
}

.faq-toggle i, .offer-icon, .read-more-btn i, .send-message-btn i, .view-offer-btn i {
    transition: transform .3s
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
    border-color: #ff6b6b
}

.offer-card.featured {
    border-color: #ff6b6b;
    background: linear-gradient(135deg,#fff5f5,#fff)
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: .5px
}

.offer-content {
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px
}

.offer-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0
}

.see-all-offers-btn, .view-offer-btn {
    color: #fff;
    font-weight: 600;
    transition: .3s;
    display: flex;
    cursor: pointer
}

.offer-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px
}

.offer-action {
    margin-top: 15px
}

.view-offer-btn {
    background: linear-gradient(135deg,#157a9d,#764ba2);
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 13px;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(21,122,157,.2)
}

    .view-offer-btn:hover {
        background: linear-gradient(135deg,#0f6b87,#6a42a0);
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(21,122,157,.3)
    }

    .view-offer-btn i {
        font-size: 12px
    }

    .read-more-btn:hover i, .send-message-btn:hover i, .view-offer-btn:hover i {
        transform: translateX(3px)
    }

.see-all-offers-btn {
    background: linear-gradient(135deg,#ff6b6b,#ff8e8e);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255,107,107,.3);
    position: relative;
    overflow: hidden
}

.blog-grid.no-scroll {
    overflow-x: hidden !important;
    justify-content: center !important
}

.blog-section {
    padding: 2rem 0;
    position: relative;
    margin: 3rem 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    overflow: hidden
}

.blog-header {
    margin-bottom: 2rem;
    padding: 0 1rem
}

    .blog-header h2 {
        font-size: 2rem;
        color: #333;
        margin-bottom: 1rem
    }

.blog-grid {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    position: relative
}

.blog-card, .blog-image, .map-container, .map-iframe {
    overflow: hidden
}

.blog-grid::-webkit-scrollbar {
    display: none
}

.blog-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    transition: transform .3s,box-shadow .3s
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,.15)
    }

.business-hours:hover, .call-btn:hover, .directions-btn:hover, .map-btn:hover, .map-container:hover, .send-message-btn:hover, .visit-section:hover {
    transform: translateY(-2px)
}

.blog-image {
    position: relative;
    height: 200px
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,.95);
    padding: 3px 6px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
    font-size: 12px;
}

    .blog-date .day {
        display: block;
        font-size: 1.2rem;
        font-weight: 700;
        color: #333;
        line-height: 1
    }

    .blog-date .month {
        display: block;
        font-size: .8rem;
        color: #666
    }

.blog-content {
    padding: 1.5rem
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 15px;
    color: #666;
    font-size: .8rem;
    margin-bottom: .8rem
}

.blog-content h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: .8rem;
    line-height: 1.4
}

.blog-content p {
    color: #666;
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1rem
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .8rem 0;
    border-top: 1px solid #eee;
    margin-top: auto
}

    .blog-meta span {
        font-size: .8rem;
        color: #888
    }

.blog-scroll-btn {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: .3s;
    opacity: 1;
    pointer-events: all
}

    .blog-scroll-btn:hover {
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,.2)
    }

    .blog-scroll-btn.left {
        left: 0
    }

    .blog-scroll-btn.right {
        right: 0
    }

    .blog-scroll-btn i {
        color: #333;
        font-size: 1rem
    }

.read-more-btn {
    width: 100%;
    padding: .8rem;
    background: #f8f8f8;
    border: none;
    border-radius: 6px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    cursor: pointer;
    transition: .3s
}

    .read-more-btn:hover {
        background: #f0f0f0
    }

@media (max-width:768px) {
    .blog-card {
        flex: 0 0 280px
    }

    .blog-scroll-btn {
        width: 35px;
        height: 35px
    }

    .blog-header h2 {
        font-size: 1.75rem
    }
}

.country-code, .phone-input {
    align-items: center;
    display: flex
}

.contact-form-section, .visit-section {
    margin-top: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
    overflow: hidden;
    transition: transform .3s,box-shadow .3s
}

    .contact-form-section:hover {
        transform: translateY(-2px);
        box-shadow: 0 30px 60px rgba(0,0,0,.15)
    }

.contact-form-container, .modal-body {
    padding: 10px
}

.contact-form-header {
    text-align: center;
    margin-bottom: 30px
}

    .contact-form-header h2 {
        font-size: 28px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
        position: relative
    }

        .contact-form-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            border-radius: 2px
        }

.contact-form {
    max-width: 600px;
    margin: 0 auto
}

.form-row {
    gap: 20px;
    margin-bottom: 20px
}

.form-group label {
    font-size: 14px
}

.form-group input, .form-group textarea, .send-message-btn {
    font-size: 16px;
    font-family: Poppins,sans-serif;
    transition: .3s
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    background: #f8f9fa
}

.send-message-btn, .visit-header h2 {
    background: linear-gradient(135deg,#157a9d 0,#764ba2 100%)
}

.form-group input:focus, .form-group textarea:focus {
    outline: 0;
    border-color: #157a9d;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(21,122,157,.1)
}

.phone-input {
    position: relative
}

.country-code {
    position: absolute;
    left: 15px;
    gap: 8px;
    color: #666;
    font-weight: 600;
    z-index: 2;
    pointer-events: none
}

.flag-icon {
    width: 20px;
    height: auto;
    border-radius: 2px
}

.modal, .modal-contact {
    z-index: 1000;
    height: 100%
}

.phone-input input {
    padding-left: 150px
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.send-message-btn {
    width: 100%;
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px
}

    .send-message-btn:hover {
        box-shadow: 0 10px 25px rgba(21,122,157,.3)
    }

    .send-message-btn.loading {
        pointer-events: none;
        opacity: .7
    }

        .send-message-btn.loading:after {
            content: '';
            width: 16px;
            height: 16px;
            border: 2px solid transparent;
            border-top: 2px solid #fff;
            border-radius: 50%;
            animation: 1s linear infinite spin
        }

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.form-group input.error, .form-group textarea.error {
    border-color: #e74c3c;
    background: #fdf2f2
}

.form-group input.success, .form-group textarea.success {
    border-color: #27ae60;
    background: #f2fdf7
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none
}

    .error-message.show {
        display: block
    }

.visit-section:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,.12)
}

.visit-container {
    padding: 40px
}

.visit-header {
    margin-bottom: 40px
}

    .visit-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        -webkit-background-clip: text;
        background-clip: text;
        margin-bottom: 10px
    }

    .visit-header p {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6
    }

.visit-content {
    display: grid;
    gap: 40px;
    align-items: start
}

.business-hours {
    background: linear-gradient(135deg,#f8f9ff 0,#f0f4ff 100%);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(21,122,157,.1);
    transition: .3s
}

    .business-hours:hover {
        border-color: rgba(21,122,157,.2);
        box-shadow: 0 10px 25px rgba(21,122,157,.1)
    }

.hours-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 12px
}

    .hours-header i {
        font-size: 1.5rem;
        color: #157a9d;
        background: rgba(21,122,157,.1);
        padding: 10px;
        border-radius: 10px
    }

    .hours-header h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333
    }

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(21,122,157,.1);
    transition: .3s
}

    .hour-item:hover {
        background: rgba(21,122,157,.05);
        margin: 0 -15px;
        padding: 12px 15px;
        border-radius: 8px
    }

    .hour-item .day {
        font-weight: 500;
        color: #333;
        font-size: 1rem
    }

    .hour-item .time {
        font-weight: 600;
        color: #157a9d;
        font-size: 1rem
    }

.visit-actions {
    display: flex;
    gap: 15px
}

.map-btn, .visit-btn {
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    gap: 8px;
    display: flex
}

.visit-btn {
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: .9rem
}

.directions-btn {
    background: linear-gradient(135deg,#157a9d 0,#1e88a8 100%);
    color: #fff
}

    .directions-btn:hover {
        background: linear-gradient(135deg,#0f5a75 0,#157a9d 100%);
        box-shadow: 0 8px 20px rgba(21,122,157,.3)
    }

.call-btn {
    background: linear-gradient(135deg,#28a745 0,#34ce57 100%);
    color: #fff
}

    .call-btn:hover {
        background: linear-gradient(135deg,#1e7e34 0,#28a745 100%);
        box-shadow: 0 8px 20px rgba(40,167,69,.3)
    }

.map-container {
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: .3s
}

#imageModal, .modal, .modal-contact {
    position: fixed;
    top: 0;
    left: 0
}

.map-container:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,.15)
}

.map-placeholder {
    background: linear-gradient(135deg,#157a9d 0,#764ba2 100%);
    color: #fff;
    padding: 60px 30px;
    cursor: pointer;
    transition: .3s;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

    .map-placeholder:hover {
        background: linear-gradient(135deg,#0f5a75 0,#5a3a7d 100%)
    }

.map-overlay i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: .9
}

.map-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px
}

.map-overlay p {
    font-size: 1rem;
    opacity: .9;
    line-height: 1.5;
    margin-bottom: 25px
}

.map-btn {
    background: rgba(255,255,255,.2);
    color: #fff;
    border: 2px solid rgba(255,255,255,.3);
    padding: 12px 24px;
    border-radius: 10px;
    align-items: center;
    font-size: 1rem
}

.map-iframe, .map-iframe iframe {
    border-radius: 15px
}

.map-btn:hover {
    background: rgba(255,255,255,.3);
    border-color: rgba(255,255,255,.5)
}

.visit-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(21,122,157,.1)
}

.visit-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: .95rem;
    padding: 8px 0
}

    .info-item i {
        color: #157a9d;
        font-size: 1.1rem
    }

@media (max-width:768px) {
    .business-hours, .visit-container {
        padding: 25px 20px
    }

    .visit-header h2 {
        font-size: 2rem
    }

    .visit-btn, .visit-header p {
        font-size: 1rem
    }

    .visit-content {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .hours-header h3 {
        font-size: 1.3rem
    }

    .visit-actions {
        flex-direction: column
    }

    .visit-btn {
        padding: 14px 20px
    }

    .map-placeholder {
        padding: 40px 20px;
        min-height: 250px
    }

    .map-overlay i {
        font-size: 2.5rem
    }

    .map-overlay h4 {
        font-size: 1.2rem
    }

    .visit-info {
        flex-direction: column;
        gap: 15px
    }

    .info-item {
        justify-content: flex-start
    }
}

.modal {
    backdrop-filter: blur(5px);
    display: none;
    width: 100%;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px)
}

.appointment-modal {
    max-width: 400px !important;
    margin: 50px auto !important;
    animation: .3s slideIn
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee
}

.download-qr, .save-btn {
    color: #fff;
    align-items: center;
    cursor: pointer
}

.modal-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.5rem
}

.close-modal {
    background: 0 0;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    transition: .3s
}

.form-group input, .save-btn {
    width: 100%;
    font-size: 1rem;
    transition: .3s
}

.close-modal:hover {
    color: #fff;
    transform: rotate(90deg)
}

.form-group {
    margin-bottom: 10px
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #333;
        font-weight: 500
    }

    .form-group input {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px
    }

        .form-group input:focus {
            border-color: #ff5722;
            outline: 0;
            box-shadow: 0 0 0 3px rgba(255,87,34,.1)
        }

.save-btn {
    padding: 14px;
    background: #25d366;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    gap: 10px
}

    .save-btn:hover {
        background: #128c7e;
        transform: translateY(-2px)
    }

    .save-btn i {
        font-size: 1.2rem
    }

.download-qr, .upi-app-btn span {
    font-size: .9rem
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.payment-modal {
    max-width: 400px
}

.payment-profile {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px
}

    .payment-profile .profile-pic {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px
    }

    .payment-profile h4 {
        color: var(--primary-color);
        margin: 0
    }

.contactform label, .upi-app-btn span, .upi-apps h5, .upi-id .label {
    color: var(--text-color)
}

.qr-code {
    margin-bottom: 10px;
    margin-right: 60px;
    max-width: 151px;
    margin-left: 60px
}

.download-qr {
    background: var(--primary-color);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    gap: 8px;
    transition: background .3s
}

    .download-qr:hover {
        background: var(--secondary-color)
    }

.upi-details {
    background: var(--light-bg);
    padding: 0;
    border-radius: 10px
}

.upi-id {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 0;
    border-radius: 8px;
    margin-bottom: 20px
}

    .upi-id .label {
        font-weight: 700
    }

    .upi-id .value {
        flex: 1;
        font-family: monospace;
        color: var(--primary-color)
    }

.copy-btn, .share-btn {
    background: 0 0;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    transition: color .3s
}

    .copy-btn:hover, .share-btn:hover {
        color: var(--secondary-color)
    }

.upi-apps h5 {
    margin: 0 0 15px
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px
}

.upi-app-btn {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: .3s
}

    .upi-app-btn:hover {
        border-color: var(--primary-color);
        transform: translateY(-2px)
    }

    .upi-app-btn img {
        width: 24px;
        height: 24px;
        object-fit: contain
    }

@media (max-width:480px) {
    .see-all-container {
        margin-top: 15px;
        padding-top: 12px
    }

    .see-all-btn {
        padding: 10px 20px;
        font-size: 12px;
        width: 100%
    }

    body {
        padding: 10px
    }

    .card, .product-image {
        border-radius: 15px
    }

    .card-body, .card-header, .product-details, .support-content {
        padding: 15px
    }

    .profile-section {
        flex-direction: row;
        gap: 10px;
        display: flex
    }

    .business-name, .gallery-header h2 {
        font-size: 18px
    }

    .btn, .toast {
        font-size: 13px
    }

    .btn {
        padding: 10px 15px
    }

    .modal-content {
        width: 95%;
        margin: 15% auto
    }

    .toast {
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 12px 16px
    }

    .gallery-section {
        margin-top: 20px;
        padding-top: 15px
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
        gap: 12px;
        display: ruby
    }

    .gallery-item {
        width: 97px;
        height: 100px
    }

    .gallery-overlay {
        padding: 15px 10px 10px
    }

    .gallery-info h4 {
        font-size: 12px
    }

    .support-icon {
        font-size: 24px;
        margin-bottom: 8px
    }

    .support-number {
        font-size: 20px
    }

    .menu-item, .support-label {
        font-size: 10px
    }

    .support-features {
        gap: 10px;
        margin-top: 8px
    }

        .support-features i {
            font-size: 14px
        }

    .products-section {
        padding: 15px;
        width: 23%
    }

    .product-image-container {
        height: 150px
    }

    .enquire-btn {
        padding: 10px 15px;
        font-size: 12px
    }

    .contact-section {
        padding: 12px;
        width: 100%
    }

    .blog-card {
        flex: 0 0 260px
    }

    .blog-header h2 {
        font-size: 1.5rem
    }

    .blog-content h3 {
        font-size: 1rem
    }

    .business-hours, .visit-container {
        padding: 20px 15px
    }

    .visit-header h2 {
        font-size: 1.8rem
    }

    .hours-header {
        flex-direction: column;
        text-align: center;
        gap: 8px
    }

        .hours-header i {
            font-size: 1.3rem;
            padding: 8px
        }

    .hour-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 15px 0
    }

        .hour-item:hover {
            margin: 0 -10px;
            padding: 15px 10px
        }

    .map-placeholder {
        padding: 30px 15px;
        min-height: 200px
    }

    .map-overlay i {
        font-size: 2rem;
        margin-bottom: 15px
    }

    .map-overlay h4 {
        font-size: 1.1rem
    }

    .info-item, .map-btn, .map-overlay p {
        font-size: .9rem
    }

    .map-overlay p {
        margin-bottom: 20px
    }

    .map-btn {
        padding: 10px 20px
    }

    .payment-modal {
        width: 95%;
        margin: 10px
    }

    .app-grid {
        grid-template-columns: 1fr
    }

    .upi-id {
        flex-wrap: wrap
    }

        .upi-id .value {
            width: 100%;
            margin: 5px 0
        }
}

.modal-contact {
    display: none;
    width: 100%;
    background-color: rgba(0,0,0,.5);
    overflow: auto
}

.modal-contact-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative
}

.closepop-contact {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer
}

    .closepop-contact:hover, .textAccept {
        color: var(--primary-color)
    }

.textAccept {
    margin-bottom: 20px;
    font-size: 1.5rem
}

.alert-danger {
    display: none;
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px
}

.contact-btn, .contact-btn:hover {
    background: #157a9d
}

.contactform {
    display: flex;
    flex-direction: column;
    gap: 15px
}

    .contactform label {
        font-weight: 500;
        margin-bottom: 5px
    }

    .contactform input, .contactform textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem
    }

#imageModal .close-modal, .contact-btn {
    border: none;
    color: #fff;
    cursor: pointer
}

.contactform input:focus, .contactform textarea:focus {
    outline: 0;
    border-color: var(--primary-color)
}

.contactform textarea {
    min-height: 100px;
    resize: vertical
}

.contact-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: background .3s;
    margin-top: 10px
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px
}

#imageModal {
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999
}

.image-modal-content {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    margin: 0;
    background: 0 0;
    display: flex;
    flex-direction: column
}

.image-modal-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    background: 0 0
}

    .image-modal-body img {
        max-width: 90vw;
        max-height: 85vh;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block
    }

#imageModal .modal-header {
    background: rgba(0,0,0,0);
    border-bottom: 1px solid #1f1f1f00;
    padding: 15px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10000
}

    #imageModal .modal-header h3 {
        color: #fff;
        margin: 0;
        font-size: 1.2rem
    }

#imageModal .close-modal {
    background: 0 0;
    font-size: 1.8rem;
    transition: color .3s;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

    #imageModal .close-modal:hover {
        color: #f44;
        background: rgba(255,255,255,.1)
    }

.nav-btn {
    position: absolute;
    top: 50%;
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(10px)
}

.faq-badge, .testimonials-badge, .testimonials-header h2 {
    background: linear-gradient(135deg,#157a9d 0,#764ba2 100%)
}

.nav-btn:hover {
    background: rgba(255,255,255,.2);
    transform: translateY(-50%) scale(1.1)
}

.prev-btn {
    left: 20px
}

.next-btn {
    right: 20px
}

.testimonials-section {
    margin: 60px 0;
    padding: 20px;
    position: relative
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.testimonials-header {
    margin-bottom: 50px
}

.faq-badge, .testimonials-badge {
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: .9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(21,122,157,.2)
}

.testimonials-header h2 {
    color: #157a9d;
    font-size: 2.8rem;
    background-clip: text;
    -webkit-background-clip: text
}

.testimonials-header p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 30px
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 30px
}

.rating-stars {
    color: #ffc107;
    font-size: 1.8rem;
    letter-spacing: 5px
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #157a9d;
    line-height: 1
}

.rating-count {
    color: #666;
    font-size: 1rem
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
    margin: 40px 0
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(21,122,157,.1);
    transition: .3s;
    border: 1px solid rgba(21,122,157,.1)
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(21,122,157,.15)
    }

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px
}

.faq-question-content, .testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg,#157a9d 0,#764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    overflow: hidden
}

    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%
    }

        .testimonial-avatar img.fallback-image {
            object-fit: contain;
            padding: 5px;
            background: linear-gradient(135deg,#157a9d 0,#764ba2 100%)
        }

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 150px
}

    .testimonial-info h4 {
        margin: 0;
        color: #333;
        font-size: 1.1rem;
        font-weight: 600
    }

.review-date {
    color: #888;
    font-size: .8rem;
    font-weight: 400
}

.customer-badge {
    color: #666;
    font-size: .85rem;
    font-weight: 500
}

.testimonial-rating {
    color: #ffc107;
    font-size: .9rem;
    letter-spacing: 2px;
    margin-top: 3px
}

.reviews-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px
}

.faq-container, .faq-header, .faq-header h2, .faq-section, .reviews-popup {
    position: relative
}

.faq-answer, .faq-container, .faq-item, .no-scroll {
    overflow: hidden
}

.reviews-popup {
    background: #fff;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 20px;
    padding: 30px
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(21,122,157,.1)
}

.popup-close:hover, .popup-title {
    color: #157a9d
}

.popup-close {
    background: 0 0;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: color .3s
}

.faq-header h2, .faq-item.active .faq-question, .review-btn {
    background: linear-gradient(135deg,#157a9d 0,#764ba2 100%)
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.review-item {
    padding: 20px;
    border-bottom: 1px solid rgba(21,122,157,.1)
}

.testimonial-content {
    margin: 20px 0
}

    .testimonial-content p {
        color: #555;
        line-height: 1.7;
        font-size: 1rem;
        margin: 0
    }

.testimonial-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(21,122,157,.1)
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #00c851;
    font-size: .9rem
}

    .verified-badge i {
        font-size: 1rem
    }

.testimonials-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px
}

.review-btn, .view-all-btn {
    padding: 12px 25px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s
}

.review-btn {
    color: #fff;
    border: none
}

    .review-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(21,122,157,.3)
    }

.faq-item.active, .faq-item:hover {
    box-shadow: 0 15px 30px rgba(21,122,157,.1)
}

.view-all-btn {
    background: 0 0;
    color: #157a9d;
    border: 2px solid #157a9d
}

    .view-all-btn:hover {
        background: rgba(21,122,157,.1);
        transform: translateY(-2px)
    }

.faq-section {
    margin: 60px 0
}

.faq-container {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,.1);
    padding: 60px 40px
}

.faq-header {
    margin-bottom: 50px
}

    .faq-header h2 {
        color: #157a9d;
        font-size: 2.8rem;
        margin-bottom: 15px;
        background-clip: text;
        -webkit-background-clip: text;
        display: inline-block
    }

    .faq-header p {
        color: #666;
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto
    }

.faq-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none
}

.faq-shape {
    position: absolute;
    background: linear-gradient(135deg,rgba(21,122,157,.1) 0,rgba(118,75,162,.1) 100%);
    border-radius: 50%
}

    .faq-shape:first-child {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -150px
    }

    .faq-shape:nth-child(2) {
        width: 200px;
        height: 200px;
        bottom: -100px;
        right: -100px
    }

.faq-grid {
    display: block;
    gap: 25px;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    position: relative;
    z-index: 1
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    transition: .4s cubic-bezier(.4, 0, .2, 1);
    border: 1px solid rgba(21,122,157,.1)
}

.faq-icon, .faq-question, .faq-toggle {
    display: flex;
    transition: .3s
}

.faq-item:hover {
    transform: translateY(-5px)
}

.faq-question {
    padding: 25px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    border-bottom: 1px solid rgba(21,122,157,.1)
}

.faq-icon {
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,rgba(21,122,157,.1) 0,rgba(118,75,162,.1) 100%);
    border-radius: 12px;
    color: #157a9d;
    font-size: 1.2rem
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    color: #333;
    transition: color .3s
}

.faq-toggle {
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: rgba(21,122,157,.1);
    border-radius: 50%;
    color: #157a9d
}

.faq-answer {
    max-height: 0;
    transition: .4s cubic-bezier(.4, 0, .2, 1)
}

.faq-answer-content {
    padding: 25px;
    background: linear-gradient(135deg,rgba(21,122,157,.05) 0,rgba(118,75,162,.05) 100%)
}

.faq-item.active {
    border-color: rgba(21,122,157,.3)
}

    .faq-item.active .faq-question h3 {
        color: #fff
    }

    .faq-item.active .faq-toggle i {
        transform: rotate(180deg)
    }

    .faq-item.active .faq-answer {
        max-height: 500px
    }

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem
}

@media (max-width:768px) {
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem
    }

    .prev-btn {
        left: 10px
    }

    .next-btn {
        right: 10px
    }

    .image-modal-body img {
        max-width: 95vw;
        max-height: 80vh
    }

    #imageModal .modal-header {
        padding: 10px 15px
    }

        #imageModal .modal-header h3 {
            font-size: 1rem
        }

    .faq-grid, .testimonials-grid {
        grid-template-columns: 1fr
    }

    .faq-header h2, .testimonials-header h2 {
        font-size: 2.2rem
    }

    .testimonials-container {
        padding: 40px 20px
    }

    .testimonials-actions {
        flex-direction: column;
        align-items: stretch
    }

    .faq-header p {
        font-size: 1.1rem
    }

    .faq-container {
        padding: 20px 10px
    }

    .faq-question h3 {
        font-size: 1rem;
        margin: 0;
        font-weight: 500;
        color: #333;
        transition: color .3s;
        width: 150px;
        overflow: hidden
    }
}

.d-none {
    display: none
}

/* Announcements & Highlights Section */
.announcements-section {
    margin: 40px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg,#f0f4ff 0,#fff5f7 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(21,122,157,.08)
}

.announcements-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start
}

@media (max-width:768px) {
    .announcements-container {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .announcements-section {
        padding: 30px 15px;
        margin: 30px 0
    }
}

.announcement-card {
    position: relative;
    background: linear-gradient(135deg,#157a9d 0,#1e88a8 100%);
    color: #fff;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(21,122,157,.25);
    transition: transform .3s,box-shadow .3s
}

    .announcement-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(21,122,157,.35)
    }

.admission-highlight {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.announcement-accent {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,.1);
    border-radius: 50%
}

.announcement-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: .95
}

.announcement-content {
    position: relative;
    z-index: 1
}

.announcement-badge {
    display: inline-block;
    background: rgba(255,255,255,.25);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px
}

.announcement-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 15px 0;
    line-height: 1.3
}

.announcement-subtitle {
    font-size: 18px;
    font-weight: 500;
    opacity: .95;
    margin: 10px 0 20px
}

.announcement-text {
    font-size: 15px;
    line-height: 1.6;
    opacity: .9;
    margin-bottom: 30px
}

.announcement-btn {
    background: #fff;
    color: #157a9d;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.1)
}

    .announcement-btn:hover {
        background: #f8f9ff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,.15)
    }

    .announcement-btn i {
        font-size: 16px
    }

.events-container {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08)
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0
}

    .events-header h3 {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        margin: 0
    }

    .events-header i {
        font-size: 24px;
        color: #157a9d
    }

.event-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: #f8f9ff;
    border-radius: 15px;
    border-left: 4px solid #157a9d;
    transition: .3s;
    cursor: pointer
}

    .event-card:hover {
        background: #f0f4ff;
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(21,122,157,.1)
    }

    .event-card:last-child {
        margin-bottom: 0
    }

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#157a9d 0,#764ba2 100%);
    color: #fff;
    border-radius: 12px;
    padding: 15px 18px;
    min-width: 70px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(21,122,157,.2)
}

.event-day {
    font-size: 24px;
    line-height: 1
}

.event-month {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: .9;
    margin-top: 5px
}

.event-details h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333
}

.event-details p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5
}

/* Animations for Announcements Section */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes bounce {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes pulseBadge {
    0%,100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,255,255,.7)
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255,255,255,0)
    }
}

@keyframes floatBtn {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.animate-fade-in-left {
    animation: fadeInLeft .8s ease-out
}

.animate-fade-in-right {
    animation: fadeInRight .8s ease-out
}

.animate-bounce {
    animation: bounce 2s infinite;
    display: inline-block
}

.animate-pulse-badge {
    animation: pulseBadge 2.5s infinite
}

.animate-float-btn {
    animation: floatBtn 3s ease-in-out infinite
}

.animate-spin-slow {
    animation: spinSlow 3s linear infinite
}

.animate-slide-in {
    animation: slideInUp .6s ease-out both
}

/* Button Animations */
@keyframes buttonGlow {
    0% {
        box-shadow: 0 4px 15px rgba(255,107,107,.3),inset 0 0 10px rgba(255,255,255,.2)
    }

    50% {
        box-shadow: 0 8px 25px rgba(255,107,107,.5),inset 0 0 20px rgba(255,255,255,.4)
    }

    100% {
        box-shadow: 0 4px 15px rgba(255,107,107,.3),inset 0 0 10px rgba(255,255,255,.2)
    }
}

@keyframes buttonGlowSecondary {
    0% {
        box-shadow: 0 4px 15px rgba(102,126,234,.3),inset 0 0 10px rgba(255,255,255,.2)
    }

    50% {
        box-shadow: 0 8px 25px rgba(102,126,234,.5),inset 0 0 20px rgba(255,255,255,.4)
    }

    100% {
        box-shadow: 0 4px 15px rgba(102,126,234,.3),inset 0 0 10px rgba(255,255,255,.2)
    }
}

@keyframes buttonGlowOutline {
    0% {
        box-shadow: 0 0 0 2px #157a9d,0 0 10px rgba(21,122,157,.4)
    }

    50% {
        box-shadow: 0 0 0 4px #157a9d,0 0 20px rgba(21,122,157,.7)
    }

    100% {
        box-shadow: 0 0 0 2px #157a9d,0 0 10px rgba(21,122,157,.4)
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg) scale(1)
    }

    50% {
        transform: rotate(10deg) scale(1.1)
    }

    100% {
        transform: rotate(0deg) scale(1)
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% center
    }

    100% {
        background-position: -200% center
    }
}

.btn-animated {
    position: relative;
    overflow: hidden;
    transition: all .3s ease
}

    .btn-animated:hover {
        transform: translateY(-3px)
    }

.btn-primary.btn-animated {
    animation: buttonGlow 2.5s infinite
}

    .btn-primary.btn-animated:hover {
        animation: none;
        box-shadow: 0 10px 30px rgba(255,107,107,.6),inset 0 0 15px rgba(255,255,255,.3)
    }

.btn-secondary.btn-animated {
    animation: buttonGlowSecondary 2.5s infinite
}

    .btn-secondary.btn-animated:hover {
        animation: none;
        box-shadow: 0 10px 30px rgba(102,126,234,.6),inset 0 0 15px rgba(255,255,255,.3)
    }

.btn-outline.btn-animated {
    animation: buttonGlowOutline 2s infinite
}

    .btn-outline.btn-animated:hover {
        animation: none;
        box-shadow: 0 0 0 4px #157a9d,0 0 20px rgba(21,122,157,.8);
        background: #f0f4ff
    }

.btn-animated i {
    transition: all .3s ease;
    display: inline-block
}

.btn-primary.btn-animated:hover i, .btn-secondary.btn-animated:hover i {
    animation: iconRotate .6s ease-in-out
}

.btn-outline.btn-animated:hover i {
    animation: iconRotate .6s ease-in-out;
    color: #157a9d
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    transform: translate(-50%,-50%);
    animation: ripple .6s ease-out;
    pointer-events: none
}

.btn-animated:active::before {
    animation: ripple .6s ease-out
}

@media (max-width:480px) {
    .announcements-section {
        padding: 25px 12px
    }

    .announcement-card {
        padding: 30px 20px;
        min-height: auto
    }

    .announcement-icon {
        font-size: 40px;
        margin-bottom: 15px
    }

    .announcement-card h3 {
        font-size: 22px
    }

    .announcement-subtitle {
        font-size: 16px
    }

    .announcement-text {
        font-size: 14px;
        margin-bottom: 20px
    }

    .announcement-btn {
        padding: 12px 20px;
        font-size: 13px
    }

    .events-container {
        padding: 20px
    }

    .events-header h3 {
        font-size: 20px
    }

    .events-header i {
        font-size: 20px
    }

    .event-card {
        gap: 15px;
        padding: 15px;
        margin-bottom: 12px
    }

    .event-date {
        padding: 12px 14px;
        min-width: 65px
    }

    .event-day {
        font-size: 20px
    }

    .event-details h4 {
        font-size: 15px
    }

    .event-details p {
        font-size: 13px
    }

    .contact-modal-content {
        width: 95%;
        margin: 20% auto
    }

    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .contact-option {
        padding: 20px 15px
    }

    .contact-option-icon {
        font-size: 40px
    }

        .contact-option-icon i {
            width: 50px;
            height: 50px;
            font-size: 24px
        }

    .contact-option-text h4 {
        font-size: 16px
    }

    .contact-option-text p {
        font-size: 14px
    }
}
.event-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

    .event-icon i {
        animation: pulse 2s infinite;
    }

/* Optional animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.video-gallery-section {
    padding: 60px 15px;
    background: #f9fafc;
}
.video-gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

    .video-gallery-header h2 {
        font-size: clamp(22px, 4vw, 34px);
        font-weight: 700;
        color: #222;
    }

    .video-gallery-header p {
        color: #666;
        margin-top: 8px;
        font-size: 14px;
    }
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.video-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

    .video-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; 
    overflow: hidden;
}
    .video-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
@media (max-width: 480px) {
    .video-gallery-section {
        padding: 40px 12px;
    }

    .video-gallery-grid {
        gap: 15px;
    }
}
