/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff;
    color: white;
}

button {
    background-color: #c6866a;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

/* Hero Section */
/* Hero Section */
:root {
    --primary-color: #2a7fba;
    --primary-dark: #1a5f8b;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --orange-accent: #ff7043;
    --orange-dark: #e66035;
}

/* Navigation Styles */
.navbar {
    background-color:transparent;
    /* box-shadow: var(--shadow); */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var( --orange-accent);
    text-decoration: none;
    text-shadow:0.5px 0.2px #000;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-icon {
    margin-left: 0.3rem;
    font-size: 0.8rem;
    transition: var(--transition);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu, .mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    width: 220px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.mega-dropdown {
    width: 500px;
    left: -150px;
    padding: 1.5rem;
}

.mega-dropdown-content {
    display: flex;
    gap: 2rem;
}

.mega-dropdown-column {
    flex: 1;
}

.mega-dropdown h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.mega-dropdown ul {
    list-style: none;
    padding: 0;
}

.mega-dropdown li a, .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.mega-dropdown li a:hover, .dropdown-menu li a:hover {
    background-color: rgba(42, 127, 186, 0.1);
    color: var(--primary-color);
    padding-left: 1.2rem;
}

.divider {
    border-top: 1px solid #eee;
    margin: 0.5rem 0;
}

/* Appointment Button */
.btn-appointment {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-appointment:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 127, 186, 0.3);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

.close-menu {
    display: none; /* Hidden by default */
}

/* Active States */
.dropdown.active .dropdown-menu,
.dropdown.active .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 130vh;
    max-height: 1000px;
    display: flex;
    align-items: center;
    background:  url("images/Home.png") no-repeat 100% center/cover ;
    padding-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-text {
    max-width: 45%;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

/* Headings & Paragraph */
.hero-text h3 {
    letter-spacing: 2px;
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    text-shadow:1px 1px #000;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin: 15px 0;
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    text-shadow:1px 1px #000;
}

.hero-text h1 span {
    color: var(--orange-accent);
    text-shadow:1px 1px #000;
}

.hero-text p {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 700;
    text-shadow:1px 1px #000;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 25px;
}

.btn {
    background: var(--orange-accent);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Video Button */
.video-btn {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.video-btn:hover {
    color: var(--orange-accent);
}

.video-btn i {
    font-size: 22px;
}


/* Mobile Responsive */
@media (max-width: 992px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .container {
        flex-wrap: wrap;
        padding: 0 1rem;
        justify-content: center;
        position: relative;
    }
    
    .logo {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    
    .menu-toggle {
        display: block;
        position: absolute;
        top: 0.05rem;
        right: 0.15rem;
    }
    
    
    .nav-cta {
        order: 2;
        width: 100%;
        padding: 0 1rem;
        display: flex;
        justify-content: center;
    }
    
    
    .btn-appointment {
        width: 100%;
        max-width: 250px;
        text-align: center;
        justify-content: center;
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: var(--transition);
        z-index: 1000;
        order: 4;
        overflow-y: auto;
        scroll-behavior: smooth;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-link {
        padding: 0.8rem 0;
        display: block;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .dropdown-menu, .mega-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 0;
        margin: 0;
        background-color: rgba(0,0,0,0.02);
        border-radius: 0;
    }
    
    .mega-dropdown {
        width: 100%;
        left: 0;
    }
    
    .mega-dropdown-content {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .mega-dropdown-column {
        padding: 0;
    }
    
    .mega-dropdown h4 {
        padding: 0.8rem 1rem;
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .dropdown.active .dropdown-menu,
    .dropdown.active .mega-dropdown {
        display: block;
        transform: none;
    }
    
    .dropdown-menu li a, 
    .mega-dropdown li a {
        padding: 0.8rem 1.5rem;
    }
    
    .menu-toggle.active .hamburger-line:nth-child(1) {
        opacity: 0;
    }
    .menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .hamburger-line:nth-child(3) {
        opacity: 0;
    }
    
    
    /* Close button styling */
    .close-menu {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.8rem;
        font-weight: bold;
        cursor: pointer;
        color: var(--text-color);
        z-index: 1001;
        display: none;
    }
    .nav-links.active .close-menu {
        display: block;
    }

    /* Hero Section Mobile */
    .hero {
        padding-top: 70px;
        height: auto;
        min-height: 100vh;
        background-position: 45% center;
    }
   
    .hero-text {
        max-width: 90%;
        padding: 30px 20px;
        margin: 0 auto;
        background-color: transparent;
        border-radius: 8px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 60%;
        text-align: center;
    }
}
/* Section 1: Appointment & Info Box */
/* ===== Appointment Section Styling ===== */
        
.emergency-section {
    display: flex;
    gap: 5px;
    justify-content: center;
    padding: 60px 20px;
    flex-wrap: wrap;
    background-color: #f5f5f5;
  }
  
  .service-box {
    flex: 1 1 300px;
    padding: 30px 20px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    max-width: 350px;
  }
  
  .service-box i {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .service-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .service-box p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .service-box .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
  }
  
  .service-box .btn:hover {
    background-color: #333;
  }
  
  /* Individual box colors */
  .contact {
    background-color: #d08b6e;
  }
  
  .hdu {
    background-color: #0e4e3c;
  }
  
  .trauma {
    background-color: #4e6a81;
  }
  




/* Medical Services Section (Renamed) */
.ms-section {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #fff;
    box-sizing: border-box;
}

.ms-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.ms-header h2 {
    color: #ff9066;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.ms-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #ff9066;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.ms-subheading {
    color: #5c5c5c;
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.ms-grid-wrapper {
    width: 100%;
}

.ms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
}

.ms-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ms-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: rgba(255, 144, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms-icon i {
    font-size: 28px;
    color: #ff9066;
}

.ms-card h4 {
    color: #173a2f;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.ms-card p {
    color: #5c5c5c;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.ms-button-wrap {
    margin-top: auto;
    padding-top: 15px;
}

.ms-read-more {
    background: #e3967e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.ms-read-more:hover {
    background: #d18a72;
    transform: translateX(5px);
}

.ms-read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: #e3967e;
}

.ms-read-more:hover i {
    transform: translateX(3px);
    color: white;
}

@media (max-width: 768px) {
    .ms-header h2 {
        font-size: 30px;
    }

    .ms-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}


/* 2nd service */

.specialty-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}
.specialty-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Specialty Grid */
.specialty-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
}

.specialty-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.specialty-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.specialty-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #27ae60;
}

.specialty-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.specialty-description {
    font-size: 14px;
    color: #555;
}

/* Explore More Button */
.explore-btn-container {
    text-align: center;
    margin-top: 20px;
}

.explore-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color:#e3967e;;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.explore-btn:hover {
    background-color: #1e8449;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .specialty-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .specialty-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ===== Appointment Section ===== */
.sappointment-section {
    background: #042621;
    padding: 40px 80px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}

.appointment-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.appointment-text i {
    font-size: 36px;
    color: #e89b85;
}

.appointment-text h2 {
    font-size: 1.8rem;
}

.appointment-text p {
    font-size: 0.95rem;
    color: #ddd;
}

.appointment-button {
    background: transparent;
    border: 2px solid #e89b85;
    color: #e89b85;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.appointment-button:hover {
    background: #e89b85;
    color: white;
}

/* ===== How We Work Section ===== */
.work-flow-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: #f9fafc;
    font-family: 'Inter', sans-serif;
}

.work-flow-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.work-flow-text {
    text-align: center;
    padding: 0 20px;
}

.flow-subheading {
    font-weight: 600;
    color: #3a86ff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-size: 1rem;
    text-transform: uppercase;
}

.section-title {
    color: #2b2d42;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.section-description {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.workflow-icon-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.workflow-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.step-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 15px;
    background: #f0f7ff;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #3a86ff;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-title {
    color: #2b2d42;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Desktop View Adjustments */
@media (min-width: 992px) {
    .workflow-icon-group {
        gap: 30px;
    }
    
    .workflow-step {
        padding: 40px 25px;
    }
}

/* Tablet View Adjustments */
@media (max-width: 991px) and (min-width: 768px) {
    .workflow-icon-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile View Adjustments */
@media (max-width: 767px) {
    .work-flow-sec {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .workflow-icon-group {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .workflow-step {
        padding: 30px 20px;
    }
}



/* ===== FAQ Section ===== */
.faq-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    background: #fdf8f6;
}

/* Left Side - Image */
.faq-image-container {
    position: relative;
    width: 50%;
}

.faq-image-container img {
    width: 100%;
    border-radius: 10px;
}

/* Stats Box on Image */
.faq-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 15px;
}

.stat-box {
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    text-align: center;
    font-weight: 600;
}

.dark-box {
    background: #1E88E5;
}

.light-box {
    background: #43A047;
}
.llight-box {
    background: #FB8C00;
}

/* Right Side - FAQ Content */
.faq-content {
    width: 45%;
}

.subheading {
    color: #e89b85;
    font-size: 14px;
    font-weight: bold;
}

.faq-content h2 {
    font-size: 2.2rem;
    color: #12342c;
    margin-bottom: 15px;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    list-style: none;
}

/* Question Styling */
.faq-item summary {
    font-size: 1.1rem;
    font-weight: bold;
    color: #12342c;
    cursor: pointer;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Plus/Minus Symbol */
.faq-item summary::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: bold;
    color: #12342c;
    position: absolute;
    right: 10px;
    transition: transform 0.3s;
}

/* Change Plus to Minus when Expanded */
.faq-item[open] summary::after {
    content: "-";
    transform: rotate(180deg);
}

/* Answer Styling */
.faq-answer {
    font-size: 0.95rem;
    color: #666;
    padding: 10px;
    background: #f8f8f8;
    border-left: 3px solid #e89b85;
    margin-top: 5px;
}

/* Smooth Transition */
details {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
/* ===== Testimonial Section ===== */
.testimonial-section {
    text-align: center;
    padding: 40px 0;
    background-color: #042621;
}

.testimonial-wrapper {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px; /* Ensures it doesn't stretch too much */
    margin: auto;
}

.testimonial-slide {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    justify-content: center;
}

.testimonial-card {
    width: 100%;
    max-width: 350px; /* Ensures full visibility */
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    display: inline-block;
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial-card h3 {
    font-size: 18px;
    margin: 5px 0;
    color: black;
}

.testimonial-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.rating {
    font-size: 16px;
    color: #ffcc00;
    margin-bottom: 5px;
}

.testimonial-dots {
    margin-top: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    background: #e89b85;
    border-radius: 50%;
    display: inline-block;
    margin: 5px;
    cursor: pointer;
}

.dot.active {
    background: #fff;
}


/* ===== Blog Section Styling ===== */
/* .blog-section {
    background: #fdf7f5;
    padding: 80px;
    text-align: left;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.subheading {
    color: #e89b85;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 36px;
    font-weight: bold;
    color: #14342c;
}

.view-all {
    text-decoration: none;
    color: #ff6600;
    font-size: 14px;
    font-weight: bold;
}

.blog-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    width: 30%;
    min-width: 300px;
}

.blog-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 20px;
    color: #14342c;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-desc {
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.5;
}

.bread-more {
    font-size: 14px;
    color: #e89b85;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
} */


/* Contact Section Styling */
.contact-section {
    position: relative;
    background: url("https://i.ibb.co/JWfLK1PW/balajipic.jpg") no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.contact-content {
    position: relative;
    z-index: 2;
}

/* Contact Form Container */
.contact-form-container {
    display: flex;
    background: #14342c;
    border-radius: 10px;
    overflow: hidden;
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
}

/* Left Side */
.contact-left {
    background: #f5a38c;
    padding: 40px;
    text-align: center;
    width: 40%;
}

.contact-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.appointment-text {
    font-size: 20px;
    color: white;
    margin-top: 20px;
}

.highlight {
    font-size: 22px;
    font-weight: bold;
    color: white;
}

/* Right Side (Form) */
.contact-form {
    background: #14342c;
    padding: 40px;
    width: 60%;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e89b85;
    border-radius: 5px;
    background: #14342c; /* Updated Background Color */
    color: white; /* Updated Text Color */
    font-size: 14px;
}

input::placeholder,
textarea::placeholder {
    color: white; /* Updated Placeholder Text Color */
}

textarea {
    height: 100px;
    resize: none;
}

/* Button */
.send-btn {
    background: none;
    border: 2px solid #e89b85;
    padding: 12px 20px;
    color: #e89b85;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    width: 100%;
}

.send-btn:hover {
    background: #e89b85;
    color: #14342c;
}



/* header and nav responsive */
/* Tablet View */

/* 1st appointment section */
/* Tablet View */
@media (max-width: 1024px) {
    .appointment-section {
        flex-direction: column;
        padding: 30px 40px;
    }

    .appointment-box {
        flex-direction: column;
    }

    .appointment-left,
    .appointment-middle,
    .appointment-right {
        padding: 20px;
        text-align: center;
    }

    .appointment-btn {
        justify-content: center;
    }

    .appointment-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .appointment-section {
        padding: 20px;
    }

    .appointment-box {
        flex-direction: column;
    }

    .appointment-left,
    .appointment-middle,
    .appointment-right {
        padding: 15px;
    }

    .appointment-left h3 {
        font-size: 20px;
    }

    .appointment-middle h4, 
    .appointment-right h4 {
        font-size: 16px;
    }

    .appointment-middle p, 
    .appointment-right p {
        font-size: 12px;
    }

    .appointment-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

/* Responsive Styling for vidimage */
/* Responsive Layout */
@media (max-width: 1024px) {
    .services-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .services-images {
        display: flex;
        flex-wrap: nowrap; /* Keep images in a row */
        overflow-x: auto; /* Allow horizontal scrolling */
        justify-content: center;
        gap: 15px;
        padding-bottom: 10px;
        scrollbar-width: none; /* Hide scrollbar */
    }

    .image-wrapper {
        min-width: 160px;
        max-width: 180px;
        border-radius: 50%; /* Makes the image oval */
        overflow: hidden;
    }

    .image-wrapper img,
    .image-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures proper image fit */
        border-radius: 50%; /* Oval shape */
    }
}

@media (max-width: 768px) {
    .services-images {
        justify-content: flex-start;
        padding-bottom: 10px;
        overflow-x: auto; /* Enable scrolling if needed */
    }

    .image-wrapper {
        min-width: 140px;
        max-width: 160px;
    }
}

/* testimonial responsive */
@media (max-width: 768px) {
    .testimonial-wrapper {
        width: 100%;
        max-width: 380px; /* Adjust width for mobile */
    }

    .testimonial-slide {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 90%;
        max-width: 300px;
        margin: 10px auto;
    }

    /* Hide extra testimonials */
    .testimonial-card:not(:first-child) {
        display: none;
    }
}
 /* second appointment  */
 /* Tablet View */
@media (max-width: 1024px) {
    .sappointment-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 50px;
        gap: 20px;
    }

    .appointment-text {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .appointment-text h2 {
        font-size: 1.6rem;
    }

    .appointment-text p {
        font-size: 0.9rem;
    }

    .appointment-button {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .sappointment-section {
        padding: 20px 30px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .appointment-text {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .appointment-text i {
        font-size: 30px;
    }

    .appointment-text h2 {
        font-size: 1.4rem;
    }

    .appointment-text p {
        font-size: 0.85rem;
    }

    .appointment-button {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }
}
 /* faq responsive */
/* Tablet View */
@media (max-width: 1024px) {
    .faq-section {
        flex-direction: column;
        padding: 50px;
        text-align: center;
        gap: 40px;
    }

    .faq-image-container {
        width: 80%;
    }

    .faq-content {
        width: 100%;
    }

    .faq-content h2 {
        font-size: 2rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px;
        flex-direction: column;
        gap: 30px;
    }

    .faq-image-container {
        width: 100%;
    }

    .faq-image-container img {
        border-radius: 8px;
    }

    .faq-stats {
        position: relative;
        bottom: auto;
        left: auto;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .stat-box {
        padding: 10px ;
        font-weight: 600;
        width: 120px;
        height: 100px;
    }

    .faq-content {
        width: 100%;
        text-align: left;
    }

    .faq-content h2 {
        font-size: 1.8rem;
    }

    .faq-item summary {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }
}

 /* blog responsive */
 /* Tablet View */
/* Desktop View */
/* @media (min-width: 1024px) {
    .blog-container {
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }

    .blog-card {
        width: 30%;
        min-width: 300px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .blog-card:hover {
        transform: translateY(-10px);
    }
} */

/* Tablet View */
/* @media (max-width: 1024px) {
    .blog-section {
        padding: 50px;
        text-align: center;
    }

    .blog-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .blog-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .blog-card {
        width: 45%;
        min-width: 250px;
    }
} */

/* Mobile View */
/* @media (max-width: 768px) {
    .blog-section {
        padding: 30px;
    }

    .blog-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .blog-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .blog-card {
        width: 90%;
        text-align: left;
    }

    .blog-card h3 {
        font-size: 18px;
    }

    .blog-desc {
        font-size: 13px;
    }

    .bread-more {
        font-size: 13px;
    }
} */
 
/* contact responsive */
/* Tablet View */
@media (max-width: 1024px) {
    .contact-section {
        padding: 50px 20px;
        background: url('https://i.ibb.co/XxbTTgKf/treatment.jpg') no-repeat center center;
        background-size: cover;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 15px;
        color: #fff;
    }

    .contact-form-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 80%;
    }

    .contact-left {
        display: none; /* Hides the image section */
    }

    .contact-form {
        width: 100%;
        padding: 20px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .input-group {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        flex: 1 1 calc(50% - 10px); /* Makes sure fields are split into two equal columns */
        font-size: 15px;
        padding: 10px;
        box-sizing: border-box;
    }

    .send-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .contact-section {
        padding: 30px 15px;
        background: url('https://i.ibb.co/XxbTTgKf/treatment.jpg') no-repeat center center;
        background-size: cover;
    }

    .contact-title {
        font-size: 24px;
        margin-bottom: 10px;
        color: #fff;
    }

    .contact-form-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-form {
        width: 95%;
        padding: 15px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .input-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        flex: 1 1 calc(50% - 5px); /* Keeps two-column layout on mobile */
        font-size: 14px;
        padding: 8px;
    }

    .send-btn {
        width: 100%;
        padding: 10px;
        font-size: 13px;
    }
}

/* hamburger */
/* Mobile View */
/* Default styles */
/* Default: Hide Hamburger Icon on Desktop */

/* whatsapp */
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

#whatsapp-button img {
    width: 40px;
    height: 40px;
}

#whatsapp-button:hover {
    transform: scale(1.1);
}



/* carousel */
.carousel-wrapper {
    text-align: center;
    width: 80%;
    max-width: 1100px;
}

/* Heading */
.carousel-heading {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Carousel Wrapper */
/* Carousel Wrapper */
.carousel-wrapper {
    text-align: center;
    width: 80%;
    max-width: 1100px;
    margin: auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Heading */
.carousel-heading {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

/* Subheading */
.carousel-subheading {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

 
/* Carousel */
.carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #aaa #ddd;
    width: 100%;
}

/* Custom Scrollbar */
.carousel::-webkit-scrollbar {
    height: 6px;
}

.carousel::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 10px;
}

.carousel::-webkit-scrollbar-thumb {
    background: #2c3e50;
    border-radius: 10px;
}

.carousel::-webkit-scrollbar-thumb:hover {
    background: #34495e;
}

/* Individual Carousel Item */
.carousel-item {
    flex: 0 0 300px;
    height: 200px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.3s ease-in-out;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 62, 80, 0.7);
    color: white;
    font-size: 22px;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.prev:hover, .next:hover {
    background: #2c3e50;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Dots for navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.carousel-dots span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #bdc3c7;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dots span.active {
    background: #2c3e50;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 200px;
        height: 150px;
    }
    .prev, .next {
        font-size: 18px;
        padding: 8px;
    }
}


/* video */
.video-section {
    width: 90%;
    margin: auto;
    padding: 40px 0;
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.video-header h2 {
    font-size: 24px;
    font-weight: bold;
}

.video-header .view-all {
    color: #ff6600;
    text-decoration: none;
    font-size: 14px;
}

.video-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.video-card {
    width: 23%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.video-card a {
    display: block;
    position: relative;
}

.video-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.video-card p {
    padding: 10px;
    font-size: 14px;
    color: #333;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .video-card {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .video-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .video-card {
        width: 100%;
    }
}





/* Remove bullets from dropdown menu items */
.dropdown-menu,
.dropdown-menu li {
    list-style: none;
  
}

