:root {
    --primary-color: #0045ff;
    --secondary-color: #6c757d;
    --dark-bg: #141414;
    --light-text: #ffffff;
    --accent-color: #ffc107;
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--dark-bg) !important;
    font-size: 16px;
}

/* Global Typography */
p, li, span, div {
    font-size: 16px;
}

ul, ol {
    font-size: 16px;
}

.bg-custom-dark {
    background-color: var(--dark-bg) !important;
}

/* Top Header Styling */
.top-header {
    background: var(--primary-color);
    /* Slate 900 */
    color: var(--light-text);
    /* Slate 300 */
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    cursor: pointer;
    margin-right: 0px;
}
.contact-item a{
    color: #fff;
    text-decoration: unset;
}
.contact-item:hover {
    color: #fff;
}

.contact-item i {
    color: #fff;
    margin-right: 8px;
    font-size: 0.9rem;
}

.separator {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    font-size: 1.1rem;
}

/* Navbar Styling */
.navbar {
    background-color: var(--dark-bg);
    /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2); */
    padding: 20px 0 40px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light-text);
    letter-spacing: -0.5px;
    padding: 0px;
}

.nav-link {
    font-weight: 400;
    color: var(--light-text);
    margin-left: 35px;
    position: relative;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 14px;
    padding-bottom: 5px;
    /* Space for border */
}

/* Animated Border */
.nav-link::after {
    content: '';
    position: absolute;
    width: 20px;
    /* Default width */
    height: 1px;
    /* border thickness */
    background-color: white;
    bottom: 0;
    /* Position at the bottom */
    left: 50%;
    /* Center start */
    transform: translateX(-50%);
    /* Center alignment */
    transition: width 0.5s ease;
    /* Slow animation */
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    /* Full width on hover */
    background-color: var(--primary-color);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    opacity: 1;
}

.py100{
    padding-top: 100px;
    padding-bottom: 100px;
}
.pt100{
    padding-top: 100px;
}
.pb100{
    padding-bottom: 100px;
}
.py50{
    padding-top: 50px;
    padding-bottom: 50px;
}
.pt30{
    padding-top: 30px;
}
.pb30{
    padding-bottom: 30px;
}


/* Hero Slider */
.hero-slider .slider-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
h1.hero-header-title{
    letter-spacing: -2px !important;
        line-height: 1.0;
}

/* Custom Pagination (Dots) */
.hero-slider .slick-dots {
    bottom: 25px;
}

.hero-slider .slick-dots li {
    margin: 0 5px;
}

/* Dots - Default (Inactive): White Filled */
.hero-slider .slick-dots li button:before {
    font-family: inherit;
    content: '';
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Dots - Active: White Outline (Empty) */
.hero-slider .slick-dots li.slick-active button:before {
    background-color: transparent;
    border: 2px solid white;
    transform: translate(-50%, -50%) scale(1.3);
}


.section-head {
    color: #7e7e7e;
    font-weight: 500;
    font-size: 24px;
}

/* Service Box Styling */
.service-box {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 13px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-box:hover {
    border-color: #fff;
    transform: translateY(-5px);
}

.service-img {
    height: 150px;
    object-fit: contain;
    width: 100%;
}

.service-box h6 {
    max-width: 210px;
    width: 100%;
}
.service-box p{
    line-height: 1.6;
}
.gallery-item img {
    height: 450px;
    object-fit: cover;
    width: 100%;
}
.gallery-item h6{
    font-weight: 400;
    letter-spacing: -1px;
}
.main-btn{
    padding: 12px 30px;
}

/* Service Checkbox Button Styling */
.service-checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.service-checkbox-wrapper label {
    display: block;
    cursor: pointer;
    padding: 14px 20px;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    text-align: center;
    border-radius: 50px;
    /* Pillow shape */
    transition: all 0.3s ease;
    user-select: none;
}

.service-checkbox-wrapper input[type="checkbox"]:checked+label {
    background-color: white;
    color: #000;
    font-weight: 600;
}
.form-control:focus {
    box-shadow: unset !important;
}
/* Form Placeholder Styling */
.form-control::placeholder {
    color: #595959 !important;
    opacity: 1;
    /* Firefox */
}

/* Footer Styling */
footer {
    background-color: #000000;
    color: white;
}
.footer-desc{
    letter-spacing: -1px;
}
.pos-rel{
    position: relative;
}
.pos-rel .d-flex{
    position: absolute;
    bottom: 0;
}
footer a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
    color: var(--primary-color) !important;
}

/* Footer */
.footer-menu a {
    padding: 0 35px;
    font-size: 14px;
    color: #CACACA;
    transition: 0.2s all;
}

.gray-clr {
    color: #ACACAC;
}

.footer-menu a:first-child {
    padding-left: 0px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-right: 10px;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: white;
    color: #000 !important;
    border-color: white;
}

.copy-right p {
    font-size: 12px;
    color: #ffffff;
}



.whatsapp-float {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #25D366;
    color: #fff;
    font-size: 28px;
    padding: 15px;
    border-radius: 0 10px 10px 0;
    text-align: center;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    padding-left: 20px;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .abt-discriptions {
        font-size: 14px !important;
        margin: 10px 0 !important;
    }
.pos-rel .d-flex {
    position: unset;
    bottom: 0;
}
.justify-content-end {
    justify-content: flex-start !important;
}
    .find-out-more {
        padding: 20px 0 !important;
    }

    .find-out-more .rounded-pill {
        margin-bottom: 30px;
    }

    .top-header .contact-info {
        justify-content: center;
        margin-bottom: 5px;
    }

    .top-header .working-hours {
        justify-content: center;
    }

    .separator {
        display: none;
        /* Hide separator on mobile if stacking */
    }

    .data-section-item {
        margin-bottom: 25px !important;
    }

    .row .mobile-margin-zero {
        margin-top: 0px !important;
    }

    .contact-item {
        display: block;
        /* Stack items on very small screens */
        margin-bottom: 5px;
        text-align: center;
    }

    .d-flex.mobile-stack {
        flex-direction: column;
        align-items: center;
    }

    .navbar-brand img {
        width: 80px;
    }

    .bg-custom-dark h1 br {
        display: none;
    }

    section.py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .footer-menu a {
        padding: 0 15px;
    }

    /* Mobile Navbar Fixes */
    .navbar-collapse {
        background-color: var(--dark-bg);
        padding: 15px 0;
    }

    .navbar-nav {
        padding: 0 !important;
    }

    .nav-link {
        margin-left: 0 !important;
        padding: 12px 0 !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Remove animated border on mobile */
    .nav-link::after {
        display: none;
    }

    /* Mobile button spacing */
    .navbar-collapse .d-flex {
        margin-top: 15px;
        padding-bottom: 10px;
    }

    .navbar-collapse .btn {
        width: 100%;
        max-width: 200px;
    }

}

/* ============================================
   ABOUT PAGE CSS - START
   ============================================ */

/* Typography */
.about-h2 {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-h3 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-h4 {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-text-sm {
    font-size: 16px;
    line-height: 1.6;
}

.about-text-xs {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

.about-subtitle {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Banner Section */
.about-banner-img {
    border-radius: 0;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-banner-text {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin-top: 1rem;
}

/* Insurance Section */
.insurance-info h4 {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.insurance-info p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* Mission Section */
.mission-img-box {
    background-color: #2a2a2a;
    height: 180px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

/* Services Tailored Section */
.services-img {
    border-radius: 4px;
    object-fit: cover;
}

.services-list {
    font-size: 16px;
    line-height: 1.8;
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 1.5rem;
}

/* Grid Sections */
.grid-section {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}

.grid-section-bottom {
    display: flex;
    gap: 20px;
}

.grid-item {
    flex: 1;
}

.grid-title {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.grid-title-lg {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
}

/* Quote Section */
.quote-large-img {
    height: 650px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.quote-text-lg {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 3.5rem;
}

/* Override for body text in grid sections */
.grid-item p {
    font-size: 16px;
}

/* Custom Column Gaps */
.row-gap-sm {
    row-gap: 0;
}

/* Contact Structure Image */
.services-img {
    height: 600px;
    object-fit: contain;
}

/* Additional Spacing */
.insurance-info h4,
.insurance-info p {
    margin-bottom: 1rem;
}

/* ============================================
   ABOUT PAGE CSS - END
   ============================================ */


/* ============================================
   ABOUT PAGE MEDIA QUERIES - START
   ============================================ */

@media (max-width: 768px) {
    /* Grid Sections - Stack on mobile */
    .grid-section,
    .grid-section-bottom {
        flex-direction: column;
        gap: 2rem;
    }

    /* Images */
    .about-banner-img,
    .services-img {
        height: auto;
        margin-bottom: 1rem;
    }

    .quote-large-img {
        height: 250px;
    }

    /* Typography */
    .about-h2 {
        font-size: 1.3rem;
    }

    .about-h3,
    .about-h4 {
        font-size: 1.1rem;
    }

    .grid-title {
        font-size: 1.2rem;
    }

    .quote-text-lg {
        font-size: 1.2rem;
    }
}

/* ============================================
   ABOUT PAGE MEDIA QUERIES - END
   ============================================ */