/* FIX RIGHT SPACE ISSUE */
html, body {
overflow-x: hidden;
width: 100%;
}


/* ========================
   NAVBAR
======================== */
.custom-navbar {
    background: #fff;
    padding: 12px 0;
    transition: all 0.35s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.custom-navbar.scrolled {
    padding: 7px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0c4a6e, #0ea5e9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}

.logo-text {
    line-height: 1.2;
}

.logo-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0c4a6e;
}

.logo-text span {
    font-size: 11px;
    color: #64748b;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link {
    color: #1e3a5f;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s;
}

.navbar-nav .nav-link:hover {
    color: #0ea5e9;
    background: #f0f9ff;
}

.navbar-nav .nav-link.active {
    color: #0ea5e9;
}

.btn-appointment {
    background: #0c4a6e;
    color: #fff !important;
    border-radius: 85px;
    padding: 9px 22px !important;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    border: 2px solid #0c4a6e;
}

.btn-appointment:hover {
    background: #f4a622;
    border-color: #f4a622;
    color: #000000 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(244, 166, 34, 0.35);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: height 0.35s ease;
}

.custom-navbar.scrolled .logo-img {
    height: 50px;
}

/* ========================
   MOBILE NAVBAR FIX
======================== */
@media (max-width: 767px) {

    .custom-navbar .container {
        padding: 0 16px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
    }

    .logo-icon svg {
        width: 18px;
        height: 18px;
    }

    .logo-text strong {
        font-size: 12px;
    }

    .logo-text span {
        display: none;
    }

    .logo-img {
        height: 42px;
    }

    .custom-navbar.scrolled .logo-img {
        height: 36px;
    }

    .navbar-toggler {
        padding: 4px 8px;
        font-size: 14px;
    }

    /* Dropdown menu card style */
    .navbar-collapse {
        background: #fff;
        margin-top: 10px;
        border-radius: 14px;
        padding: 10px 8px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
        border: 1px solid #e2e8f0;
    }

    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 10px 14px;
        border-radius: 8px;
    }

    /* Full-width appointment button on mobile */
    .btn-appointment {
        display: block;
        text-align: center;
        margin: 6px 0 4px;
        border-radius: 10px !important;
        padding: 11px 22px !important;
    }
}

/* ========================
   FOOTER
======================== */
.footer {
    background: #0c1f35;
    color: #fff;
    padding: 70px 0 0;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #0ea5e9, #0c4a6e);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}

.footer-brand-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.footer-brand-sub {
    font-size: 11px;
    color: #94a3b8;
}

.footer p.footer-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #f4a622;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: #38bdf8;
    padding-left: 4px;
}

.footer-links a::before {
    content: '›';
    opacity: 0.4;
    transition: 0.2s;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact p {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-icon {
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.social-icons {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
}

.social-icons a:hover {
    background: #f4a622;
    border-color: #f4a622;
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 18px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #475569;
    margin: 0;
}

.footer-bottom span {
    color: #38bdf8;
}



.hero-section {
    padding: 20px 0;
    background: linear-gradient(135deg,#eef9ff,#ffffff);
}

.hero-badge {
    background: #00a6c7;
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    color: #0c3c60;
    margin-bottom: 10px;
}

.hero-qualification {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
}

.hero-desc {
    margin: 18px 0;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-primary {
    background: #00a6c7;
    color: white;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #00a6c7;
    color: #00a6c7;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: #0c3c60;
}

.btn-outline:hover {
    background: #00a6c7;
    color: white;
}

/* Right Image */

.hero-image img {
    width: 100%;
    max-width: 520px;
}

.hero-image {
    text-align: center;
}
/* ==============================
   RIGHT IMAGE
============================== */
.hero-right {
    flex: 0 0 420px;
    max-width: 420px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.7s ease 0.3s forwards;
    opacity: 0;
}
 
.hero-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}
 
.hero-main-img {
    width: 100%;
    max-width: 380px;
    height: 440px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
 
/* Decorative ring behind image */
.hero-img-ring {
    position: absolute;
    width: 340px;
    height: 440px;
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: 22px;
    top: 16px;
    left: 50%;
    transform: translateX(-50%) translateX(16px);
    z-index: 1;
}
 
/* Floating cards */
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    z-index: 10;
    min-width: 170px;
}
 
.hero-float-card .float-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
 
.hero-float-card strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0c4a6e;
    line-height: 1.2;
}
 
.hero-float-card span {
    font-size: 10px;
    color: #64748b;
}
 
.hero-float-tl {
    top: 30px;
    left: -30px;
    animation: floatCard1 3.5s ease-in-out infinite;
}
 
.hero-float-br {
    bottom: 30px;
    right: -30px;
    animation: floatCard2 4s ease-in-out infinite;
}
 
/* Floating pill */
.hero-float-pill {
    position: absolute;
    top: -18px;
    right: 20px;
    background: #f4a622;
    color: #fff;
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: 0 4px 14px rgba(244,166,34,0.4);
    white-space: nowrap;
}
 
.pill-dot {
    width: 6px; height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
}
 
/* Scroll indicator */
.hero-scroll-down {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}
 
.hero-scroll-down span {
    display: block;
    width: 20px; height: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.6);
    border-right: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
    animation: scroll-anim 1.8s infinite;
}
 
/* ==============================
   ANIMATIONS
============================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
 
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}
 
@keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
 
@keyframes floatCard2 {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}
 
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}
 
@keyframes scroll-anim {
    0%   { opacity: 0; transform: rotate(45deg) translate(-8px,-8px); }
    50%  { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(8px,8px); }
}
 
/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1199px) {
    .hero-heading { font-size: 44px; }
    .hero-right { flex: 0 0 360px; max-width: 360px; }
    .hero-inner { gap: 40px; }
}
 
@media (max-width: 991px) {
    .hero-section { padding: 120px 0 70px; min-height: auto; }
 
    .hero-inner {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
 
    .hero-left { width: 100%; }
 
    .hero-trust-badge { margin-left: auto; margin-right: auto; }
 
    .hero-heading { font-size: 38px; }
 
    .hero-desc { margin-left: auto; margin-right: auto; }
 
    .hero-stats-row { justify-content: center; }
 
    .hero-cta-row { justify-content: center; }
 
    .hero-trust-row { justify-content: center; }
 
    .hero-right {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
 
    .hero-float-tl { left: -10px; }
    .hero-float-br { right: -10px; }
}
 
@media (max-width: 767px) {
    .hero-section { padding: 110px 0 60px; }
    .hero-heading { font-size: 30px; }
    .hero-main-img { height: 340px; max-width: 100%; }
    .hero-img-ring { display: none; }
    .hero-stat strong { font-size: 22px; }
    .hero-stat { padding: 0 14px; }
}
 
@media (max-width: 575px) {
    .hero-heading { font-size: 26px; }
 
    .hero-cta-row { flex-direction: column; }
 
    .hero-btn-primary,
    .hero-btn-ghost { width: 100%; justify-content: center; }
 
    .hero-float-tl,
    .hero-float-br { display: none; }
 
    .hero-float-pill { right: 10px; font-size: 10px; }
 
    .hero-main-img { height: 280px; border-radius: 16px; }
 
    .hero-trust-row { gap: 12px; }
}

/* ========================
   SERVICES
======================== */
.services-section {
    padding: 60px 0;
    background: #f8fafc;
}

.section-tag {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 8px;
}

.section-sub {
    color: #64748b;
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.3s;
    border: 4px solid #002d68;
    height: 100%;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(12, 74, 110, 0.1);
    border-color: #bae6fd;
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 26px;
}

.icon-blue { background: #e0f2fe; }
.icon-amber { background: #fef3c7; }
.icon-teal { background: #ccfbf1; }
.icon-purple { background: #ede9fe; }
.icon-pink { background: #fce7f3; }
.icon-green { background: #dcfce7; }

.service-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #0c4a6e;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ========================
   WHY US
======================== */
.why-section {
    padding: 90px 0;
    background: #fff;
}

.why-visual {
    background: linear-gradient(135deg, #0c4a6e, #0ea5e9);
    border-radius: 20px;
    padding: 50px 40px;
    color: #fff;
    height: 100%;
}

.why-visual h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.why-visual p {
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 30px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cert-icon {
    width: 38px;
    height: 38px;
    background: #f4a622;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.cert-item span {
    font-size: 13px;
    font-weight: 500;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.feature-num {
    min-width: 40px;
    height: 40px;
    background: #e0f2fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0369a1;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-item h6 {
    font-size: 15px;
    font-weight: 600;
    color: #0c4a6e;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ========================
   TESTIMONIALS
======================== */
.testimonials-section {
    padding: 120px 0;
    background: #f8fafc;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.stars {
    color: #f4a622;
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c4a6e, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.reviewer strong {
    display: block;
    font-size: 14px;
    color: #0c4a6e;
}

.reviewer small {
    font-size: 12px;
    color: #94a3b8;
}

/* ========================
   CTA
======================== */
.cta-section {
    background: white;
    padding: 80px 0;
    color: #0c4a6e;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-section p {
    opacity: 0.85;
    font-size: 16px;
    margin-bottom: 30px;
}

.btn-cta {
    background: #f4a622;
    color: #000000;
    border-radius: 30px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-cta:hover {
    background: #e09510;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(244, 166, 34, 0.4);
}

.btn-cta-outline {
    border: 2px solid rgba(82, 90, 239, 0.5);
    color: #000000;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 15px;
    background: transparent;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-left: 12px;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #000000;
    border-color: #000000;
}

/* ========================
   ABOUT
======================== */
.about-section {
    padding: 90px 0;
    background: #f8fbff;
}

.about-img-wrap {
    position: relative;
    padding-right: 0px;
}

.about-img {
width:100%;
height:620px;   /* adjust this value */
object-fit:cover;
border-radius:15px;
box-shadow:0 10px 40px rgba(0,0,0,0.1);
animation: floatY 4s ease-in-out infinite;
}

.experience-box {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: #0c4a6e;
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeUp 1s ease;
}

.experience-box h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.experience-box p {
    margin: 0;
    font-size: 14px;
}

.section-subtitle {
    color: #f4a622;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-text {
    color: #555;
    margin-bottom: 25px;
}

.about-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.about-item i {
    color: #0ea5e9;
    margin-right: 10px;
    font-size: 18px;
}

.about-btn {
    margin-top: 20px;
    background: #0c4a6e;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
}

.about-btn:hover {
    background: #f4a622;
    color: white;
}

/* .about-content {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
} */

/* ========================
   ANIMATIONS
======================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes floatY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes scroll-anim {
    0% { opacity: 0; transform: rotate(45deg) translate(-8px, -8px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(8px, 8px); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ========================
   RESPONSIVE
======================== */
@media(max-width:768px){

.hero-section{
padding:110px 15px 60px;
}

.hero-title{
font-size:32px;
}

.hero-subtitle{
max-width:100%;
}

.hero-stats{
justify-content:space-between;
}

.stat-item{
flex:1;
}

}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-stats {
        gap: 12px;
    }

    .stat-num {
        font-size: 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .btn-cta,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-bottom: 10px;
    }
}

.map-section{
padding:80px 0;
background:#f8fbff;
}

/* Info Card */
.map-info{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
position:relative;
z-index:2;
}

.map-info h5{
color:#0c4a6e;
font-weight:600;
margin-bottom:10px;
}

.map-info p{
color:#64748b;
margin-bottom:20px;
}

/* contact */
.map-contact div{
display:flex;
align-items:center;
margin-bottom:12px;
}

.map-contact i{
color:#0ea5e9;
margin-right:10px;
font-size:18px;
}

/* button */
.map-btn{
display:inline-block;
margin-top:15px;
background:#0c4a6e;
color:white;
padding:10px 20px;
border-radius:25px;
text-decoration:none;
}

.map-btn:hover{
background:#f4a622;
color:white;
}

/* Map */
.map-wrapper{
width:100%;
height:400px;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.map-wrapper iframe{
width:100%;
height:100%;
border:0;
}

.hero-image{
width:100%;
position:relative;
}

.hero-img{
width:100%;
height:520px;
object-fit:cover;
border-radius:28px;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
/* animation: float 4s ease-in-out infinite; */
}
@media(max-width:991px){
.hero-img{
height:300px;
margin-top:30px;
}
}

/* ABOUT NEW UI */
.about-section{
padding:120px 0;
background:white;
}

.about-tag{
background:#e0f2fe;
color:#0369a1;
padding:5px 15px;
border-radius:20px;
font-size:12px;
font-weight:600;
}

.about-title{
font-size:36px;
font-weight:700;
color:#0c4a6e;
margin:15px 0;
}

.about-text{
color:#64748b;
line-height:1.8;
margin-bottom:25px;
}

/* features */
.feature-box{
display:flex;
gap:15px;
margin-bottom:20px;
}

.feature-box i{
width:45px;
height:45px;
background:#e0f2fe;
color:#0369a1;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
}

.feature-box h6{
margin:0;
font-weight:600;
color:#0c4a6e;
}

.feature-box p{
margin:0;
font-size:13px;
color:#64748b;
}

/* button */
.btn-about{
display:inline-block;
margin-top:10px;
background:#0c4a6e;
color:white;
padding:10px 25px;
border-radius:25px;
text-decoration:none;
}

.btn-about:hover{
background:#f4a622;
color:white;
}

/* image */
.about-image{
position:relative;
}

.about-image img{
width:100%;
height:590px;
object-fit:cover;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* floating card */
.about-floating{
position:absolute;
bottom:20px;
left:20px;
background:white;
padding:15px 20px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.about-floating h4{
margin:0;
color:#0c4a6e;
font-weight:700;
}

.about-floating span{
font-size:12px;
color:#64748b;
}
@media(max-width:991px){

.about-image img{
height:280px;
}

.about-title{
font-size:26px;
}

.about-content{
margin-bottom:30px;
}

}


       /* ==============================
           VALUES SECTION
        ============================== */
        .values-section {
            padding: 50px 0;
            background: #f8fafc;
        }
 
        .value-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 22px;
            border: 1px solid #004eb4;
            text-align: center;
            height: 100%;
            transition: all 0.3s;
        }
 
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(12,74,110,0.1);
            border-color: #bae6fd;
        }
 
        .value-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 18px;
        }
 
        .value-card h5 {
            font-size: 15px;
            font-weight: 600;
            color: #0c4a6e;
            margin-bottom: 8px;
        }
 
        .value-card p {
            font-size: 13px;
            color: #64748b;
            line-height: 1.7;
            margin: 0;
        }


        /* PROCESS SECTION */
.process-section{
padding:80px 0;
background:#f8fbff;
}

.process-card{
background:white;
padding:30px 20px;
border-radius:16px;
text-align:center;
border:1px solid #e2e8f0;
position:relative;
height:100%;
transition:.3s;
}

.process-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.process-number{
position:absolute;
top:-12px;
left:20px;
background:#0c4a6e;
color:white;
font-size:12px;
padding:4px 10px;
border-radius:20px;
}

.process-card i{
font-size:28px;
color:#0ea5e9;
margin-bottom:10px;
}

.process-card h5{
font-size:17px;
font-weight:600;
color:#0c4a6e;
}

.process-card p{
font-size:16px;
color:#64748b;
margin:0;
}
.value-icon i{
font-size:22px;
color:#0c4a6e;
}

.value-icon{
width:60px;
height:60px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 12px;
}

/* MV Section */
.mv-section{
padding:90px 0;
background:#f8fbff;
}

.mv-card{
background:#fff;
padding:35px 30px;
border-radius:16px;
border:1px solid #022655;
height:100%;
transition:.3s;
}

.mv-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.mv-icon{
width:60px;
height:60px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:18px;
}

.mv-icon i{
font-size:24px;
}

/* colors */
.bg-blue{
background:#e0f2fe;
color:#0369a1;
}

.bg-amber{
background:#fef3c7;
color:#b45309;
}

.bg-teal{
background:#ccfbf1;
color:#0f766e;
}

.mv-card h4{
font-size:18px;
font-weight:600;
color:#0c4a6e;
margin-bottom:10px;
}

.mv-card p{
font-size:14px;
color:#64748b;
line-height:1.7;
margin:0;
}


 /* ==============================
           MISSION / VISION
        ============================== */
        .mv-section {
            padding: 50px 0;
            background: #f8fafc;
        }
 
        .mv-card {
            background: #fff;
            border-radius: 18px;
            padding: 36px 30px;
            border: 1px solid #e2e8f0;
            height: 100%;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
 
        .mv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #0c4a6e, #0ea5e9);
            border-radius: 4px 0 0 4px;
        }
 
        .mv-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(12,74,110,0.1);
            border-color: #bae6fd;
        }
 
        .mv-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 18px;
        }
 
        .mv-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: #0c4a6e;
            margin-bottom: 12px;
        }
 
        .mv-card p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.8;
            margin: 0;
        }

















   /* ==============================
           RESPONSIVE
        ============================== */
        @media (max-width: 991px) {
            .page-hero { padding: 130px 0 60px; }
            .page-hero h1 { font-size: 34px; }
            .about-main { padding: 70px 0; }
            .about-title { font-size: 28px; }
            .about-img-main, .about-img-placeholder { height: 360px; }
            .about-img-wrap { margin-bottom: 50px; }
            .about-badge-box { bottom: -16px; right: 10px; }
            .about-badge-box2 { left: 10px; }
            .stat-divider { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); }
            .about-btn-outline { margin-left: 0; margin-top: 10px; }
        }
 
        @media (max-width: 575px) {
            .page-hero h1 { font-size: 26px; }
            .hero-stat-card { grid-template-columns: 1fr 1fr; }
            .about-title { font-size: 24px; }
            .about-btn, .about-btn-outline { width: 100%; justify-content: center; margin-left: 0; }
        }

           /* ==============================
           PAGE HERO
        ============================== */
        .page-hero {
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 60%, #0ea5e9 100%);
            padding: 150px 0 80px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
 
        .page-hero::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 420px;
            height: 420px;
            background: rgba(255,255,255,0.04);
            border-radius: 50%;
        }
 
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -60px;
            width: 350px;
            height: 350px;
            background: rgba(255,255,255,0.03);
            border-radius: 50%;
        }
 
        .page-hero-content {
            position: relative;
            z-index: 2;
        }
 
        .page-hero-tag {
            display: inline-block;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 25px;
            padding: 5px 18px;
            font-size: 12px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }
 
        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 14px;
        }
 
        .page-hero h1 span { color: #f4a622; }
 
        .page-hero p {
            font-size: 15px;
            opacity: 0.85;
            max-width: 520px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
 
        .breadcrumb-item a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 13px;
        }
 
        .breadcrumb-item.active { color: #f4a622; font-size: 13px; }
        .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
 
        /* Hero right floating cards */
        .hero-service-cards {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
 
        .hero-svc-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 14px;
            padding: 18px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.25s;
        }
 
        .hero-svc-card:hover {
            background: rgba(255,255,255,0.18);
        }
 
        .hero-svc-icon {
            width: 42px;
            height: 42px;
            background: rgba(244,166,34,0.25);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
 
        .hero-svc-card strong {
            display: block;
            font-size: 13px;
            font-weight: 600;
        }
 
        .hero-svc-card small {
            font-size: 11px;
            opacity: 0.7;
        }
 
        /* ==============================
           SECTION SHARED
        ============================== */
        .section-tag {
            display: inline-block;
            background: #e0f2fe;
            color: #0369a1;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.8px;
            padding: 5px 14px;
            border-radius: 20px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
 
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 8px;
        }
 
        .section-title span { color: #f4a622; }
 
        .section-sub {
            color: #64748b;
            font-size: 15px;
            max-width: 540px;
            margin: 0 auto;
        }
 
        /* ==============================
           FILTER TABS
        ============================== */
        .filter-section {
            padding: 60px 0 10px;
            background: #fff;
        }
 
        .filter-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 30px;
        }
 
        .filter-btn {
            background: #f1f5f9;
            color: #475569;
            border: 1px solid #e2e8f0;
            border-radius: 25px;
            padding: 9px 22px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.25s;
            font-family: 'Poppins', sans-serif;
        }
 
        .filter-btn:hover,
        .filter-btn.active {
            background: #0c4a6e;
            color: #fff;
            border-color: #0c4a6e;
        }
 
        /* ==============================
           SERVICES GRID
        ============================== */
        .services-grid-section {
            padding: 50px 0 90px;
            background: #fff;
        }
 
        .service-card {
            background: #fff;
            border-radius: 18px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }
 
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 50px rgba(12,74,110,0.12);
            border-color: #bae6fd;
        }
 
        .svc-card-top {
            padding: 28px 26px 20px;
            flex: 1;
        }
 
        .svc-icon-wrap {
            width: 62px;
            height: 62px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 18px;
        }
 
        .service-card h5 {
            font-size: 17px;
            font-weight: 600;
            color: #0c4a6e;
            margin-bottom: 10px;
        }
 
        .service-card p {
            font-size: 13px;
            color: #64748b;
            line-height: 1.75;
            margin-bottom: 16px;
        }
 
        .svc-features {
            list-style: none;
            padding: 0;
            margin: 0 0 4px;
        }
 
        .svc-features li {
            font-size: 12px;
            color: #475569;
            padding: 4px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
 
        .svc-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #0ea5e9;
            border-radius: 50%;
            flex-shrink: 0;
        }
 
        .svc-card-bottom {
            padding: 16px 26px;
            border-top: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #ffffff;
        }
 
        .svc-tag {
            font-size: 11px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.4px;
        }
 
        .tag-neuro { background: #e0f2fe; color: #0369a1; }
        .tag-skin  { background: #fce7f3; color: #9d174d; }
        .tag-cosm  { background: #fef3c7; color: #b45309; }
        .tag-hair  { background: #ccfbf1; color: #0f766e; }
        .tag-gen   { background: #ede9fe; color: #6d28d9; }
 
        .svc-link {
            font-size: 12px;
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: gap 0.2s;
        }
 
        .svc-link:hover { gap: 8px; color: #ffffff; }
 
        /* ==============================
           FEATURED SERVICE (WIDE CARD)
        ============================== */
        .featured-section {
            padding: 0 0 90px;
            background: #fff;
        }
 
        .featured-card {
            background: linear-gradient(135deg, #0c4a6e, #0369a1);
            border-radius: 22px;
            padding: 50px 50px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 50px;
            overflow: hidden;
            position: relative;
        }
 
        .featured-card::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }
 
        .featured-icon-big {
            width: 100px;
            height: 100px;
            background: rgba(244,166,34,0.25);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            flex-shrink: 0;
        }
 
        .featured-content { flex: 1; position: relative; z-index: 1; }
 
        .featured-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }
 
        .featured-content h3 span { color: #f4a622; }
 
        .featured-content p {
            font-size: 14px;
            opacity: 0.85;
            line-height: 1.8;
            margin-bottom: 22px;
            max-width: 560px;
        }
 
        .featured-list {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }
 
        .feat-pill {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 5px 14px;
            font-size: 12px;
            font-weight: 500;
        }
 
        .btn-featured {
            background: #f4a622;
            color: #fff;
            border-radius: 30px;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            border: none;
        }
 
        .btn-featured:hover {
            background: #e09510;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(244,166,34,0.4);
        }
 
        /* ==============================
           PROCESS SECTION
        ============================== */
        .process-section {
            padding: 90px 0;
            background: #f8fafc;
        }
 
        .process-step {
            text-align: center;
            padding: 10px 16px;
            position: relative;
        }
 
        .process-step::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -30px;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #0ea5e9, transparent);
        }
 
        .col-md-3:last-child .process-step::after { display: none; }
 
        .step-num {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0c4a6e, #0ea5e9);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            margin: 0 auto 18px;
        
            box-shadow: 0 6px 20px rgba(12,74,110,0.25);
        }
 
        .process-step h6 {
            font-size: 15px;
            font-weight: 600;
            color: #0c4a6e;
            margin-bottom: 8px;
        }
 
        .process-step p {
            font-size: 13px;
            color: #64748b;
            line-height: 1.7;
            margin: 0;
        }
 
        /* ==============================
           CONDITIONS SECTION
        ============================== */
        .conditions-section {
            padding: 90px 0;
            background: #fff;
        }
 
        .condition-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 30px;
            padding: 10px 20px;
            font-size: 13px;
            color: #334155;
            font-weight: 500;
            margin: 6px 4px;
            transition: all 0.25s;
            cursor: default;
        }
 
        .condition-pill:hover {
            background: #e0f2fe;
            border-color: #7dd3fc;
            color: #0369a1;
            transform: translateY(-2px);
        }
 
        .condition-pill span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }
 
        .dot-neuro { background: #0ea5e9; }
        .dot-skin  { background: #ec4899; }
        .dot-hair  { background: #14b8a6; }
        .dot-cosm  { background: #f59e0b; }
 
        /* ==============================
           FAQ SECTION
        ============================== */
        .faq-section {
            padding: 90px 0;
            background: #f8fafc;
        }
 
        .accordion-button {
            font-size: 14px;
            font-weight: 600;
            color: #0c4a6e;
            background: #fff;
            box-shadow: none;
            padding: 18px 22px;
        }
 
        .accordion-button:not(.collapsed) {
            color: #0ea5e9;
            background: #f0f9ff;
            box-shadow: none;
        }
 
        .accordion-button::after {
            filter: invert(30%) sepia(80%) saturate(500%) hue-rotate(180deg);
        }
 
        .accordion-item {
            border: 1px solid #e2e8f0;
            border-radius: 12px !important;
            margin-bottom: 12px;
            overflow: hidden;
        }
 
        .accordion-body {
            font-size: 13px;
            color: #64748b;
            line-height: 1.8;
            padding: 4px 22px 18px;
            background: #fff;
        }
 
        /* ==============================
           STATS BAND
        ============================== */
        .stats-band {
            background: linear-gradient(135deg, #0c4a6e, #0369a1);
            padding: 60px 0;
            color: #fff;
        }
 
        .stat-band-item { text-align: center; padding: 10px 0; }
 
        .stat-band-item .num {
            font-size: 42px;
            font-weight: 700;
            color: #f4a622;
            line-height: 1;
            /* font-family: 'Playfair Display', serif; */
        }
 
        .stat-band-item .label {
            font-size: 13px;
            opacity: 0.8;
            margin-top: 6px;
        }
 
        .stat-divider { border-left: 1px solid rgba(255,255,255,0.15); }
 
        /* ==============================
           RESPONSIVE
        ============================== */
        @media (max-width: 991px) {
            .page-hero { padding: 130px 0 60px; }
            .page-hero h1 { font-size: 34px; }
            .featured-card { flex-direction: column; gap: 28px; padding: 36px 28px; }
            .process-step::after { display: none; }
            .stat-divider { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); }
        }
 
        @media (max-width: 767px) {
            .hero-service-cards { grid-template-columns: 1fr 1fr; }
            .page-hero h1 { font-size: 28px; }
            .section-title { font-size: 26px; }
            .filter-btn { font-size: 12px; padding: 7px 16px; }
        }
 
        @media (max-width: 575px) {
            .hero-service-cards { grid-template-columns: 1fr; }
        }

        
        /* ==============================
           PAGE HERO
        ============================== */
        .page-hero {
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 60%, #0ea5e9 100%);
            padding: 150px 0 80px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
 
        .page-hero::before {
            content: '';
            position: absolute;
            top: -80px; right: -80px;
            width: 420px; height: 420px;
            background: rgba(255,255,255,0.04);
            border-radius: 50%;
        }
 
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -100px; left: -60px;
            width: 350px; height: 350px;
            background: rgba(255,255,255,0.03);
            border-radius: 50%;
        }
 
        .page-hero-content { position: relative; z-index: 2; }
 
        .page-hero-tag {
            display: inline-block;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 25px;
            padding: 5px 18px;
            font-size: 12px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }
 
        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 14px;
        }
 
        .page-hero h1 span { color: #f4a622; }
 
        .page-hero p {
            font-size: 15px;
            opacity: 0.85;
            max-width: 500px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
 
        .breadcrumb-item a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 13px;
        }
 
        .breadcrumb-item.active { color: #f4a622; font-size: 13px; }
        .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
 
        /* Hero right quick-info cards */
        .hero-info-grid {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
 
        .hero-info-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 14px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
        }
 
        .hero-info-icon {
            width: 44px; height: 44px;
            background: rgba(244,166,34,0.25);
            border-radius: 11px;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
 
        .hero-info-card strong {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 2px;
        }
 
        .hero-info-card span {
            font-size: 12px;
            opacity: 0.8;
        }
 
        /* ==============================
           CONTACT SECTION
        ============================== */
        .contact-section {
            padding: 90px 0;
            background: #f8fafc;
        }
 
        .section-tag {
            display: inline-block;
            background: #e0f2fe;
            color: #0369a1;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.8px;
            padding: 5px 14px;
            border-radius: 20px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
 
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 8px;
        }
 
        .section-title span { color: #f4a622; }
 
        /* Info cards column */
        .info-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 16px;
            transition: all 0.3s;
        }
 
        .info-card:hover {
            border-color: #bae6fd;
            box-shadow: 0 8px 25px rgba(12,74,110,0.08);
            transform: translateX(4px);
        }
 
        .info-card-icon {
            width: 50px; height: 50px;
            border-radius: 13px;
            display: flex; align-items: center; justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }
 
        .info-card h6 {
            font-size: 13px;
            font-weight: 600;
            color: #94a3b8;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
 
        .info-card p {
            font-size: 14px;
            color: #0c4a6e;
            font-weight: 500;
            margin: 0;
            line-height: 1.6;
        }
 
        .info-card a {
            color: #0c4a6e;
            text-decoration: none;
        }
 
        .info-card a:hover { color: #0ea5e9; }
 
        /* Hours card */
        .hours-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            border: 1px solid #e2e8f0;
            margin-bottom: 16px;
        }
 
        .hours-card h5 {
            font-size: 15px;
            font-weight: 600;
            color: #0c4a6e;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
 
        .hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 9px 0;
            border-bottom: 1px solid #f1f5f9;
            font-size: 13px;
        }
 
        .hours-row:last-child { border-bottom: none; }
 
        .hours-row .day { color: #475569; font-weight: 500; }
 
        .hours-row .time { color: #0c4a6e; font-weight: 600; }
 
        .badge-open {
            background: #dcfce7;
            color: #166534;
            font-size: 10px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 20px;
            letter-spacing: 0.4px;
        }
 
        .badge-closed {
            background: #fee2e2;
            color: #991b1b;
            font-size: 10px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 20px;
        }
 
        /* Social strip */
        .social-strip {
            background: #fff;
            border-radius: 16px;
            padding: 20px 22px;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
 
        .social-strip span {
            font-size: 13px;
            color: #64748b;
            font-weight: 500;
        }
 
        .social-link {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            display: flex; align-items: center; justify-content: center;
            color: #475569;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.25s;
        }
 
        .social-link:hover {
            background: #0c4a6e;
            color: #fff;
            border-color: #0c4a6e;
            transform: translateY(-2px);
        }
 
        /* ==============================
           CONTACT FORM
        ============================== */
        .form-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px 36px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 40px rgba(12,74,110,0.07);
        }
 
        .form-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 6px;
        }
 
        .form-card p.form-sub {
            font-size: 13px;
            color: #64748b;
            margin-bottom: 28px;
            line-height: 1.6;
        }
 
        .form-label {
            font-size: 13px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 6px;
        }
 
        .form-control, .form-select {
            font-size: 13px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            padding: 11px 14px;
            color: #1e293b;
            transition: all 0.25s;
            font-family: 'Poppins', sans-serif;
        }
 
        .form-control:focus, .form-select:focus {
            border-color: #0ea5e9;
            box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
            outline: none;
        }
 
        textarea.form-control { resize: vertical; min-height: 120px; }
 
        .form-check-input:checked {
            background-color: #0c4a6e;
            border-color: #0c4a6e;
        }
 
        .form-check-label {
            font-size: 12px;
            color: #64748b;
        }
 
        .btn-submit {
            background: linear-gradient(135deg, #0c4a6e, #0369a1);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 13px 32px;
            font-weight: 600;
            font-size: 14px;
            width: 100%;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
        }
 
        .btn-submit:hover {
            background: linear-gradient(135deg, #f4a622, #e09510);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(244,166,34,0.35);
        }
 
        /* Success message */
        .success-msg {
            display: none;
            background: #dcfce7;
            border: 1px solid #86efac;
            border-radius: 12px;
            padding: 16px 20px;
            color: #166534;
            font-size: 14px;
            margin-top: 16px;
            align-items: center;
            gap: 10px;
        }
 
        /* ==============================
           MAP SECTION
        ============================== */
        .map-section {
            padding: 0 0 90px;
            background: #f8fafc;
        }
 
        .map-wrapper {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 40px rgba(12,74,110,0.08);
        }
 
        .map-top-bar {
            background: linear-gradient(135deg, #0c4a6e, #0369a1);
            padding: 18px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
 
        .map-top-bar h5 {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
 
        .map-top-bar span {
            font-size: 12px;
            color: rgba(255,255,255,0.75);
        }
 
        .btn-directions {
            background: #f4a622;
            color: #fff;
            border: none;
            border-radius: 20px;
            padding: 8px 20px;
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.25s;
            white-space: nowrap;
        }
 
        .btn-directions:hover {
            background: #e09510;
            color: #fff;
            transform: translateY(-1px);
        }
 
        .map-embed {
            width: 100%;
            height: 420px;
            border: none;
            display: block;
        }
 
        .map-bottom-bar {
            padding: 18px 28px;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            background: #fff;
            border-top: 1px solid #f1f5f9;
        }
 
        .map-info-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #475569;
        }
 
        .map-info-pill i {
            color: #0ea5e9;
            font-size: 15px;
        }
 
        /* ==============================
           NEARBY SECTION
        ============================== */
        .nearby-section {
            padding: 0 0 90px;
            background: #f8fafc;
        }
 
        .nearby-card {
            background: #fff;
            border-radius: 14px;
            padding: 20px 18px;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all 0.25s;
        }
 
        .nearby-card:hover {
            border-color: #bae6fd;
            box-shadow: 0 6px 20px rgba(12,74,110,0.08);
        }
 
        .nearby-icon {
            width: 44px; height: 44px;
            border-radius: 11px;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
 
        .nearby-card h6 {
            font-size: 13px;
            font-weight: 600;
            color: #0c4a6e;
            margin-bottom: 2px;
        }
 
        .nearby-card span {
            font-size: 11px;
            color: #94a3b8;
        }
 
        /* ==============================
           APPOINTMENT STRIP
        ============================== */
        .appt-strip {
            background: #fff;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            padding: 36px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 50px;
            box-shadow: 0 6px 25px rgba(12,74,110,0.06);
        }
 
        .appt-strip-left h4 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 6px;
        }
 
        .appt-strip-left p {
            font-size: 13px;
            color: #64748b;
            margin: 0;
        }
 
        .appt-strip-right {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
 
        .btn-appt {
            background: #0c4a6e;
            color: #fff;
            border-radius: 30px;
            padding: 12px 26px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            border: 2px solid #0c4a6e;
        }
 
        .btn-appt:hover {
            background: #f4a622;
            border-color: #f4a622;
            color: #fff;
            transform: translateY(-2px);
        }
 
        .btn-appt-call {
            border: 2px solid #0c4a6e;
            color: #0c4a6e;
            border-radius: 30px;
            padding: 10px 24px;
            font-weight: 500;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
 
        .btn-appt-call:hover {
            background: #0c4a6e;
            color: #fff;
        }
 
        /* ==============================
           RESPONSIVE
        ============================== */
        @media (max-width: 991px) {
            .page-hero { padding: 130px 0 60px; }
            .page-hero h1 { font-size: 34px; }
            .form-card { padding: 28px 22px; }
            .appt-strip { padding: 26px 24px; }
            .map-embed { height: 320px; }
        }
 
        @media (max-width: 767px) {
            .page-hero h1 { font-size: 28px; }
            .section-title { font-size: 26px; }
            .appt-strip { flex-direction: column; align-items: flex-start; }
            .map-bottom-bar { gap: 16px; }
            .map-embed { height: 260px; }
        }
 
        @media (max-width: 575px) {
            .page-hero h1 { font-size: 24px; }
            .hero-info-grid { gap: 10px; }
            .btn-appt, .btn-appt-call { width: 100%; justify-content: center; }
        }


        /* hero */
.treatment-hero{
background: linear-gradient(135deg,#eef9ff,#ffffff);
padding:120px 0;
text-align:center;
padding-bottom: 1%;
}

.treatment-hero h1{
font-size:40px;
font-weight:700;
color:#0c3c60;
}

.treatment-hero p{
color:#666;
margin-top:10px;
}

/* section */
.treatment-section{
padding:60px 0;
}

.treatment-img{
    width: 100%;
    max-width: 400px;  
border-radius:20px;
}

/* list */
.treatment-list{
padding-left:0;
list-style:none;
margin:20px 0;
}

.treatment-list li{
padding:8px 0;
border-bottom:1px solid #eee;
}

.treatment-list li:before{
content:"✓";
color:#00a6c7;
font-weight:700;
margin-right:10px;
}

/* button */
.btn-book{
background:#00a6c7;
color:#fff;
padding:12px 28px;
border-radius:30px;
text-decoration:none;
display:inline-block;
margin-top:10px;
}

.btn-book:hover{
background:#0c3c60;
color:white;
}

/* features */
.treatment-features{
background:#f8fdff;
padding:60px 0;
}

.feature-box{
text-align:center;
padding:30px;
background:white;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
height:100%;
}

.feature-box i{
font-size:30px;
color:#00a6c7;
margin-bottom:15px;
}

/* responsive */
@media(max-width:991px){

.treatment-hero h1{
font-size:28px;
}

.treatment-section{
padding:40px 0;
}

}