* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, rgba(140, 234, 223, 0.89), #ffffff);
    min-height: 100vh;
    background-attachment: fixed;
}

/* Top Welcome Bar - Mobile */
.welcome-bar {
    background: #3fa89a;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.welcome-text {
    font-weight: 500;
}

.welcome-icons {
    display: flex;
    gap: 15px;
}

.welcome-icons a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

/* Top Contact Bar - Desktop Only */
.top-bar {
    background: #3fa89a;
    color: white;
    padding: 10px 0;
    display: none;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
}

.top-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-social-icon {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.top-social-icon:hover {
    opacity: 0.8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

/* Main Navigation */
.main-nav {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-subtitle {
    font-size: 16px;
    color: #333;
}

.badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0066cc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Desktop Menu */
.nav-menu {
    display: none;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #3fa89a;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #3fa89a;
    min-width: 220px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    background: #3fa89a;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-items {
    list-style: none;
}

.mobile-menu-item {
    border-bottom: 1px solid #eee;
}

.mobile-menu-link {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    background: #f8f8f8;
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-content a {
    display: block;
    padding: 12px 30px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Connect With Us Bar */
.connect-bar {
    background: #2c3e50;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
}

.connect-icons {
    display: flex;
    gap: 10px;
}

.connect-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
}

.phone-icon {
    background: #3fa89a;
    color: white;
}

.whatsapp-icon {
    background: #25D366;
    color: white;
}

/* Book Now Button */
.book-now-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    background: #3fa89a;
    color: white;
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    z-index: 999;
    border-radius: 5px 5px 0 0;
}

/* Spacer */
.nav-spacer {
    height: 0;
}

.nav-spacer.active {
    height: 90px;
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 10;
}

.carousel-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
    background: #3fa89a;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

/* Stats Section */
.stats-section {
    padding: 30px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.stats-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.stat-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 30px;
    color: white;
}

.stat-card.gold {
    background: #3fa89a;
}

.stat-card.dark {
    background: #2c3e50;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 15px;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.call-btn {
    background: #3fa89a;
    color: white;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 998;
}

/* Section Styles */
.section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

/* Subpage Hero */
.page-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.page-hero-title {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Content Section */
.content-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.content-item h3 {
    font-size: 24px;
    color: #3fa89a;
    margin-bottom: 15px;
}

.content-item p {
    line-height: 1.8;
    color: #666;
}

.content-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Doctor Section */
.doctor-section {
    background: transparent;
}

.doctor-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.doctor-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.doctor-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info {
    padding: 20px;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.doctor-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.doctor-degree {
    font-size: 13px;
    color: #3fa89a;
    margin-bottom: 15px;
}

.doctor-btn {
    background: #3fa89a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.know-team-btn {
    display: block;
    margin: 0 auto;
    background: #2c3e50;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

/* Treatments Section */
.treatments-section {
    background: transparent;
}

.treatment-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.treatment-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.treatment-card:hover {
    transform: translateY(-5px);
}

.treatment-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.treatment-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    color: #333;
}

.treatment-card p {
    padding: 0 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    padding: 15px 20px 20px;
    color: #3fa89a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.view-all-btn {
    display: block;
    margin: 0 auto;
    background: #2c3e50;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

/* Comparison Slider */
.comparison-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    user-select: none;
    cursor: col-resize;
}

.comparison-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.img-base {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 2px solid white;
}

.img-overlay img {
    width: 500px;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.slider-handle::before,
.slider-handle::after {
    content: '';
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
}

.slider-handle::before {
    transform: rotate(135deg);
}

.slider-handle::after {
    transform: rotate(-45deg);
}

.slider-label {
    position: absolute;
    top: 20px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
}

.label-before {
    right: 20px;
}

.label-after {
    left: 20px;
    z-index: 5;
}

/* Reviews Section */
.reviews-section {
    background: transparent;
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.review-stars {
    color: #3fa89a;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    color: #333;
    font-weight: 600;
}

/* Footer Styles */
.footer {
    background: #1a2332;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    color: #3fa89a;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.footer-links-grid a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links-grid a:hover {
    color: #3fa89a;
}

.specialist-info,
.parent-company {
    margin-bottom: 20px;
}

.specialist-info h4,
.parent-company h4 {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 8px;
}

.specialist-info p,
.parent-company p {
    color: #bbb;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 4px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #3fa89a;
    border-color: #3fa89a;
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item-footer {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    min-width: 30px;
}

.contact-item-footer h4 {
    color: #3fa89a;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.contact-item-footer p {
    color: #bbb;
    font-size: 13px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 13px;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.developer-link {
    color: #3fa89a;
    text-decoration: none;
    font-weight: 600;
}

.developer-link:hover {
    text-decoration: underline;
}

/* Technology Section */
.technology-section {
    background: transparent;
}

.tech-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.tech-hero-img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.tech-intro {
    flex: 1;
}

.tech-highlight {
    color: #3fa89a;
    font-size: 32px;
    margin: 10px 0;
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tech-icon {
    font-size: 24px;
}

.know-more-btn {
    display: block;
    margin: 0 auto;
    background: #3fa89a;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Results Section */
.results-section {
    text-align: center;
}

.results-subtitle {
    color: #3fa89a;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.results-desc {
    color: #666;
    margin-bottom: 30px;
}

/* Sterilization Section */
.sterilization-section {
    background: transparent;
}

.sterilization-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.6;
}

.sterilization-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.sterilization-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.sterilization-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sterilization-card h4 {
    background: #2c3e50;
    color: white;
    padding: 10px;
    margin: 0;
}

.sterilization-card p {
    padding: 20px;
    color: #666;
    font-size: 14px;
}

/* Teledentistry Section */
.teledentistry-section {
    background: transparent;
    text-align: center;
}

.teledentistry-desc {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.teledentistry-info {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
}

.book-slot-btn {
    background: #3fa89a;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 40px;
}

.teledentistry-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.teledentistry-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .welcome-bar {
        display: none;
    }

    .top-bar {
        display: block;
    }

    .nav-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .carousel {
        height: 500px;
    }

    .carousel-title {
        font-size: 48px;
    }

    .stats-section {
        max-width: 1200px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .connect-bar {
        display: none;
    }

    .doctor-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .treatment-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .sterilization-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        gap: 30px;
    }

    .treatment-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .sterilization-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Video Carousel Section */
.video-carousel-section {
    padding: 80px 0;
    background: transparent;
    font-family: inherit;
}

.video-carousel-section .site-heading {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Swiper Container Padding for Arrows */
.videoSwiper {
    width: 100%;
    padding: 40px 50px;
}

.videoSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* 9:16 Vertical Aspect Ratio Container */
.video-container {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Customizing Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #2f89fc;
    transform: scale(0.8);
}

.swiper-pagination-bullet-active {
    background: #2f89fc !important;
}

/* Brands Section */
.brands-section {
    background: transparent;
    padding: 60px 0;
    text-align: center;
}

.brands-grid {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.brand-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    font-size: 1.2rem;
    height: 120px;
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-card img {
    max-width: 80%;
    max-height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
}


/* Chatbot Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
}

.chat-button {
    background: #3fa89a;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(63, 168, 154, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-button svg {
    width: 30px;
    height: 30px;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: none;
    /* Hidden by default */
    flex-direction: column;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: #3fa89a;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.message.bot {
    background: white;
    color: #333;
    border-bottom-left-radius: 2px;
    align-self: flex-start;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.message.user {
    background: #3fa89a;
    color: white;
    border-bottom-right-radius: 2px;
    align-self: flex-end;
}

.chat-input-area {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-input-area button {
    background: #3fa89a;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.api-key-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.api-key-modal input {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.api-key-modal button {
    background: #3fa89a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* ... existing styles ... */

/* Scrolling Banner */
.scrolling-banner {
    background-color: #3fa89a;
    color: white;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.scrolling-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-text 20s linear infinite;
    font-weight: bold;
    font-size: 16px;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 30px auto 0;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #3fa89a;
    box-shadow: 0 0 0 3px rgba(63, 168, 154, 0.2);
}

.booking-submit-btn {
    background-color: #3fa89a;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    flex: 0 0 auto;
    transition: background 0.3s;
}

.booking-submit-btn:hover {
    background-color: #2c7a70;
}

/* Responsive Booking Form */
@media (max-width: 768px) {
    .booking-form {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
    }

    .booking-submit-btn {
        width: 100%;
    }
}
/* Floating Book Now Button */
.book-now-btn {
    position: fixed;
    top: 50%;
    right: 010px;
    z-index: 9999;
    background: #3fa89a;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(-90deg) translateX(50%);
    transform-origin: right center;
    border-radius: 0 0 5px 5px;
    cursor: pointer;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    border: none;
    display: inline-block;
    transition: background 0.3s;
}
.book-now-btn:hover {
    background: #2c7a70;
    color: #fff;
}
