/********** Template CSS - Dark Theme **********/
:root {
    --primary: #06A3DA;
    --secondary: #79C24C;
    --light: #1E2A3A;       /* was #EEF9FF — now a dark navy card bg */
    --dark: #E0EAF4;        /* was #091E3E — now light text for dark bg */

    /* Extra dark-theme tokens */
    --bg-body:       #0D1B2A;
    --bg-surface:    #152132;
    --bg-card:       #1E2A3A;
    --bg-card-hover: #243347;
    --text-main:    #ffffff;
    --text-muted:    #7A94AD;
    --border-color:  #2A3F55;


	--carbon-dark: #121212;
	--carbon-medium: #1a1a1a;
	--carbon-light: #2a2a2a;
	--metal-dark: #3a3a3a;
	--metal-light: #4a4a4a;
	--accent-red: #ff3333;
	--accent-blue: #00a8ff;
	--accent-green: #00ff88;
    --accent-cyan: #00f5ff;
    --accent-purple: #a855f7;
    --text-dim: #808080;

    /* Gradient Palette */
--gradient-primary: linear-gradient(
    135deg,
    #06A3DA 0%,
    #0bc5ea 35%,
    #38d39f 70%,
    #79C24C 100%
);

--gradient-hover: linear-gradient(
    135deg,
    #79C24C 0%,
    #38d39f 35%,
    #06A3DA 70%,
    #7B61FF 100%
);

--gradient-outline: linear-gradient(
    90deg,
    rgba(6,163,218,0.8),
    rgba(121,194,76,0.8)
);
}

/* ── Body & Base ─────────────────────────────────────── */
body {
    background-color: var(--bg-body);
    color: var(--text-main);
    position: relative;
	z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    color: #E8F2FB;
}

p, span, small, li {
    color: var(--text-main);
}

a {
    color: var(--primary);
}
.bg-gradient-primary {
    background: var(--gradient-primary);
}
/* ── Font Weights (unchanged) ────────────────────────── */
h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}
.text-body {
    color: var(--text-main) !important;
}
.text-blue {
    color: #06A3DA !important;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
    border-radius: 8px;
}
.btn-ps {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff !important;
}

.btn-ss {
    background: var(--secondary);
    border: 1px solid var(--secondary);
    color: #fff !important;
}

.btn-ps:hover {
    background: var(--primary);
    border-color: var(--primary);
     color: #FFFFFF !important; 
}

.btn-ss:hover {
     background: var(--secondary); 
    border-color: var(--secondary);
    color: #FFFFFF !important;
    
}
 /* ===============================
   PREMIUM GRADIENT BUTTONS
================================= */

.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
    border: none;
    color: #fff !important;
    z-index: 1;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    transition: all 0.45s ease;
    
    box-shadow:
        0 8px 25px rgba(6, 163, 218, 0.25),
        0 4px 12px rgba(121, 194, 76, 0.18);

    /* backdrop-filter: blur(8px); */
}

/* Animated Gradient */
.btn-primary:hover,
.btn-secondary:hover {
    background: var(--gradient-hover);
    background-size: 200% 200%;
    
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(6, 163, 218, 0.35),
        0 8px 22px rgba(121, 194, 76, 0.28),
        0 0 20px rgba(56, 211, 159, 0.35);

    animation: gradientShift 3s ease infinite;
}

/* Shine Sweep Effect */
.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    transition: all 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    left: 120%;
}

/* Glow Pulse */
.btn-primary::after,
.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;

    background: var(--gradient-outline);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: 0.4s ease;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
    opacity: 1;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/* btn-light / btn-dark overrides for dark theme */
.btn-light {
    background-color: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-main);
}
.btn-light:hover {
    background-color: var(--bg-card-hover);
    color: #fff;
}

.btn-dark {
    background-color: #0D1B2A;
    border-color: #0D1B2A;
    color: #fff;
}

/* ── Spinner ─────────────────────────────────────────── */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
    background-color: var(--bg-body) !important; /* dark spinner bg */
}

/* ── Back-to-Top ─────────────────────────────────────── */
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
@media (max-width: 991.98px) {
    .back-to-top {
        right: 15px;
        bottom: 80px; /* above mobile action bar */
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
/* ── Top shape accent ────────────────────────────────── */
.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

/* ── Topbar ──────────────────────────────────────────── */
.container-fluid.bg-light {
    background-color: var(--bg-surface) !important;
}

/* ── Navbar ──────────────────────────────────────────── */
.navbar-light.bg-white,
nav.navbar.bg-white {
    background-color: var(--bg-surface) !important;
    border-bottom: 1px solid var(--border-color);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 12px 24px;
    font-size: 18px;
    color: var(--text-main) !important;
    outline: none;
    transition: .5s;
    position:relative;
}
/* Underline */
.navbar-light .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 6px; /* tweak if needed */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #9945ff);
    transition: width 0.3s ease;
}

/* Hover + Active underline */
.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    width: 70%;
}
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 6px 12px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-toggler {
    border-color: var(--border-color);
}
.navbar-light .navbar-toggler-icon {
    filter: invert(1) brightness(0.8);
}
@media (max-width: 991.98px) {

    /* Center menu items */
    .navbar .navbar-nav {
        width: 100%;
        align-items: center;
    }

    .navbar .navbar-nav .nav-link {
        text-align: center;
    }

    /* Center button */
    .navbar .btn {
        display: block;
        margin: 15px auto 0;
    }
}
/* search button in nav */
.btn.text-dark {
    color: var(--text-main) !important;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}
/* Mobile & tablet view (no underline, only blue active color) */
@media (max-width: 991px) {
    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    /* Optional: remove hover underline effect completely */
    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 0;
    }
}

/* ── Dropdown ────────────────────────────────────────── */
.dropdown-menu {
    background-color: var(--bg-card);
    border-color: var(--border-color);
}
.dropdown-item {
    color: var(--text-main);
}
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--bg-card-hover);
    color: var(--primary);
}

/* ── Carousel ────────────────────────────────────────── */
#header-carousel .carousel-item {
    height: 500px;
}
@media (max-width: 768px) {
    #header-carousel .carousel-item {
        height: 350px;
    }
}

@media (max-width: 576px) {
    #header-carousel .carousel-item {
        height: 300px;
    }
}
#header-carousel .carousel-item img {
    /* height: 100%;
    object-fit: cover; */
    object-position: center;
    filter: brightness(80%);
}
.carousel-caption {
    top: 0;
    left: 0;
    padding: 15px;
    right: 0;
    bottom: 0;
    background: rgba(6, 15, 28, .5);   /* darker overlay */
    z-index: 1;
}
.carousel-caption h1 {
    line-height: 1.3;
}

.carousel-caption h5 {
    line-height: 1.4;
}
@media (max-width: 576px) {

    .carousel-caption h1 {
        font-size: 20px !important;
        font-weight: 600;
    }

    .carousel-caption h5 {
        font-size: 12px;
        margin-bottom: 10px;
    }
   
    .carousel-caption .p-3 {
        max-width: 95%;
    }
    
}


.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 15%; /* slightly bigger tap area */
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1rem;
        height: 1rem;
    }
}
/* ── Banner ──────────────────────────────────────────── */
@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}
/* ── About ──────────────────────────────────────────── */

@media (max-width: 576px) {
    .row.g-3 {
        --bs-gutter-y: 0; /* reduce vertical gap */
    }
}
/* Desktop */
.aboutimage-box {
    min-height: 500px;
}

/* Tablet */
@media (max-width: 992px) {
    .aboutimage-box {
        min-height: 350px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .aboutimage-box {
        min-height: 220px;
        margin-top: 10px;
    }
}
/* ── Section Title ───────────────────────────────────── */
.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--secondary);
}

/* ── Hero / Appointment backgrounds ─────────────────── */
/* .hero-header {
    background: linear-gradient(rgba(6, 15, 28, .5), rgba(6, 15, 28, .5)), url(../img/bgimg.png) center center no-repeat;
    background-size: cover;
} */
.hero-header {
    background:
        linear-gradient(rgba(6,15,28,.45), rgba(6,15,28,.45));

   
    background-repeat: no-repeat;
    background-size: cover;

    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile */
@media (max-width: 576px){
    .hero-header{
        min-height: 146px;
        background-position: center center;
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 991px){
    .hero-header{
        min-height: 199px;
    }
}
.about-hero-header {
    background-image: 
        linear-gradient(rgba(6,15,28,.45), rgba(6,15,28,.45)),
        url('../img/about-bg.png');
     background-position: center 40%;
}

.contact-hero-header {
    background-image: 
        linear-gradient(rgba(6,15,28,.45), rgba(6,15,28,.45)),
        url('../img/contact.png');
     background-position: center 15%;
}

.services-hero-header {
    background-image: 
        linear-gradient(rgba(6,15,28,.45), rgba(6,15,28,.45)),
        url('../img/treatment-bg.png');
        background-position: center 75%;
}
.team-hero-header {
    background-image: 
        linear-gradient(rgba(6,15,28,.45), rgba(6,15,28,.45)),
        url('../img/doctor-bg.png');
        background-position: center 10%;
    
}
.dr-hero-header {
    background-image: 
        linear-gradient(rgba(6,15,28,.45), rgba(6,15,28,.45)),
        url('../img/dr-bg.png');
        background-position: center 65%;
}
.appointment-hero-header {
    background-image: 
        linear-gradient(rgba(6,15,28,.45), rgba(6,15,28,.45)),
        url('../img/appointment.png');
        background-position: center 30%;
}

.appointment-form {
    background: rgba(0, 0, 0, 0.2);
}
.bg-appointment {
    background: linear-gradient(rgba(6, 15, 28, .5), rgba(6, 15, 28, .5)), url(../img/appointment.png) center center no-repeat;
    background-size: cover;
}
@media (max-width: 768px) {

    .bg-appointment {
        background:
            linear-gradient(rgba(6, 15, 28, .5), rgba(6, 15, 28, .5)),
            url(../img/appointment.png) right center no-repeat;
        background-size: cover;
        background-position: 55% center;
    }

}
/* ── bg-light override (cards, section-title boxes, etc.) */
.bg-light {
    background-color: var(--bg-card) !important;
}

/* text inside bg-light cards */
.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6 {
    color: #E8F2FB;
}

.bg-light p,
.bg-light span {
    color: var(--text-main);
}

/* ── Service Items ───────────────────────────────────── */
.service-item .rounded-top {
    height: 220px;   /* adjust: 200–260px */
    overflow: hidden;
}


.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* keeps image nicely cropped */
}


.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    inset:0;
    border-radius: 100px / 15px;
    /* box-shadow: 0 0 15px rgba(0, 0, 0, .5); */
    box-shadow: 0 0 25px rgba(153, 69, 255, 0.5);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}
/* ___________Results_____________ */
/* CARD STRUCTURE */
.ba-card {
    border-radius: 10px;
}

/* IMAGE SIDE BY SIDE */
.ba-images {
    display: flex;
}

.ba-item {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.ba-item img {
    width: 100%;
    height: 250px;
    /* object-fit: cover; */
}

/* CENTER WHITE LINE */
.ba-divider {
    position: absolute;
    top: 0;
    bottom: 60px; /* stop before bottom box */
    left: 50%;
    width: 2px;
    background: #fff;
    transform: translateX(-50%);
    z-index: 2;
}

/* BEFORE AFTER LABELS */
.ba-label {
    position: absolute;
    top: 10px;
    padding: 5px 10px;
    font-size: 11px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    border-radius: 4px;
}

.ba-label.before {
    left: 10px;
}

.ba-label.after {
    right: 10px;
}

/* BOTTOM BLACK BOX (LIKE YOUR DESIGN) */
.ba-bottom-box {
    background:#1E2A3A;
    padding: 12px;
}



/* MOBILE */
@media (max-width: 768px) {
    .ba-item img {
        height: 200px;
    }
}
/* VERTICAL STACK */
.ba-images-vertical {
    display: flex;
    flex-direction: column;
    position:relative;
}

.ba-images-vertical .ba-item {
    width: 100%;
}

/* IMAGE HEIGHT SAME SLIM */
.ba-images-vertical img {
    height: 125px; /* half of 250 */
    width: 100%;
    object-fit: cover;
}

/* HORIZONTAL DIVIDER */
.ba-divider-horizontal {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: #fff;
    transform: translateY(-50%);
    z-index: 2;
}
/* 3 IMAGE ROW */
.ba-images-3 {
    display: flex;
}

.ba-images-3 .ba-item {
    width: 33.33%;
}

/* SAME HEIGHT */
.ba-images-3 img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

/* TWO DIVIDERS */
.ba-divider-3-1,
.ba-divider-3-2 {
    position: absolute;
    top: 0;
    bottom: 60px;
    width: 2px;
    background: #fff;
    z-index: 2;
}

.ba-divider-3-1 {
    left: 33.33%;
    transform: translateX(-50%);
}

.ba-divider-3-2 {
    left: 66.66%;
    transform: translateX(-50%);
}

/* ── Offer section ───────────────────────────────────── */
.bg-offer {
    background: url(../img/bgimg.png) 5% center no-repeat;
    background-size: cover;
}
@media (max-width: 768px) {

    .bg-offer {
        background-position: left center; /* shift image to right */
        background-size: cover;
    }
}
.offer-text {
    background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 576px) {
    .offer-text .btn {
        font-size: 14px;
        padding: 10px 16px !important;
    }
}

/* ── Pricing Carousel ────────────────────────────────── */
.price-item h4 {
    min-height: 52px;   /* adjust (40–60px depending on font) */
}
.price-item img {
    height: 220px;        /* adjust as needed (180–250 ideal) */
    width: 100%;
    object-fit: cover;    /* prevents stretching */
}
.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 1;
    transition: .5s;
}

/* .price-carousel:hover .owl-nav {
    opacity: 1;
} */

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}
/* 📱 Mobile view */
@media (max-width: 576px) {
    .price-carousel .owl-nav .owl-prev,
    .price-carousel .owl-nav .owl-next {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}
/* Pricing card border */
.border-bottom.border-primary {
    border-color: var(--primary) !important;
}

/* ── Testimonial ─────────────────────────────────────── */
.bg-testimonial {
    background: url(../img/testinomial-bg.png) no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(0, 0, 0, 0.5);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}
.testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;   /* show 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Expanded state */
.testimonial-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
@media (max-width: 576px) {
    .testimonial-text {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
}
@media (max-width: 576px) {
    .bg-testimonial {
        padding: 25px 10px !important;
        margin: 0 !important;
    }
}
.view-more-btn {
    display: inline;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}
.view-more-btn:hover {
    color: #06A3DA;
}



/* ── Forms & Inputs ──────────────────────────────────── */
.form-control,
.form-select {
    background-color: var(--bg-card) !important;
    border-color: var(--border-color) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-muted) !important;
}
.form-select {
    background-color: var(--bg-card) !important;
    border-color: var(--border-color) !important;
    color: var(--text-muted) !important;

    /* 🔥 FIX: visible custom arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M1.5 5.5l6.5 6 6.5-6'/%3E%3C/svg%3E") !important;

    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}
.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus,
.form-select:focus 
{
    background-color: var(--bg-card-hover) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(153, 69, 255, 0.4);
    border: 1px solid var(--primary) !important;
    color: #fff !important;
}
optgroup {
    color: var(--primary) !important;
    font-weight: 600;
}
optgroup option {
    color: var(--text-main) !important;
}

/* ── Search Modal ────────────────────────────────────── */
.modal-content {
    background-color: var(--bg-surface);
    border-color: var(--border-color);
}

/* ── Footer ──────────────────────────────────────────── */
.container-fluid.bg-dark {
    background-color: #080F1A !important;
}

/* text-light links in footer */
.text-light {
    color: var(--text-main) !important;
}

a.text-light:hover {
    color: var(--primary) !important;
}

/* ── Shadows ─────────────────────────────────────────── */
.shadow-sm {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .5) !important;
}

/* ── Twenty-Twenty compare widget ───────────────────── */
.twentytwenty-wrapper {
    height: 100%;
}

/* ── HR ──────────────────────────────────────────────── */
hr {
    border-color: var(--border-color);
    opacity: 0.5;
}
/* Laptop */
img.logo-img {
  width: 260px;
  height: auto;
}

/* Tablet */
@media (max-width: 992px) {
  img.logo-img {
    width: 200px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  img.logo-img {
    width: 160px;
  }
}
/* Reusable Particle Background */
/* Particle Effect Background */
.philosophy-particles {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	pointer-events: none;
    z-index: 0;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
	border-radius: 50%;
	opacity: 0;
	animation: float-particle 20s infinite linear;
}

@keyframes float-particle {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 0;
	}

	5% {
		opacity: 1;
	}

	95% {
		opacity: 1;
	}

	100% {
		transform: translateY(-100vh) rotate(720deg);
		opacity: 0;
	}
}

/* Animated Prism Line */
.prism-line {
	width: 100%;
	height: 2px;
	margin: 0 auto 0;
	position: relative;
	overflow: hidden;
	background: var(--carbon-medium);
}

.prism-line::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			transparent,
			var(--accent-red) 20%,
			var(--accent-blue) 40%,
			var(--accent-green) 60%,
			var(--accent-purple) 80%,
			transparent);

	animation: prismSweep 4s ease-in-out infinite;
}
@keyframes prismSweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
/* .neon-outline {
    transition: all 0.3s ease;
}

.neon-outline:hover {
    outline: 2px solid var(--accent-purple);
    outline-offset: 0; 
    
    box-shadow:
        0 0 8px rgba(153, 69, 255, 0.6),
        0 0 18px rgba(153, 69, 255, 0.4);
} */
.counter.highlight {
  display: inline-block;
  max-width: 200px;
  margin-right: 20px;
  position: relative;
  padding: 26px;
  border-radius: 18px;
  background: rgba(10,18,32,0.7);
  overflow: hidden;
  z-index: 1;
}

/* Gradient border glow */
.counter.highlight::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: conic-gradient(
    from 180deg,
    #22e6ff,
    #3a7bff,
    #22e6ff,
    #3a7bff
  );
  z-index: -2;
  animation: rotateBorder 6s linear infinite;
}

/* Inner background (cuts center) */
.counter.highlight::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 16px;
  background: rgba(10,18,32,0.9);
  z-index: -1;
}

/* Animation */
@keyframes rotateBorder {
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 576px) {
  .row.g-3 {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .counter.highlight {
    max-width: 140px;   /* 👈 smaller box for mobile */
    padding: 16px;      /* reduce padding */
    margin-right: 0;    /* remove extra spacing */
  }
}

.colour-headline {
	/*  font-size: 56px;
	font-weight: 900; 
	text-transform: uppercase;
	letter-spacing: 3px; 
	margin-bottom: 30px;
	line-height: 1.2; */
	background: linear-gradient(135deg,
			var(--accent-cyan) 0%,
			var(--accent-purple) 25%,
			var(--accent-blue) 50%,
			var(--accent-green) 75%,
			var(--accent-cyan) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}
/* Wrapper glow */
.map-dark-wrapper {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height:440px;
    box-shadow:
        0 0 25px rgba(0, 229, 255, 0.35),
        0 0 60px rgba(0, 229, 255, 0.15);
}
/* Tablet */
@media (max-width: 991.98px) {
    .map-dark-wrapper {
        height: 320px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .map-dark-wrapper {
        height: 260px;
        border-radius: 12px;
    }
}

/* Dark mode effect */
.map-dark {
    width: 100%;
    height: 100%;
    border:0;

    filter:
        invert(92%)
        hue-rotate(180deg)
        brightness(0.85)
        contrast(1.2)
        saturate(1.2);
}

/* Extra neon overlay */
.map-dark-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: radial-gradient(
        circle at center,
        rgba(0, 229, 255, 0.08),
        transparent 70%
    );

    mix-blend-mode: screen;
}
/* Click overlay */
.map-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 5;
}

/* Desktop = interactive map */
@media (min-width: 1200px) {
    .map-overlay-link {
        display: none;
    }
}
/* ===============================
   INPUT FILLED STATE FIX
================================= */

/* When user types */
.form-control:not(:placeholder-shown),
.form-select:not(:placeholder-shown) {
    background-color: var(--bg-card-hover) !important;
    color: var(--text-muted) !important;
    /* border-color: var(--accent-cyan) !important; */

    box-shadow:
        0 0 8px rgba(0, 245, 255, 0.3),
        0 0 2px rgba(153, 69, 255, 0.3);
}

/* Focus state (already good, enhance glow) */
.form-control:focus {
    box-shadow:
        0 0 10px rgba(0, 245, 255, 0.6),
        0 0 20px rgba(153, 69, 255, 0.4);
}

/* ===============================
   CHROME AUTOFILL FIX 🔥
================================= */

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--bg-card) inset !important;
    -webkit-text-fill-color: var(--text-main) !important;
    transition: background-color 5000s ease-in-out 0s;
    border: 1px solid var(--border-color) !important;
}

/* Autofill focus */
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--bg-card-hover) inset !important;
}

/* ===============================
   CARET (cursor) COLOR
================================= */

.form-control {
    caret-color: var(--accent-cyan);
}
/* Force browser UI (calendar/time picker) to dark */
input[type="date"],
input[type="time"] {
    color-scheme: dark;
}

    .mobile-icon-input {
        width: 100%;
        height: 55px;
        padding: 0 15px;
        background: var(--bg-card);
        border-radius: 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: left;
        position: relative;
        border: 1px solid rgba(255,255,255,0.2);
        gap: 10px;
    }
.mobile-icon-input.active {
    background-color: var(--bg-card-hover);
    color: var(--text-main);

    box-shadow:
        0 0 8px rgba(0, 245, 255, 0.3),
        0 0 2px rgba(153, 69, 255, 0.3);
}.mobile-icon-input:focus-within {
    box-shadow:
        0 0 10px rgba(0, 245, 255, 0.6),
        0 0 20px rgba(153, 69, 255, 0.4);

    border-color: var(--accent-cyan);
}
    .mobile-icon-input i {
        font-size: 16px;
    color: var(--text-muted);
    margin-right: 5px;
    }

    .input-value {
        font-size: 14px;
        color: var(--text-muted);
    }

    .mobile-icon-input.active .input-value {
        color: #fff;
        font-weight: 600;
    }

    .mobile-icon-input input {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
    }


/* KEEP PICKER CLICKABLE */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.01;
    cursor: pointer;
}

/* =========================================
   APPOINTMENT PAGE (ISOLATED STYLING)
   ========================================= */

.appointment-page {
    position: relative;
    overflow: hidden;
}

/* Background glow (reuses your theme) */
.appointment-page::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    top: -120px;
    right: -120px;

    background: radial-gradient(
        circle,
        rgba(0,245,255,0.15),
        transparent 70%
    );

    filter: blur(90px);
    z-index: 0;
}

/* Content layer fix */
.appointment-page .container {
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */
.appointment-content p {
    color: var(--text-muted);
}

.appointment-content ul li {
    margin-bottom: 10px;
    color: var(--text-main);
}

/* FORM CARD (Glass style but using your tokens) */
.appointment-box {
    background: rgba(21, 33, 50, 0.65); /* matches --bg-surface */
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;

    backdrop-filter: blur(14px);

    box-shadow:
        0 0 25px rgba(0,245,255,0.12),
        0 0 60px rgba(153,69,255,0.08);

    transition: 0.4s ease;
}

/* Hover effect */
.appointment-box:hover {
    transform: translateY(-6px);

    box-shadow:
        0 0 35px rgba(0,245,255,0.25),
        0 0 80px rgba(153,69,255,0.15);
}

/* Heading */
.appointment-box h4 {
    color: var(--accent-cyan);
}

/* Inputs — enhance existing system (NOT override fully) */
.appointment-box .form-control,
.appointment-box .form-select {
    border-radius: 10px;
}

/* Button spacing */
.appointment-box .btn {
    border-radius: 12px;
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
    .appointment-box {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .appointment-form h1 {
        font-size: 22px;   /* reduce size */
        line-height: 1.3;
    }
}
@media (max-width: 576px) {
    .appointment-form button {
        font-size: 14px;
        padding: 10px;
    }
}
.neo-whatsapp-strip {
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 0, 0, 0.6));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.15);
    transition: 0.3s ease;
}

.neo-whatsapp-strip:hover {
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.25);
}

/* Mobile Floating Call Button */
.mobile-call-btn {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Hover */
.mobile-call-btn:hover {
    color: #fff;
    transform: scale(1.05);
    transition: 0.3s;
}

/* Show only on mobile */
@media (min-width: 992px) {
    .mobile-call-btn {
        display: none;
    }
}