/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #004B49;
    --secondary-color: #003836;
    --accent-color: #007A77;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Top Bar Styles */
.nav-top-bar {
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    padding: 0.3rem 0;
}

.nav-top-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.nav-locations {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-location-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-dark);
    font-size: 0.8rem;
}

.nav-location-item i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.nav-emergency {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-dark);
    font-size: 0.8rem;
}

.nav-emergency i {
    color: #dc3545;
    font-size: 0.85rem;
}

.siren-icon {
    width: 20px;
    height: 24px;
    position: relative;
    display: inline-block;
}

/* Red dome top */
.siren-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 12px;
    background: #dc3545;
    border-radius: 50% 50% 40% 40% / 55% 55% 35% 35%;
    z-index: 2;
    box-shadow: 
        /* Top and upper radiating lines */
        0 -10px 0 1.5px #dc3545,
        -2px -9px 0 1.5px #dc3545,
        2px -9px 0 1.5px #dc3545,
        -4px -7px 0 1.5px #dc3545,
        4px -7px 0 1.5px #dc3545,
        /* Side radiating lines */
        -6px -4px 0 1.5px #dc3545,
        6px -4px 0 1.5px #dc3545,
        -7px -1px 0 1.5px #dc3545,
        7px -1px 0 1.5px #dc3545,
        /* Lower side radiating lines */
        -7px 2px 0 1.5px #dc3545,
        7px 2px 0 1.5px #dc3545,
        -6px 5px 0 1.5px #dc3545,
        6px 5px 0 1.5px #dc3545;
    animation: pulseSiren 1.5s ease-in-out infinite;
}

/* Dark gray base */
.siren-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 5px;
    background: #2c2c2c;
    border-radius: 2px;
    z-index: 1;
}

@keyframes pulseSiren {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.05);
        filter: brightness(1.2);
    }
}

.nav-emergency a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.nav-emergency a:hover {
    color: #dc3545;
}

.nav-top-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-btn-book {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-btn-book:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-btn-whatsapp i {
    font-size: 0.9rem;
}

.nav-btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-btn-help {
    background: #007bff;
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-btn-help i {
    font-size: 0.9rem;
}

.nav-btn-help:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Main Navigation Bar */
.nav-main-bar {
    background: var(--white);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.nav-search {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-search:hover {
    color: var(--primary-color);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(244, 122, 0, 0.6)) 
            drop-shadow(0 0 15px rgba(244, 122, 0, 0.4)) 
            drop-shadow(0 0 25px rgba(244, 122, 0, 0.3));
    -webkit-filter: drop-shadow(0 0 8px rgba(244, 122, 0, 0.6)) 
                    drop-shadow(0 0 15px rgba(244, 122, 0, 0.4)) 
                    drop-shadow(0 0 25px rgba(244, 122, 0, 0.3));
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nav-logo-text .clinic-name-main {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
    margin-left: 0.5rem;
    line-height: 1.2;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-stroke: 0.3px var(--primary-color);
    text-align: center;
}

.nav-logo-text .clinic-name-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-align: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-menu > li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 280px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 1rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: rgba(0, 75, 73, 0.05);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 1.75rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Home Section */
.home-section {
    position: relative;
    height: 100vh;
    background: url('BG Video/Bg Image.jpg') left center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    color: var(--white);
    overflow: hidden;
}

.home-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 75, 73, 0.2);
    z-index: 1;
    box-shadow: inset 0 0 150px 80px rgba(0, 75, 73, 0.3);
}

.animated-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.animated-particles::before,
.animated-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 122, 0, 0.1) 0%, transparent 70%);
    animation: floatParticle 20s infinite ease-in-out;
}

.animated-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.animated-particles::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 10s;
    background: radial-gradient(circle, rgba(0, 75, 73, 0.1) 0%, transparent 70%);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.home-content {
    position: relative;
    z-index: 2;
    animation: slideInFromRight 1s ease-out;
    width: 66.67%;
    max-width: 700px;
    padding: 5rem 3rem 4rem 3rem;
    text-align: center;
    margin-right: 2rem;
    margin-left: auto;
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 2rem;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator:hover {
    color: var(--accent-color);
    transform: translateX(-50%) translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.home-welcome {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.home-clinic-name {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.home-hospital-name {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.home-doctor-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.home-doctor-specialization {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    text-align: center;
    letter-spacing: 0.3px;
}

.home-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.home-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.home-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.92;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.home-tagline {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    text-align: center;
    letter-spacing: 0.3px;
    opacity: 0.95;
}

.home-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
    background: #f8f8f8;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0 40px;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 122, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* About Section - Reference Design */
.about-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        url('clinic_photos/1767361665172-417254889.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section .section-header {
    margin-bottom: 3rem;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(0, 75, 73, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: rotate(-15deg);
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -3%;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(244, 122, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: rotate(20deg);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Left Section */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-us-section {
    margin-bottom: 2rem;
}

.section-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #000000;
    font-weight: 400;
    margin: 0;
}

/* Mission Section */
.mission-section {
    margin-top: 4rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.mission-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.mission-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.mission-quote {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: linear-gradient(135deg, rgba(0, 75, 73, 0.03) 0%, rgba(244, 122, 0, 0.03) 100%);
    padding: 2.5rem 3rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin-top: 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.quote-icon-large {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--accent-color);
    line-height: 1;
    margin-top: -0.3rem;
    opacity: 0.6;
}

.mission-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
    font-weight: 400;
    margin: 0;
    flex: 1;
}

/* About Video Section */
.about-video-section {
    margin-top: 3rem;
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    background: #000;
}

.about-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-video:hover {
    transform: scale(1.02);
}

.video-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container:hover .video-overlay-content {
    opacity: 1;
}

.play-button-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 75, 73, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.play-button-wrapper:hover {
    transform: scale(1.1);
    background: rgba(244, 122, 0, 0.9);
}

.play-button-wrapper i {
    font-size: 2.5rem;
    color: white;
    margin-left: 5px;
}

.video-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.8;
}

/* About Right Section */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.doctor-photo-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.doctor-photo-cube {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2rem;
    background: #fff;
}

.doctor-photo-cube::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 75, 73, 0.05) 0%, rgba(244, 122, 0, 0.05) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.doctor-photo-cube:hover::before {
    opacity: 1;
}

.doctor-photo-cube:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.doctor-photo-cube img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.doctor-photo-cube:hover img {
    transform: scale(1.1);
}

.founder-credit {
    text-align: center;
    margin-top: 1.5rem;
    width: 100%;
}

.founder-credit .doctor-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.founder-credit .doctor-qualification {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.founder-credit .doctor-degrees {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.2px;
    opacity: 0.85;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2c3e50;
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 24px;
}



/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    font-weight: 400;
}

/* Services Section */
.services-section {
    background: var(--light-bg);
    position: relative;
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    scroll-margin-top: 120px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 75, 73, 0.15);
}

.service-card.glow {
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(244, 122, 0, 0.6), 0 8px 25px rgba(0, 75, 73, 0.3);
    transform: translateY(-8px) scale(1.02);
    animation: glowPulse 2s ease-in-out;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 20px rgba(244, 122, 0, 0.4), 0 8px 25px rgba(0, 75, 73, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(244, 122, 0, 0.8), 0 10px 30px rgba(0, 75, 73, 0.4);
    }
    100% {
        box-shadow: 0 0 20px rgba(244, 122, 0, 0.4), 0 8px 25px rgba(0, 75, 73, 0.2);
    }
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-card h3 {
    color: var(--text-dark);
    margin: 1.5rem 1.5rem 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

.service-btn {
    margin-top: auto;
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    width: calc(100% - 3rem);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--primary-color);
}

/* Blogs Section */
.blogs-section {
    background: var(--white);
    padding: 5rem 0;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 75, 73, 0.2);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.blog-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-meta i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.blog-date,
.blog-author {
    color: var(--text-light);
}

.blog-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin-top: auto;
}

.blog-read-more:hover {
    color: var(--accent-color);
    gap: 0.8rem;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.blog-modal.active {
    display: block;
}

.blog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.blog-modal-content {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 10001;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-modal-close:hover {
    background: var(--accent-color);
    transform: rotate(90deg) scale(1.1);
}

.blog-detail {
    padding: 3rem;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.blog-detail-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.blog-detail-header {
    margin-bottom: 2rem;
}

.blog-detail-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-detail-meta i {
    color: var(--accent-color);
}

.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.blog-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.blog-detail-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-detail-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.blog-detail-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
}

.blog-detail-author {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-bg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.blog-detail-author-info {
    flex: 1;
}

.blog-detail-author-info h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.blog-detail-author-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('clinic_photos/1767361665217-691163523.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    min-height: 300px;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
}

.testimonial-card {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.testimonial-content {
    background: var(--light-bg);
    padding: 2.5rem 3rem 3rem 3rem;
    border-radius: 10px;
    position: relative;
    box-shadow: var(--shadow);
    min-height: 250px;
}

.quote-icon {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    z-index: 1;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0;
    margin-top: 0;
    font-style: italic;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 700;
    text-align: center;
}

.testimonial-author p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

/* Special styling for Anil Patil - already centered */
.testimonial-author.anil-patil {
    text-align: center;
}

.testimonial-author.anil-patil h4 {
    text-align: center;
    margin-bottom: 0.25rem;
}

.testimonials-container {
    position: relative;
}

.testimonial-side-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

.testimonial-side-arrow i {
    font-weight: 900;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.testimonial-arrow-left {
    left: -60px;
}

.testimonial-arrow-right {
    right: -60px;
}

.testimonial-side-arrow:hover {
    color: var(--accent-color);
    transform: translateY(-50%) scale(1.2);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Gallery Section */
.gallery-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 75, 73, 0.1), rgba(244, 122, 0, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 75, 73, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 0;
}

.gallery-overlay i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallery-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('clinic_photos/1767361665170-758391463.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: stretch;
    padding: 0.5rem;
}

.contact-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    gap: 0;
    align-items: center;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Left side: Icon and Title */
.contact-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    width: 160px;
    padding-right: 1.5rem;
    position: relative;
}

.contact-card-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}

.contact-card-left .contact-icon {
    margin-bottom: 0.7rem;
}

.contact-card-left h3 {
    color: var(--text-dark);
    margin-bottom: 0;
    margin-top: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

/* Right side: Content */
.contact-card-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    padding-left: 1.5rem;
}

.contact-card-right p {
    color: var(--text-light);
    margin-bottom: 0.4rem;
    line-height: 1.5;
    font-size: 0.85rem;
    text-align: center;
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.4rem;
    line-height: 1.5;
    font-size: 0.85rem;
}

.contact-card-right .social-links {
    align-items: center;
    justify-content: center;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.whatsapp {
    color: #25D366 !important;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.appointment-heading {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-form .appointment-heading {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.appointment-heading h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.appointment-heading p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.contact-form {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    display: block;
    margin: 0 auto;
    width: auto;
    min-width: 200px;
    border: 2px solid var(--primary-color);
}

.map-container {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.map-container h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.map-link {
    margin-top: 1rem;
    text-align: center;
}

.map-link .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), var(--primary-color), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
    margin-left: 0;
    justify-content: center;
    width: 100%;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-top: 0;
}

/* Center-align first footer section content */
.footer-section:first-child {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.1);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-logo-text .clinic-name-main {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin: 0;
    margin-left: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-align: center;
}

.footer-logo-text .clinic-name-sub {
    text-align: center;
}

.footer-logo-text .clinic-name-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.3;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-section {
    transition: transform 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
}

.footer-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

/* Remove underline from first footer-section h3 (doctor's name) */
.footer-section:first-child h3::after {
    display: none;
}

/* Reduce spacing for doctor's name and move text up */
.footer-section:first-child h3 {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
    text-align: left;
}

.footer-section:first-child p {
    text-align: left;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-section p {
    margin-bottom: 0.75rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    line-height: 1.8;
}

/* Smaller font size and reduced spacing for doctor specialization and rank in footer */
.footer-section:first-child p {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    line-height: 1.5;
    text-align: left;
}

.footer-section p:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(10px);
    padding-left: 20px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-section i {
    margin-right: 0.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-section p:hover i,
.footer-section a:hover i {
    color: var(--accent-color);
    transform: scale(1.2);
}

.footer-section p a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section p a:hover {
    opacity: 1;
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .home-bg-video {
        opacity: 0.4;
    }

    .nav-top-bar {
        display: none;
    }

    .nav-locations {
        gap: 1rem;
        font-size: 0.75rem;
    }

    .nav-location-item {
        font-size: 0.7rem;
    }

    .nav-top-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-btn-book {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .nav-search {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }
    
    .nav-dropdown {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        display: none !important;
    }
    
    .dropdown-toggle {
        width: 100%;
        cursor: pointer;
        display: block;
        text-align: center;
        justify-content: center;
    }
    
    .dropdown-toggle i {
        display: none;
    }

    .page-header {
        padding: 50px 0 35px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .nav-logo {
        gap: 0.75rem;
    }

    .nav-logo-img {
        height: 40px;
    }

    .nav-logo-text {
        align-items: center;
        text-align: center;
    }

    .nav-logo-text .clinic-name-main {
        font-size: 1.1rem;
        font-weight: 900;
        white-space: normal;
        letter-spacing: 0.8px;
        -webkit-text-stroke: 0.2px var(--primary-color);
        margin-left: -0.3rem;
        text-align: center;
    }

    .nav-logo-text .clinic-name-sub {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-align: center;
    }

    .home-welcome {
        font-size: 1rem;
    }

    .home-clinic-name {
        font-size: 2.5rem;
    }

    .home-hospital-name {
        font-size: 1.4rem;
    }

    .home-section {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        background: url('BG Video/Bg Image.jpg') center center/cover no-repeat;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
        position: relative;
    }

    .home-overlay {
        background: rgba(0, 75, 73, 0.35);
        box-shadow: inset 0 0 80px 40px rgba(0, 75, 73, 0.45);
    }

    .home-content {
        width: 90%;
        max-width: 100%;
        padding: 2rem 1.5rem;
        margin: 0 auto;
        margin-top: 0;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .home-doctor-name {
        font-size: 2rem;
        white-space: nowrap;
        margin-bottom: 0.8rem;
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    }

    .home-doctor-specialization {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .home-title {
        font-size: 2rem;
    }

    .home-subtitle {
        font-size: 1.3rem;
    }

    .home-description {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .home-tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .home-buttons {
        gap: 0.8rem;
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
        padding-top: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
        margin-top: 1rem;
    }

    .about-section {
        padding: 3rem 0;
    }

    .about-header h2 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .about-left {
        gap: 2rem;
    }

    .about-text-content p {
        font-size: 0.95rem;
    }

    .about-video-section {
        margin-top: 2rem;
    }

    .video-container {
        border-radius: 15px;
    }

    .play-button-wrapper {
        width: 60px;
        height: 60px;
    }

    .play-button-wrapper i {
        font-size: 2rem;
    }


    .mission-label {
        font-size: 1rem;
        text-align: center;
    }

    .mission-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .mission-section {
        margin-top: 3rem;
    }
    
    .mission-quote {
        padding: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .quote-icon-large {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .doctor-photo-cube {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .doctor-photo-wrapper {
        align-items: center;
    }

    .founder-credit .doctor-name {
        font-size: 1.5rem;
    }
    
    .founder-credit .doctor-qualification {
        font-size: 0.9rem;
    }
    
    .founder-credit .doctor-degrees {
        font-size: 0.8rem;
    }

    .services-list li {
        padding: 1.2rem 1.4rem;
        font-size: 1rem;
    }

    .about-text {
        padding: 2.5rem 2rem;
    }

    .about-text h3 {
        font-size: 2.2rem;
    }

    .about-text .lead {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .opd-timings {
        padding: 2rem 1.5rem;
    }

    .opd-timings h4 {
        font-size: 1.3rem;
    }

    .timing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.2rem 1.4rem;
    }

    .trust-message {
        font-size: 1rem;
        white-space: normal;
        padding: 1.8rem 1.5rem;
    }

    .doctor-name {
        font-size: 1.8rem;
    }

    .doctor-qualifications {
        gap: 0.8rem;
    }

    .doctor-qualifications p {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .doctor-info {
        padding: 2rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 220px;
        margin: 0;
    }

    .service-card h3 {
        margin: 1.25rem 1.25rem 0.75rem;
        font-size: 1.2rem;
    }

    .service-card p {
        margin: 0 1.25rem 1.25rem;
        font-size: 0.95rem;
    }

    .blogs-section {
        padding: 3rem 0;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-meta {
        font-size: 0.8rem;
        gap: 1rem;
    }

    .blog-modal-content {
        margin: 20px;
        border-radius: 15px;
    }

    .blog-detail {
        padding: 2rem 1.5rem;
    }

    .blog-detail-image {
        height: 250px;
    }

    .blog-detail-header h1 {
        font-size: 1.8rem;
    }

    .blog-detail-content {
        font-size: 1rem;
    }

    .blog-detail-content h2 {
        font-size: 1.4rem;
    }

    .blog-detail-content h3 {
        font-size: 1.2rem;
    }

    .testimonial-content {
        padding: 2rem 1.5rem;
        min-height: 220px;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0 0.5rem;
    }

    .testimonial-stars {
        gap: 0.25rem;
        margin-bottom: 0.75rem;
    }

    .testimonial-stars i {
        font-size: 1rem;
    }

    .floating-icons-container {
        right: 20px !important;
        bottom: 95px !important;
        gap: 12px !important;
    }

    .floating-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.4rem !important;
    }

    .testimonial-author {
        text-align: center;
        margin-bottom: 1rem;
        position: relative;
    }

    .testimonial-author h4 {
        font-size: 0.95rem;
        text-align: center;
    }

    .testimonial-author p {
        font-size: 0.85rem;
        text-align: center;
    }

    .testimonial-author.anil-patil h4 {
        text-align: center;
    }

    .testimonial-side-arrow {
        display: none;
    }
    
    .testimonial-slider {
        touch-action: pan-y pinch-zoom;
        user-select: none;
        -webkit-user-select: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-card-left {
        min-width: auto;
        padding-right: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .contact-card-left::after {
        display: none;
    }

    .contact-card-right {
        width: 100%;
    }

    .contact-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-card h3 {
        text-align: center;
    }

    .contact-card p {
        text-align: center;
    }

    .contact-card a {
        text-align: center;
    }

    .social-links {
        align-items: center;
        text-align: center;
    }

    .social-link {
        justify-content: center;
    }

    .appointment-heading h3 {
        font-size: 1.6rem;
    }

    .appointment-heading p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.5rem;
        margin-left: 0;
        gap: 0.75rem;
    }
    
    .footer-logo-text {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-text .clinic-name-main {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .footer-logo-text .clinic-name-sub {
        font-size: 0.7rem;
        text-align: center;
    }

    /* Center-align first footer section on mobile */
    .footer-section:first-child {
        text-align: center;
        align-items: center;
    }

    .footer-section:first-child h3 {
        text-align: center;
    }

    .footer-section:first-child p {
        text-align: center;
    }

    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li a:hover {
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 2rem;
        padding-top: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .services-section {
        padding: 3rem 0;
    }

    .service-image {
        height: 200px;
        margin: 0;
    }

    .service-card h3 {
        margin: 1rem 1rem 0.75rem;
        font-size: 1.1rem;
    }

    .service-card p {
        margin: 0 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .service-btn {
        margin-left: 1rem;
        margin-right: 1rem;
        width: calc(100% - 2rem);
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .blogs-section {
        padding: 3rem 0;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 1.2rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }

    .blog-meta {
        font-size: 0.75rem;
        gap: 0.8rem;
    }

    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonial-side-arrow {
        display: none;
    }
    
    .doctor-photo-cube {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .mission-section {
        margin-top: 2.5rem;
    }
    
    .mission-quote {
        padding: 1.2rem;
        flex-direction: column;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        align-items: center;
        text-align: center;
    }
    
    .quote-icon-large {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    
    .mission-text {
        font-size: 0.9rem;
        text-align: center;
    }

    .gallery-section {
        padding: 3rem 0;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .appointment-heading h3 {
        font-size: 1.4rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-content {
        gap: 2rem;
    }

    .trust-message {
        font-size: 0.8rem;
        white-space: normal;
    }

    .nav-logo-img {
        height: 35px;
    }

    .nav-logo-text {
        align-items: center;
        text-align: center;
    }

    .nav-logo-text .clinic-name-main {
        font-size: 0.95rem;
        font-weight: 900;
        white-space: normal;
        letter-spacing: 0.6px;
        -webkit-text-stroke: 0.2px var(--primary-color);
        margin-left: -0.25rem;
        text-align: center;
    }

    .nav-logo-text .clinic-name-sub {
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-align: center;
    }

    .page-header {
        padding: 40px 0 30px;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .home-welcome {
        font-size: 0.9rem;
    }

    .home-clinic-name {
        font-size: 1.8rem;
    }

    .home-hospital-name {
        font-size: 1.1rem;
    }

    .home-section {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        background: url('BG Video/Bg Image.jpg') center center/cover no-repeat;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
        position: relative;
    }

    .home-overlay {
        background: rgba(0, 75, 73, 0.38);
        box-shadow: inset 0 0 70px 35px rgba(0, 75, 73, 0.5);
    }

    .home-content {
        width: 95%;
        max-width: 100%;
        padding: 1.5rem 1rem;
        margin: 0 auto;
        margin-top: 0;
        margin-bottom: 0;
        text-align: center;
    }

    .home-doctor-name {
        font-size: 1.6rem;
        white-space: nowrap;
        margin-bottom: 0.6rem;
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    }

    .home-doctor-specialization {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }

    .home-title {
        font-size: 1.5rem;
    }

    .home-subtitle {
        font-size: 1.1rem;
    }

    .home-description {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }

    .home-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .home-buttons {
        gap: 0.7rem;
        flex-direction: column;
        width: 100%;
        max-width: 260px;
    }

    .home-buttons {
        flex-direction: column;
        align-items: center;
    }

    .home-buttons .btn {
        width: 200px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card,
    .contact-card {
        padding: 1.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-card-left {
        min-width: auto;
        padding-right: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .contact-card-left::after {
        display: none;
    }

    .contact-card-right {
        width: 100%;
    }

    .contact-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-card h3 {
        text-align: center;
    }

    .contact-card p {
        text-align: center;
    }

    .contact-card a {
        text-align: center;
    }

    .social-links {
        align-items: center;
        text-align: center;
    }

    .social-link {
        justify-content: center;
    }

    .about-image {
        margin-bottom: 1.5rem;
    }

    .doctor-name {
        font-size: 1.4rem;
    }

    .doctor-qualifications p {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .scroll-indicator,
    .testimonial-controls,
    .contact-form,
    .footer {
        display: none;
    }

    .home-section {
        height: auto;
        padding: 2rem 0;
        justify-content: center;
        text-align: center;
        background-size: cover;
        background-position: center center;
    }

    .home-content {
        max-width: 100%;
        padding: 2rem 1rem;
        text-align: center;
        width: 100%;
        margin: 0;
    }

    .floating-icons-container {
        right: 15px !important;
        bottom: 90px !important;
    }

    .floating-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.3rem !important;
    }
}

