/* 
   YashviCare Premium Design System
   Color Palette & Typography
*/

:root {
    --primary: #30aeb2;
    --primary-dark: #268c8f;
    --primary-light: #e0f2f1;
    --accent: #ffb300;
    --accent-dark: #ffa000;
    --text-main: #2c3e50;
    --text-muted: #7f8c8d;
    --bg-white: #ffffff;
    --bg-soft: #f8fafb;
    --bg-dark: #1a242f;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
.logo-text {
    font-family: 'Outfit', sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

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

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-soft {
    background-color: var(--bg-soft);
}

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

.items-center {
    align-items: center;
}

/* Typography Helpers */
.section-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.1rem;
    min-width: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

h2 span {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 137, 123, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

.w-full {
    width: 100%;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-info span {
    margin-right: 25px;
}

.top-info i {
    margin-right: 8px;
    color: var(--accent);
}

.top-social a {
    margin-left: 15px;
}

.top-social a:hover {
    color: var(--accent);
}

/* Header & Nav */
header {
    background: #ffffff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-mobile-only, .mobile-contact-btn {
    display: none;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    border-radius: 5px;
}

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

.logo img {
    height: 80px;
    width: auto;
    border-radius: 8px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    display: none;
}

.logo-text.white {
    color: var(--white);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 10px 0;
}

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

.nav-links i {
    font-size: 0.75rem;
    margin-left: 5px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

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

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: var(--bg-soft);
    color: var(--primary);
}

.dropdown-menu li a::after {
    display: none;
}

/* Gallery Styling */
.gallery .grid-three {
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section completely revamped for cool aesthetic */
.hero {
    background: linear-gradient(135deg, #e0f7f9 0%, #ffffff 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    color: var(--text-main);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(48, 174, 178, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(48, 174, 178, 0.1);
    border: 1px solid rgba(48, 174, 178, 0.1);
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-box {
    position: relative;
    display: inline-block;
    z-index: 10;
    margin-right: 30px;
    margin-bottom: 30px;
}

/* Clean, modern offset frame */
.image-box::after {
    content: "";
    position: absolute;
    top: 15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 20px;
    z-index: -2;
}

.hero-main-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    left: -20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 5px solid var(--accent);
    z-index: 20;
    min-width: 140px;
}

.experience-badge h3 {
    color: var(--primary);
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 2px;
}

.experience-badge p {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(48, 174, 178, 0.9) 0%, rgba(43, 77, 144, 0.9) 100%), url('gallery/home.jpeg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Stats */
.stats {
    background: linear-gradient(135deg, var(--primary) 0%, #269a9e 100%);
    padding: 60px 0;
    color: var(--white);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: 20px;
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 45px rgba(48, 174, 178, 0.3);
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* About Section & Images */
.about-image {
    background: #f0f7f9;
    border-radius: var(--radius);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.rounded-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Enhanced About Content */
.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.director-overview {
    background: linear-gradient(to right, #ffffff, #f0f7f9);
    border-radius: 30px;
    margin: 40px 0;
}

.director-content {
    padding: 40px;
}

.director-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: var(--primary-light);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 40px;
    border-radius: 40px;
    color: var(--white);
    text-align: center;
    margin: 60px 0;
}

.cta-box h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta-box .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cta-box .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* Services Section */
.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card a {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-card a i {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0;
    transition: transform 0.3s ease;
}

.service-card a:hover {
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.service-card a:hover i {
    transform: translateX(5px);
}

/* Service Block Card Details */
.service-block-card {
    padding: 0 !important;
    overflow: hidden;
    text-align: left;
    background: var(--white);
}

.service-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f8fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-block-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius) var(--radius) 0 0;
    transition: transform 0.6s ease;
    padding: 10px;
}

.service-block-card:hover .service-block-img {
    transform: scale(1.1);
}

.service-block-content {
    padding: 30px;
}

.service-block-content h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-block-content p {
    margin-bottom: 0;
    line-height: 1.7;
}

/* Contact Section */
.contact-info {
    padding-right: 40px;
}

.contact-details {
    margin-top: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Corrected .detail-item i for specific context */
.detail-item.small-icon i {
    font-size: 0.9rem !important;
    width: auto !important;
    height: auto !important;
}

/* Premium Product Page Overhaul - High-end UI */
.product-hero {
    background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
    padding: 0px 0 60px;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(43, 77, 144, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.product-gallery-premium {
    position: relative;
    z-index: 5;
    margin-top: -120px;
}

.main-image-wrapper {
    background: #fff;
    padding: 0px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(43, 77, 144, 0.08);
    position: relative;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.main-image-wrapper:hover {
    transform: scale(1.02);
}

.main-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(43, 77, 144, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    animation: floatVertical 4s ease-in-out infinite;
}

@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.product-info-premium h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a2b4d;
}

.product-info-premium h1 span {
    color: #30aeb2;
    display: block;
    font-weight: 800;
}

.premium-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #eef2ff;
    color: #30aeb2;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 20px;
}

.feature-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature-pill {
    background: #fff;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-pill:hover {
    border-color: #30aeb2;
    box-shadow: 0 10px 25px rgba(43, 77, 144, 0.05);
    transform: translateY(-5px);
}

.feature-pill i {
    font-size: 1.5rem;
    color: #30aeb2;
    background: #f5f8ff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.feature-pill strong {
    font-size: 1.1rem;
    color: #1a2b4d;
}

.feature-pill p {
    font-size: 0.9rem;
    color: #6a7485;
}

.premium-booking-card {
    background: linear-gradient(135deg, #1a2b4d 0%, #0d1526 100%);
    padding: 30px 40px;
    border-radius: 30px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-booking-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.booking-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.premium-btn-white {
    background: #30aeb2;
    color: #fff;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(48, 174, 178, 0.3);
    display: inline-block;
}

.premium-btn-white:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(48, 174, 178, 0.4);
    background: #268c8f;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-hero {
        padding: 60px 0;
    }

    .product-gallery-premium {
        margin-top: 0;
        margin-bottom: 30px;
    }

    .main-image-wrapper img {
        height: 350px;
    }

    .floating-badge {
        left: 20px;
        bottom: 20px;
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .main-image-wrapper img {
        height: 280px;
    }
    
    .product-info-premium h1 {
        font-size: 2rem;
    }
}

.detail-item h4 {
    margin-bottom: 5px;
}

.detail-item p {
    color: var(--text-muted);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-col h4 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    opacity: 0.7;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.social-links a:hover {
    background: var(--primary);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    border: none;
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {

    .grid-three,
    .grid-two {
        grid-template-columns: 1fr;
    }

    .grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
    }

    .stats {
        padding: 60px 20px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
    }

    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
    }

    .hero {
        padding: 60px 0 40px;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
    }

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

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

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .nav-cta {
        display: none !important;
    }

    .mobile-contact-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background-color: var(--primary);
        color: var(--white);
        border-radius: 50%;
        font-size: 1.1rem;
        box-shadow: 0 4px 10px rgba(48, 174, 178, 0.2);
    }

    .nav-mobile-only {
        display: block !important;
        margin-top: 10px;
    }

    .nav-mobile-only .btn {
        width: 100%;
        text-align: center;
    }

    .contact-info-mobile {
        margin-top: 20px;
        padding: 20px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        font-size: 0.95rem;
        color: var(--text-muted);
    }

    .contact-info-mobile a,
    .contact-info-mobile span {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-muted);
        transition: var(--transition);
    }

    .contact-info-mobile a:hover {
        color: var(--primary);
    }

    .contact-info-mobile i {
        color: var(--primary);
        width: 20px;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-image {
        margin-top: 10px;
    }

    /* Remove image backgrounds and specific padding for mobile */
    .hero-main-img {
        background-color: transparent !important;
        box-shadow: none !important;
    }

    .about-image {
        background: transparent !important;
        padding: 0 !important;
    }

    .image-box::after {
        display: none !important;
    }
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 600px) {
    .grid-four {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 25px 0;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: none;
        padding-top: 25px;
    }

    .top-bar {
        display: none;
    }
}

/* Premium ICU Details */
.stats-grid .stat-item,
.stats-grid div {
    text-align: center;
    border-top: 4px solid var(--primary);
}

.stats-grid h3 {
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.stats-grid p {
    color: var(--text-muted);
    font-weight: 500;
}

.value-card h4 {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.2rem;
}



.icu-feature-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--primary);
}

.experience-quote {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    padding-left: 30px;
}

.experience-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
}

/* Final, Solid ICU Task Card Fix */
.icu-task-card {
    background: var(--white);
    padding: 30px 25px 25px !important;
    border-radius: var(--radius);
    text-align: left !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.icu-task-card>i {
    display: inline-flex !important;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.icu-task-card h4 {
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 700;
}

.icu-task-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.icu-task-card ul li {
    display: block !important;
    position: relative !important;
    padding-left: 30px !important;
    margin-bottom: 12px !important;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.icu-task-card ul li i {
    position: absolute !important;
    left: 0 !important;
    top: -28px !important;
    color: var(--primary) !important;
    font-size: 0.9rem !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Patient Care Specific UI (Blue Theme) */
:root {
    --patient-warm: #30aeb2;
    /* Corporate Blue */
    --patient-bg: #fff;
}

.patient-care-section {
    background-color: var(--patient-bg);
}

.patient-care-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 140, 66, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.patient-care-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--patient-warm);
    transition: all 0.4s ease;
}

.patient-care-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.15);
}

.patient-care-card:hover::before {
    height: 100%;
}

.patient-care-card i {
    font-size: 2.5rem;
    color: var(--patient-warm);
    margin-bottom: 25px;
    display: inline-block;
}

.patient-care-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.patient-care-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Rounded Profile Images for Caregivers */
.profile-box {
    position: relative;
    text-align: center;
}

.profile-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 10px solid var(--white);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    margin: 0 auto;
}

.profile-image-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.profile-image-box img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.profile-decor {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--patient-warm);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    z-index: 5;
}

/* Footer Logo Specific Styling */
.footer .logo img {
    height: 140px;
    width: auto;
    max-width: 100%;
    margin-bottom: 10px;
}

/* Header Logo Visual Enlargement Without Expanding Header */
header .logo img {
    transform: scale(1.4);
    transform-origin: left center;
    position: relative;
    z-index: 1010;
}

/* Image Lightbox Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2500;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 36, 0.95);
    backdrop-filter: blur(8px);
}

.image-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes zoomIn {
    from {transform: scale(0.6); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #ffffff;
    font-size: 60px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary);
    transform: scale(1.1);
}

.no-scroll {
    overflow: hidden;
}