/*!
Theme Name: hospital
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: hospital
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

hospital is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */



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

:root {
    --primary-green: #c4161c;
    --secondary-green: #E0F2E9;
    --dark-green: #c4161c;
    --light-green: #f5faf7;
    --accent-orange: #ff6600;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gray: rgba(255, 255, 255, 0.9);
}

body {
    font-family: "Afacad", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Top Navigation Bar */
.top-nav {
    background-color: #c4161c;
    color: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.top-nav .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.top-nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.top-nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.top-nav-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.scroll-top {
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 4px;
    color: var(--white);
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.scroll-top:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Main Header */
.main-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    flex-shrink: 0;
}



.main-header .logo img{
   width: 90%;
}

.logo_mobiale .logo{
    display: none;
}


.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--text-dark);
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 4px;
    letter-spacing: 0.3px;
}

/* ER Wait Times Button */
.er-wait-times {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--white);
    border: 2px solid var(--secondary-green);
    border-radius: 30px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 102, 51, 0.1);
}

.er-wait-times:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 51, 0.2);
}

.er-wait-times .arrow-right {
    margin-left: 4px;
}

/* Search Box */
.search-box a{
    display: flex;
    align-items: center;
    position: relative;
    max-width: 350px;
    width: 100%;
    background-color: #c4161c;
    padding: 5px 13px;
    border-radius: 25px;
}

.search-box a{
	text-decoration: none;
}





.main-nav-links .menu-item-36 .sub-menu{
	height: 160px;
}






.search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid var(--secondary-green);
    border-radius: 30px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-green);
}


.search-box .phone-number {
    color: #ffffff;
}



.search-button {
    position: absolute;
    right: 4px;
    background-color: var(--primary-green);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: var(--dark-green);
}





 .main-nav-links .sub-menu a {
    display: block;
    padding: 6px 20px;
}



.main-nav-links li ul.sub-menu{
	height: 280px;
    overflow: auto;
}






/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Main Navigation */
.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid #e5e5e5;
    padding: 0;

}

.main-nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    justify-content: center;
}

.main-nav-links li {
    flex: 0 0 auto;
}

.main-nav-links a {
    display: block;
    padding: 18px 24px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav-links a:hover {
    color: var(--primary-green);
    background-color: var(--light-green);
}

.main-nav-links a::after {
    content: '';
    position: relative;
    bottom: 0;
    left: 5%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    /* background-color: var(--primary-green); */
    transition: width 0.3s ease;
}

.main-nav-links a:hover::after {
    width: 80%;
}

.main-nav-links a.myhealthone {
    color: var(--accent-orange);
    font-weight: 700;
}

.main-nav-links a.myhealthone:hover {
    background-color: #fff5f0;
}

.main-nav-links a.myhealthone::after {
    background-color: var(--accent-orange);
}












.hero-banner {
    position: relative;
    height: auto;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

/* Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 100, 80, 0.55);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
}

.hero-text p {
    margin: 20px 0;
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
}























/* Main menu */
.main-nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

/* Menu item */
.main-nav-links li {
    position: relative;
}

/* Sub menu hidden by default */
.main-nav-links li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 10px 0;
    min-width: 220px;
    list-style: none;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

/* Sub menu items */
.main-nav-links li ul.sub-menu li {
    padding: 8px 20px;
    white-space: nowrap;
}

/* Hover effect */
.main-nav-links li:hover > ul.sub-menu {
    display: block;
}

/* Remove bullet dots */
.main-nav-links li ul.sub-menu li::marker {
    display: none;
}



.main-nav-links > li.menu-item-has-children > a::after {
    content: " ▾";
    font-size: 12px;
}


















/* Hero Banner */
.hero-banner {
    background-color: var(--white);
    padding: 0;
    position: relative;
    /* background: url(assets/images/premium.jpg); */
    background-repeat: no-repeat;
    /* width: 100%; */
    background-size: cover;
    overflow: hidden;
}

.hero-content {
    display: block;
   
    min-height: 550px;
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 99;
    text-align: center;
}

.hero-image {
    position: relative;
    overflow: hidden;
    /* background-color: #f5f5f5; */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-text {
    /* background: linear-gradient(135deg, #006633 0%, #004d26 100%); */
    padding: 100px 80px 100px 100px;
    display: block;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    transform: none !important;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(177deg, rgb(204 6 6 / 0%) 0%, rgb(0 77 38) 77%);
    pointer-events: none;
        opacity: 65%;
        /* border-bottom-left-radius: 40%;
    border-top-left-radius: 40%; */
}

.hero-text h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--white);
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
    
}

.hero-text p {
    font-size: 19px;
    line-height: 1.65;
    margin-bottom: 38px;
    color: var(--white);
    opacity: 0.98;
    position: relative;
    z-index: 1;
  
}


#home {
    position: relative;
    overflow: hidden;
}

#myVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Black overlay on top of video */
.video-overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% black */
    z-index: 2;
}




.cta-button {
    display: inline-block;
    padding: 16px 42px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: var(--white);
}

/* Advanced Healthcare Services Section */
.advanced-healthcare-section {
    background-color: var(--white);
    overflow: hidden;
    padding: 50px 0;
}

.healthcare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.advanced-healthcare-section .healthcare-content{
    padding-left: 100px;
}





.services-list li i{
    color: #c4161c;
}

.services-list li{
  font-size: 18px;
}













.healthcare-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.healthcare-content h3 {
   color: #c4161c;
}

.healthcare-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.learn-more-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: var(--dark-green);
    box-shadow: 0 4px 12px rgba(0, 102, 51, 0.3);
}

.healthcare-image img {
    width: 80%;
    height: auto;
    border-radius: 8px;
   
}

.healthcare-image{
    text-align: center;
}





/* Why People Choose Us Section */
.why-choose-section {
    background-color: #f9f9f9;
    padding: 50px 0;
    overflow: hidden;
}

.why-choose-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #c4161c;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.choose-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    /* gap: 30px; */
    margin-bottom: 40px;
    align-items: start;
}

.choose-card.large {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 100%;
    min-height: 550px;
}

.choose-card.large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right side stacked cards */
.choose-card-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.choose-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    min-height: 180px;
    align-items: center;
}

.choose-row.reverse {
    grid-template-columns: 1fr 1fr;
}

.choose-card-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 180px;
}

.choose-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.choose-text-card {
    background-color: var(--white);
    padding: 40px 30px;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 180px;
}

.choose-text-card h3{
    font-size: 23px;
    font-weight: 600;
}



.choose-text-card p {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}



















/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.primary-btn:hover {
    background-color: var(--dark-green);
    box-shadow: 0 4px 12px rgba(0, 102, 51, 0.3);
}

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

.secondary-btn:hover {
    background-color: var(--dark-green);
    box-shadow: 0 4px 12px rgba(0, 102, 51, 0.3);
}




.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    color: #0088cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #006699;
    text-decoration: underline;
}

.service-link .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-link:hover .arrow {
    transform: translateX(3px);
}

/* Preparing for Your Visit Section */
.preparing-visit-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    overflow: hidden;
}

.preparing-visit-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
}

.visit-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.visit-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.visit-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.visit-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.visit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visit-card-content {
    padding: 30px 25px;
}

.visit-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.visit-card-content p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #0088cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}



.card-link:hover {
    color: #006699;
    text-decoration: underline;
}

.card-link .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.card-link:hover .arrow {
    transform: translateX(3px);
}

/* Capabilities Section */
.capabilities-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    border-top: 1px solid #e0e0e0;
    overflow: hidden;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    align-items: start;
}

.capabilities-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.capabilities-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.capabilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.capabilities-list li {
    font-size: 16px;
    color: var(--text-dark);
    padding: 12px 0;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.capabilities-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 18px;
}

/* Search and Services Section */
.search-services-section {
    background-color: #f8f8f8;
    padding: 60px 0;
    overflow: visible;
}

.search-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    background-color: var(--white);
    padding: 50px 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: -100px;
    position: relative;
    z-index: 99;
}
/* Search Section */
.search-section h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.2;
}

.search-section h2 strong {
    font-weight: 700;
    color: #c4161c;
}

.search-icon-large {
    flex-shrink: 0;
    margin-top: 3px;
}

.advanced-search-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 140px 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.input-with-icon input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 1px var(--primary-green);
}

.input-with-icon input::placeholder {
    color: #aaa;
}

.input-search-btn {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.input-search-btn:hover {
    color: var(--primary-green);
}

.use-location-btn {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    color: #0088cc;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.use-location-btn:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.use-location-btn svg {
    flex-shrink: 0;
}

.search-submit-btn {
    width: auto;
    padding: 12px 40px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.search-submit-btn:hover {
    background-color: var(--dark-green);
    box-shadow: 0 4px 12px rgba(0, 102, 51, 0.2);
}

/* Services Section */
.services-section h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 35px;
    line-height: 1.2;
}

.services-section h2 strong {
    font-weight: 700;
    color: #c4161c;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  
    background-color: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    min-height: 160px;
    justify-content: center;
}

.service-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-card:hover .service-icon path,
.service-card:hover .service-icon circle,
.service-card:hover .service-icon rect {
    stroke: var(--primary-green);
}

.service-icon {
    margin-bottom: 18px;
    transition: all 0.3s ease;
    width: 55px;
    height: 55px;
}

.service-icon img{
    width: 100% !important;
}





.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.phone-number {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2px;
    font-size: 16px;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .top-nav-links {
        gap: 20px;
    }

    .top-nav-links a {
        font-size: 13px;
    }

    .header-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logo {
        justify-content: center;
    }

    .er-wait-times {
        justify-self: auto;
    }

    .search-box {
        max-width: 100%;
        justify-self: center;
    }

    .main-nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav-links a {
        padding: 14px 16px;
        font-size: 14px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-image {
        min-height: 400px;
        order: 2;
    }

    .hero-text {
        padding: 70px 50px;
        order: 1;
    }

    .hero-text h2 {
        font-size: 40px;
    }

    .hero-text p {
        font-size: 18px;
        max-width: 100%;
    }

    .search-services-section {
        padding: 40px 0;
    }

    .search-services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        padding: 30px 15px;
        min-height: 150px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .search-section h2 {
        font-size: 24px;
    }

    .services-section h2 {
        font-size: 24px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .healthcare-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .healthcare-content h2 {
        font-size: 28px;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-section h2 {
        font-size: 28px;
    }

    .choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .choose-card.large {
        min-height: 350px;
    }

    .choose-card-stack {
        gap: 0;
    }

    .choose-row {
        min-height: 200px;
    }

    .choose-card-image {
        min-height: 200px;
    }

    .choose-text-card {
        min-height: 200px;
        padding: 30px 25px;
    }

    .choose-text-card p {
        font-size: 16px;
    }

    .action-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .action-btn {
        justify-content: center;
    }

    .capabilities-grid {
        grid-template-columns: 180px 1fr;
        gap: 50px;
    }

    .capabilities-header h2 {
        font-size: 28px;
    }

    .capabilities-columns {
        gap: 40px;
    }

    .capabilities-list li {
        font-size: 15px;
        padding: 10px 0;
    }

    .preparing-visit-section {
        padding: 60px 0;
    }

    .preparing-visit-section h2 {
        font-size: 28px;
    }

    .visit-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .visit-card-image {
        height: 200px;
    }

    .visit-card-content {
        padding: 25px 20px;
    }

    .visit-card-content h3 {
        font-size: 17px;
    }

    .visit-card-content p {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-nav {
        position: relative;

        display: none;
    }

    .top-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-green);
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .top-nav-links.active {
        display: flex;
    }

    .top-nav-links li {
        width: 100%;
    }

    .top-nav-links a {
        display: block;
        padding: 12px 20px;
        font-size: 14px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-text h1 {
        font-size: 16px;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .main-nav-links {
        flex-direction: column;
        gap: 0;
    }

    .main-nav-links li {
        width: 100%;
        text-align: center;
    }

    .main-nav-links a {
        padding: 0px 20px;
    }

    .hero-text {
        padding: 40px 30px;
    }

    .hero-text {
        padding: 60px 35px;
    }

    .hero-text h2 {
        font-size: 32px;
        margin-bottom: 22px;
    }

    .hero-text p {
        font-size: 17px;
        margin-bottom: 28px;
        line-height: 1.6;
    }

    .cta-button {
        padding: 15px 38px;
        font-size: 15px;
        width: auto;
        text-align: center;
    }

   .hero-image {
        min-height: auto;
    }
    .search-services-section {
        padding: 30px 0;
    }

     .search-services-grid {
        gap: 40px;
        padding: 30px 20px;
        margin-top: 0px;
    }
  


    .search-section h2 {
        font-size: 22px;
        flex-direction: row;
        align-items: center;
    }

    .search-icon-large {
        width: 35px;
        height: 35px;
    }

    .services-section h2 {
        font-size: 22px;
    }

    .services-grid {
       
        gap: 15px;
    }

    .service-card {
        padding: 30px 20px;
        min-height: 140px;
    }

    .search-submit-btn {
        width: 100%;
    }

    .input-with-icon input {
        padding-right: 10px;
    }
    
    #location-search {
        padding-right: 10px;
    }

    .use-location-btn {
        position: static;
        margin-top: 8px;
        justify-content: flex-end;
        width: 100%;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .advanced-healthcare-section {
        padding: 50px 0;
    }

    .healthcare-grid {
        gap: 40px;
    }

    .healthcare-content h2 {
        font-size: 24px;
    }

    .healthcare-content p {
        font-size: 15px;
    }

    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-section h2 {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .choose-grid {
        margin-bottom: 30px;
        gap: 20px;
    }

    .choose-card.large {
        min-height: 280px;
    }

    .choose-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .choose-row.reverse {
        grid-template-columns: 1fr;
    }

    .choose-row.reverse .choose-text-card {
        order: 2;
    }

    .choose-row.reverse .choose-card-image {
        order: 1;
    }

    .choose-card-image {
        min-height: 200px;
    }

    .choose-text-card {
        min-height: 120px;
        padding: 25px 20px;
    }

    .choose-text-card p {
        font-size: 15px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .action-btn {
        width: 100%;
    }

    .capabilities-section {
        padding: 50px 0;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .capabilities-header h2 {
        font-size: 24px;
    }

    .capabilities-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .capabilities-list li {
        font-size: 15px;
        padding: 8px 0;
    }

    .service-link {
        font-size: 14px;
    }

    .preparing-visit-section {
        padding: 50px 0;
    }

    .preparing-visit-section h2 {
        font-size: 24px;
    }

    .visit-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .visit-card-image {
        height: 220px;
    }

    .visit-card-content {
        padding: 25px 20px;
    }

    .visit-card-content h3 {
        font-size: 17px;
    }

    .visit-card-content p {
        font-size: 14px;
    }

    .card-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
      .container {
        padding: 10px 15px;
    }

    .hero-text {
        padding: 50px 25px;
    }

    .hero-text h2 {
        font-size: 29px;
        letter-spacing: -0.3px;
    }

    .hero-text p {
        font-size: 18px;
        line-height: 1.6;
    }

    .cta-button {
        padding: 13px 32px;
        font-size: 14px;
    }

    .hero-image {
        min-height: 100px;
    }

    .search-section h2 {
        font-size: 25px;
    }

    .services-section h2 {
        font-size: 22px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .phone-number {
        font-size: 14px;
    }

    .advanced-healthcare-section {
        padding: 40px 0;
    }

    .healthcare-content h2 {
        font-size: 22px;
    }

    .healthcare-content p {
        font-size: 14px;
    }

    .learn-more-btn {
        width: 100%;
        text-align: center;
    }

    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-section h2 {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .choose-card.large {
        min-height: 250px;
    }

    .choose-card-image {
        min-height: 180px;
    }

    .choose-text-card {
        min-height: 100px;
        padding: 20px 15px;
    }

    .choose-text-card p {
        font-size: 14px;
    }

    .action-btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    .capabilities-section {
        padding: 40px 0;
    }

    .capabilities-header h2 {
        font-size: 22px;
    }

    .capabilities-list li {
        font-size: 14px;
        padding: 7px 0;
        padding-left: 18px;
    }

    .capabilities-list li::before {
        font-size: 16px;
    }


    

    .preparing-visit-section {
        padding: 40px 0;
    }

    .preparing-visit-section h2 {
        font-size: 22px;
    }

    .visit-card-image {
        height: 200px;
    }

    .visit-card-content {
        padding: 20px 18px;
    }

    .visit-card-content h3 {
        font-size: 16px;
    }

    .visit-card-content p {
        font-size: 13px;
    }

    .footer-social-section {
        padding: 40px 0;
    }

    .footer-social-section h3 {
        font-size: 24px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .footer-main-section {
        padding: 40px 0 25px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .copyright p {
        white-space: normal;
        text-align: center;
    }

    .footer-links-row {
        justify-content: center;
    }

    .footer-links-row a {
        font-size: 12px;
    }

    .footer-links-row .separator {
        font-size: 12px;
    }
}

/* Footer */
.main-footer {
    margin-top: 0;
    overflow: hidden;
}

/* Footer Social Section */
.footer-social-section {

    background-color: #6b615e;
    padding: 50px 0;
    text-align: center;
}

.footer-social-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: left;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Footer Main Section */
.footer-main-section {
    background-color: #f5f5f5;
    padding: 0px 0 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-logo img {
    width: 40%;
    margin-top: 14px;
}

.footer-logo-text {
    text-align: left;
}

.footer-logo-text .logo-main {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
    line-height: 1.2;
}

.footer-logo-text .logo-sub {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
    line-height: 1.2;
}

.footer-logo-text .logo-tagline {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 5px;
    letter-spacing: 0.3px;
}




.footer-social-icons{
    text-align: left !important;
    color: var(--white);
}




/* Footer Bottom */
.footer-bottom {
    display: block;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    padding-top: 30px;
    border-top: 1px solid #d5d5d5;
}

.copyright {
    flex-shrink: 0;
}

.copyright p {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-links-row a {
    font-size: 13px;
    color: #0088cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-row a:hover {
    color: #006699;
    text-decoration: underline;
}

.footer-links-row .separator {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 4px;
}

/* Accessibility */
a:focus,
button:focus,
input:focus {
    /* outline: 2px solid var(--primary-green); */
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


.accreditations-section {

  margin: 60px auto;
  padding: 0 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  overflow: hidden;
}

.accreditations-section h2 {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.accreditations-list {
  list-style-type: disc;
  padding-left: 30px;
}

.accreditations-list li {
  margin-bottom: 16px;
  font-size: 16px;
}

.accreditations-list a {
  color: #0077b6;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.accreditations-list a:hover {
  color: #005f8a;
  border-bottom: 1px solid #005f8a;
}


@media (max-width: 600px) {
  .accreditations-section {
    padding: 0 15px;
  }

  .accreditations-section h2 {
    font-size: 22px;
  }

  .accreditations-list li {
    font-size: 15px;
  }
}




.myhealthone-section {
  background:#f5f5f5;
  padding: 60px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  overflow: hidden;
}

.myhealthone-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.mockup img {
  width: 320px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.content {
  flex: 1;
  min-width: 300px;
}

.content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0a2342;
  margin-bottom: 15px;
}

.content h2 span {
  color: #003366;
}

.intro {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.features {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.features li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.cta {
  color: #0077b6;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}

.cta:hover {
  text-decoration: underline;
}

.divider {
  border-bottom: 1px solid #ddd;
  margin: 25px 0;
}

.download-text {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

.download-text a {
  color: #0077b6;
  text-decoration: none;
  font-weight: 500;
}

.download-text a:hover {
  text-decoration: underline;
}

.app-buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.store-btn {
  width: 135px;
  height: auto;
}






/* -------------------------------------------------------------------------


/* Responsive */
@media (max-width: 768px) {
  .myhealthone-container {
    flex-direction: column;
    text-align: center;
  }

  .content {
    text-align: center;
  }

  .features {
    text-align: left;
    display: inline-block;
  }

  .footer-bottom {
    display: block;

}

.er-wait-times {
        justify-self: auto;
    }


    .main-nav {
    position: sticky;
    top: 0px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    margin-top: 10px;
}
	
	
.hero-banner {
  
    height: auto;
}
	
	
	
	
	.contact-section .col-3 {
  
    width: 100%;
}
	
.footer-logo img {
   
    padding-bottom: 14px;
}
	
	.contact-section .row{
		display: block;
	}
	
	
	.healthcare-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
   
    border-bottom-left-radius: 0%;
    border-top-left-radius: 0%;
}
	
	
	.footer-social-section iframe{
		width: 100%;
	}

    .services-list{
        padding: 0 !important;
    }

    .services-section2 {
    padding: 12px 20px !important;
 
}
	




}







/* Fixed Navbar */
.main-nav {
    position: sticky;
    top: 0px;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 999;
    padding: 8px;
	border-bottom:none;
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: bold;
  color: #003366;
}

/* Navigation Links */
.main-nav-links {
  list-style: none;
  display: flex;
  gap: 0px;
  margin: 0;
  padding: 0;
}

.main-nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

.main-nav-links li a:hover {
  color: #0077b6;
}

.myhealthone {
  color: #ff6600;
  font-weight: 600;
}

/* Toggle Button (hidden on desktop) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* Add space below fixed navbar */
body::before {
    content: "";
    display: block;
    height: 0px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .search-box{
    margin-top: 0px;
  }



  .logo_mobiale .logo {
    display: contents;
}

 .logo_mobiale .logo img{
    width: 40%;
 }


 .main-nav .nav-content{
    display: flex;
 }





  .main-nav-links {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    gap: 15px;
    display: none;
    border-top: 1px solid #ddd;
  }

  .main-nav-links.show {
    display: flex;
  }

  .main-nav-links li a {
    font-size: 16px;
    width: 100%;
  }

    .menu-toggle {
        background: none;
        border: none;
        font-size: 26px;
        cursor: pointer;
        right: 0;
        position: relative;
        margin-right: 16px;
        top: -2px;
    }

.hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
   
    pointer-events: none;
    opacity: 65%;
    border-bottom-left-radius: 0%;
    border-top-left-radius: 0%;
    margin-top: 25px;
}


.advanced-healthcare-section .healthcare-content {
        padding-left: 0px;
        padding: 30px;
    }


   .main-nav {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
	   padding: 10px 0px;
    margin-top: 0px;
}


.logo {
    display: none;
    align-items: center;
    gap: 15px;
}


}






/* services-section */

.services-section2 {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.services-section2 .more-services{
    padding-top: 50px;

}

.services-section2 .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.services-section2 .section-title span {
    color: #c4161c;
    position: relative;
}

.services-section2 .section-title span::after {
    content: '';
    width: 40px;
    height: 3px;
    background: #ff3c3c;
    display: block;
    margin: 8px auto 0;
}

.services-section2 .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-section2 .service-box {
    background: #fff;
    padding: 40px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.services-section2 .service-box:hover {
    transform: translateY(-10px);
}

.services-section2 .service-icon {
    width: 60px;
    height: 60px;
   
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.services-section2 .service-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.services-section2 .service-box p {
    font-size: 15px;
    color: #666;
}

/* Responsive */
@media (max-width: 991px) {
    .services-section2 .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-section2 .services-grid {
        grid-template-columns: 1fr;
    }
}













.contact-section {
            background-color: #f7f9fa; /* पूरे सेक्शन का हल्का बैकग्राउंड */
            padding: 30px 0;
        }
        .contact-box {
            padding: 20px;
            text-align: center;
            height: 100%; /* सभी बॉक्स की ऊँचाई एक समान रखने के लिए */
        }
        /* इमरजेंसी बॉक्स */
        .emergency-box {
            background-color: #fff8e1; /* हल्का पीला */
            border-radius: 8px 0 0 8px; /* केवल बाईं ओर गोलाई */
            color: #333;
        }
        /* अपोलो लाइफ़लाइन बॉक्स */
        .lifeline-box {
            background-color: #e3f2fd; /* हल्का नीला */
            color: #333;
        }
        /* हेल्थ हेल्पलाइन बॉक्स */
        .helpline-box {
            background-color: #e0f7fa; /* हल्का फ़िरोज़ी */
            border-radius: 0 8px 8px 0; /* केवल दाईं ओर गोलाई */
            color: #00796b; /* गहरे फ़िरोज़ी रंग का टेक्स्ट */
        }
        .contact-title {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
.contact-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-decoration: none;
    color: black;
}
   
        .logo-section {
            display: flex;
            align-items: center;
            padding-left: 15px;
        }
        .logo-section img {
            height: 50px; 
            margin-right: 10px;
        }





/* InnerPage  */
.innerPageSection{
    padding: 0px 0 0 0;
    position: relative;
}

.innerBannerSection{
    width: 100%;
    position: relative;
    height: 300px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.innerBannerSection:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   background: rgb(0 0 0 / 30%);
}
.innerbanner{
    height: 368px;
    background-size: cover;
}
.innerBannerSection h1{
    font-size: 32px !important;
    letter-spacing: 2px;
    color:#fff;
    font-weight: bold;
}
.innerBannerSection .head{
    position: absolute;
    top: 140px;
}
.innerBannerSection .head h3{
    color: #ff7700;
    font-size: 30px;
}
.innerBannerSection .innerBannerImg{
    background-size: cover !important;
    height: 100%;
    /*    background-attachment: fixed !important;*/
    position: relative;
}
.innerBannerSection .innerBannerImg:before{
    position: absolute;
    content:'';
    top:0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,.3);
}
.InnerBannerHeading{
    position: absolute;
    top: -60px;
    color: #fff;
}
.InnerBannerHeading h1{
    font-size: 36px !important;
}
.breadcrumb span {
    font-weight: normal;
    color: #fff;
}
.breadcrumb span a {
    font-weight: normal;
    color: #fff;
}
.breadcrumb {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    background:#c4161c;
    color: #000;
    margin-bottom: 0px;
    border-radius: 0;
    border-bottom: solid 1px #ccc;
    padding: 5px 10px;
}
.breadcrumb_last{
    font-weight: 600 !important;
}

.table a{
    color: blue;
}
.table a:hover{
      color:#ffcc2a ;
}
/*innerPageSection */











.video-testimonials {
    background: #ffffff;
    padding: 70px 20px;
    color: #fff;
}

.video-testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: black;
}

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

.video-card {
    position: relative;
    background: #020617;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

.video-card video {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.video-card h4 {
    text-align: center;
    padding: 12px;
    font-size: 16px;
}

.play-btn {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 90%;
    max-width: 800px;
    position: relative;
}

.modal-content video {
    width: 100%;
    height: 600px;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    cursor: pointer;
}

































.footer-links {
    flex: 1;
    padding: 20px;
}

.footer-links h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    text-align: left;
}



.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}



/* Responsive */
@media (max-width: 768px) {
    .footer-links {
        padding: 15px 0;
    }

    .footer-links h3 {
        font-size: 18px;
    }
	
	.innerBannerSection {
    width: 100%;
    position: relative;
    height: 220px;
   
}
	
	.innerBannerSection .head {
    position: absolute;
    top: 90px;
}
	
	
	
	
	
}












.hero-section {
  
    background: url('assets/images/premium.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 67%);
}

.hero-content_new {
    position: relative;
    padding: 50px 0;
    height: auto !important;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-content_new h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-content_new p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* ===== BUTTON ===== */
.open-form-btn {
    padding: 14px 30px;
    background: #c4161c;
    color: #fff;
    border: none;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
}

.open-form-btn:hover {
    background: #c4161c;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;           /* ❗ default hidden */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal.active {
    display: flex;           /* ❗ popup visible */
}


.form-container {
    background: #fff;
    width: 100%;
    max-width: 520px;
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1f3c88;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

select, input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.radio-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.privacy-text {
    font-size: 13px;
    color: #555;
    margin-top: 10px;
}

.submit-btn {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    margin-top: 15px;
    cursor: pointer;
}








/* Section */
.image-gallery-section {
    padding: 60px 0;
}

.gallery-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

/* Grid */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover Effect */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Tablet */
@media (max-width: 992px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .image-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 220px;
    }
}

/* Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

#menu-item-30 .sub-menu{
	height:auto;
}
