/* ==========================================================================
   Valexpert Enterprises Custom Stylesheet
   ========================================================================== */

/* Design System Tokens */
:root {
    --primary-blue: #101056;
    --premium-gold: #263459;
    --grey: #6B7280;
    --light-grey: #F5F5F7;
    --white: #FFFFFF;
    --dark-charcoal: #111827;
    --max-width: 1200px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset Elements */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--dark-charcoal);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Helper Grid & Flexbox Containers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 100px 0;
    }
}

.bg-light {
    background-color: var(--light-grey);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Typography elements */
.section-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--premium-gold);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-tagline.tag-gold {
    color: var(--premium-gold);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.section-title.text-white {
    color: var(--white);
}

.section-description {
    font-size: 16px;
    color: var(--grey);
    margin-bottom: 25px;
    line-height: 1.7;
}

.divider-gold {
    width: 60px;
    height: 3px;
    background-color: var(--premium-gold);
    margin: 20px 0;
}

.divider-gold.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.font-bold { font-weight: 700; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mr-10 { margin-right: 10px; }
.inline-flex { display: inline-flex; align-items: center; justify-content: center; }

/* Interactive Elements (Buttons) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-primary-gold {
    background-color: var(--premium-gold);
    color: var(--white);
}

.btn-primary-gold:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(38, 52, 89, 0.3);
}

.btn-primary-blue {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary-blue:hover {
    background-color: #1a1a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 16, 86, 0.2);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Scroll Reveal States */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Top Bar Styling */
.top-bar {
    background-color: #263459;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.top-info-item svg {
    color: var(--premium-gold);
}

.top-bar-right a.top-info-item:hover {
    color: var(--premium-gold);
}

.text-whatsapp svg {
    color: #25D366 !important;
}

/* Header & Main Navigation Rules */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    
}

.main-header.sticky {
    position: fixed;
    top: 0;
    background-color: #ffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-val {
    color: var(--white);
    font-size: 20px;
}

.logo-ent {
    color: var(--premium-gold);
    font-size: 20px;
    font-weight: 400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-smooth);
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--premium-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--premium-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Navigation Burger Toggle */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 26px;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

/* Hero Elements Layout */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: var(--premium-gold);
}

/* About Section Layout */
.about-section {
    background-color: var(--white);
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(185deg, rgba(16, 16, 86, 0.1), rgba(16, 16, 86, 0.4));
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Statistics Section styling */
.stats-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    align-items: center;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--premium-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-custom-text {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 800;
    color: var(--premium-gold);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Service Card Layout Rules */
.service-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--premium-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(16, 16, 86, 0.08);
    border-color: rgba(38, 52, 89, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 50px;
    height: 50px;
    color: var(--premium-gold);
    margin-bottom: 25px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.6;
}

/* Why Choose Us Dark Blue Cards */
.why-choose-section {
    background-color: var(--primary-blue);
    color: var(--white);
}

.why-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 35px 25px;
    transition: var(--transition-smooth);
    text-align: left;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    background-color: rgba(255, 255, 255, 0.07);
}

.why-icon {
    width: 44px;
    height: 44px;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.why-card-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

/* Specifications Table design */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    background: var(--white);
    border: 1px solid #E5E7EB;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
    min-width: 600px;
}

.specs-table th, .specs-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #E5E7EB;
}

.specs-table th {
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background-color: var(--light-grey);
}

.specs-table tr:hover {
    background-color: rgba(38, 52, 89, 0.04);
}

/* Industry Cards Grid */
.industry-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 30px 20px;
    transition: var(--transition-smooth);
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.industry-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Product Application Cards */
.app-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 30px 20px;
    transition: var(--transition-smooth);
}

.app-card:hover {
    border-color: var(--premium-gold);
    box-shadow: 0 10px 25px rgba(253, 253, 253, 0.04);
    transform: translateY(-4px);
}

.app-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.app-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Gallery Hover Grid and Zoom Elements */
.project-card {
    background-color: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
}

.project-img-wrapper {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-info {
    padding: 20px;
    text-align: left;
}

.project-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.project-cat {
    font-size: 13px;
    color: var(--grey);
}

/* Vision Section Styling */
.vision-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.vision-text {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Accordion FAQ Module */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--premium-gold);
    box-shadow: 0 4px 15px rgba(16, 16, 86, 0.04);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
}

.faq-question:hover {
    color: var(--premium-gold);
}

.faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--grey);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Form Design & Elements */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #E5E7EB;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.form-control {
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 14.5px;
    color: var(--dark-charcoal);
    background-color: var(--white);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-control:focus {
    border-color: var(--premium-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(38, 52, 89, 0.12);
}

.form-error {
    color: #DC2626;
    font-size: 12.5px;
    margin-top: 5px;
    display: none;
}

.required {
    color: #DC2626;
}

/* Call to Action Sections */
.cta-banner {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer & Sub-Footer Layout */
.footer {
    background-color: #0b0b3d;
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.brand-col .logo {
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.6;
}

.footer-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--premium-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--premium-gold);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact-info li svg {
    color: var(--premium-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    background-color: #080830;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Elements Styles */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-5px);
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--premium-gold);
}

/* Responsive Overrides (Mobile-First approach overrides) */
@media (max-width: 1023px) {
    .top-bar {
        display: none;
    }
    
    .main-header {
        top: 0;
        background-color: var(--primary-blue);
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-blue);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 105;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-cta-wrapper .btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .w-full-mobile {
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Valexpert Enterprises Custom Unified Stylesheet
   ========================================================================== */

/* Design System Tokens */
:root {
    --primary-blue: #101056;
    --premium-gold: #263459;
    --grey: #6B7280;
    --light-grey: #F5F5F7;
    --white: #FFFFFF;
    --dark-charcoal: #111827;
    --max-width: 1200px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset Elements */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--dark-charcoal);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Helper Grid & Flexbox Containers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 100px 0;
    }
}

.bg-light {
    background-color: var(--light-grey);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Typography elements */
.section-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--premium-gold);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-tagline.tag-gold {
    color: var(--premium-gold);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.section-title.text-white {
    color: var(--white);
}

.section-description {
    font-size: 16px;
    color: var(--grey);
    margin-bottom: 25px;
    line-height: 1.7;
}

.divider-gold {
    width: 60px;
    height: 3px;
    background-color: var(--premium-gold);
    margin: 20px 0;
}

.divider-gold.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.font-bold { font-weight: 700; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mr-10 { margin-right: 10px; }
.inline-flex { display: inline-flex; align-items: center; justify-content: center; }

/* Interactive Elements (Buttons) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-primary-gold {
    background-color: var(--premium-gold);
    color: var(--white);
}

.btn-primary-gold:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(38, 52, 89, 0.3);
}

.btn-primary-blue {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary-blue:hover {
    background-color: #1a1a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 16, 86, 0.2);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Scroll Reveal States */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Top Bar Styling */
.top-bar {
    background-color: #263459;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 199, 199, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
  
    text-decoration: none;
    transition: var(--transition-smooth);
}

.top-info-item svg {
    color: #ffffff;
}

.top-bar-right a.top-info-item:hover {
    color: #FFFFFF;
}

.text-whatsapp svg {
    color: #25D366 !important;
}

/* Header & Main Navigation Rules */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
}

.main-header.sticky {
    position: fixed;
    top: 0;
    background-color: #ffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-val {
    color: var(--white);
    font-size: 20px;
}

.logo-ent {
    color: var(--premium-gold);
    font-size: 20px;
    font-weight: 400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-smooth);
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--premium-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--premium-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Navigation Burger Toggle */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 26px;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

/* Page Hero Template Styles (Internal Subpages) */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--premium-gold);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--premium-gold);
}

/* Hero Elements Layout */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: var(--premium-gold);
}

/* About Section Layout */
.about-section {
    background-color: var(--white);
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(185deg, rgba(16, 16, 86, 0.1), rgba(16, 16, 86, 0.4));
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Statistics Section styling */
.stats-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    align-items: center;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--premium-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-custom-text {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 800;
    color: var(--premium-gold);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Service Detail Layout Cards (Used in services.php Grid) */
.service-detail-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(16, 16, 86, 0.08);
    border-color: rgba(38, 52, 89, 0.3);
}

.service-card-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-card:hover .service-card-img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.service-card-icon-wrapper {
    width: 44px;
    height: 44px;
    color: var(--premium-gold);
    margin-bottom: 18px;
}

.service-card-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 14.5px;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-features {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card-features li {
    font-size: 13.5px;
    color: var(--dark-charcoal);
    position: relative;
    padding-left: 22px;
}

.service-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--premium-gold);
    font-weight: 800;
}

.service-card-btn {
    margin-top: auto;
    width: 100%;
}

/* Core Value Cards (Used in about.php) */
.value-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    text-align: left;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--premium-gold);
    box-shadow: 0 12px 30px rgba(16, 16, 86, 0.05);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.value-card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.value-card-desc {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.6;
}

/* Why Choose Us Dark Blue Cards */
.why-choose-section {
    background-color: var(--primary-blue);
    color: var(--white);
}

.why-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 35px 25px;
    transition: var(--transition-smooth);
    text-align: left;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    background-color: rgba(255, 255, 255, 0.07);
}

.why-icon {
    width: 44px;
    height: 44px;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.why-card-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

/* Specifications Table design */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    background: var(--white);
    border: 1px solid #E5E7EB;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
    min-width: 600px;
}

.specs-table th, .specs-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #E5E7EB;
}

.specs-table th {
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background-color: var(--light-grey);
}

.specs-table tr:hover {
    background-color: rgba(38, 52, 89, 0.04);
}

/* Benefit Cards (Used in services.php) */
.benefit-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--premium-gold);
    box-shadow: 0 12px 30px rgba(16, 16, 86, 0.05);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.benefit-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.benefit-card-desc {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.6;
}

/* Industry Cards Grid */
.industry-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 30px 20px;
    transition: var(--transition-smooth);
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.industry-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Product Application Cards */
.app-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 30px 20px;
    transition: var(--transition-smooth);
}

.app-card:hover {
    border-color: var(--premium-gold);
    box-shadow: 0 10px 25px rgba(16,16,86,0.04);
    transform: translateY(-4px);
}

.app-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.app-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Gallery Hover Grid and Zoom Elements */
.project-card {
    background-color: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
}

.project-img-wrapper {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-info {
    padding: 20px;
    text-align: left;
}

.project-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.project-cat {
    font-size: 13px;
    color: var(--grey);
}

/* Vision Section Styling */
.vision-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.vision-text {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Implementation Process Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    padding-left: 30px;
    text-align: left;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 45px;
    height: 100%;
    width: 2px;
    background-color: #E5E7EB;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--premium-gold);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 1px #E5E7EB;
}

.timeline-content {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 25px 30px;
    width: 100%;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    border-color: var(--premium-gold);
    box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}

.timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 14.5px;
    color: var(--grey);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .timeline {
        padding-left: 0;
        display: flex;
        flex-direction: column;
    }
    
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        width: 50%;
        margin-bottom: 50px;
    }
    
    .timeline-item:nth-child(even) {
        align-self: flex-end;
        margin-left: 50%;
        padding-left: 40px;
        flex-direction: row;
    }
    
    .timeline-item:nth-child(odd) {
        align-self: flex-start;
        padding-right: 40px;
        flex-direction: row-reverse;
    }
    
    .timeline-item:nth-child(even) .timeline-badge {
        position: absolute;
        left: -16px;
        top: 25px;
    }
    
    .timeline-item:nth-child(odd) .timeline-badge {
        position: absolute;
        right: -16px;
        top: 25px;
    }
}

/* Accordion FAQ Module */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--premium-gold);
    box-shadow: 0 4px 15px rgba(16, 16, 86, 0.04);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
}

.faq-question:hover {
    color: var(--premium-gold);
}

.faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--grey);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Contact Details Cards (Used in contact.php Grid) */
.contact-info-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 35px 25px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    color: var(--premium-gold);
    margin: 0 auto 20px;
}

.info-card-icon svg {
    width: 100%;
    height: 100%;
}

.info-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card-value {
    font-size: 15px;
    color: var(--grey);
}

.info-card-value a {
    color: var(--grey);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.info-card-value a:hover {
    color: var(--premium-gold);
}

/* Why Contact Us Cards (Used in contact.php Grid) */
.why-contact-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 35px 25px;
    transition: var(--transition-smooth);
    text-align: left;
}

.why-contact-card:hover {
    border-color: var(--premium-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16,16,86,0.03);
}

.why-contact-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.why-contact-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.why-contact-desc {
    font-size: 13.5px;
    color: var(--grey);
    line-height: 1.6;
}

/* Google Map Container section */
.map-section {
    background-color: var(--light-grey);
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    background-color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 20px;
}

.map-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.map-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.map-subtitle {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 15px;
}

.map-hint {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--premium-gold);
}

/* Custom Contact & Quote Form Styling */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #E5E7EB;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.form-control {
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 14.5px;
    color: var(--dark-charcoal);
    background-color: var(--white);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-control:focus {
    border-color: var(--premium-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(38, 52, 89, 0.12);
}

.form-error {
    color: #DC2626;
    font-size: 12.5px;
    margin-top: 5px;
    display: none;
}

.required {
    color: #DC2626;
}

/* Structural CTA Banner section */
.cta-banner {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Section Layout */
.footer {
    background-color: #0b0b3d;
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.brand-col .logo {
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.6;
}

.footer-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--premium-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--premium-gold);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact-info li svg {
    color: var(--premium-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    background-color: #080830;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Elements Styles */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-5px);
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--premium-gold);
}

/* Responsive Viewport Overrides */
@media (max-width: 1023px) {
    .top-bar {
        display: none;
    }
    
    .main-header {
        top: 0;
        background-color: white;
    }
    
    .hamburger {
        display: flex;
    }

    /* 汉堡按钮容器 */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;          /* 线间距 */
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 4px;
}

/* 每条线 – 海军蓝 */
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #1a2a4a;   /* 海军蓝 */
  border-radius: 2px;
  transition: all 0.3s ease;    /* 平滑动画（可选） */
}
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background-color: rgb(189, 184, 209);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 105;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-cta-wrapper .btn {
        display: none;
    }
}


@media (max-width: 480px) {
    .w-full-mobile {
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-val,
.logo-ent {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
}

@media (max-width: 600px) {
  .logo img {
    width: 32px;
    height: 32px;
  }
  .logo-val,
  .logo-ent {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Valexpert Enterprises - Zigzag Services Layout (Mobile-First Setup)
   ========================================================================== */

.services-zigzag-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.zigzag-row {
    background-color: var(--white);
    border: 2px solid #000000;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.zigzag-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    width: 100%;
}

.zigzag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.zigzag-row:hover .zigzag-img {
    transform: scale(1.05);
}

.zigzag-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 16, 86, 0.05), rgba(16, 16, 86, 0.25));
}

.zigzag-body {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.zigzag-icon {
    width: 44px;
    height: 44px;
    color: var(--premium-gold);
    margin-bottom: 20px;
}

.zigzag-icon svg {
    width: 100%;
    height: 100%;
}

.zigzag-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.zigzag-desc {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.65;
    margin-bottom: 20px;
}

.zigzag-features {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zigzag-features li {
    font-size: 14px;
    color: var(--dark-charcoal);
    position: relative;
    padding-left: 24px;
}

.zigzag-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--premium-gold);
    font-weight: 800;
}

.zigzag-btn {
    align-self: flex-start;
    min-width: 160px;
}

@media (min-width: 992px) {
    .services-zigzag-section {
        padding: 100px 0;
    }

    .services-zigzag-container {
        gap: 100px;
    }

    .zigzag-row {
        display: flex;
        flex-direction: row;
        gap: 80px;
        align-items: center;
        border: 2px;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        border-radius: 0;
    }

    .zigzag-row:nth-child(even) {
        flex-direction: row-reverse;
    }

    .zigzag-img-wrapper, 
    .zigzag-body {
        flex: 1;
        width: 50%;
    }

    .zigzag-img-wrapper {
        border-radius: 8px;
        box-shadow: 0 12px 30px rgba(16, 16, 86, 0.06);
    }

    .zigzag-body {
        padding: 0;
    }

    .zigzag-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
    }
}

/* ==========================================================================
   Dropdown Navigation & Logo styling
   ========================================================================== */

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 8px;
    margin-left: 4px;
    transition: var(--transition-smooth);
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 1024px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(15px);
        background-color: var(--primary-blue);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 3px solid var(--premium-gold);
        border-radius: 4px;
        width: 240px;
        list-style: none;
        padding: 10px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }
    
    .nav-item-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-item-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-menu li a {
        display: block;
        padding: 10px 20px;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: var(--transition-smooth);
        text-align: left;
    }
    
    .dropdown-menu li a:hover {
        color: var(--premium-gold);
        background-color: rgba(255, 255, 255, 0.05);
        padding-left: 25px;
    }
}

@media (max-width: 1023px) {
    .dropdown-menu {
        display: none;
        list-style: none;
        background-color: rgba(255, 255, 255, 0.04);
        width: 100%;
        padding: 5px 0;
        border-radius: 4px;
        margin-top: 10px;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-menu li a {
        display: block;
        padding: 10px 20px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 15px;
        text-align: center;
        transition: var(--transition-smooth);
    }
    
    .dropdown-menu li a:hover {
        color: var(--premium-gold);
    }
    
    .nav-item-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
}

.zigzag-row {
    scroll-margin-top: 120px;
}

/* ==========================================================================
   Valexpert Enterprises - Full Gallery Subpage Styling
   ========================================================================== */

.filter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.filter-btn {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid rgba(16, 16, 86, 0.15);
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, 
.filter-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 576px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.gallery-item.hide {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

.gallery-item.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.gallery-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #E5E7EB;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    box-shadow: 0 10px 30px rgba(16, 16, 86, 0.06);
}

.gallery-img-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 16, 86, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.zoom-icon {
    font-size: 24px;
    color: var(--white);
    transform: scale(0.7);
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover .zoom-icon {
    transform: scale(1);
}

.gallery-info {
    padding: 24px 20px;
    text-align: left;
}

.gallery-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.4;
    margin-bottom: 6px;
}

.gallery-card-cat {
    font-size: 12.5px;
    color: var(--premium-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(11, 11, 61, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--white);
    padding: 20px 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--premium-gold);
    text-decoration: none;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   Valexpert Enterprises - Edge-To-Edge Service Card Images
   ========================================================================== */

.services-section .grid-3 {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .services-section .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-section .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    text-align: left;
    height: 100%;
    padding: 0 !important;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(16, 16, 86, 0.08);
    border-color: rgba(38, 52, 89, 0.3);
}

.service-card-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    width: 100%;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img {
    transform: scale(1.06);
}

.service-card-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    line-height: 1.35;
}

.service-card-desc {
    color: var(--grey);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hero Section Container */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(16, 16, 86, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    padding: 0;
}

.slider-btn:hover {
    background-color: #101056;
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    .prev-btn {
        left: 15px;
    }
    .next-btn {
        right: 15px;
    }
}

.hero-actions {
    margin-top: 25px;
}

.btn-navy {
    display: inline-block;
    background-color: #101056 !important;
    color: #ffffff !important;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #101056;
    border-radius: 4px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-navy:hover {
    background-color: #ffffff !important;
    color: #101056 !important;
    border-color: #ffffff;
}










/* Base Section Styling */
.about-clinic-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    color: #333333;
}

.about-clinic-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

/* --- Left Column Style (Text) --- */
.about-text-col {
    display: flex;
    flex-direction: column;
}

/* Header Elements */
.welcome-header {
    text-align: center;
    margin-bottom: 25px;
}

.welcome-title {
    font-size: 24px;
    font-weight: 500;
    color: #101056;
    margin: 0 0 8px 0;
}

.brand-name {
    font-weight: 700;
}

.welcome-sub {
    font-size: 13px;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.header-divider {
    width: 60px;
    height: 1px;
    background-color: #cccccc;
    margin: 15px auto 0 auto;
}

/* Doctor Profile Header */
.doctor-profile-header {
    text-align: center;
    margin-bottom: 25px;
}

.doctor-name {
    font-size: 32px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 8px 0;
}

.doctor-degrees {
    font-size: 16px;
    font-weight: 600;
    color: #444444;
    margin: 0 0 6px 0;
}

.doctor-diploma {
    font-size: 13.5px;
    color: #666666;
    margin: 0;
}

/* Bio Content */
.doctor-bio-content {
    line-height: 1.6;
    font-size: 14.5px;
    color: #4a4a4a;
    text-align: justify;
}

.doctor-bio-content p {
    margin: 0 0 16px 0;
}

.bio-link {
    color: #1e60c4;
    text-decoration: none;
    font-weight: 500;
}

.bio-link:hover {
    text-decoration: underline;
}

/* Read More Button */
.about-actions {
    margin-top: 15px;
    text-align: left;
}

.btn-read-more {
    display: inline-block;
    background-color: #101056;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.btn-read-more:hover {
    background-color: #1b1b75;
}

/* --- Right Column Style (Media) --- */
.about-media-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    /* Leaves space at bottom-right for the overlapping thumbnail */
    padding-bottom: 120px; 
}

/* Main Portrait Block */
.main-portrait-box {
    position: relative;
    width: 90%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.main-portrait-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

/* Image Slide Control Overlay */
.image-nav-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 6px;
    z-index: 5;
}

.img-nav-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.img-nav-btn:hover {
    background-color: #101056;
}

.img-nav-btn svg {
    width: 18px;
    height: 18px;
}

/* Overlapping Thumbnail */
.overlapping-thumbnail {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 50%;
    aspect-ratio: 1.1 / 1;
    border: 8px solid #ffffff;
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    overflow: hidden;
    z-index: 4;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Responsive Layout Rules --- */
@media (max-width: 992px) {
    .about-clinic-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-actions {
        text-align: center;
    }

    .media-wrapper {
        max-width: 380px;
        padding-bottom: 90px;
    }
}

@media (max-width: 480px) {
    .doctor-name {
        font-size: 26px;
    }
    
    .media-wrapper {
        padding-bottom: 70px;
    }

    .overlapping-thumbnail {
        border-width: 4px;
    }
}




/* Services Section Container */
.services-section {
    padding: 80px 20px;
    background-color: #f3f3f3;
    /* Subtle background grid pattern to mimic the original screenshot */
    background-image: 
        linear-gradient(rgba(225, 225, 225, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(225, 225, 225, 0.4) 1px, transparent 1px);
    background-size: 40px 40px;
    font-family: Arial, sans-serif;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.services-title {
    font-size: 32px;
    font-weight: 700;
    color: #111111;
    margin: 15px 0;
    letter-spacing: 0.5px;
}

.services-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.services-subtitle strong {
    font-weight: 700;
}

.header-line-top,
.header-line-bottom {
    width: 40px;
    height: 1px;
    background-color: #b5b5b5;
    margin: 0 auto;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Service Card Container */
.service-card {
    position: relative;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

/* Card Background Image & Zoom effect */
.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

/* Card Dark Overlay Gradient */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient starts transparent at top, transition to dark at bottom */
    background: linear-gradient(
        to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.1) 100%
    );
    transition: background 0.4s ease;
    z-index: 2;
}

/* Card Content Container */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Title Styling */
.card-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    transition: transform 0.4s ease;
}

/* "Read More" Button styling (Hidden by default) */
.card-read-more {
    display: inline-block;
    background-color: #c59b27; /* Gold/Ochre color from the screenshot */
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 2px;
    
    /* Animation Properties */
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    margin-top: 0;
    transform: translateY(20px);
    transition: 
        opacity 0.35s ease, 
        transform 0.35s ease, 
        visibility 0.35s ease, 
        max-height 0.35s ease, 
        margin-top 0.35s ease;
}

/* --- Hover States --- */

/* 1. Zoom Background Image */
.service-card:hover .card-bg-img {
    transform: scale(1.08);
}

/* 2. Deepen Overlay Darkness */
.service-card:hover .card-overlay {
    background: linear-gradient(
        to top, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.55) 60%, 
        rgba(0, 0, 0, 0.2) 100%
    );
}

/* 3. Make Title and Button interact gracefully */
.service-card:hover .card-title {
    transform: translateY(0);
}

/* 4. Reveal "Read More" Button */
.service-card:hover .card-read-more {
    opacity: 1;
    visibility: visible;
    max-height: 40px; /* Expands to fit the button height */
    margin-top: 15px;
    transform: translateY(0);
}

/* --- Responsive Layout adjustments --- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-title {
        font-size: 28px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .service-card {
        height: 340px;
    }
    /* Always show the read more button on touch devices */
    .card-read-more {
        opacity: 1;
        visibility: visible;
        max-height: 40px;
        margin-top: 15px;
        transform: translateY(0);
    }
}





/* --- Global Section Settings --- */
.explore-services-section {
    width: 100%;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* --- 1. Top Cyan Banner Styling --- */
.services-banner-top {
    background-color: #d1f3fd; /* Light pastel cyan/blue background */
    padding: 60px 20px;
    text-align: center;
}

.banner-container {
    max-width: 960px;
    margin: 0 auto;
}

.banner-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
}

.banner-lead {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 20px 0;
}

/* Link in Lead paragraph */
.banner-link {
    color: #2c6cb0;
    text-decoration: none;
    font-weight: 700;
}

.banner-link:hover {
    text-decoration: underline;
}

.banner-description {
    font-size: 13.5px;
    color: #555555;
    margin: 0 auto 30px auto;
    max-width: 860px;
}

/* Anchor link inside description */
.banner-link-accent {
    color: #1e59a6;
    text-decoration: none;
    font-weight: 700;
}

.banner-link-accent:hover {
    text-decoration: underline;
}

/* Teal Button */
.btn-teal {
    display: inline-block;
    background-color: #1abc9c; /* Bright turquoise / teal */
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-teal:hover {
    background-color: #16a085;
}

/* --- 2. Bottom Informational Blocks Styling --- */
.services-info-bottom {
    background-color: #ffffff;
    padding: 60px 20px;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-heading {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    text-align: left;
}

.info-text {
    font-size: 14px;
    color: #666666;
    margin: 0;
    text-align: left;
    line-height: 1.7;
}

.info-text strong {
    color: #444444;
    font-weight: 700;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .services-banner-top {
        padding: 40px 15px;
    }
    
    .services-info-bottom {
        padding: 40px 15px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-lead {
        font-size: 15px;
    }

    .info-heading {
        font-size: 16px;
    }

    .info-container {
        gap: 30px;
    }
}




/* --- Base Styling --- */
.care-process-section {
    background-color: #000000;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
    color: #ffffff;
    overflow: hidden;
}

/* --- Header Section (Title with accent lines) --- */
.care-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 90px; /* Generous gap to leave space for the bracket drop lines */
}

.care-section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: none;
    letter-spacing: 0.5px;
}

.title-line {
    width: 60px;
    height: 1.5px;
    background-color: #444444;
}

/* --- Steps Wrapper & Bracket Logic --- */
.steps-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* The horizontal bar of the hanging bracket line */
.steps-container::before {
    content: '';
    position: absolute;
    top: -45px;
    left: 12.5%; /* Connects exactly to center of column 1 */
    right: 12.5%; /* Connects exactly to center of column 4 */
    height: 2px;
    background-color: #444444;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* --- Individual Step Card --- */
.step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Vertical drop line of the hanging bracket line */
.step-card::before {
    content: '';
    position: absolute;
    top: -45px;
    left: 50%;
    width: 2px;
    height: 45px;
    background-color: #444444;
    transform: translateX(-50%);
    z-index: 1;
}

/* --- Circle Element --- */
.circle-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    z-index: 2; /* Sits on top of vertical drop lines */
}

/* Number badge overlapping the circle top-left */
.step-number {
    position: absolute;
    top: 10px;
    left: -2px;
    width: 32px;
    height: 32px;
    background-color: #2e3135;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 44px;
    height: 44px;
}

/* --- Texts --- */
.step-title {
    color: #09b1a4; /* Medium teal accent color */
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.step-desc {
    color: #b5b5b5; /* Light grey copy text */
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
    max-width: 260px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    /* Hide bracket lines when grid collapses */
    .steps-container::before {
        display: none;
    }
    
    .step-card::before {
        display: none;
    }

    .care-section-title {
        margin-bottom: 50px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .care-section-title h2 {
        font-size: 24px;
    }

    .title-line {
        width: 40px;
    }
}





/* --- Gallery Section Container --- */
.gallery-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    color: #333333;
}

.gallery-container {
    max-width: 1240px;
    margin: 0 auto;
}

/* --- Header Styling --- */
.gallery-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.gallery-title {
    font-size: 30px;
    font-weight: 700;
    color: #101056;
    margin: 0 0 16px 0;
}

.gallery-subtitle {
    font-size: 14.5px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.gallery-subtitle strong {
    color: #333333;
    font-weight: 700;
}

/* --- Slider Core Structure --- */
.gallery-slider-wrapper {
    position: relative;
    width: 100%;
}

.gallery-viewport {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 15px;
    transition: transform 0.45s ease-in-out;
}

.gallery-slide {
    flex: 0 0 calc(33.333% - 10px);
    box-sizing: border-box;
}

.gallery-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* --- Navigation Floating Arrows --- */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(16, 16, 86, 0.4);
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.gallery-arrow:hover {
    background-color: #101056;
    transform: translateY(-50%) scale(1.08);
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

.gallery-arrow svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* --- Navigation Dots (Hidden on Desktop/Tablet) --- */
.gallery-dots {
    display: none; /* Hidden on Desktop & Tablet */
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.gallery-dot.active {
    background-color: #101056; /* Active Navy Blue */
    transform: scale(1.25);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .gallery-slide {
        flex: 0 0 calc(50% - 7.5px);
    }
}

@media (max-width: 768px) {
    .gallery-slide {
        flex: 0 0 100%;
    }
    
    .gallery-img {
        height: 400px;
    }
    
    .gallery-title {
        font-size: 24px;
    }

    .gallery-arrow {
        width: 38px;
        height: 38px;
    }

    /* --- Show Dots only on Mobile --- */
    .gallery-dots {
        display: flex;
    }
}


/* --- Section Base --- */
.feedback-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    color: #333333;
}

.feedback-container {
    max-width: 1240px;
    margin: 0 auto;
}

/* --- Section Header --- */
.feedback-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.feedback-title {
    font-size: 28px;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

.header-line {
    width: 60px;
    height: 1.5px;
    background-color: #cccccc;
}

/* --- Slider & Viewport Structure --- */
.feedback-slider-wrapper {
    position: relative;
    width: 100%;
}

.feedback-viewport {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.feedback-track {
    display: flex;
    gap: 30px;
    transition: transform 0.45s ease-in-out;
}

/* Slide Base Width (2 columns on desktop) */
.feedback-slide {
    flex: 0 0 calc(50% - 15px);
    box-sizing: border-box;
    padding-left: 40px;
}

/* --- Testimonial Card Frame --- */
.card-frame {
    position: relative;
    background-color: #ffffff;
    border: 8px solid #ebebeb;
    padding: 40px 40px 40px 65px;
    min-height: 290px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Top-Left Corner Cutout Mask */
.card-frame::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    z-index: 1;
}

/* --- Avatar Layout & Border Gap Masking --- */
.avatar-wrapper {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.avatar-circle {
    width: 66px;
    height: 66px;
    background-color: #adcbf7;
    border-radius: 50%;
    border: 3px solid #7ea7e4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-circle svg {
    width: 46px;
    height: 46px;
    margin-top: 10px;
}

/* --- Content Typography --- */
.feedback-text {
    font-size: 14.5px;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 20px 0;
    text-align: left;
}

.feedback-author {
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    margin: 0;
    text-align: left;
}

/* --- Double Quotes Icon --- */
.quote-icon {
    position: absolute;
    bottom: 25px;
    right: 30px;
    width: 44px;
    height: 44px;
    opacity: 0.12;
    pointer-events: none;
}

/* --- Navigation Arrows (Default Desktop Styling) --- */
.feedback-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(16, 16, 86, 0.45);
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.feedback-arrow:hover {
    background-color: #101056;
    transform: translateY(-50%) scale(1.08);
}

.prev-arrow {
    left: -20px; /* Extends past outer boundaries on desktop */
}

.next-arrow {
    right: -20px;
}

.feedback-arrow svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* --- Navigation Dots (Mobile Only) --- */
.feedback-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.feedback-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.feedback-dot.active {
    background-color: #101056;
    transform: scale(1.25);
}

/* --- Tablet Responsiveness --- */
@media (max-width: 992px) {
    .feedback-slide {
        flex: 0 0 100%;
        padding-left: 40px;
    }

    /* Bring buttons inward so they do not fall off the screen edges */
    .prev-arrow {
        left: 5px; 
    }
    .next-arrow {
        right: 5px;
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    /* Scale down the button dimensions slightly to fit small mobile screens */
    .feedback-arrow {
        width: 36px;
        height: 36px;
    }

    .feedback-dots {
        display: flex; /* Keep dots visible below 768px */
    }

    .feedback-title {
        font-size: 24px;
    }

    .header-line {
        width: 40px;
    }

    .card-frame {
        padding: 35px 25px 35px 50px;
    }

    .feedback-text {
        font-size: 13.5px;
    }
}



/* --- FAQ Section Container --- */
.faq-section {
    padding: 80px 20px;
    background-color: #fafbfc; /* Subtle modern light layout tint */
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
}

.faq-container {
    max-width: 720px; /* Snug width to avoid overly stretched boxes */
    margin: 0 auto;
}

.faq-main-title {
    font-size: 26px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 35px;
    text-align: left;
    letter-spacing: -0.3px;
}

/* --- Accordion Group --- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacious gaps between modern cards */
}

/* --- Individual Accordion Card --- */
.faq-item {
    background-color: #ffffff;
    border: 1px solid rgba(16, 16, 86, 0.08);
    border-left: 4px solid transparent; /* Hidden left vertical indicator */
    border-radius: 8px; /* Smooth rounded corners */
    box-shadow: 0 4px 12px rgba(16, 16, 86, 0.02); /* Extremely soft, premium shadow */
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Elevated Card Effect */
.faq-item:hover {
    border-color: rgba(16, 16, 86, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16, 16, 86, 0.05);
}

/* Active Highlight Card State */
.faq-item.active {
    border-color: rgba(16, 16, 86, 0.15);
    border-left-color: #101056; /* Accent Navy Blue indicators slides in */
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(16, 16, 86, 0.08);
}

/* --- Toggle Button --- */
.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none; /* Removed grey background blocks */
    border: none;
    padding: 20px 24px;
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600; /* Sophisticated semi-bold weight */
    color: #222222;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-item.active .faq-toggle {
    color: #101056; /* Navy text on active */
}

/* --- Click Target Bug Fixes --- */
/* Disables pointer capture on elements inside button to guarantee click captures anywhere on the card block */
.faq-question, 
.faq-chevron {
    pointer-events: none; 
}

.faq-question {
    padding-right: 20px;
    line-height: 1.5;
}

/* --- SVG Chevron Animation --- */
.faq-chevron {
    width: 18px;
    height: 18px;
    color: #777777;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.faq-item.active .faq-chevron {
    color: #101056;
    transform: rotate(180deg); /* Modern elegant flip orientation */
}

/* --- Collapsible Content Height Animation --- */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 24px 20px 24px;
    font-size: 14px;
    line-height: 1.65;
    color: #555555;
}

.faq-answer-inner p {
    margin: 0;
}

.faq-answer-inner strong {
    color: #222222;
    font-weight: 700;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 600px) {
    .faq-section {
        padding: 50px 15px;
    }

    .faq-main-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .faq-toggle {
        padding: 16px 20px;
        font-size: 14px;
    }

    .faq-answer-inner {
        padding: 0 20px 16px 20px;
        font-size: 13.5px;
    }
}



/* --- Footer General Structure --- */
.footer {
    background-color: #0d0d0e; /* Clean, very dark gray/black background */
    padding: 70px 0 20px 0;
    color: #e4e4e9;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr; /* 3-column layout matching image ratio */
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* --- Brand Column --- */
.footer-logo-box {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 190px;
    height: auto;
    object-fit: contain;
    background-color: #ffffff; /* White card layout background for clinic logo */
    padding: 6px 12px;
    border-radius: 4px;
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #b5b5c3; /* Lighter slate gray for high readability */
    margin: 0;
}

/* --- Socials (Matching Dark Blue background circle) --- */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #263459; /* Brand Navy/Dark Blue circle backdrops */
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.25s ease, opacity 0.2s ease;
}

.social-icon:hover {
    background-color: #384d85;
    opacity: 0.95;
}

/* --- Column Titles (With decorative underlines) --- */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Accent border matching screenshot layout */
}

/* --- List items & Lightning Icons --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.link-bolt-icon {
    color: #ffffff; /* Matches the white bolts shown in screenshot */
    flex-shrink: 0;
}

.footer-links a {
    color: #b5b5c3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* --- Footer Bottom Copyright --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888896;
    margin: 0;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* --- Mobile Breakpoints --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Stack columns vertically on mobile and tablets */
        gap: 35px;
    }
    
    .footer {
        padding: 50px 0 20px 0;
    }
}


/* --- About Us Section Style --- */
.about-us-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Space between text and image */
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    align-items: center; /* Vertically centers content if one column is taller */
}

.about-us-content {
    flex: 1 1 500px; /* Text column scales up to fill space, but won't shrink below 500px before wrapping */
}

.about-us-title {
    font-size: 32px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 20px 0;
}

.about-us-content p {
    font-size: 15px;
    line-height: 1.65;
    color: #555555;
    margin: 0 0 20px 0;
}

.about-us-content p strong {
    color: #222222;
    font-weight: 700;
}

.about-us-media {
    flex: 1 1 400px; /* Image column adapts seamlessly down to 400px before wrapping */
}

.about-us-img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* --- Mobile / Tablet Adaptations --- */
@media (max-width: 768px) {
    .about-us-container {
        gap: 30px;
        margin: 40px auto;
    }
    
    .about-us-title {
        font-size: 26px;
    }
    
    .about-us-content p {
        font-size: 14px;
    }
}


/* --- Vision & Mission Section Styles --- */
.vision-mission-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.vision-mission-container {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    align-items: center;
}

/* Media Column (Left) */
.vision-mission-media {
    position: relative;
    flex: 1 1 450px; /* Adapts cleanly down to 450px before wrapping */
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.vision-mission-img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    display: block;
}

/* Floating Navigation Arrows */
.media-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background-color 0.25s ease;
}

.media-arrow:hover {
    background-color: #263459; /* Brand dark blue highlights on hover */
}

.prev-media {
    left: 15px;
}

.next-media {
    right: 15px;
}

.media-arrow svg {
    width: 18px;
    height: 18px;
}

/* Content Column (Right) */
.vision-mission-content {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 30px; /* Space between Vision and Mission blocks */
}

.content-block {
    display: flex;
    flex-direction: column;
}

.block-title {
    font-size: 26px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 12px 0;
}

.block-text {
    font-size: 14.5px;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

/* --- Responsive Adaptations --- */
@media (max-width: 768px) {
    .vision-mission-section {
        padding: 40px 15px;
    }
    
    .vision-mission-container {
        gap: 30px;
    }

    .block-title {
        font-size: 22px;
    }

    .block-text {
        font-size: 14px;
    }
    
    .media-arrow {
        width: 32px;
        height: 32px;
    }
}



/* --- Services & Facilities Section Styles --- */
.services-facilities-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
}

.services-facilities-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Centered Title */
.services-fac-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #101056; /* Navy blue brand color */
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -0.3px;
}

/* Grid Layout */
.services-fac-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Left column is slightly wider */
    gap: 40px;
    align-items: start;
}

/* --- Left Column: Services Panel --- */
.services-list-panel {
    border: 1px solid #cce3f5; /* Light blue border frame from screenshot */
    border-radius: 4px;
    background-color: #ffffff;
}

.service-category-box {
    padding: 22px 30px;
    border-bottom: 1px solid #cce3f5; /* Horizontal rules separating items */
}

/* Removes bottom border from the final category box */
.service-category-box:last-child {
    border-bottom: none;
}

.category-title {
    font-size: 15px;
    font-weight: 700;
    color: #101056;
    margin: 0 0 12px 0;
}

.category-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-items li {
    font-size: 13.5px;
    color: #555555;
    padding-left: 15px; /* Slight indent to match design */
    line-height: 1.5;
}

/* --- Right Column: Stacked Images --- */
.services-media-panel {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Space between top and bottom photos */
}

.media-box {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.fac-media-img {
    width: 100%;
    height: auto;
    
    object-fit: cover;
    display: block;
}

/* --- Responsive Adaptability Rules --- */
@media (max-width: 992px) {
    .services-fac-grid {
        grid-template-columns: 1fr; /* Collapse grid into single column layout */
        gap: 30px;
    }
    
    .services-facilities-section {
        padding: 50px 15px;
    }

    .services-fac-main-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .service-category-box {
        padding: 20px;
    }
}




/* --- Modern Contact Section Style --- */
.contact-section {
    padding: 80px 20px;
    background-color: #fafbfc; /* Light clean warm-grey backdrop tint */
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    color: #333333;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Left details column is slightly wider */
    gap: 60px;
    align-items: start;
}

.contact-sec-title {
    font-size: 26px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 30px 0;
    letter-spacing: -0.3px;
}

/* --- Left Column: Info Card --- */
.contact-card {
    background-color: #ffffff;
    border: 1px solid rgba(16, 16, 86, 0.08);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(16, 16, 86, 0.02);
}

.clinic-title {
    font-size: 19px;
    font-weight: 700;
    color: #101056; /* Navy blue brand color */
    margin: 0 0 30px 0;
    line-height: 1.4;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.info-item:last-child {
    margin-bottom: 0;
}

/* Glowing rounded icon box container */
.info-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(16, 16, 86, 0.05); /* Faint navy blue overlay */
    color: #101056;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-icon-box svg {
    width: 20px;
    height: 20px;
}

.info-text-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #101056;
    margin: 0 0 5px 0;
}

.info-text-box p, 
.info-text-box a {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
    text-decoration: none;
    transition: color 0.25s ease;
}

.info-text-box a:hover {
    color: #101056;
    text-decoration: underline;
}

/* --- Right Column: Modern Input Forms --- */
.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    position: relative;
    width: 100%;
}

.modern-contact-form input,
.modern-contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    background-color: #ffffff;
    border: 1px solid rgba(16, 16, 86, 0.12); /* Clean high-end grey border tint */
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: 14.5px;
    color: #111111;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Placeholder Styling */
.modern-contact-form input::placeholder,
.modern-contact-form textarea::placeholder {
    color: #888888;
}

/* Smooth Interactive Focus Highlights */
.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: #101056;
    box-shadow: 0 4px 15px rgba(16, 16, 86, 0.08); /* Glow shadow on focus */
}

.modern-contact-form textarea {
    resize: vertical;
}

/* --- Sending Button (Modernised Gold Ochre) --- */
.form-action {
    text-align: left;
    margin-top: 10px;
}

.btn-send {
    display: inline-block;
    background-color: #b59049; /* Ochre gold color matching the image design */
    color: #ffffff;
    border: none;
    padding: 13px 44px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(181, 144, 73, 0.25);
    transition: all 0.3s ease;
}

.btn-send:hover {
    background-color: #9d7735;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 18px rgba(181, 144, 73, 0.35);
}

/* --- Responsive Adaptations --- */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stack into a single column layout */
        gap: 50px;
    }
    
    .contact-section {
        padding: 50px 15px;
    }

    .contact-sec-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contact-card {
        padding: 30px;
    }
}



/* --- Full-Width Google Map Section Style --- */
.map-section {
    width: 100%;
    height: 450px; /* Standard visible height for locator maps */
    background-color: #f3f4f6; /* Flat grey loading placeholder */
    overflow: hidden;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.03); /* Subtle inner shadow on layout boundaries */
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* --- Mobile Adaptations --- */
@media (max-width: 768px) {
    .map-section {
        height: 320px; /* Slightly shorter viewport height for mobile devices */
    }
}



/* --- Appointment Section Styling --- */
.appointment-section {
    padding: 80px 20px;
    background-color: #fafbfc; /* Soft modern warm-grey backdrop */
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    color: #333333;
}

.appointment-container {
    max-width: 800px; /* Centered, tighter width specifically for form cards */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Header & Intro Content --- */
.appointment-header {
    text-align: center;
    max-width: 600px;
    margin-bottom: 45px;
}

.appointment-title {
    font-size: 32px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.appointment-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* --- Form Container Card --- */
.appointment-card {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(16, 16, 86, 0.08);
    border-radius: 8px;
    padding: 45px;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(16, 16, 86, 0.02); /* Extremely subtle glow shadow */
}

/* --- Form Input Fields --- */
.modern-appointment-form {
    display: flex;
    flex-direction: column;
    gap: 18px; /* Balanced vertical grid gap */
}

.form-group {
    width: 100%;
    position: relative;
}

.modern-appointment-form input,
.modern-appointment-form textarea {
    width: 100%;
    padding: 15px 18px;
    background-color: #ffffff;
    border: 1px solid rgba(16, 16, 86, 0.12); /* Delicate slate grey outline */
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: 14.5px;
    color: #111111;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Input Placeholder */
.modern-appointment-form input::placeholder,
.modern-appointment-form textarea::placeholder {
    color: #888888;
}

/* Interactive Focus Highlights */
.modern-appointment-form input:focus,
.modern-appointment-form textarea:focus {
    outline: none;
    border-color: #101056; /* Navy brand border on focus */
    box-shadow: 0 4px 15px rgba(16, 16, 86, 0.08); /* Glow effect on focus */
}

.modern-appointment-form textarea {
    resize: vertical;
}

/* --- Submit Button (Ochre Gold) --- */
.form-action {
    text-align: left;
    margin-top: 5px;
}

.btn-submit {
    display: inline-block;
    background-color: #b59049; /* Styled gold/ochre from screenshot */
    color: #ffffff;
    border: none;
    padding: 13px 48px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(181, 144, 73, 0.25);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #9d7735;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 18px rgba(181, 144, 73, 0.35);
}

/* --- Responsive Layout adjustments --- */
@media (max-width: 768px) {
    .appointment-section {
        padding: 50px 15px;
    }

    .appointment-title {
        font-size: 26px;
    }

    .appointment-subtitle {
        font-size: 14px;
    }

    .appointment-card {
        padding: 30px 20px; /* Tighter padding on mobile viewports */
    }
}



/* --- Gynaecology Care Section Styles --- */
.gyn-care-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
}

.gyn-care-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Centered Title styling */
.gyn-care-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #101056; /* Brand navy blue color */
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -0.3px;
}

/* Grid Layout Split */
.gyn-care-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr; /* Left column is wider for text balance */
    gap: 45px;
    align-items: start;
}

/* --- Left Column text block flow --- */
.gyn-care-text-col {
    display: flex;
    flex-direction: column;
}

.gyn-info-block {
    margin-bottom: 24px;
}

.gyn-info-block:last-child {
    margin-bottom: 0;
}

.gyn-block-title {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 8px 0;
}

.gyn-block-text {
    font-size: 13.5px;
    line-height: 1.65;
    color: #555555;
    margin: 0;
    text-align: justify;
}

/* --- Right Column stacked images --- */
.gyn-care-media-col {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Vertical gap between stacked photos */
    position: sticky;
    top: 100px; /* Anchors the media column while scrolling text on desktop */
}

.gyn-media-box {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.gyn-media-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3; /* Matches rectangular photo proportions */
    object-fit: cover;
    display: block;
}

/* --- Responsive Layout adjustments --- */
@media (max-width: 992px) {
    .gyn-care-grid {
        grid-template-columns: 1fr; /* Collapse grid into single column layout */
        gap: 35px;
    }
    
    .gyn-care-section {
        padding: 50px 15px;
    }

    .gyn-care-main-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .gyn-block-title {
        font-size: 16px;
    }

    .gyn-block-text {
        font-size: 13px;
    }
}





/* ==========================================================================
   GLOBAL SERVICES DETAIL PAGE LAYOUT
   ========================================================================== */

.service-detail-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Center-aligned Page Title */
.service-detail-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #101056; /* Brand navy blue color */
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -0.3px;
}

/* Reusable Grid Split */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr; /* Keeps text column slightly wider than media */
    gap: 45px;
    align-items: start;
}

/* --- Left Column: Text Flow --- */
.service-detail-text-col {
    display: flex;
    flex-direction: column;
}

.service-detail-block {
    margin-bottom: 28px;
}

.service-detail-block:last-child {
    margin-bottom: 0;
}

.service-detail-block-title {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 8px 0;
}

.service-detail-block-text {
    font-size: 13.5px;
    line-height: 1.65;
    color: #555555;
    margin: 0;
    text-align: justify;
}

/* --- Right Column: Stacked Media --- */
.service-detail-media-col {
    position: relative;
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between multiple images */
}

/* Sticky behavior: Images lock onto desktop viewports while scrolling through long text blocks */
@media (min-width: 993px) {
    .service-detail-media-col {
        position: sticky;
        top: 100px; /* Aligns comfortably below your navigation header */
    }
}

.service-detail-media-box {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-detail-media-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

/* --- Responsive Adaptations (Mobile & Tablet) --- */
@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr; /* Collapses to single column */
        gap: 35px;
    }
    
    .service-detail-section {
        padding: 50px 15px;
    }

    .service-detail-main-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .service-detail-block-title {
        font-size: 16px;
    }

    .service-detail-block-text {
        font-size: 13px;
        text-align: left; /* Switch to natural left alignment on mobile viewports */
    }
}












/* --- Welcome Section Base --- */
.welcome-clinic-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
}

.welcome-clinic-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr; /* Keeps text layout slightly wider for reading balance */
    gap: 50px;
    align-items: center;
}

/* --- Left Column: Welcome Text --- */
.welcome-content-col {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center-aligns title block and button */
    text-align: center;
}

/* Header & Line Divider */
.welcome-header {
    margin-bottom: 30px;
}

.welcome-main-title {
    font-size: 26px;
    font-weight: 500;
    color: #101056; /* Brand navy blue */
    margin: 0 0 12px 0;
}

.brand-bold {
    font-weight: 700;
}

.welcome-line-divider {
    width: 60px;
    height: 1px;
    background-color: #cccccc;
    margin: 0 auto;
}

/* Subtitle and Paragraph */
.welcome-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.welcome-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 30px 0;
    text-align: justify; /* Justified body copy matching design */
}

.welcome-text strong {
    color: #222222;
    font-weight: 700;
}

/* Read More Button styling */
.welcome-action-box {
    width: 100%;
    text-align: center;
}

.btn-welcome-more {
    display: inline-block;
    background-color: #101056 !important;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 2px;
    transition: background-color 0.25s ease;
}

.btn-welcome-more:hover {
    background-color: #1a1a75 !important;
}

/* --- Right Column: Image with Offset Backdrop & Accent Strip --- */
.welcome-media-col {
    display: flex;
    justify-content: center;
}

.welcome-image-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
 
}



.welcome-img {
    position: relative;
    z-index: 2; /* Sits on top of the grey backdrop box */
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* Keeps image square like screenshot */
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .welcome-clinic-container {
        grid-template-columns: 1fr; /* Stack layout on tablets and mobile devices */
        gap: 40px;
    }
    
    .welcome-clinic-section {
        padding: 50px 15px;
    }

    .welcome-main-title {
        font-size: 24px;
    }

    .welcome-subtitle {
        font-size: 15px;
    }

    .welcome-text {
        font-size: 13.5px;
        text-align: left; /* Shift text to natural left alignment on mobile viewports */
    }

    .welcome-image-frame {
        max-width: 380px;
        padding-bottom: 20px;
        padding-left: 20px;
    }

    .welcome-image-frame::before {
        top: 20px;
        right: 20px;
    }

    .welcome-image-frame::after {
        bottom: 50px;
        width: 70px;
        height: 10px;
    }
}


