﻿:root {
    --brand-primary: #0f172a;
    --brand-accent: #0284c7;
    --brand-accent-hover: #0369a1;
    --brand-surface: #ffffff;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --border-color: #cbd5e1;
    --success-color: #059669;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    height: 100%;
}

body {
    overflow-x: hidden;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/*.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}*/

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: all 0.2s ease-in-out;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: #ffffff;
    border: 1px solid var(--brand-primary);
}

    .btn-primary:hover {
        background-color: transparent;
        color: var(--brand-primary);
    }

.btn-accent {
    background-color: var(--brand-accent);
    color: #ffffff;
    border: 1px solid var(--brand-accent);
}

    .btn-accent:hover {
        background-color: var(--brand-accent-hover);
        border-color: var(--brand-accent-hover);
    }

/* Fixed Navigation Header */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: 0.05em;
}

    .logo span {
        color: var(--brand-accent);
        font-weight: 400;
        margin-left: 4px;
    }

    .logo svg {
        margin-right: 10px;
        fill: var(--brand-accent);
    }

.menu-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

    .menu-links a {
        text-decoration: none;
        color: var(--text-muted);
        font-weight: 500;
        font-size: 0.9rem;
        transition: color 0.2s ease;
    }

        .menu-links a:hover {
            color: var(--brand-accent);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1010;
}

    .menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background-color: var(--brand-primary);
        transition: all 0.2s ease;
    }

/* Hero Slider Display */
.hero-slider-container {
    position: relative;
    height: 75vh;
    margin-top: 80px;
    overflow: hidden;
    background-color: #0f172a;
}

.hero-strip {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-overlay-content {
    position: relative;
    z-index: 5;
    color: #ffffff;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(2, 132, 199, 0.2);
    border: 1px solid rgba(2, 132, 199, 0.4);
    color: #38bdf8;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.hero-slider-container h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
}

    .hero-slider-container h1 span {
        color: #38bdf8;
        font-weight: 400;
    }

.hero-slider-container p {
    font-size: 1.05rem;
    opacity: 0.85;
    font-weight: 400;
    margin-bottom: 32px;
}

.hero-nav-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .hero-dot.active {
        background: #38bdf8;
        width: 24px;
        border-radius: 4px;
    }

/* Section Layout Structure */
.section {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-tag {
    color: var(--brand-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Performance Metric Grid */
.stats-banner {
    background: #1e293b;
    color: #ffffff;
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 600;
}

.stat-card p {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Profile & About Layout */
.about-grid-profile {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-main-img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.about-profile-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.about-profile-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.about-pillar-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.pillar-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--brand-primary);
}

.pillar-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Services Grid Architecture */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
        border-color: var(--brand-accent);
    }

.service-card-top {
    margin-bottom: 20px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .service-icon svg {
        fill: var(--brand-accent);
    }

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-action-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--brand-accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    width: fit-content;
    margin-top: 16px;
}

    .service-action-btn:hover {
        color: var(--brand-accent-hover);
    }

/* Products Grid Matrix */
.products-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s ease;
    height: 100%;
}

    .product-card:hover {
        border-color: var(--brand-accent);
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
        transform: translateY(-5px);
    }

.product-img-holder {
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom:-62px
}

    .product-img-holder img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        margin-bottom: 62px;
    }
.product-card:hover .product-img-holder img {
    transform: scale(1.05);
}
.product-details {
    padding: 20px;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-accent);
    font-weight: 600;
    margin-bottom: 6px;
}

.product-details h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.product-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Clinical Gallery Tab & Filter Layout */
.gallery-filter-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.gallery-tab-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .gallery-tab-btn:hover, .gallery-tab-btn.active {
        background: var(--brand-primary);
        color: #ffffff;
        border-color: var(--brand-primary);
    }

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.results-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.split-comparison {
    display: flex;
    height: 320px;
    background: #0f172a;
}

.comp-box {
    position: relative;
    width: 50%;
    height: 100%;
    border-right: 1px solid #0f172a;
}

    .comp-box:last-child {
        border-right: none;
    }

    .comp-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.comp-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #0f172a;
    color: #ffffff;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.comp-box:last-child .comp-label {
    left: auto;
    right: 12px;
    background: var(--brand-accent);
}

.results-meta {
    padding: 20px;
}

    .results-meta h4 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

/* Testimonial Slider Wrapper Layout */
.testimonial-slider-container {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.review-card-slide {
    min-width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.stars-row {
    color: #d97706;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.review-text {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.6;
    font-style: italic;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-nav-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .t-dot.active {
        background: var(--brand-accent);
        width: 20px;
        border-radius: 4px;
    }

/* Procedural Outro Call To Action */
.cta-appointment-banner {
    background: #0f172a;
    color: #ffffff;
    text-align: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--border-color);
}

    .cta-appointment-banner h2 {
        color: #ffffff;
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .cta-appointment-banner p {
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto 24px auto;
        opacity: 0.8;
    }

/* Structured Consultation Form Block */
.modern-contact-section {
    background: #ffffff;
    padding: 80px 0;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-pitch-side h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

    .contact-pitch-side h2 span {
        color: var(--brand-accent);
    }

.contact-pitch-side p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/*.luxury-info-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card {
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    background: var(--bg-light);
}*/
.luxury-info-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}



.info-card {
    position: relative;
    padding: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(245,245,245,.9));
    border-radius: 24px;
    border: 1px solid rgba(212,175,55,.25);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    overflow: hidden;
    transition: .45s ease;
}



    .info-card:before {
        content: "";
        position: absolute;
        height: 4px;
        width: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
    }



    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 70px rgba(0,0,0,.15);
    }




.top-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}



.location-icon {
    height: 52px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg,#111,#444);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(0,0,0,.2);
}



.top-area h5 {
    margin: 0;
    font-size: 24px;
    color: #1b1b1b;
    font-weight: 700;
}



.top-area span {
    font-size: 13px;
    color: #b8860b;
    letter-spacing: 1px;
    text-transform: uppercase;
}




.address {
    display: block;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
}



    .address:hover {
        color: #b8860b;
    }




.divider {
    height: 1px;
    background: #e8e8e8;
    margin: 22px 0;
}




.action-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}




.map-btn,
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .35s ease;
}




.map-btn {
    background: #fff;
    color: #222;
    border: 1px solid #ddd;
}



    .map-btn:hover {
        background: #111;
        color: #fff;
        border-color: #111;
    }




.contact-btn {
    background: linear-gradient(135deg,#111,#333);
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}



    .contact-btn:hover {
        background: linear-gradient(135deg,#d4af37,#a67c00);
        transform: scale(1.06);
    }




@media(max-width:600px) {

    .info-card {
        padding: 22px;
    }


    .top-area h5 {
        font-size: 21px;
    }


    .action-buttons {
        flex-direction: column;
    }


    .map-btn,
    .contact-btn {
        width: 100%;
    }
}
.info-meta {
    margin: 20px 0;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #ececec;
}

    .meta-row:last-child {
        border-bottom: none;
    }

.business-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

    .business-hours i {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #f8f8f8;
        color: #c79b36;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

.status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status.open {
    background: #eaf8ef;
    color: #178344;
}

    .status.open .status-dot {
        background: #178344;
        box-shadow: 0 0 8px #178344;
    }

.status.closed {
    background: #fdecec;
    color: #d93025;
}

    .status.closed .status-dot {
        background: #d93025;
    }

@media(max-width:600px) {

    .meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .status {
        margin-left: 44px;
    }
}
.info-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:linear-gradient(#d4af37,#b8860b);
}


.info-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}


.location-title{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}


.location-title .icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#111;
    color:white;
    font-size:18px;
}


.location-title h5{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#222;
    letter-spacing:.3px;
}


.address{
    display:block;
    text-decoration:none;
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:20px;
    transition:.3s;
}


.address:hover{
    color:#b8860b;
}


.contact-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:13px 24px;
    border-radius:50px;
    background:linear-gradient(135deg,#111,#333);
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
    transition:.35s;
}


.contact-btn:hover{
    background:linear-gradient(135deg,#d4af37,#b8860b);
    color:#fff;
    transform:scale(1.05);
}


@media(max-width:600px){

    .info-card{
        padding:20px;
    }

    .location-title h5{
        font-size:19px;
    }

    .contact-btn{
        width:100%;
        justify-content:center;
    }

}

.card-header h5 {
    margin: 0 0 15px;
    font-size: 20px;
    color: #222;
    font-weight: 600;
}

.address {
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 15px;
}

.card-footer {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.map-btn,
.call-btn {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.map-btn {
    background: #f3f3f3;
    color: #333;
}

    .map-btn:hover {
        background: #222;
    }

.call-btn {
    background: #000;
    color: #fff;
}

    .call-btn:hover {
        background: #c8a96a;
        color: #fff;
    }

@media(max-width:576px) {

    .card-footer {
        flex-direction: column;
    }

    .map-btn,
    .call-btn {
        width: 100%;
    }
}

.premium-contact-form-card {
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 4px;
    background: var(--bg-light);
}

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--brand-primary);
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

.modern-input {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 4px;
    color: var(--text-dark);
    outline: none;
    font-size: 0.9rem;
    transition: border-color 0.15s ease-in-out;
}

    .modern-input:focus {
        border-color: var(--brand-accent);
    }

.footer-base {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 24px 0;
    font-size: 0.8rem;
    text-align: center;
    border-top: 1px solid #1e293b;
}

/* Responsive Architecture Adjustments */
@media (max-width: 992px) {
    .about-grid-profile, .contact-split-grid, .results-grid, .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-matrix {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-slider-container h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .menu-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

        .menu-links.mobile-open {
            display: flex;
        }

    .products-matrix, .services-grid {
        grid-template-columns: 1fr;
    }

    .review-card-slide {
        padding: 24px;
    }

    .review-text {
        font-size: 0.95rem;
    }
}
/* Compact Hero Styles */
.compact-hero {
    display: flex;
    height: 60vh; /* Height aur kam kar di gayi hai */
    width: 100%;
    margin-top: 80px; /* Header ke liye space */
    background: #fbfaf8;
    overflow: hidden;
}

.carousel-side {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.image-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.form-side {
    width: 380px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    background: #ffffff;
    border-left: 1px solid #eee;
}

.form-wrapper {
    width: 100%;
}

    .form-wrapper h3 {
        margin-bottom: 24px;
        font-size: 1.3rem;
        color: var(--brand-primary);
        font-weight: 700;
    }

    .form-wrapper input,
    .form-wrapper textarea {
        width: 100%;
        padding: 8px 0;
        margin-bottom: 12px;
        border: none;
        border-bottom: 1px solid #ddd;
        font-size: 0.9rem;
        outline: none;
        transition: border-color 0.3s;
    }

        .form-wrapper input:focus,
        .form-wrapper textarea:focus {
            border-bottom-color: var(--brand-accent);
        }

.compact-btn {
    width: 100%;
    padding: 12px;
    background: var(--brand-primary);
    color: white;
    border: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

    .compact-btn:hover {
        background: var(--brand-accent);
    }

/* Responsive Mobile view */
@media (max-width: 768px) {
    .compact-hero {
        flex-direction: column;
        height: auto;
    }

    .carousel-side {
        height: 40vh;
    }

    .form-side {
        width: 100%;
        padding: 40px 20px;
    }
}
/* Responsive Architecture Adjustments */

/* Tablets & Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .compact-hero {
        height: 50vh; /* Tab ke liye height thodi kam ki */
    }

    .form-side {
        width: 300px; /* Form width adjust ki */
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .compact-hero {
        flex-direction: column; /* Row se Column mode mein shift */
        height: auto; /* Height auto, taaki content fit ho sake */
        margin-top: 60px; /* Header adjust */
    }

    .carousel-side {
        width: 100%;
        height: 300px; /* Mobile par slide height fixed */
    }

    .form-side {
        width: 100%;
        padding: 30px 20px; /* Mobile padding */
        border-left: none; /* Border hata diya */
        border-top: 4px solid var(--brand-accent); /* Ek accent bar top par */
    }

    .form-wrapper h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .form-wrapper input,
    .form-wrapper textarea {
        font-size: 1rem; /* Mobile par typing ke liye font size badhaya */
        padding: 12px 0;
    }
}

/* Very Small Phones (max-width: 480px) */
@media (max-width: 480px) {
    .carousel-side {
        height: 250px;
    }

    .form-side {
        padding: 20px 15px;
    }
}
/* Clinic Prime Hero Section */
.clinic-prime-hero {
    display: flex;
    height: 65vh;
    width: 100%;
    margin-top: 80px;
    background: #ffffff;
    overflow: hidden;
}

.clinic-prime-gallery {
    flex: 1;
    position: relative;
    height: 100%;
}

.clinic-prime-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.clinic-prime-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .clinic-prime-slide.active {
        opacity: 1;
    }

    .clinic-prime-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Contact Panel */
.clinic-prime-contact {
    width: 400px;
    display: flex;
    align-items: center;
    padding: 0 50px;
    background: var(--bg-light);
    border-left: 1px solid var(--border-color);
}

.clinic-prime-form-wrapper {
    width: 100%;
}

    .clinic-prime-form-wrapper h3 {
        margin-bottom: 25px;
        font-size: 1.5rem;
        color: var(--brand-primary);
    }

.clinic-prime-group {
    margin-bottom: 15px;
}

    .clinic-prime-group input,
    .clinic-prime-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        background: #ffffff;
        transition: border-color 0.3s;
    }

        .clinic-prime-group input:focus {
            border-color: var(--brand-accent);
            outline: none;
        }

.clinic-prime-btn {
    width: 100%;
    padding: 14px;
    background: var(--brand-primary);
    color: #ffffff;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

    .clinic-prime-btn:hover {
        background: var(--brand-accent);
    }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .clinic-prime-hero {
        height: 50vh;
    }

    .clinic-prime-contact {
        width: 320px;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .clinic-prime-hero {
        flex-direction: column;
        height: auto;
    }

    .clinic-prime-gallery {
        height: 350px;
    }

    .clinic-prime-contact {
        width: 100%;
        padding: 40px 20px;
        border-left: none;
    }
}

/* FORCE VISIBILITY FOR MOBILE & TABLET */
@media (max-width: 768px) {
    /* Navbar fix */
    .header-nav {
        height: 60px !important; /* Mobile par nav height fix */
    }

    .menu-links {
        display: none; /* Default hidden */
        background: #ffffff;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px;
        flex-direction: column;
        border-bottom: 1px solid #ddd;
    }

        .menu-links.mobile-open {
            display: flex !important; /* JS toggle ke liye */
        }

    .menu-toggle {
        display: flex !important; /* Button ko force visible kiya */
    }

    /* Slider/Hero Fix */
    .clinic-prime-hero {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important; /* Height auto for content */
        margin-top: 60px !important;
    }

    .clinic-prime-gallery {
        width: 100% !important;
        height: 300px !important; /* Mobile par fixed height */
    }

    .clinic-prime-contact {
        width: 100% !important;
        padding: 20px !important;
        order: 2; /* Form neeche rahega */
    }
}


@media (max-width: 768px) {
    .menu-links {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
    }

        .menu-links.active {
            display: flex; /* Shown when toggled */
        }
}

/* 1. Mobile First (Default) - This applies to all devices first */
.hero-section {
    display: flex;
    flex-direction: column; /* Stack by default for mobile */
    width: 100%;
}

.hero-slider {
    width: 100%;
    height: 300px; /* Fixed height for mobile */
    overflow: hidden;
}

.hero-contact {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* 2. Desktop (Larger Screens) - Only triggers on big screens */
@media (min-width: 769px) {
    .hero-section {
        flex-direction: row; /* Put them side-by-side */
        height: 500px;
    }
    
    .hero-slider {
        height: 100%;
    }
    
    .hero-contact {
        width: 400px; /* Reset to fixed width */
    }
}

:/*root{
    --primary-color:#0A2540;
    --accent-color:#C5A059;
    --white:#fff;
    --light:#f8f9fc;
}*/

/*==========================
    MAIN SECTION
==========================*/
/*.slider-home{
    width:100%;
    max-width:1450px;*/      /* Full screen me content limited rahega */
    /*margin:0 auto;
    display:grid;
    grid-template-columns:1.45fr 0.75fr;*/ /* Slider bada, form chhota */
    /*gap:40px;
    align-items:center;
    padding:40px;
    background:linear-gradient(135deg,#eef4ff,#ffffff);
}*/

/*==========================
      IMAGE SLIDER
==========================*/
/*.slider-home-gallery{
    position:relative;
    height:620px;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 30px 70px rgba(0,0,0,.18);
}

.slider-home-track{
    width:100%;
    height:100%;
    position:relative;
}

.slider-home-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:all .8s ease;
}

.slider-home-slide.active{
    opacity:1;
    visibility:visible;
}

.slider-home-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1);
    transition:transform 8s linear;
}

.slider-home-slide.active img{
    transform:scale(1.12);
}*/

/* Overlay */

/*.slide-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding:45px;
    background:linear-gradient(to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.15),
    transparent);
}

.slide-overlay h3{
    color:#fff;
    font-size:42px;
    font-weight:700;
    line-height:1.2;
    max-width:500px;
    animation:slideText .8s;
}

@keyframes slideText{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}*/

/*==========================
     CONTACT FORM
==========================*/

/*.slider-home-contact{

    position:relative;
    padding:45px;
    border-radius:28px;
    overflow:hidden;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.4);

    box-shadow:
    0 20px 60px rgba(0,0,0,.15);

}

.slider-home-contact::before{

    content:"";

    position:absolute;
    top:-80px;
    right:-80px;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(197,160,89,.12);

}

.slider-home-contact h3{

    font-size:34px;

    color:var(--primary-color);

    margin-bottom:10px;

    font-weight:700;

}

.slider-home-contact p{

    color:#666;

    margin-bottom:35px;

    font-size:16px;

}*/

/* Inputs */

/*.slider-home-contact input,
.slider-home-contact textarea{

    width:100%;

    padding:16px 18px;

    margin-bottom:18px;

    border:2px solid #e6e6e6;

    border-radius:12px;

    background:#fff;

    font-size:15px;

    transition:.35s;

}

.slider-home-contact textarea{

    resize:none;

    min-height:120px;

}

.slider-home-contact input:focus,
.slider-home-contact textarea:focus{

    outline:none;

    border-color:var(--accent-color);

    box-shadow:0 0 0 4px rgba(197,160,89,.18);

}*/

/* Placeholder */

/*.slider-home-contact input::placeholder,
.slider-home-contact textarea::placeholder{

    color:#888;

}*/

/* Button */

/*.submit-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:50px;

    background:linear-gradient(90deg,
    var(--primary-color),
    #113b63);

    color:#fff;

    font-size:16px;

    font-weight:700;

    letter-spacing:.5px;

    cursor:pointer;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.submit-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-30deg);

    transition:.6s;

}

.submit-btn:hover::before{

    left:120%;

}

.submit-btn:hover{

    background:linear-gradient(90deg,
    var(--accent-color),
    #d6b36b);

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(197,160,89,.35);

}*/

/*==========================
      RESPONSIVE
==========================*/

/*@media(max-width:1200px){

.slider-home{

grid-template-columns:1fr;

}

.slider-home-gallery{

height:520px;

}

.slider-home-contact{

margin-top:10px;

}

}

@media(max-width:768px){

.slider-home{

padding:30px 15px;

gap:25px;

}

.slider-home-gallery{

height:340px;

border-radius:20px;

}

.slide-overlay{

padding:25px;

}

.slide-overlay h3{

font-size:28px;

}

.slider-home-contact{

padding:30px 22px;

border-radius:20px;

}

.slider-home-contact h3{

font-size:28px;

}

}

@media(max-width:480px){

.slider-home-gallery{

height:280px;

}

.slide-overlay h3{

font-size:22px;

}

.slider-home-contact{

padding:22px 18px;

}

.slider-home-contact h3{

font-size:24px;

}

.submit-btn{

height:54px;

}

}*/


    :root {
        --primary-color: #0A2540;
        --accent-color: #C5A059;
        --white: #ffffff;
        --light: #f8f9fc;
    }

/*====================================
            HERO SECTION
====================================*/

.slider-home {
    width: 100%;
    max-width: 1450px;
    margin: 40px auto;
    padding-top:2px;
    display: grid;
    grid-template-columns: 1.45fr 0.75fr;
   /* gap: 40px;*/
    align-items: center;
    background: linear-gradient(135deg,#eef4ff,#ffffff);
    /*border-radius: 30px;*/
    box-shadow: 0 15px 50px rgba(0,0,0,.08);
    margin-top:70px
}

/*====================================
            IMAGE SLIDER
====================================*/

.slider-home-gallery {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 520px;
    margin: auto;
    overflow: hidden;
/*    border-radius: 28px;*/
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.slider-home-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease;
}

    .slider-home-slide.active {
        opacity: 1;
        visibility: visible;
    }

    .slider-home-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: transform 8s linear;
        padding:20px;
     
    }

    .slider-home-slide.active img {
        transform: scale(1.1);
    }

/*====================================
            OVERLAY
====================================*/

.slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 45px;
    background: linear-gradient( to top, rgba(0,0,0,.72), rgba(0,0,0,.20), transparent );
}

    .slide-overlay h3 {
        color: #fff;
        font-size: 42px;
        line-height: 1.2;
        font-weight: 700;
        max-width: 500px;
        animation: slideText .8s ease;
    }

@keyframes slideText {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*====================================
            CONTACT FORM
====================================*/

.slider-home-contact {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: auto;
    padding: 35px;
    overflow: hidden;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.5);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

    .slider-home-contact::before {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        top: -80px;
        right: -80px;
        border-radius: 50%;
        background: rgba(197,160,89,.12);
    }

    .slider-home-contact h3 {
        font-size: 32px;
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: 700;
    }

    .slider-home-contact p {
        color: #666;
        margin-bottom: 28px;
        font-size: 15px;
        line-height: 1.6;
    }

    /*====================================
              INPUTS
====================================*/

    .slider-home-contact input, select,
    .slider-home-contact textarea {
        width: 100%;
        padding: 15px 18px;
        margin-bottom: 5px;
        border: 2px solid #e8e8e8;
        border-radius: 12px;
        background: #fff;
        font-size: 12px;
        transition: .35s;
    }

    .slider-home-contact textarea {
        min-height: 120px;
        resize: none;
    }

        .slider-home-contact input:focus,
        .slider-home-contact textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 4px rgba(197,160,89,.18);
        }

        .slider-home-contact input::placeholder,
        .slider-home-contact textarea::placeholder {
            color: #999;
        }

/*====================================
            BUTTON
====================================*/

.submit-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg,#0A2540,#133f68);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

    .submit-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,.25);
        transform: skewX(-25deg);
        transition: .7s;
    }

    .submit-btn:hover::before {
        left: 120%;
    }

    .submit-btn:hover {
        background: #d4af37;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(197,160,89,.35);
        color:black;

    }

/*====================================
        LARGE DESKTOP
====================================*/

@media (min-width:1600px) {

    .slider-home {
        max-width: 1550px;
        grid-template-columns: 950px 420px;
        justify-content: center;
        gap: 60px;
    }

    .slider-home-gallery {
        height: 560px;
    }
}

/*====================================
            LAPTOP
====================================*/

@media (max-width:1200px) {

    .slider-home {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .slider-home-gallery {
        max-width: 100%;
        height: 460px;
    }

    .slider-home-contact {
        max-width: 600px;
    }
}

/*====================================
            TABLET
====================================*/

@media (max-width:768px) {

    .slider-home {
        padding: 20px;
        margin: 20px auto;
        gap: 25px;
    }

    .slider-home-gallery {
        height: 340px;
/*        border-radius: 20px;*/
    }

    .slide-overlay {
        padding: 25px;
    }

        .slide-overlay h3 {
            font-size: 28px;
        }

    .slider-home-contact {
        max-width: 100%;
        padding: 25px;
/*        border-radius: 20px;*/
    }

        .slider-home-contact h3 {
            font-size: 28px;
        }
}

/*====================================
            MOBILE
====================================*/

@media (max-width:576px) {

    .slider-home {
        padding: 0px;
        margin: 0px;
        margin-top:60px;
    }

    .slider-home-gallery {
        height: 260px;
    }

    .slide-overlay {
        padding: 18px;
    }

        .slide-overlay h3 {
            font-size: 22px;
        }

    .slider-home-contact {
        padding: 20px;
    }

        .slider-home-contact h3 {
            font-size: 24px;
        }

        .slider-home-contact p {
            font-size: 14px;
        }

        .slider-home-contact input,
        .slider-home-contact textarea {
            padding: 13px 15px;
        }

    .submit-btn {
        height: 52px;
        font-size: 15px;
    }
}

.gallery-section {
    background: #f8f9fb;
    padding: 90px 0;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    padding: 8px;
    border: 1px solid rgba(197,160,89,.35);
    box-shadow: 0 10px 30px rgba(0,0,0,.08), 0 3px 10px rgba(197,160,89,.12);
    transition: .45s ease;
}

    .gallery-card img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        border-radius: 16px;
        transition: transform .7s ease;
    }

    /* Gold Glow */
    .gallery-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 22px;
        padding: 2px;
        background: linear-gradient(135deg,#d4af37,#fff,#d4af37);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: .4s;
    }

    /* Shine Effect */
    .gallery-card::after {
        content: '';
        position: absolute;
        top: -120%;
        left: -60%;
        width: 40%;
        height: 250%;
        background: linear-gradient(to right, transparent, rgba(255,255,255,.55), transparent);
        transform: rotate(25deg);
        transition: .9s;
    }

    .gallery-card:hover::after {
        left: 140%;
    }

    .gallery-card:hover::before {
        opacity: 1;
    }

    .gallery-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,.15), 0 10px 25px rgba(197,160,89,.25);
    }

        .gallery-card:hover img {
            transform: scale(1.08);
        }

/* Responsive */

@media(max-width:991px) {

    .gallery-card img {
        height: 300px;
    }
}

@media(max-width:767px) {

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-card img {
        height: 240px;
    }
}

.services-delhi {
    padding: 14px 5%;
    background-color: #fdfcf9;
}

.services-delhi-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-line {
    width: 60px;
    height: 3px;
    background: #c5a059;
    margin: 20px auto 0;
}

.services-delhi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.services-delhi-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    border: 1px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

    /* Card Hover Effect */
    .services-delhi-card:hover {
      /*  transform: translateY(-15px);*/
        box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        border-color: #c5a059;
    }

.services-delhi-img {
    width: 100%;
    height: 280px;
}

    .services-delhi-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

.services-delhi-card:hover .services-delhi-img img {
    transform: scale(1.1);
}

.services-delhi-content {
    padding: 40px;
    flex-grow: 1;
    transition: 0.4s;
}

/* Text Color Change on Hover */
.service-title {
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.service-desc {
    color: #777;
    line-height: 1.8;
    transition: color 0.4s ease;
    font-size: 13px;
    font-weight: 500;
}

.services-delhi-card:hover .service-title {
    color: #c5a059;
}
/* Title becomes Gold */
.services-delhi-card:hover .service-desc {
    color: #333;
}
/* Desc becomes Darker/Clearer */

/* Responsive */
@media (max-width: 1024px) {
    .services-delhi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-delhi-grid {
        grid-template-columns: 1fr;
    }
}
/* Main Content */
.main-content,
.wrapper,
.content {
    flex: 1;
}

/* =========================
   Premium Footer
========================= */
.veronica-footer {
    background: linear-gradient(135deg, #0A2540 0%, #163d66 100%);
    color: #fff;
    padding: 40px 0;
    margin-top: auto;
    border-top: 4px solid #C5A059;
    box-shadow: 0 -6px 20px rgba(0,0,0,.12);
    margin-top: auto;
}

    .veronica-footer h5 {
        font-size: 26px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
        letter-spacing: .5px;
    }

    .veronica-footer p {
        font-size: 16px;
        color: rgba(255,255,255,.85);
        margin-bottom: 12px;
    }

    .veronica-footer small {
        display: block;
        color: rgba(255,255,255,.7);
        font-size: 14px;
    }

    /* Optional Hover Effect */
    .veronica-footer h5:hover {
        color: #C5A059;
        transition: .3s ease;
    }

/* Mobile */
@media (max-width:768px) {

    .veronica-footer {
        padding: 30px 15px;
    }

        .veronica-footer h5 {
            font-size: 22px;
        }

        .veronica-footer p {
            font-size: 14px;
        }

        .veronica-footer small {
            font-size: 13px;
        }
}
/* ==========================
   Mobile Bottom Action Bar
========================== */

.mobile-action-bar {
    display: none;
}

@media (max-width:768px) {

    body {
        padding-bottom: 0px;
    }

    .mobile-action-bar {
        display: flex;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 9999;
        box-shadow: 0 -4px 12px rgba(0,0,0,.15);
    }

        .mobile-action-bar a {
            flex: 1;
            text-align: center;
            text-decoration: none;
            color: #fff;
            padding: 15px 10px;
            font-size: 16px;
            font-weight: 700;
            border-radius:15px
        }

    .call-btn {
        background: #0A2540;
    }

        .call-btn:hover {
            background: #13385d;
            color: #fff;
        }

    .whatsapp-btn {
        background: #25D366;
    }

        .whatsapp-btn:hover {
            background: #1ebe5d;
            color: #fff;
        }
}
.form-title {
    text-align: center;
    margin-bottom: 20px;
}

    .form-title h3 {
        font-size: 30px;
        font-weight: 700;
        color: #0A2540;
        margin-bottom: 12px;
    }

.offer-badge {
    display: inline-block;
    background: linear-gradient(90deg,#ff1f1f,#c40000);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    animation: pulse 1.2s infinite;
    box-shadow: 0 5px 15px rgba(255,0,0,.35);
}

    .offer-badge strong {
        color: #ffeb3b;
        font-size: 14px;
    }

@keyframes pulse {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.06);
        opacity: .85;
    }
}

/* General Section Styling - Compact Padding */
.about-section {
    padding: 40px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

/* Image Styling */
.about-image-frame {
    flex: 1;
    min-width: 300px;
}

.about-main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Text Content Styling - Reduced Spacing */
.about-profile-content {
    flex: 1.2;
    min-width: 300px;
}

.section-tag {
    color: #0056b3;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 8px;
}

.about-title {
    font-size: 1.2rem; /* Heading size kam kiya */
    margin-bottom: 15px; 
    color: #1a1a1a;
    line-height: 1.2;
}

.about-text {
    color: #4a4a4a;
    line-height: 1.5; 
    margin-bottom: 12px; 
    font-size: 1rem;
}

/* Grid for "Why Choose Us" */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; 
    margin-top: 20px;
}

.why-item {
    background: #f8f9fa;
    padding: 2px 12px; 
    border-radius: 6px;
    border-left: 4px solid #0056b3;
    font-size: 0.9rem; 
    font-weight: 600;
    color: #333;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .about-container {
        gap: 20px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Compact CTA Container */
.cta-container {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    align-items: center;
}

/* Base Small Button */
.v-btn {
    padding: 10px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem; /* Slightly smaller text */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
    cursor: pointer;
}

/* Primary Button (Book Now) */
.v-btn-primary {
    background: #1a1a1a;
    color: #fff;
}

    .v-btn-primary:hover {
        background: #000;
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(0,0,0,0.2);
    }

/* Secondary Button (Call Now) */
.v-btn-secondary {
    background: transparent;
    border-color: #ddd;
    color: #444;
}

    .v-btn-secondary:hover {
        border-color: #1a1a1a;
        color: #000;
        background: #fcfcfc;
    }

/* Responsive */
@media (max-width: 480px) {
    .cta-container {
        flex-direction: column;
        gap: 10px;
    }

    .v-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===============================
   Veronica Hair Contact Section
================================ */

.vh-contact-section {
    padding: 100px 0;
    background: radial-gradient(circle at top left,#fff8ec 0%,transparent 35%), radial-gradient(circle at bottom right,#f8efe2 0%,transparent 35%), linear-gradient(180deg,#fcfcfc,#f4f4f4);
}

.vh-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.vh-subtitle {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #fff;
    color: #b8860b;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.vh-title {
    margin: 20px 0;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
}

    .vh-title span {
        color: #b8860b;
    }

.vh-description {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.vh-location-list {
    display: grid;
    gap: 25px;
}

/* Luxury Cards */

.vh-location-card {
    position: relative;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 15px 45px rgba(0,0,0,.08), inset 0 1px 1px rgba(255,255,255,.7);
    transition: .45s;
    overflow: hidden;
}

    .vh-location-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(#d4af37,#8c6b08);
    }

    .vh-location-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 55px rgba(0,0,0,.15);
    }

.vh-location-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.vh-location-card p {
    color: #666;
    line-height: 1.8;
}

.vh-location-card a {
    color: #444;
    text-decoration: none;
}

.vh-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 12px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg,#d4af37,#b8860b);
    color: #fff !important;
    font-weight: 600;
    transition: .3s;
}

    .vh-call-btn:hover {
        transform: scale(1.05);
        color: #fff;
        box-shadow: 0 12px 30px rgba(184,134,11,.35);
    }

/* Business Hours */

.vh-hours {
    margin-top: 30px;
    padding: 25px;
    border-radius: 20px;
    background: #222;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

    .vh-hours div {
        padding: 8px 0;
    }

/* Form */

.vh-form {
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(18px);
    padding: 45px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

.vh-form-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 35px;
    color: #222;
}

.vh-group {
    margin-bottom: 22px;
}

    .vh-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

.vh-input {
    width: 100%;
    padding: 15px 18px;
    border: none;
    border-radius: 14px;
    background: #f8f8f8;
    transition: .35s;
    font-size: 15px;
}

    .vh-input:focus {
        outline: none;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(212,175,55,.15), 0 10px 25px rgba(0,0,0,.06);
    }

.vh-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg,#d4af37,#b8860b);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .4s;
}

    .vh-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 35px rgba(184,134,11,.35);
    }

/* Responsive */

@media(max-width:991px) {

    .vh-contact-grid {
        grid-template-columns: 1fr;
    }

    .vh-title {
        font-size: 36px;
    }

    .vh-form {
        padding: 30px;
    }
}
.required {
    color: #dc3545;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    vertical-align: middle;
    position: relative;
    top: -1px;
    margin-left: 3px;
}

/*.section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}

    .section:nth-child(1) {
        background: #f1f1f1;
    }

    .section:nth-child(2) {
        background: #dff6dd;
    }

    .section:nth-child(3) {
        background: #d6eaff;
    }

    .section:nth-child(4) {
        background: #ffe6d6;
    }*/

/* WhatsApp Floating Button */
.footer-tags {
    font-size: 13px;
    line-height: 1.8;
    color: #ddd;
    margin: 15px 0;
}

    .footer-tags strong {
        color: #fff;
    }

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 12px;
        line-height: 1.2;
    }

        .section-title h2 span {
            color: #b8860b;
        }

    .section-title p {
        max-width: 700px;
        margin: 0 auto;
        color: #6b7280;
        font-size: 17px;
        line-height: 1.7;
    }

/* Tablet */
@media (max-width: 992px) {
    .section-title {
        margin-bottom: 40px;
    }

        .section-title h2 {
            font-size: 34px;
        }

        .section-title p {
            font-size: 16px;
            max-width: 90%;
        }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        margin-bottom: 30px;
        padding: 0 20px;
    }

        .section-title h2 {
            font-size: 28px;
            line-height: 1.3;
        }

        .section-title p {
            font-size: 15px;
            line-height: 1.6;
            max-width: 100%;
        }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section-title {
        margin-bottom: 25px;
        padding: 0 15px;
    }

        .section-title h2 {
            font-size: 24px;
        }

        .section-title p {
            font-size: 14px;
            line-height: 1.6;
        }
}
/* Left Side Heading */
.contact-pitch-side h2 {
    font-size: 27px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

    .contact-pitch-side h2 span {
        color: #362a6b;
    }

.contact-pitch-side > p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Tablet */
@media (max-width: 992px) {
    .contact-pitch-side h2 {
        font-size: 28px;
    }

    .contact-pitch-side > p {
        font-size: 15px;
        margin-bottom: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-pitch-side {
        text-align: center;
    }

        .contact-pitch-side h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .contact-pitch-side > p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            padding: 0 10px;
        }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact-pitch-side h2 {
        font-size: 22px;
    }

    .contact-pitch-side > p {
        font-size: 13px;
        padding: 0 5px;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 25px;
    bottom: 25px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20bd5a;
}

/* Mobile */
@media(max-width:768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 110px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}

