:root {
    --bg: #000;
    --card: #0a0a0a;
    --muted: #b7b7b7;
    --text: #eaeaea;
    --accent: rgb(88, 87, 249) !important;
    /* neon-lime */
    --outline: #2b2b2b;
    --like: #ff3040;
    --white: #ffffff;
    --radius: 20px;
}

html {
    scroll-behavior: smooth;
}

.card-scroller {
    -ms-overflow-style: none;
    /* IE & Edge */
    scrollbar-width: none;
    /* Firefox */
}

.card-scroller::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

body {
    font-family: "Inter", Sans-serif !important;
    background-color: var(--bg);
    letter-spacing: -0.05em !important;
}

.hero-bg {
    background-image: url("../images/website-design-bathinda.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

}

.cbtn {
    text-align: center;
    font-size: 22px;
    border: 2px solid #ffffff;
    font-weight: 600;
    font-family: "Inter", Sans-serif !important;
    line-height: 70px;
    border-radius: 100px;
    margin-bottom: 25px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.cbtn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .cbtn {
        font-size: 20px;
        line-height: 55px;
        border-radius: 50px;
        margin-bottom: 15px;
    }
}

.w-75 {
    width: 70% !important;
}


.container-fluid {
    width: 96% !important;
}

.text-primary {
    color: var(--accent) !important;
}

.btn {
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.btn:hover {
    border-color: #1C2533;
    color: var(--white);
    background-color: #1C2533;
}


/* Active link styles */
.nav-link.active {
    color: var(--accent) !important;
    /* Change to your highlight color */
    font-weight: bold;
}

.skils {
    text-align: center;
}

.skils img {
    max-width: 9%;
    margin: 0 5px;
    padding: 10px;
}


.navbar {
    background: rgba(0, 0, 0, 0.45);
    padding: 15px 18px;
    border-radius: 6px;
    backdrop-filter: blur(20px);
    border: 1px solid;
    margin: 25px auto;
    border-color: rgba(89, 89, 89, 0.35);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    color: gold;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--accent);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}


.hover-effect {
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

.hover-effect:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 80px rgba(255, 255, 255, 0.8));
}

.btn-buy {
    background: gold;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* Mobile Navbar */
.mobile-nav {
    display: none;

    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    margin-top: 3%;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 20px;
    border: 1px solid;
    z-index: 10 !important;
    justify-content: space-between;
    align-items: center;

}

.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

/* Sidebar Fullscreen */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    /* width: 88%; */
    width: 100%;
    height: 100%;
    background: #0d0d0d;
    transition: 0.4s;
    padding: 40px 20px;
    z-index: 999;
}

.sidebar.active {
    left: 0;
}

.sidebar .close-btn {
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    margin-bottom: 25px;
    display: block;
    text-align: center;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
}

.sidebar .btn-buy {
    display: inline-block;
    margin-top: 20px;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar {
        display: none;
        /* hide desktop navbar */
    }

    .mobile-nav {
        display: flex;
        /* show mobile navbar */
    }
}

@media (min-width: 992px) {
    .sidebar {
        display: none !important;
        /* hide sidebar on desktop */
    }
}



/* website bar */

.hero-text {
    padding-top: 12%;
    font-size: 66px;
    line-height: 82px;
    letter-spacing: -0.05em !important;
    color: var(--white);
    font-weight: 600 !important;
}

.theme-breadcrumb {
    padding-top: 8%;
}

.bg-theme {
    background-color: var(--accent);
}

.w-theme {
    width: 50px;
    padding: 15px;
    height: 50px;
}


.fix {
    margin-top: 20% !important;
}

.icon-style {
    padding: 10px !important;
    background-color: #fff;
    width: 45px;
    border-radius: 40px;
}

.icon-style i {
    color: #000;
}

/* website bar */



.center-title {
    font-size: 60px;
    line-height: 82px;
    letter-spacing: -0.05em !important;
    color: var(--white);
    font-weight: 600 !important;
}

.left-title {
    font-size: 45px;
    line-height: auto;
    letter-spacing: -0.05em !important;
    color: var(--white);
    font-weight: 600 !important;
}


/* Logo Slider */

.logo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #010101;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.logo-track img {
    flex: 0 0 auto;
    height: 120px;
    margin: 0 20px;
    transition: transform 0.3s ease-in-out;
}

.logo-track img:hover {
    transform: scale(1.1);
}

/* Auto Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Gradient Overlays */
.gradient-left,
.gradient-right {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gradient-left {
    left: 0;
    background: linear-gradient(to right, #010101, rgba(248, 249, 250, 0));
}

.gradient-right {
    right: 0;
    background: linear-gradient(to left, #010101, rgba(248, 249, 250, 0));
}

@media (max-width: 991.98px) {
    .logo-track img {
        flex: 0 0 25%;
        /* 4 logos per row */
        max-width: 25%;
        margin: 0 10px;
        height: 120px;
    }
}

/* Mobile (≤767px) => Show ~3 logos */
@media (max-width: 767.98px) {
    .logo-track img {
        flex: 0 0 33.33%;
        /* 3 logos per row */
        max-width: 33.33%;
        margin: 0 5px;
        height: 120px;
    }
}

/* Logo Slider */



/* footer */
.footer {
    background: var(--card);
    padding: 80px 0 60px;
}

.footer-logo {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-logo span {
    display: block;
}

.footer-logo .sandeep {
    font-family: 'Brush Script MT', cursive;
    font-size: 3rem;
    font-weight: 100;
    color: var(--accent);
    /* neon lime accent */
}

.footer-links a {
    display: block;
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-address {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
}

.footer-contact {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 20px;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--accent);
}

.copyright {
    font-size: .9rem;
    color: #888;
    margin-top: 20px;
}

/* 🔹 Responsive adjustments */
@media (max-width: 991px) {
    .footer {
        padding: 80px 0 60px;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-links {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-address {
        text-align: center;
    }

    .footer-contact {
        text-align: center;
        margin-top: 30px;
    }

    .copyright {
        text-align: center !important;
        margin-top: 15px;
    }
}

/* footer */




/* popup */

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Popup box */
.popup {
    background: #fff;
    width: 85%;
    height: 85%;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Fixed close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    background: #000;
    color: var(--white);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Scrollable content */
.popup-content {
    padding: 60px;
    overflow-y: auto;
    flex: 1;

    /* Hide scrollbar for Chrome, Safari and Edge */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.popup-content::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* popup */




/* posts */
.nav-bullets {
    gap: .75rem;
}

.nav-bullets .btn-bullet {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111;
    color: #cfcfcf;
    border: 1px solid var(--outline);
    display: grid;
    place-items: center;
    transition: .2s ease;
}

.nav-bullets .btn-bullet:hover {
    color: var(--white);
    border-color: #444;
    transform: translateY(-1px);
}

/* Scroller */
.card-scroller {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 320px);
    gap: 22px;
    padding: 8px 2px 16px;
}

.card-scroller::-webkit-scrollbar {
    height: 10px;
}

.card-scroller::-webkit-scrollbar-thumb {
    background: #1d1d1d;
    border-radius: 999px;
}

/* Card */
.work-card {
    scroll-snap-align: start;
    background: var(--card);
    border: 1px solid var(--outline);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.work-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.work-media {
    aspect-ratio: 4/5;
    background: #0f0f0f;
    display: block;
    width: 100%;
    object-fit: cover;
}

.card-actions {
    position: absolute;
    inset: auto 12px 12px auto;
    display: flex;
    gap: 10px;

}

.action {

    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .55);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(6px);
}

.action:hover {
    background-color: #ff3040;
}

.work-body {
    padding: 14px 16px 16px;
}

.work-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bfbfbf;
    font-size: 14px;
}

.work-meta .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #999;
    opacity: .7;
}

.work-caption {
    margin-top: 8px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.45;
}

.work-caption .strong {
    color: var(--text);
    font-weight: 600;
}

.work-caption .hilite {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Utility */
.positioner {
    position: relative;
}

/* Responsive tweaks */
@media (min-width: 992px) {
    .card-scroller {
        grid-auto-columns: minmax(300px, 340px);
        gap: 24px;
    }
}


/* posts */



/* Contact us page  */





.contact-card {
    background: var(--card);
    border-radius: 25px;
    padding: 3rem;
    color: var(--white);
}

.contact-card h2 {
    font-weight: 700;
}

.contact-info i {
    font-size: 18px;
    color: var(--white);
    background: #333;
    padding: 8px;
    border-radius: 8px;
    margin-right: 12px;
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--white);
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--accent);
    /* Yellow hover */
}

.form-control {
    background: var(--card);
    border: 1px solid #333;
    color: var(--white);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: var(--white);
}

.form-control:hover {
    background: var(--card);
    color: var(--white);
    border-color: #555;
}

.form-control:focus {
    background: var(--card);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: none;
}



/* Contact us page  */


.like {
    color: var(--like);
}


/* about */


.hero {
    padding: 0 0 80px 0;
}

.hero h5 {
    font-weight: 500;
    color: var(--white);
}

.hero p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 25px;
    max-width: 500px;
}

.btn-appointment {
    background-color: #3d523e;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    transition: 0.3s;
}

.btn-appointment:hover {
    background-color: #2c3b2d;
    color: #fff;
}

/* Doctor oval image */
.doctor-img {
    width: 350px;
    height: 500px;
    overflow: hidden;
    border-radius: 50% / 35%;
    margin: auto;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stat cards */
.stat-box {
    border-radius: 150px;
    padding: 15px 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 4px solid var(--outline);
}

.stat-box h2 {
    font-weight: 700;
    font-size: 3rem;
    color: var(--accent);
}

.stat-box p {
    margin: 0;
    font-weight: 500;
    color: var(--white);
}


.story-section {
    padding: 80px 0;
}

.story-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.story-sub {
    font-size: 24px;
    line-height: 35px;
    font-weight: 700;
    color: var(--white);
}

.timeline {
    margin-top: 50px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--outline);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--accent);
}

.timeline-desc {
    font-size: 20px;
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: -0.05em;
    width: 79%;
    color: var(--white);
}

.timeline-year {
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 0em;
    color: var(--outline);
    white-space: nowrap;
    margin-left: 20px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;

}

/* Scroll animation */
.timeline-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* about */



/* Border Wrapper */



.bg-logo {
    background: var(--accent);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0 0 0;
}

.gradient-border {
    padding: 3px;
    /* thickness of border */
    border-radius: 40px;
    background: linear-gradient(179deg, #ffffff, #c2c2ff 60%, transparent 90%);
}

/* Inner Card */
.gradient-card {
    background: var(--accent);
    border-radius: 38px;
    padding: 70px 50px;
    max-width: 950px;
    width: 100%;
    text-align: center;
}

.gradient-card h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.gradient-card p {
    color: #bbb;
    margin-bottom: 45px;
}



/* Servies */

.feature-card {
    background: radial-gradient(at bottom right, #d8d8d800, #d8d8d81a 52%, #ffffff2e 99%);
    box-shadow: 0 0 2px #d8d8d899;
    border-radius: 16px;
    border: 0.5px solid #2a2a2a;
    margin: 0px 0 25px 0px;
    padding: 35px;
    color: #868686;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.feature-title {
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight {
    font-size: 50px;
    font-weight: bold;
    color: var(--accent);
    line-height: 30px;
    text-align: center;

}

.border-c {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    /* content background */
}

.border-c::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    /* border thickness */
    background: linear-gradient(180deg, #0575e6, #1a1a1a);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

img {
    max-width: 100%;
    border-radius: 10px;
}

/* Split card inside */
.split-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.split-card div {
    flex: 1;
}

@media (max-width: 767px) {

    .hero-text {
        padding-top: 30%;
        font-size: 28px;
        line-height: 39px;
        letter-spacing: -0.05em !important;
        color: var(--white);
        font-weight: 600 !important;
    }

    .mobile-nav {

        background: rgba(0, 0, 0, .25);
        backdrop-filter: blur(20px);
        border-radius: 10px;
        margin-top: 3%;
        margin-left: 10px;
        margin-right: 10px;
        padding: 7px 16px;
        border: 1px solid;
        z-index: 10 !important;
        justify-content: space-between;
        align-items: center;

    }

    .center-title {
        font-size: 28px;
        line-height: 39px;
        text-align: center;
        letter-spacing: -0.05em !important;
        font-weight: 600 !important;
    }

    .left-title {
        font-size: 28px;
        line-height: 39px;
        text-align: center;
        letter-spacing: -0.05em !important;
        font-weight: 600 !important;
    }


    .btn {
        padding: 9px 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 39px;
        background: var(--accent);
        color: var(--white);
        font-size: 13px;
        border-radius: 6px;
        border: 1px solid var(--accent);
        transition: all 0.3s ease;
    }

    .lead {
        font-size: 17px;
        font-weight: 300;
        max-width: 94% !important;
        text-align: center !important;
        margin: 0px auto;
        line-height: auto !important;
    }

    .w-75 {
        width: 100% !important;
    }

    .footer-contact {
        font-size: 1rem;
        font-weight: 600;
        margin-top: 20px;
    }

    .footer {
        padding: 40px 0px 40px;
    }

    .stat-box {
        width: 96%;
        margin: 10 auto;
    }

    .hero h5 {
        font-weight: 500;
        font-size: 16px;
        text-align: center;
        color: var(--white);
    }

    .story-sub {
        font-size: 18px;
        line-height: 25px;
        width: 96%;
        text-align: center;
        font-weight: 600;
        color: var(--white);
    }

    .timeline-desc {
        font-size: 17px;
        margin-top: 10px;
        font-weight: 400;
        letter-spacing: -0.05em;
        width: 90%;
        line-height: 23px;
        font-weight: 200;
        color: var(--white);
    }

    .timeline-year {
        font-size: 30px;
        font-weight: 700;
        letter-spacing: 0em;
        color: var(--outline);
        white-space: nowrap;
        margin-left: 20px;
        font-family: "Anton", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .skils img {
        max-width: 25%;
        margin: 5px 5px;
        padding: 8px;
    }

    .doctor-img {
        width: 100%;
        height: 100vh;
        overflow: hidden;
        border-radius: 50% / 35%;
        margin: auto;
    }

    .feature-title {
        text-align: center;
    }

    .gradient-card h2 {
        font-size: 26px;
        font-weight: 700;
        line-height: 30px;
        margin-bottom: 25px;
    }


    .gradient-card {
        background: var(--accent);
        border-radius: 25px;
        padding: 45px 19px;
        max-width: 950px;
        width: 100%;
        text-align: center;
    }

    .bg-logo {
        padding: 40px 20px 0 20px;
    }

    .gradient-border {
        padding: 3px;
        /* thickness of border */
        border-radius: 26px;
    }

    .theme-breadcrumb {
        padding-top: 25% !important;
    }

    .contact-card {
        background: var(--card);
        border-radius: 15px;
        padding: 1.8rem 1rem;
        margin: 0px 5px;
    }

    .contact-info i {
        font-size: 14px !important;
        padding: 6px;
        border-radius: 5px;

    }

    .hero-bg {
        min-height: auto;
        /* smaller height on mobile */
        background-position: center top;
    }
}