* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: "Saira Condensed", sans-serif;
    font-style: normal;
}


/* webkit scroller starts */
::-webkit-scrollbar {
    width: 7px;
    scroll-behavior: smooth !important;
}

/* Track */
::-webkit-scrollbar-track {
    /* background: #1b1b1b; */
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #adadad;
    /* border-radius: 0px; */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #848484;
}

/* webkit scroller ends */


.frame {
    padding: 0 50px;
}

/* top header starts */
.top-header {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    background-color: #121c26;
    position: relative;
}

.top-header h6 {
    color: #e48753;
    margin-bottom: 0;
    font-size: inherit;
    padding: 8px 0;
}

/* Responsive behavior */
@media (max-width: 767px) {
    .top-header {
        flex-direction: column !important;
        text-align: end;
    }

    .top-header h6 {
        font-size: 14px;
        padding: 6px 0;
    }

    .frame {
        padding: 0 28px;
        /* reduce padding */
    }

    .navbar {
        padding: 0.5rem 1.5rem !important;
    }

}


/* Scroll Top Button Styling  STARTS */

/* 1. The Multi-Layered Pulse - Two rings for extra depth */
@keyframes ultraPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 108, 33, 0.5), 0 0 0 0 rgba(243, 108, 33, 0.3);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(243, 108, 33, 0), 0 0 0 40px rgba(243, 108, 33, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(243, 108, 33, 0), 0 0 0 0 rgba(243, 108, 33, 0);
    }
}

/* 2. The Button Base */
.scroll-top-btn {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #1c2d3d, #121c26); /* 3D Spherical Effect */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle light edge */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    
    /* Neumorphic Shadow */
    box-shadow: 10px 10px 20px rgba(0,0,0,0.3), -5px -5px 15px rgba(255,255,255,0.05);
    
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    visibility: hidden;
    transform: scale(0) rotate(-180deg); /* Spirals in when appearing */
}

/* 3. The Interactive State */
.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1) rotate(0deg);
    animation: ultraPulse 2.5s infinite; /* The Enhanced Pulse */
}

/* 4. The Advanced Hover */
.scroll-top-btn:hover {
    background: #f36c21;
    color: #fff;
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 20px 40px rgba(243, 108, 33, 0.5);
    animation: none; /* Stops pulse to focus on the hover glow */
}

/* 5. Icon Animation */
.scroll-top-btn i {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.scroll-top-btn:hover i {
    animation: bounceUp 0.5s infinite alternate;
}

@keyframes bounceUp {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}

/* 6. Scaling for 4K */
@media (min-width: 2500px) {
    .scroll-top-btn {
        width: 90px;
        height: 90px;
        bottom: 60px;
        right: 60px;
    }
    .scroll-top-btn i { font-size: 36px; }
}

/* Scroll Top Button Styling ENDS */




/* navbar styling starts */

.navbar {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0.5rem 2.9rem;
    background-image: linear-gradient(#121c26, #ffffff00);
    z-index: 100;
}

.navbar img {
    width: 8rem;
    height: auto;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    padding: 10px;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #f36c21;
}

.navbar-toggler i {
    color: #fff; /* Ensures the hamburger icon is visible on dark background */
}

/* Dropdown menu styling */
.dropdown-menu{
    border-radius: 8px;
    background-color: #0d0d0d;
    border-top: 2px solid #f36c21;
    width: 14rem;
    padding: 10px 0;
}

.dropdown-menu .fa-tooth{
 font-size: small;
 padding-right: 3px;
}

.dropdown-item {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px; /* Slightly smaller for better fit */
    font-weight: 500;
    white-space: normal; /* Allows long text to wrap on mobile */
}

.dropdown-item:hover {
    color: #f36c21;
    background-color: transparent;
}

.mobilemb{
    margin-top: 4px;
}


/* Submenu positioning for Desktop */
@media(min-width: 992px) {
    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -2px;
        margin-left: 0px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}

/* --- Mobile Specific Media Queries --- */

@media (max-width: 991px) {
    .navbar-container {
        background-color: #121c26; /* solid color when expanded on mobile */
        position: relative; /* avoids overlapping content when menu is long */
    }

    .navbar-collapse {
        background-color: #0d0d0d;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 10px;
        border: 1px solid #333;
    }

    .navbar-nav {
        text-align: left;
    }

    .nav-item {
        border-bottom: 1px solid #222; /* Adds separation between links */
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    /* Submenu styling for mobile (nested look) */
    .dropdown-menu {
        width: 100%;
        border-top: none;
        border-left: 2px solid #f36c21; /* Visual indicator for nested items */
        background-color: #151515;
        margin-bottom: 10px;
    }

    .dropdown-submenu .dropdown-menu {
        position: relative;
        left: 15px; /* Indent the secondary submenus */
        width: calc(100% - 15px);
        background-color: #1a1a1a;
    }

    /* Appointment Button Alignment */
    .mobilemb {
        margin-left: 0 !important;
        margin-top: 15px;
        width: 100%;
        display: block;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 0.5rem 1.5rem !important;
    }
    
    .navbar img {
        width: 6.5rem; /* Slightly smaller logo for small phones */
    }
}


/* Ensure desktop hover works on all large screens (Laptop, Desktop, 4K) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        margin-top: 0; /* Smooth transition */
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block !important;
        left: 100%;
        top: 0;
    }
}

/* Fix for very large screens (4K) */
@media (min-width: 2560px) {
    .navbar {
        padding: 1rem 10%; /* More generous padding for ultra-wide screens */
    }
    .navbar-light .navbar-nav .nav-link {
        font-size: 22px; /* Scales text up for 4K visibility */
    }
}

/* navbar styling ends */



/* carousel styling starts */

.carousel-container {
    position: relative;
    overflow: hidden;
    /* height: 75vh; */
}


.carousel-inner {
    position: relative;
}

.carousel-item {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.carousel-item.active {
    position: relative;
    opacity: 1;
}

.carousel-item img {
    display: block;
    width: 100%;
    height: 73vh;
    object-fit: cover;
    object-position: center;
}

/* buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(97, 97, 97, 0.5);
    color: #fff;
    border: none;
    padding: 0px 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 3px;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* carousel styling ends */



/* below carousael section starts */

.thriplesec1 {
    background-color: #fff;
    height: 11rem;
    padding: 20px;
    text-align: center;
}

.thriplesec1 img {
    height: auto;
    width: 4rem;
}

.thriplesec1 h2 {
    margin-top: .8rem;
}

.thriplesec {
    background-color: #0d0d0d;
    color: #fff;
    height: 11rem;
    padding: 20px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.thriplesec img {
    height: auto;
    width: 2rem;
    margin-bottom: .7rem;
}


.hrr img {
    height: auto;
    width: 100%;
    padding: 0 50px;
    margin: 2rem 0;
}

/* 📱 Mobile adjustments */
@media (max-width: 576px) {

    .thriplesec1 h2,
    .thriplesec h2 {
        font-size: 1.1rem;
    }

    .thriplesec h6 {
        font-size: 0.8rem;
    }
}

/* below carousael section ends */



/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.aboutimage {
    padding: 0;
}

.aboutimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutcontent {
    padding: 60px 50px;
    background-size: cover;
}

.sandybrown {
    background-color: #C29470;
}

.aboutcontent h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.aboutcontent p {
    color: #000;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.aboutcontent .highlight {
    font-weight: 600;
}

/* Buttons */
.aboutbuttonrow1,
.aboutbuttonrow2 {
    padding: 7px 20px;
    font-size: 17px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.aboutbuttonrow1 {
    background-color: #121C26;
    color: #C29470;
}

.aboutbuttonrow2 {
    background-color: #e48753;
    color: #121C26;
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 991px) {
    .aboutcontent {
        padding: 45px 30px;
    }

    .aboutcontent h3 {
        font-size: 24px;
    }

    .aboutcontent p {
        font-size: 17px;
    }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 767px) {

    .aboutcontent {
        padding: 35px 20px;
        text-align: center;
    }

    .aboutcontent h3 {
        font-size: 22px;
    }

    .aboutcontent p {
        font-size: 16px;
    }

    .aboutbuttonrow1,
    .aboutbuttonrow2 {
        font-size: 16px;
        padding: 4px 12px;
    }

    .aboutimage img {
        height: auto;
    }
}

/* ============================= */
/* SMALL MOBILE */
/* ============================= */
@media (max-width: 480px) {
    .aboutcontent h3 {
        font-size: 20px;
    }

    .aboutcontent p {
        font-size: 15px;
    }
}




/* ============================= */
/* LEARN MORE SECTION */
/* ============================= */

.learnmore {
    background-color: #000;
    padding: 60px 20px;
}

.learnmore h2 {
    font-weight: 500;
    color: #e48753;
    margin-bottom: 40px;
}

/* Tabs */
.udr-cvge-btnnn {
    text-align: center;
    margin-top: 30px;
}

.udr-cvge-btnnn ul {
    gap: 15px;
}

.udr-cvge-btnnn ul li {
    list-style: none;
}

.udr-cvge-btnnn .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #777;
    background: transparent;
    transition: color 0.3s;
    text-align: center;
}

.udr-cvge-btnnn .nav-link:hover {
    color: #C29470;
}

.udr-cvge-btnnn .nav-link.active {
    color: #e48753;
    background-color: transparent;
}

/* Cards Grid */
.details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Card */
.details .item {
    position: relative;
    width: 342px;
    overflow: hidden;
    box-shadow: 0 3px 6px #00000029;
}

/* Image */
.details .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, filter .4s ease;
}

.details .item:hover img {
    transform: scale(1.15);
    filter: brightness(60%);
}

/* Overlay */
.details .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .3s ease;
    text-align: center;
}

.details .item:hover .overlay {
    opacity: 1;
}

.overlay a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 991px) {

    .udr-cvge-btnnn .nav-link {
        font-size: 16px;
    }

    .details .item {
        width: 300px;
    }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 767px) {

    .learnmore {
        padding: 60px 15px;
    }

    .learnmore h2 {
        font-size: 22px;
    }

    .udr-cvge-btnnn ul {
        flex-direction: column;
        align-items: center;
    }

    .udr-cvge-btnnn .nav-link {
        font-size: 15px;
        width: 100%;
    }

    .details .item {
        width: 100%;
        max-width: 360px;
    }
}

/* ============================= */
/* SMALL MOBILE */
/* ============================= */
@media (max-width: 480px) {

    .learnmore h2 {
        font-size: 20px;
    }

    .overlay a {
        font-size: 14px;
    }
}




/* ============================= */
/* BEFORE AFTER SECTION */
/* ============================= */

.before-after-section {
    padding: 60px 40px;
    background: linear-gradient(to top, #333333, #dfbda3);
}

.before-after-section h3 {
    margin-top: 2rem;
    color: #fff;
}

.before-after-section p {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.before-after-section h6 {
    margin-top: 1rem;
    color: #fff;
    font-weight: 500;
    text-align: end;
}

/* ============================= */
/* SLIDER WRAPPER */
/* ============================= */


/* ------------------------- */
/* Base Styles */
/* ------------------------- */
.image-comparison {
    width: 100%;
    max-width: 660px;
    aspect-ratio: 16 / 10; /* adjust to your images' actual ratio */
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 7px solid #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.image-comparison__container {
    position: relative;
    height: 100%;
    width: 100%;
}

.image-comparison__image--after,
.image-comparison__image--before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Replace with your actual images */
.image-comparison__image--after {
    width: 100%;
    background-image: url("../public_html/assets/images/index/after.jpg");
}

.image-comparison__image--before {
    width: 50%;
    background-image: url("../public_html/assets/images/index/before.jpg");
}

.image-comparison__slider {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.image-comparison__range {
    width: 100%;
    height: 100%;
    outline: none;
    background: none;
    -webkit-appearance: none;
}

.image-comparison__range::-webkit-slider-thumb {
    height: 100%;
    width: 3px;
    background: none;
    -webkit-appearance: none;
    cursor: col-resize;
}

.image-comparison__divider {
    width: 3px;
    height: 100%;
    position: absolute;
    pointer-events: none;
}

.image-comparison__divider::before,
.image-comparison__divider::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    background: #fff;
}

.image-comparison__divider::before { top: 0; }
.image-comparison__divider::after { bottom: 0; }

.image-comparison__handle {
    width: 42px;
    height: 42px;
    border: 3px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-comparison__handle::before,
.image-comparison__handle::after {
    position: absolute;
    content: "";
    top: 50%;
    border: 10px solid transparent;
    border-bottom-width: 0;
    border-right-width: 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.image-comparison__handle::before { left: 40%; border-left-color: #fff; }
.image-comparison__handle::after { left: 60%; border-top-color: #fff; }


/* ------------------------- */
/* Tablets / Small Laptops ≤ 991px */
/* ------------------------- */
@media (max-width: 991px) {
    .image-comparison {
        aspect-ratio: 16 / 10;
        border-width: 6px;
    }

    .image-comparison__handle {
        width: 38px;
        height: 38px;
    }
}

/* ------------------------- */
/* Tablet Portrait / Large Phones ≤ 767px */
/* ------------------------- */
@media (max-width: 767px) {
    .image-comparison {
        aspect-ratio: 4 / 3;
        border-width: 5px;
    }

    .image-comparison__handle {
        width: 34px;
        height: 34px;
    }
}

/* ------------------------- */
/* Mobile Phones ≤ 480px */
/* ------------------------- */
@media (max-width: 480px) {
    .image-comparison {
        aspect-ratio: 4 / 3;
        border-width: 4px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }

    .image-comparison__handle {
        width: 28px;
        height: 28px;
        border-width: 2px;
    }
}


/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 991px) {

    .before-after-section p {
        font-size: 18px;
    }

    .before-after-section h6 {
        text-align: center;
    }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 767px) {

    .before-after-section {
        text-align: center;
    }

    .before-after-section p {
        font-size: 16px;
    }

    .before-after-section h3 {
        font-size: 22px;
        margin-top: 0;
    }

    .before-after-section h6 {
        text-align: center;
    }
}

/* ============================= */
/* SMALL MOBILE */
/* ============================= */
@media (max-width: 480px) {

    .before-after-section h3 {
        font-size: 20px;
        margin-top: 0;
    }

    .slider-divider span {
        width: 36px;
        height: 36px;
    }
}





/* ============================= */
/* 3 STEPS SECTION STARTS */
/* ============================= */

.manage {
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.manage h2 {
    margin-bottom: 40px;
}

/* Steps Wrapper */
.steps-wrapper {
    gap: 80px;
}

/* Card */
.threee {
    position: relative;
    text-align: center;
}

/* Step Image */
.threee img {
    width: 23rem;
    max-width: 100%;
    height: auto;
    margin: 10px auto;
    border-radius: 7px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: block;
}

/* Step Number */
.steps img {
    width: 50px;
    position: absolute;
    top: -20px;
    /* left: 50%; */
    transform: translateX(-50%);
    box-shadow: none !important;
}

/* Title */
.threee h4 {
    margin: 2.5rem 0;
    font-size: 18px;
    font-weight: 500;
}

/* Button */
.rqapp {
    padding: 7px 20px;
    background-color: #7f9c92;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    /* margin-top: 20px; */
    cursor: pointer;
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 991px) {

    .threee img {
        width: 20rem;
    }

    .threee h4 {
        font-size: 17px;
        margin: 0;
    }

    .steps img {
        width: 50px;
    }

    .steps img {
        position: unset;
        transform: none;
    }

    .steps-wrapper {
        gap: 50px;
        margin-bottom: 30px;
    }

}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 767px) {

    .manage {
        margin: 60px auto;
    }

    .manage h2 {
        font-size: 22px;
    }

    .threee {
        margin-bottom: 20px;
    }

    .threee img {
        width: 100%;
        max-width: 360px;
    }

    .threee h4 {
        font-size: 16px;
        margin: 0;
    }

    .rqapp {
        font-size: 16px;
        padding: 12px 24px;
    }

    .steps-wrapper {
        gap: 50px;
        margin-bottom: 30px;
    }

    .steps img {
        position: unset;
        transform: none;
    }

    .steps img {
        width: 42px;
    }

}

/* ============================= */
/* SMALL MOBILE */
/* ============================= */
@media (max-width: 480px) {

    .manage h2 {
        font-size: 20px;
    }

    .steps img {
        width: 42px;
    }
}

/* ============================= */
/* 3 STEPS SECTION ENDS */
/* ============================= */



/* ============================= */
/* MAP SECTION */
/* ============================= */

.map-section {
    width: 100%;
}

/* Responsive iframe wrapper */
.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 20%;
    /* controls height ratio */
    height: 0;
    overflow: hidden;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 991px) {
    .map-responsive {
        padding-bottom: 45%;
    }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 767px) {
    .map-responsive {
        padding-bottom: 65%;
    }
}

/* ============================= */
/* SMALL MOBILE */
/* ============================= */
@media (max-width: 480px) {
    .map-responsive {
        padding-bottom: 75%;
    }
}



/* ============================= */
/* FOOTER */
/* ============================= */

footer {
    background-color: #0d0d0d;
    color: #fff;
    padding: 60px 40px;
}

footer h4 {
    color: #e48753;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 10px;
}

footer h5 {
    text-transform: uppercase;
    font-size: 17px;
    margin-bottom: 8px;
}

footer ul {
    padding-left: 0;
}

footer li {
    list-style: none;
    font-size: 15px;
    margin-bottom: 6px;
}

footer li a {
    color: #fff;
    text-decoration: none;
}

footer li a:hover {
    color: #e48753;
}

.bn {
    color: transparent;
}

/* Divider line */
.brline {
    border-right: 1px solid #C29470;
}

/* Social icons */
.sociallogo img {
    width: 25px;
    height: auto;
}



.footer-quicklinks {
    padding-left: 60px;
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 991px) {

    .brline {
        border-right: none;
    }

    footer {
        padding: 40px 20px;
    }

    .footer-quicklinks {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .hrr {
        display: none;
    }


}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 767px) {

    footer {
        text-align: left;
    }

    footer h4,
    footer h5 {
        text-align: left;
    }

    .sociallogo {
        justify-content: center;
    }

    footer li {
        font-size: 14px;
    }

    .footer-quicklinks {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .hrr {
        display: none;
    }

}



/* ============================= */
/* COPYRIGHT  STARTS*/
/* ============================= */

/* Final Bottom Section of the Website */
.footer-bottom {
    padding: 12px 0;
    background-color: #f16c1e;
    color: #000;
    width: 100%;
}

.footer-bottom h6 {
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.6;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.footer-bottom a:hover {
    color: #000;
    text-decoration: underline;
}

/* --- SIX MEDIA QUERIES FOR PERFECT MOBILE RESPONSIVENESS --- */

/* 1. Micro-screens (e.g., iPhone SE/Fold, < 320px) */
@media (max-width: 320px) {
    .footer-bottom h6 { font-size: 9px; }
    .footer-bottom .creator-tag { display: block; margin-top: 4px; } 
}

/* 2. Standard Mobile (321px - 480px) */
@media (min-width: 321px) and (max-width: 480px) {
    .footer-bottom h6 { font-size: 11px; }
}

/* 3. Tablets / Phablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .footer-bottom h6 { font-size: 12px; }
}

/* 4. Laptops (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-bottom h6 { font-size: 13px; }
    .footer-bottom { padding: 15px 0; }
}

/* 5. Large Screens (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .footer-bottom h6 { font-size: 14px; }
}

/* 6. Ultra-Wide / 4K Monitors (> 1440px) */
@media (min-width: 1441px) {
    .footer-bottom h6 { font-size: 14px; letter-spacing: 0.5px; }
    .footer-bottom { padding: 10px 0; }
}

/* ============================= */
/* COPYRIGHT  ENDS*/
/* ============================= */



/* ==========================================================================
   ABOUT US INTRO BASE STYLES (Mobile First: 0px to 575px)
   ========================================================================== */

.about-intro {
    padding: 45px 0; /* Tightened up layout padding so it doesn't push off smaller phone displays */
    background-color: #ffffff;
}

.sub-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff6b35; 
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.about-heading {
    font-size: clamp(1.85rem, 3.5vw, 2.8rem); /* Slightly lowered floor for tiny smartphone viewports */
    font-weight: 700;
    line-height: 1.3;
    color: #121c26; 
    margin-bottom: 20px;
}

.text-highlight {
    color: #ff6b35; 
}

.about-lead {
    font-size: 1.05rem; /* Easy reading on a narrow screen */
    line-height: 1.65;
    color: #2b3a4a;
    margin-bottom: 15px;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #556370;
    margin-bottom: 25px; /* Adds clean spacing before the card stacks beneath it */
}

.about-highlight-card {
    background-color: #f8f9fa; 
    border-left: 4px solid #ff6b35; 
    padding: 25px; /* Compact desktop padding slightly for small touch boundaries */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-highlight-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #121c26;
    margin-bottom: 12px;
}

.card-divider {
    border-top: 1px solid #e9ecef;
    margin: 15px 0;
}

.clinic-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    font-weight: 500;
    color: #2b3a4a;
    font-size: 0.9rem;
}

.feature-item i {
    color: #28a745; 
    margin-right: 8px;
}


/* ==========================================================================
   RESPONSIVE BREAKPOINTS (6 STRATEGIC MEDIA QUERIES)
   ========================================================================== */

/* 1. Small Devices (Landscape Phones: 576px and up) */
@media (min-width: 576px) {
    .about-intro {
        padding: 55px 0;
    }
}

/* 2. Medium Devices (Tablets: 768px and up) */
@media (min-width: 768px) {
    .about-intro {
        padding: 65px 0;
    }
    .about-lead {
        font-size: 1.1rem;
        max-width: 95%; /* Keeps line wraps clean */
    }
    .about-text {
        font-size: 1rem;
    }
}

/* 3. Large Devices (Laptops/Desktops: 992px and up) */
@media (min-width: 992px) {
    .about-intro {
        padding: 80px 0; /* Fully expanded layout padding for premium depth */
    }
    .about-text {
        margin-bottom: 0; /* Resets bottom margin since card shifts to the right column */
    }
    /* Creates a beautiful asymmetric separation column gap */
    .about-intro .col-lg-7 {
        padding-right: 45px;
    }
    .about-highlight-card {
        padding: 35px; /* Full card breathing space */
    }
}

/* 4. Extra Large Devices (Large Desktops: 1200px and up) */
@media (min-width: 1200px) {
    .about-intro .col-lg-7 {
        padding-right: 60px; /* Extra breathing space for wide laptop viewports */
    }
    .about-lead {
        font-size: 1.15rem;
    }
}

/* 5. Ultra-Wide Devices (1400px and up) */
@media (min-width: 1400px) {
    .about-intro {
        padding: 60px 0; /* Maximum high-end premium white space setup */
    }
}

/* 6. High-Definition / Quad-HD Screens (1600px and up) */
@media (min-width: 1600px) {
    .about-heading {
        margin-bottom: 35px; /* Anchors the header perfectly on very wide displays */
    }
}


/* ============================= */
/* ABOUT US INTRO ENDS*/
/* ============================= */



/* ==========================================================================
   CLINIC PILLARS BASE STYLES (Mobile First: 0px to 575px)
   ========================================================================== */

.clinic-pillars {
    padding: 50px 0;
    background-color: #fcfdfe; /* Distinct off-white tint to break up background continuity */
}

.pillars-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ff6b35; /* Brand Orange */
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.pillars-main-heading {
    font-size: 1.75rem; /* Highly readable on mobile */
    font-weight: 700;
    line-height: 1.3;
    color: #121c26;
    margin-bottom: 15px;
}

.pillars-lead-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5560;
}

/* Modern Asymmetric Cards */
.pillar-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(18, 28, 38, 0.04);
    border: 1px solid #eef2f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Modern Header Meta elements within the cards */
.pillar-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f8;
    padding-bottom: 15px;
}

.pillar-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e2e8f0; /* Crisp metallic structural numbers */
    font-family: serif; /* Classy contrast font vibe */
}

.pillar-icon-wrapper {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Individual accent card flourishes */
.item-01 { border-top: 3px solid #ff6b35; }
.item-02 { border-top: 3px solid #121c26; }
.item-03 { border-top: 3px solid #28a745; }

.pillar-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #121c26;
    margin-bottom: 10px;
}

.pillar-content p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #556370;
    margin-bottom: 0;
}

/* Footer Accent Highlight Callout */
.pillars-footer-box {
    margin-top: 15px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 107, 53, 0.04);
    border-left: 3px dashed #ff6b35;
}

.pillars-footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2b3a4a;
    margin-bottom: 0;
    font-weight: 500;
}


/* ==========================================================================
   6 RESPONSIVE MEDIA BREAKPOINTS
   ========================================================================== */

/* 1. Small Devices (Landscape Mobile Viewports: 576px and up) */
@media (min-width: 576px) {
    .clinic-pillars {
        padding: 60px 0;
    }
    .pillars-main-heading {
        font-size: 2rem;
    }
    .pillar-card {
        padding: 30px;
    }
}

/* 2. Medium Devices (Tablets: 768px and up) */
@media (min-width: 768px) {
    .clinic-pillars {
        padding: 70px 0;
    }
    .pillars-main-heading {
        font-size: 2.2rem;
    }
    .pillars-lead-text {
        font-size: 1rem;
    }
    .pillar-content h3 {
        font-size: 1.25rem;
    }
    .pillar-content p {
        font-size: 0.95rem;
    }
}

/* 3. Large Devices (Laptops/Small Desktops: 992px and up) */
@media (min-width: 992px) {
    .clinic-pillars {
        padding: 85px 0;
    }
    .pillars-main-heading {
        font-size: 2.4rem;
    }
    /* Add subtle micro-interaction elevation effect for desktop users */
    .pillar-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(18, 28, 38, 0.08);
    }
    .pillars-footer-box {
        padding: 30px 40px;
    }
}

/* 4. Extra Large Devices (Enterprise Standard Desktop Displays: 1200px and up) */
@media (min-width: 1200px) {
    .pillars-main-heading {
        font-size: 2.6rem;
    }
    .pillar-number {
        font-size: 1.8rem;
    }
    .pillar-card {
        gap: 20px;
    }
}

/* 5. Wide Workstations / High Res Displays (1400px and up) */
@media (min-width: 1400px) {
    .clinic-pillars {
        padding: 50px 0;
    }
    .pillars-main-heading {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    .pillars-lead-text {
        font-size: 1.05rem;
    }
}

/* 6. Ultra-Wide Monitors / Medical Presentation Displays (1600px and up) */
@media (min-width: 1600px) {
    .clinic-pillars .container {
        max-width: 1440px; /* Expands layout containment cleanly to break grid fatigue */
    }
    .pillar-card {
        padding: 35px;
    }
}

/* ===================================
   CLINIC PILLARS BASE STYLES ENDS
   =================================== */




   /* ==========================================================================
   CLINIC MILESTONES BASE STYLES (Mobile First: 0px to 575px)
   ========================================================================== */

.clinic-milestones {
    padding: 60px 0;
    background-color: #ffffff; /* Clean white canvas backdrop */
}

/* Narrative Card Styling */
.milestone-story-card {
    border-left: 5px solid #ff6b35; /* Crisp brand orange accent bar */
    padding: 5px 0 5px 20px;
}

.milestone-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.milestone-heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.3;
    color: #121c26;
    margin-bottom: 15px;
}

.milestone-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5560;
    margin-bottom: 0;
}

/* Stat Box Layout Elements */
.stat-box {
    padding: 15px 0;
    border-bottom: 1px solid #eef2f5; /* Bottom border separator on mobile devices */
}

.stat-box.last-box {
    border-bottom: none; /* Drop the border for the last mobile item */
}

.stat-number {
    font-size: 2.5rem; /* Large, bold metric look */
    font-weight: 800;
    color: #121c26;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-plus {
    color: #ff6b35;
    font-weight: 600;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #718096;
    letter-spacing: 0.5px;
    display: block;
}


/* ==========================================================================
   6 RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* 1. Small Devices (Landscape Mobile Viewports: 576px and up) */
@media (min-width: 576px) {
    .clinic-milestones {
        padding: 70px 0;
    }
    
    /* Convert mobile layout bottom borders to elegant left vertical lines */
    .stat-box {
        padding: 5px 15px;
        border-bottom: none;
        border-left: 2px solid #e2e8f0; 
        height: 100%; /* Ensures line matching heights */
    }
}

/* 2. Medium Devices (Tablets: 768px and up) */
@media (min-width: 768px) {
    .clinic-milestones {
        padding: 30px 0;
    }
    .stat-number {
        font-size: 2.8rem; /* Upgraded text size dynamically */
    }
    .stat-label {
        font-size: 0.9rem;
    }
}

/* 3. Large Devices (Laptops/Small Desktops: 992px and up) */
@media (min-width: 992px) {
    .clinic-milestones {
        padding: 40px 0;
    }
    
    /* Extra breathing padding separation space on desktop screens */
    .milestone-story-card {
        padding-right: 40px;
    }
}

/* 4. Extra Large Devices (Enterprise Standard Desktop Displays: 1200px and up) */
@media (min-width: 1200px) {
    .clinic-milestones {
        padding: 50px 0;
    }
    .stat-number {
        font-size: 3.2rem;
    }
}

/* 5. Wide Workstations / High Res Displays (1400px and up) */
@media (min-width: 1400px) {
    .milestone-story-card {
        padding-right: 60px;
    }
}

/* 6. Ultra-Wide Monitors / Presentation Displays (1600px and up) */
@media (min-width: 1600px) {
    .clinic-milestones {
        padding: 60px 0; /* Expanded white space framework */
    }
}


   /* ================================
   CLINIC MILESTONES BASE STYLES ENDS
   =================================== */




/* ==========================================================================
   CLINIC CTA BANNER - ULTRA ATTRACTIVE STYLES (Mobile First)
   ========================================================================== */

.cta-wave-container {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.clinic-cta-banner {
    padding: 120px 0;
    /* Upgraded from solid orange to a rich radial sunset mesh gradient */
    background: radial-gradient(circle at 20% 30%, #ff9e59 0%, #ff832d 50%, #e66a15 100%);
    color: #ffffff;
    position: relative;
}

.relative-content {
    position: relative;
    z-index: 5;
}

/* Floating Abstract Orbs for Depth */
.glow-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    filter: blur(20px);
    pointer-events: none;
    animation: pulseGlow 8s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -50px;
    animation-delay: 4s;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.6; }
    50% { transform: scale(1.15) translate(20px, -20px); opacity: 0.9; }
}

/* Premium Frosted Glassmorphism Content Card */
.cta-glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 20px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* SVGs Shape Alignment Fix */
.wave-divider {
    position: absolute;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 4;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}

.wave-divider .shape-fill { fill: #ffffff; }
.top-wave { top: -1px; left: 0; }
.bottom-wave { bottom: -1px; left: 0; transform: rotate(180deg); }

/* Typography */
.cta-mini-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cta-message {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 35px;
}

/* Premium Solid Interactive Button */
.btn-cta-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #ff832d;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 40px;
    border-radius: 50px; /* Completely rounded pill design */
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

/* Micro-interactions on Hover */
.btn-cta-premium:hover {
    background-color: #121c26; /* Deep corporate charcoal swap */
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(18, 28, 38, 0.25);
    transform: translateY(-4px) scale(1.02);
}

.btn-cta-premium:hover .arrow-icon {
    transform: translateX(5px); /* Arrow shoots forward slightly */
}

/* ==========================================================================
   6 RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* 1. Small Devices (576px and up) */
@media (min-width: 576px) {
    .wave-divider svg { height: 55px; }
    .cta-glass-card { padding: 50px 35px; }
}

/* 2. Medium Devices (768px and up) */
@media (min-width: 768px) {
    .wave-divider svg { height: 75px; }
    .cta-glass-card { padding: 60px 50px; }
    .cta-message { max-width: 90%; margin: 0 auto 35px auto; font-size: 1rem; }
}

/* 3. Large Devices (992px and up) */
@media (min-width: 992px) {
    .clinic-cta-banner { padding: 150px 0; }
    .wave-divider svg { height: 95px; }
    .cta-glass-card { padding: 50px 60px; }
    .cta-message { max-width: 85%; font-size: 1.05rem; }
}

/* 4. Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .clinic-cta-banner { padding: 150px 0; }
    .wave-divider svg { height: 115px; }
}

/* 5. Wide Workstations (1400px and up) */
@media (min-width: 1400px) {
    .cta-message { max-width: 80%; }
    .circle-1 { width: 450px; height: 450px; }
}

/* 6. Ultra-Wide Presentation Displays (1600px and up) */
@media (min-width: 1600px) {
    .clinic-cta-banner { padding: 190px 0; }
    .wave-divider svg { height: 130px; }
}


   /* ===============================
   CLINIC CTA BANNER BASE STYLES ENDS
   ================================== */



   /* form starts */
   
.contact-section {
background-color: #000;
 padding: 70px 0;
    overflow: hidden;
}

.contact-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.5rem;
    color: #f9fafb;
        background: radial-gradient(circle at top, #2c2c2c 0%, #000000 100%);
        /* background-color: #2c2c2c; */
    /* padding: 70px 0; */
}

.contact-title {
    font-size: 1.85rem;
    letter-spacing: -0.5px;
    color: #f9fafb;
}

.contact-title-accent {
    width: 50px;
    height: 3px;
    background-color: #f36c21;
    border-radius: 1.5px;
}

/* Info Column Presentational Styles */
.contact-info-wrapper {
    padding-right: 1rem;
}

.contact-text {
    font-size: 0.925rem;
    line-height: 1.6;
}

.text-accent-color {
    color: #f36c21;
    font-size: 0.85rem;
}

.contact-icon {
    /* color: #f36c21; */
    font-size: 12px;
    width: 20px;
    text-align: center;
}

.contact-email-link {
    color: #f36c21 !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-email-link:hover {
    color: #ff8543 !important;
}

/* Premium Form Elements Wrapper Context */
.contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2rem;
    max-width: 520px;
    backdrop-filter: blur(8px);
}

/* Minimalist Dark Field Inputs Configuration */
.contact-form-wrapper .contact-input,
.contact-form-wrapper .contact-textarea {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #f9fafb !important;
    border-radius: 6px;
    font-size: 0.875rem;
    padding: 0.65rem 0.85rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-wrapper .contact-input:focus,
.contact-form-wrapper .contact-textarea:focus {
    border-color: #f36c21 !important;
    box-shadow: 0 0 0 3px rgba(243, 108, 33, 0.15) !important;
    outline: none;
}

.contact-form-wrapper .contact-input::placeholder,
.contact-form-wrapper .contact-textarea::placeholder {
    color: #9ca3af;
    opacity: 0.8;
}

.contact-form-wrapper .error-message {
    font-size: 0.775rem;
    color: #ef4444;
    display: block;
    margin-top: 4px;
    font-weight: 500;
}

/* Captcha Module Sub-Layout Rules */
.captcha-code-box {
    height: 38px;
    width: 38px;
    font-size: 0.95rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease;
}

.captcha-code-box:focus {
    border-color: #f36c21;
}

.captcha-display-badge {
    height: 38px;
    background-color: #4a6983;
    color: #ffffff;
    border-radius: 6px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Button Presentational Layer */
.contact-submit-btn {
    border: none;
    background: #f36c21;
    padding: 0.60rem 1rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(243, 108, 33, 0.2);
}

.contact-submit-btn:hover {
    background: #ff7c35;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(243, 108, 33, 0.3);
}

.transition-all {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ======================================= */
/* SIX MOBILE RESPONSIVE MEDIA QUERIES     */
/* ======================================= */

/* 1. Ultra-Small Devices (Tiny Phones <= 360px) */
@media (max-width: 360px) {
    .contact-card {
        padding: 1rem !important;
        border-radius: 8px;
    }
    .contact-title {
        font-size: 1.25rem;
    }
    .contact-form-wrapper {
        padding: 1rem !important;
    }
    .captcha-code-box {
        width: 32px;
        height: 32px;
    }
    .captcha-display-badge {
        height: 32px;
        font-size: 0.8rem;
    }
}

/* 2. Small Mobile Devices (Standard Smart Phones 361px - 575px) */
@media (min-width: 361px) and (max-width: 575px) {
    .contact-card {
        padding: 1.25rem;
    }
    .contact-title {
        font-size: 1.4rem;
    }
    .contact-form-wrapper {
        padding: 1.25rem;
    }
    .contact-submit-btn {
        width: 100%;
        text-align: center;
    }
}

/* 3. Landscape Phones & Small Tablets (576px - 767px) */
@media (min-width: 576px) {
    .contact-card {
        padding: 1.75rem;
    }
    .contact-title {
        font-size: 1.5rem;
    }
}

/* 4. Medium Tablets Portrait (768px - 991px) */
@media (min-width: 768px) {
    .contact-card {
        padding: 2rem;
    }
    .contact-info-wrapper {
        margin-bottom: 2rem;
    }
}

/* 5. Large Tablets Landscape & Small Laptops (992px - 1199px) */
@media (min-width: 992px) {
    .contact-card {
        padding: 2.25rem;
    }
    .contact-info-wrapper {
        padding-right: 1.5rem;
        margin-bottom: 0;
    }
    .contact-form-wrapper {
        max-width: 100%;
    }
}

/* 6. Desktop & Ultra-Wide Screens (>= 1200px) */
@media (min-width: 1200px) {
    .contact-card {
        padding: 3rem;
    }
    .contact-title {
        font-size: 2rem;
    }
    .contact-form-wrapper {
        max-width: 520px;
    }
}
   /* form ends */



   /* Appointment form starts */


.booking-section {
    background-color: #000; /* Deep matte premium background context */
background-image: radial-gradient(circle at 50% 0%, rgba(243, 108, 33, 0.08) 0%, transparent 65%);}

.booking-card {
    background-color: #121212; 
        /* background: radial-gradient(circle at top, #2c2c2c 0%, #000000 100%); */
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 3rem;
    color: #f9fafb;
    backdrop-filter: blur(10px);
}

.booking-title {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    color: #f9fafb;
}

.booking-title-accent {
    width: 60px;
    height: 3px;
    background-color: #f36c21;
    border-radius: 1.5px;
}

.booking-label {
    display: block;
    color: #d1d5db;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
}

/* Base Input Layout Overrides */
.booking-field,
.booking-select,
.booking-textarea {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 0.65rem 0.85rem !important;
    font-size: 0.875rem !important;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-field:focus,
.booking-select:focus,
.booking-textarea:focus {
    border-color: #f36c21 !important;
    box-shadow: 0 0 0 3px rgba(243, 108, 33, 0.15) !important;
    background-color: rgba(255, 255, 255, 0.07) !important;
}

.booking-field::placeholder,
.booking-textarea::placeholder {
    color: #9ca3af;
    opacity: 0.6;
}

/* Select element dropdown styling safety */
.booking-select option {
    background-color: #1f2937;
    color: #ffffff;
}

/* System State Controls Overrides */
.booking-field:disabled, 
.booking-field[readonly] {
    background-color: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: #9ca3af !important;
    cursor: default;
}

.booking-error {
    color: #ef4444;
    font-size: 0.75rem;
    display: block;
    margin-top: 5px;
    font-weight: 500;
}

.booking-help-text {
    font-size: 0.775rem;
    color: #9ca3af !important;
    opacity: 0.7;
    display: block;
    margin-top: 4px;
}

/* Slot Selection Embedded Controls Dashboard Widget Box */
.booking-slot-control-row {
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.booking-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.25rem;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking-secondary-btn:hover:not([disabled]) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.booking-secondary-btn:[disabled],
.booking-secondary-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed !important;
}

.booking-action-link-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 0.85rem;
    padding: 0.5rem;
    cursor: pointer;
}

.booking-action-link-btn:hover {
    color: #ffffff;
}

.booking-label-inline {
    font-size: 0.825rem;
    color: #9ca3af;
}

.booking-field-inline {
    max-width: 130px;
    height: 34px !important;
    padding: 4px 8px !important;
    font-size: 0.825rem !important;
    text-align: center;
    background-color: rgba(243, 108, 33, 0.1) !important;
    border: 1px solid rgba(243, 108, 33, 0.3) !important;
    color: #f36c21 !important;
    font-weight: 600 !important;
}

/* Tooltip Functional Block Rules */
.booking-tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.booking-tooltip-bubble {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #111827;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10;
}

.booking-secondary-btn:disabled:hover + .booking-tooltip-bubble {
    visibility: visible;
    opacity: 1;
}

/* Master Submission Action Button */
.booking-submit-btn {
    border: none;
    background: #f36c21;
    padding: 0.60rem 1.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(243, 108, 33, 0.2);
}

.booking-submit-btn:hover {
    background: #ff7c35;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(243, 108, 33, 0.3);
}

/* Time-Slot Render Overrides (Popups/Grids) */
.slot-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.slot-item {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 255, 255, 0.02);
    color: #d1d5db;
    cursor: pointer;
    display: inline-block;
    width: calc(25% - 8px);
    border-radius: 6px;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.slot-item.available-slot {
    background-color: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    color: #10b981 !important;
}

.slot-item.available-slot:hover {
    background-color: #10b981 !important;
    color: #ffffff !important;
}

.transition-all {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ======================================================= */
/* SIX SEGMENTED BREAKPOINT RESPONSIVE MEDIA QUERIES BLOCK */
/* ======================================================= */

/* Query 1: Ultra-Small Display Interfaces (Tiny Formats <= 360px) */
@media (max-width: 360px) {
    .booking-card {
        padding: 1rem !important;
        border-radius: 8px;
    }
    .booking-title {
        font-size: 1.2rem;
    }
    .booking-slot-control-row {
        padding: 0.75rem !important;
    }
    .slot-item {
        width: calc(50% - 8px); /* Switch to 2 columns on microscopic layouts */
    }
    .booking-field-inline {
        max-width: 100px;
    }
}

/* Query 2: Standard Mobile Handset Screens (361px to 575px) */
@media (min-width: 361px) and (max-width: 575px) {
    .booking-card {
        padding: 1.25rem;
    }
    .booking-title {
        font-size: 1.35rem;
    }
    .booking-slot-control-row {
        flex-direction: column;
        align-items: stretch !important;
    }
    .slot-action-left .booking-secondary-btn {
        width: 100%;
        text-align: center;
    }
    .slot-action-right {
        justify-content: space-between !important;
    }
    .booking-submit-btn {
        width: 100%;
        text-align: center;
    }
    .slot-item {
        width: calc(50% - 8px); /* Tighten spacing layout blocks */
    }
}

/* Query 3: Landscape Mobile Handsets & Phablets (576px to 767px) */
@media (min-width: 576px) {
    .booking-card {
        padding: 1.75rem;
    }
    .booking-title {
        font-size: 1.45rem;
    }
    .slot-item {
        width: calc(33.33% - 8px); /* 3 column slot structure */
    }
}

/* Query 4: Medium Tablet Structural Portfolios (768px to 991px) */
@media (min-width: 768px) {
    .booking-card {
        padding: 2.25rem;
    }
    .booking-title {
        font-size: 1.6rem;
    }
    .slot-item {
        width: calc(25% - 8px); /* Restore standard 4 column setup safely */
    }
}

/* Query 5: Large Landscape Tablets & Compact Notebooks (992px to 1199px) */
@media (min-width: 992px) {
    .booking-card {
        padding: 2.75rem;
    }
    .booking-title {
        font-size: 1.75rem;
    }
}

/* Query 6: Full Premium HD Desktop Screens (>= 1200px) */
@media (min-width: 1200px) {
    .booking-card {
        padding: 3.5rem;
    }
    .booking-title {
        font-size: 1.85rem;
    }
}

   /* Appointment form ends */