/* Google Fonts - Inter & Outfit */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Core Theme Colors */
    --primary-color: #F4C042;
    /* Vibrant yellow/gold for speed and action */
    --secondary-color: #000c21;
    /* Elegant deep teal for security and trust */
    --dark-color: var(--secondary-color);
    /* Premium charcoal dark */
    --light-color: #F5EFE9;
    /* Soft warm cream base */
    --white-color: #ffffff;
    --text-color: var(--secondary-color);
    /* Soft grey for body copy */
    --border-color: rgba(0, 0, 0, 0.08);
    --white-border-color: rgba(255, 255, 255, 0.15);

    /* Fonts */
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Outfit', sans-serif;

    /* Header Customizations */
    --header-height-desktop: 110px;
    --header-height-sticky: 90px;

    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* Reset & Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--white-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--secondary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Layout Container */
.header-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Pre-header / Top Bar --- */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid var(--white-border-color);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 48px;
    width: 100%;
}

/* Social links container on the left with yellow background */
.top-bar-socials {
    background-color: var(--primary-color);
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* Yellow background bleed all the way to the left edge of viewport */
.top-bar-socials::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: -100vw;
    background-color: var(--primary-color);
    z-index: -1;
}

.top-bar-socials .social-links {
    display: flex;
    align-items: stretch;
}

.top-bar-socials .social-links li {
    display: flex;
    align-items: stretch;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.top-bar-socials .social-links li:last-child {
    border-right: none;
}

.top-bar-socials .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
    font-size: 14px;
    transition: var(--transition-fast);
}

.top-bar-socials .social-links a:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

/* Contact information container on the right */
.top-bar-contacts {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
}

.top-bar-contacts .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 13px;
}

.top-bar-contacts .contact-item i {
    color: var(--primary-color);
    font-size: 14px;
}

.top-bar-contacts .contact-item a:hover {
    color: var(--primary-color);
}

/* --- Main Navigation Bar --- */
.nav-bar {
    background-color: var(--white-color);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 100;
    transition: var(--transition-smooth);
}

.nav-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height-desktop);
    transition: var(--transition-smooth);
}

/* Brand Logo */
.logo-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 75px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* Desktop Menu Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu .navigation {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 8px;
}

.nav-menu .navigation>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-menu .navigation>li>a {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary-color);
    padding: 10px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu .navigation>li>a i {
    font-size: 10px;
    transition: var(--transition-fast);
}

.nav-menu .navigation>li:hover>a {
    color: var(--secondary-color);
    background-color: rgba(12, 64, 62, 0.05);
}

.nav-menu .navigation>li:hover>a i {
    transform: rotate(180deg);
}

/* Dropdown Menu (Submenu) */
.nav-menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background-color: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--secondary-color);
    border-radius: 0 0 6px 6px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    z-index: 110;
}

.nav-menu .navigation>li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .submenu li {
    width: 100%;
}

.nav-menu .submenu li a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 10px 24px;
    transition: var(--transition-fast);
}

.nav-menu .submenu li a:hover {
    background-color: rgba(12, 64, 62, 0.05);
    color: var(--secondary-color);
    padding-left: 28px;
}

/* Sticky Header State */
.nav-bar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.4s ease-out forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-bar.is-sticky .nav-bar-inner {
    height: var(--header-height-sticky);
}

.nav-bar.is-sticky .logo-img {
    max-height: 60px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Right Box Actions */
.right-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-trigger {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-fast);
}

.search-trigger:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: scale(1.05);
}

/* Call To Action Button */
.cta-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    padding: 12px 24px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 6px 18px rgba(244, 192, 66, 0.25);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    border-radius: 30px;
}

.cta-btn:hover {
    color: var(--white-color);
    box-shadow: 0 6px 18px rgba(12, 64, 62, 0.25);
}

.cta-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(4px);
}

/* Hamburger Toggler (Mobile/Tablet) */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    z-index: 150;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Search Popup Styling --- */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.search-popup.is-active {
    opacity: 1;
    visibility: visible;
}

.search-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 64, 62, 0.96);
    backdrop-filter: blur(10px);
}

.search-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    text-align: center;
    transition: var(--transition-smooth);
    z-index: 2;
}

.search-popup.is-active .search-popup-content {
    transform: translate(-50%, -50%) scale(1);
}

.close-search {
    position: absolute;
    top: -80px;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-fast);
}

.close-search:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.search-form {
    position: relative;
    width: 100%;
}

.search-form input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    font-family: var(--heading-font);
    font-size: 24px;
    padding: 16px 60px 16px 0;
    outline: none;
    transition: var(--transition-smooth);
}

.search-form input:focus {
    border-color: var(--primary-color);
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-form button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white-color);
    font-size: 24px;
    transition: var(--transition-fast);
}

.search-form button:hover {
    color: var(--primary-color);
}

/* --- Mobile Drawer Menu --- */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-sidebar.is-active {
    opacity: 1;
    visibility: visible;
}

.sidebar-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.sidebar-content {
    position: absolute;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--white-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: var(--transition-smooth);
    overflow-y: auto;
    z-index: 2;
}

.mobile-sidebar.is-active .sidebar-content {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-sidebar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-fast);
}

.close-sidebar:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Mobile Sidebar Menu Links */
.sidebar-menu-wrapper {
    flex-grow: 1;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-menu>li {
    width: 100%;
    position: relative;
}

.sidebar-menu>li>a {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-menu>li>a i {
    font-size: 12px;
    transition: var(--transition-fast);
}

.sidebar-menu>li.active>a {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Mobile Submenu toggle */
.sidebar-menu .mobile-submenu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary-color);
    padding: 8px;
}

.sidebar-menu .submenu {
    display: none;
    padding-left: 20px;
    margin-top: 8px;
    flex-direction: column;
    gap: 10px;
}

.sidebar-menu .submenu li a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    padding: 6px 0;
}

.sidebar-menu .submenu li a:hover {
    color: var(--secondary-color);
}

.sidebar-contact h4 {
    font-size: 16px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.sidebar-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

.sidebar-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-contact ul li i {
    color: var(--secondary-color);
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
    .nav-menu .navigation>li>a {
        padding: 10px 10px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .top-bar-inner {
        flex-direction: column;
        padding: 10px 0;
        gap: 10px;
    }

    .top-bar-socials {
        border-radius: 8px;
    }

    .top-bar-socials::before {
        display: none;
    }

    .top-bar-contacts {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px 25px;
    }

    .nav-menu {
        display: none;
        /* Hide Desktop Menu */
    }

    .mobile-nav-toggle {
        display: flex;
        /* Show Hamburger menu */
    }

    .right-box .cta-btn {
        display: none;
        /* Hide Desktop CTA on mobile header, we can put it in the sidebar drawer if needed */
    }

    .nav-bar-inner {
        height: 85px;
    }

    .logo-img {
        max-height: 65px;
    }
}

@media (max-width: 575px) {
    .top-bar {
        display: none;
        /* Hide Topbar on small mobiles */
    }

    .header-container {
        padding: 0 16px;
    }

    .logo-img {
        max-height: 55px;
    }
}

/* --- Hero / Banner Section --- */
.hero-section {
    position: relative;
    background-color: #fcfcfc;
    overflow: hidden;
    padding: 80px 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 55%;
    z-index: 2;
}

.hero-title {
    font-family: var(--heading-font);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.15;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-title .highlight {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 2px 14px;
    display: inline-block;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 500px;
    font-weight: 500;
}

.hero-cta {
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-flex;
}

/* Feature Cards Grid */
.hero-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.feature-label {
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.03em;
    text-align: center;
}

/* Right Side Image Box */
.hero-image-box {
    flex: 1;
    max-width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.hero-img-wrapper:hover .hero-img {
    transform: scale(1.03);
}

/* Responsive Rules for Hero Banner */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image-box {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-features {
        gap: 12px;
    }

    .feature-card {
        width: calc(50% - 6px);
        /* 2 items per row on very small screens */
        height: 110px;
    }

    .feature-card:last-child {
        width: 100%;
        /* Make the 3rd feature card span full width */
    }
}

/* --- Floating Quote Request Form --- */
.hero-quote-form {
    background-color: var(--light-color);
    /* Light warm peach/cream base */
    border-radius: 30px;
    padding: 50px 40px;
    margin-top: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 10;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Soft border */
}

.quote-form-header {
    margin-bottom: 35px;
}

.quote-badge {
    background-color: var(--white-color);
    color: var(--secondary-color);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.quote-title {
    font-family: var(--heading-font);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--secondary-color);
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.02em;
}

.quote-form-body {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row.row-3 .form-group {
    flex: 1;
    width: 33.33%;
}

.form-row.row-4 .form-group {
    flex: 1;
    width: 25%;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    background-color: var(--white-color);
    border: 1px solid transparent;
    color: var(--secondary-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: 30px;
    outline: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
    height: 52px;
}

/* Custom styles for select option field */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.form-group.select-group::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    pointer-events: none;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 15px rgba(12, 64, 62, 0.08);
    background-color: var(--white-color);
}

/* Styling date field to look cohesive */
.form-group.date-group input[type="date"] {
    position: relative;
    text-transform: uppercase;
}

.form-submit {
    margin-top: 30px;
}

.submit-btn {
    display: inline-flex;
}

/* Responsive Rules for Quote Form */
@media (max-width: 991px) {
    .hero-quote-form {
        padding: 35px 25px;
        margin-top: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 0;
    }

    .form-row.row-3 .form-group,
    .form-row.row-4 .form-group {
        width: 100%;
        margin-bottom: 12px;
    }

    .form-submit {
        margin-top: 15px;
    }
}

/* --- About Us Section --- */
.about-section {
    position: relative;
    background-color: var(--white-color);
    padding: 100px 0;
    overflow: hidden;
}

.about-header {
    margin-bottom: 25px;
}

.about-badge {
    background-color: var(--light-color);
    color: var(--secondary-color);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.about-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.about-title {
    font-family: var(--heading-font);
    font-size: clamp(32px, 4.2vw, 48px);
    color: var(--secondary-color);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-title .text-highlight {
    color: var(--primary-color);
}

.about-upper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.about-desc {
    flex: 1;
    max-width: 60%;
}

.about-desc p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.about-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Overlapping Avatars Group */
.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white-color);
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.avatar-item:first-child {
    margin-left: 0;
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-plus {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: 3px solid var(--white-color);
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.review-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color);
}

/* about-lower and about-images layouts are handled by Bootstrap row/col */


.about-images {
    display: flex !important;
    gap: 0 !important;
}

.about-img-box {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.about-img-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.about-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-stats {
    display: flex;
    flex-direction: column;
}

/* Stat Grid Item */
.stat-item {
    border-top: 1px solid rgba(0, 12, 33, 0.08);
    padding: 24px 0;
}

.stat-label {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    color: #667085;
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: normal;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-desc {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    color: #667085;
    line-height: 1.4;
}

.about-cta {
    border-top: 1px solid rgba(0, 12, 33, 0.08);
    padding-top: 32px;
    margin-top: 8px;
    display: inline-block;
}

/* Responsive Rules for About Section */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    .about-upper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about-desc {
        max-width: 100%;
    }

    .about-reviews {
        align-items: center;
        align-self: center;
    }

    /* about-lower responsive layout handled by Bootstrap */

    .about-photo {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding: 40px 0;
    }

    /* about-images responsive layout handled by Bootstrap */

    .about-photo {
        height: 260px;
    }

    .stat-row {
        gap: 16px;
    }

    .stat-number {
        font-size: 44px;
    }
}

/* --- Services Section --- */
.services-section {
    background-color: var(--secondary-color);
    /* Dark navy background */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-badge {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white-color);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.services-title {
    font-family: var(--heading-font);
    font-size: clamp(32px, 4.2vw, 48px);
    color: var(--white-color);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.services-title .text-highlight {
    color: var(--primary-color);
}

/* services-grid is now handled by Bootstrap row/col structure */

.service-card {
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 12, 33, 0.1), rgba(0, 12, 33, 0.85));
    z-index: 1;
}

.service-card:hover .service-card-img {
    transform: scale(1.06);
}

.service-overlay-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 24px;
    border-radius: 16px;
    background-color: rgba(0, 20, 33, 0.95);
    /* Deep dark navy overlay */
    z-index: 2;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover .service-overlay-box {
    background-color: var(--primary-color);
    border-color: transparent;
}

.service-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    color: var(--secondary-color);
}

.service-number {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    transition: var(--transition-smooth);
}

.service-card:hover .service-number {
    color: rgba(0, 12, 33, 0.15);
}

.service-card-title {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-title {
    color: var(--secondary-color);
}

.service-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-desc {
    color: rgba(0, 12, 33, 0.75);
}

/* Centered CTA Button wrapper */
.services-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* Responsive Rules for Services Grid */
@media (max-width: 1199px) {
    /* services-grid responsive layout is handled by Bootstrap grid */
 
    .service-card {
        height: 440px;
    }
}

@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }

    .services-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .services-grid {
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .services-section {
        padding: 40px 0;
    }

    .service-card {
        height: 400px;
    }

    .service-overlay-box {
        padding: 20px;
        bottom: 16px;
        left: 16px;
        right: 16px;
    }
}

/* --- How It Works / Process Section --- */
.process-section {
    background-color: var(--white-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* process-inner and process-left layout properties are handled by Bootstrap row/col */

.process-badge {
    background-color: var(--light-color);
    color: var(--secondary-color);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.process-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.process-title {
    font-family: var(--heading-font);
    font-size: clamp(32px, 4.2vw, 48px);
    color: var(--secondary-color);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.process-title .text-highlight {
    color: var(--primary-color);
}

.process-img-box {
    margin: 35px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 280px;
    /* Constrained image height */
}

.process-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Landscape crop */
    display: block;
}

.process-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.process-checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
}

.process-checklist .check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.process-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 20px;
}

/* Timeline Track Line */
.timeline-line {
    position: absolute;
    left: 45px;
    /* Center-aligned with 50px pill width (padding 20px + center 25px) */
    top: 40px;
    bottom: 40px;
    width: 2px;
    background-color: rgba(0, 12, 33, 0.08);
    z-index: 1;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

/* Vertical Capsule Number Pill */
.step-number-pill {
    width: 50px;
    height: 100px;
    border-radius: 25px;
    background-color: var(--white-color);
    border: 2px solid rgba(0, 12, 33, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    color: var(--secondary-color);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.step-number-pill span {
    display: inline-block;
    transform: rotate(90deg);
    /* Rotate horizontal numbers to vertical */
    font-size: 18px;
    font-weight: 800;
}

.step-item.active .step-number-pill,
.step-item:hover .step-number-pill {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(244, 192, 66, 0.3);
}

/* Step Card Container */
.step-card {
    flex-grow: 1;
    display: flex;
    align-items: center;
    background-color: #FAF6F0;
    border-radius: 20px;
    padding: 24px 30px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 12, 33, 0.02);
}

.step-item:hover .step-card {
    background-color: #FAF2E6;
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.step-item.active .step-card {
    background-color: #FAF2E6;
}

/* Vertical Step Badge */
.step-vertical-badge {
    width: 32px;
    height: 60px;
    border-radius: 16px;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    padding: 10px 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    flex-shrink: 0;
}

.step-vertical-badge span {
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(0, 12, 33, 0.4);
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.step-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-card-title {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 6px;
    transition: var(--transition-fast);
}

.step-card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
}

/* Responsive Rules for How It Works Section */
@media (max-width: 991px) {
    .process-section {
        padding: 60px 0;
    }

    /* process-inner responsive layouts handled by Bootstrap */
}

@media (max-width: 575px) {
    .process-section {
        padding: 40px 0;
    }

    .process-right {
        padding-left: 20px;
    }

    .step-item {
        gap: 16px;
    }

    .step-number-pill {
        width: 44px;
        height: 80px;
        font-size: 16px;
    }

    .timeline-line {
        left: 42px;
    }

    .step-card {
        padding: 16px 20px;
    }

    .step-vertical-badge {
        margin-right: 16px;
    }
}

/* --- Our Experience Section --- */
.experience-section {
    background-color: var(--white-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.experience-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 800;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    text-align: center;
    width: 100%;
}

.experience-title::before,
.experience-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: rgba(0, 12, 33, 0.1);
    max-width: 120px;
}

/* experience-grid layout handled by Bootstrap row/col */


.experience-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
    padding: 0 40px;
}

.experience-item:last-child {
    border-right: none;
}

.experience-label {
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    color: #667085;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 24px;
}

.experience-number {
    font-family: var(--heading-font);
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Responsive Rules for Our Experience Section */
@media (max-width: 991px) {
    .experience-section {
        padding: 60px 0;
    }

    /* experience-grid responsive queries handled by Bootstrap */
    .experience-item {
        min-height: 130px;
        padding: 0 24px;
    }
}

@media (max-width: 575px) {
    .experience-section {
        padding: 40px 0;
    }

    .experience-title {
        font-size: 13px;
        margin-bottom: 40px;
    }

    /* experience-grid responsive queries handled by Bootstrap */
    .experience-item {
        min-height: auto;
        gap: 12px;
        padding: 20px 16px;
    }

    .experience-label {
        margin-bottom: 0;
    }

    .experience-number {
        font-size: 44px;
    }
}

/* Custom borders for Bootstrap Experience grid columns */
.experience-grid > [class*="col-"] {
    border-right: 1px solid rgba(0, 12, 33, 0.08);
}
.experience-grid > [class*="col-"]:last-child {
    border-right: none;
}
@media (max-width: 991px) {
    .experience-grid > [class*="col-"] {
        border-right: 1px solid rgba(0, 12, 33, 0.08);
        border-bottom: 1px solid rgba(0, 12, 33, 0.08);
    }
    .experience-grid > [class*="col-"]:nth-child(2n) {
        border-right: none;
    }
    .experience-grid > [class*="col-"]:nth-child(3),
    .experience-grid > [class*="col-"]:nth-child(4) {
        border-bottom: none;
    }
}

/* --- Why Choose Us Section --- */
.why-section {
    background-color: var(--white-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-badge {
    background-color: var(--light-color);
    color: var(--secondary-color);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.why-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.why-title {
    font-family: var(--heading-font);
    font-size: clamp(32px, 4.2vw, 48px);
    color: var(--secondary-color);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.why-title .text-highlight {
    color: var(--primary-color);
}

.why-subtitle {
    font-size: 15px;
    color: var(--text-color);
    max-width: 650px;
    line-height: 1.6;
    margin: 0 auto;
}



.why-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-item {
    background-color: #FAF6F0;
    /* Soft warm cream */
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(0, 12, 33, 0.02);
    transition: var(--transition-smooth);
    cursor: pointer;
    overflow: hidden;
}

.why-item-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.why-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.01);
}

.why-item-title {
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    transition: var(--transition-smooth);
}

/* Expanded/Active state description styling */
.why-item-desc {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.why-item-desc p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
}

/* Hover and Active State Swapping */
.why-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(244, 192, 66, 0.25);
    transform: translateY(-2px);
}

.why-item.active .why-item-icon {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.why-item.active .why-item-title {
    color: var(--secondary-color);
}

.why-item.active .why-item-desc {
    max-height: 80px;
    opacity: 1;
    margin-top: 12px;
}

.why-item.active .why-item-desc p {
    color: rgba(0, 12, 33, 0.8);
}

.why-mover-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.why-mover-photo {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.why-mover-box:hover .why-mover-photo {
    transform: scale(1.03);
}

/* Right Column: Dolly Graphic */
.why-col-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-dolly-box {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.why-dolly-photo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Responsive Rules for Why Choose Section */
@media (max-width: 1199px) {
    .why-mover-photo {
        height: 380px;
    }
}

@media (max-width: 991px) {
    .why-section {
        padding: 60px 0;
    }

    /* why-body column rules handled by Bootstrap */
    .why-mover-photo {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .why-section {
        padding: 40px 0;
    }

    .why-mover-photo {
        height: 320px;
    }

    .why-item {
        padding: 16px 20px;
    }

    .why-item-title {
        font-size: 15px;
    }

    .why-item.active .why-item-desc {
        max-height: 100px;
    }
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--white-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-badge {
    background-color: var(--light-color);
    color: var(--secondary-color);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.testimonials-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.testimonials-title {
    font-family: var(--heading-font);
    font-size: clamp(32px, 4.2vw, 48px);
    color: var(--secondary-color);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.testimonials-title .text-highlight {
    color: var(--primary-color);
}

.testimonials-carousel {
    position: relative;
}

.testimonial-item {
    height: 410px;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* Text-based review card */
.testimonial-item.text-item {
    background-color: #FAF6F0;
    /* Soft warm cream */
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 12, 33, 0.02);
}

.testimonial-item.text-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    background-color: #FAF2E6;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 0.4;
    color: var(--secondary-color);
    opacity: 0.8;
    margin-bottom: 10px;
}

.testimonial-item-title {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.testimonial-item-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
    flex-grow: 1;
}

.testimonial-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(0, 12, 33, 0.06);
    padding-top: 15px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
}

.author-role {
    font-size: 12px;
    font-weight: 600;
    color: #667085;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    color: #F4C042;
    /* Brand gold stars */
    font-size: 11px;
}

/* Customer portrait card */
.testimonial-item.img-item {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.testimonial-img-box {
    width: 100%;
    height: 100%;
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.testimonial-item.img-item:hover .testimonial-photo {
    transform: scale(1.04);
}

/* Owl Carousel indicators/dots overrides */
.testimonials-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.testimonials-carousel .owl-dots .owl-dot {
    outline: none;
}

.testimonials-carousel .owl-dots .owl-dot span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: rgba(0, 12, 33, 0.08) !important;
    border-radius: 2px;
    transition: var(--transition-smooth);
    margin: 0;
}

.testimonials-carousel .owl-dots .owl-dot.active span {
    background-color: var(--primary-color) !important;
}

/* Responsive Rules for Testimonials Section */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonial-item {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-item {
        height: 340px;
    }

    .testimonial-item.text-item {
        padding: 30px 24px;
    }
}

/* --- Footer Section --- */
.main-footer {
    position: relative;
    background-color: #0b0f19;
    /* Premium dark background */
    padding: 90px 0 60px 0;
    overflow: hidden;
}

/* Background watermark text decoration */
.footer-watermark {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--heading-font);
    font-size: clamp(80px, 15vw, 220px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    /* Extremely subtle watermark */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}

.footer-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 48px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.footer-col-title {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    display: inline-block;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.footer-links li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Contact column details */
.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
}

.contact-number {
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 800;
    color: var(--white-color);
    line-height: 1.1;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.contact-number:hover {
    color: var(--primary-color);
}

.contact-email {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    transition: var(--transition-fast);
    width: fit-content;
}

.contact-email:hover {
    color: var(--primary-color);
}

.contact-address {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    max-width: 320px;
}

/* Gold Bottom Card Styling */
.footer-gold-card {
    background-color: var(--primary-color);
    border-radius: 24px;
    padding: 40px 48px 30px 48px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.gold-card-top {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.536);
    padding: 10px 24px;
    border-radius: 12px;
}

.footer-logo-img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    /* JPEG blend option */
    mix-blend-mode: multiply;
    filter: contrast(1.05);
}

.gold-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 12, 33, 0.08);
    padding-top: 25px;
}

.footer-copyright {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: -0.01em;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(0, 12, 33, 0.05);
    color: var(--secondary-color);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.08) translateY(-2px);
}

/* Responsive Footer Adjustments */
@media (max-width: 991px) {
    .footer-top-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-contact-col {
        grid-column: span 2;
        align-items: center;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 40px;
        margin-top: 10px;
    }

    .contact-address {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-gold-card {
        padding: 30px 24px 24px 24px;
    }

    .gold-card-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .main-footer {
        padding: 60px 0 40px 0;
    }

    .footer-top-row {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-contact-col {
        grid-column: span 1;
        padding-top: 30px;
    }

    .footer-links li a:hover {
        transform: none;
    }

    .contact-number {
        font-size: 22px;
    }
}

/* --- About Hero / Page Banner Section --- */
.about-hero {
    background-color: var(--light-color);
    /* Subtle curved lines SVG background */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300' fill='none'%3E%3Cg stroke='rgba(12, 64, 62, 0.04)' stroke-width='1.5'%3E%3Cpath d='M500,350 C700,250 950,220 1200,-50'/%3E%3Cpath d='M530,350 C730,250 980,220 1230,-50'/%3E%3Cpath d='M560,350 C760,250 1010,220 1260,-50'/%3E%3Cpath d='M590,350 C790,250 1040,220 1290,-50'/%3E%3Cpath d='M620,350 C820,250 1070,220 1320,-50'/%3E%3Cpath d='M650,350 C850,250 1100,220 1350,-50'/%3E%3Cpath d='M680,350 C880,250 1130,220 1380,-50'/%3E%3Cpath d='M710,350 C910,250 1160,220 1410,-50'/%3E%3Cpath d='M740,350 C940,250 1190,220 1440,-50'/%3E%3Cpath d='M770,350 C970,250 1220,220 1470,-50'/%3E%3Cpath d='M800,350 C1000,250 1250,220 1500,-50'/%3E%3Cpath d='M830,350 C1030,250 1280,220 1530,-50'/%3E%3Cpath d='M860,350 C1060,250 1310,220 1560,-50'/%3E%3Cpath d='M890,350 C1090,250 1340,220 1590,-50'/%3E%3Cpath d='M920,350 C1120,250 1370,220 1620,-50'/%3E%3Cpath d='M950,350 C1150,250 1400,220 1650,-50'/%3E%3C/g%3E%3Cg stroke='rgba(12, 64, 62, 0.02)' stroke-width='1'%3E%3Cpath d='M900,-50 C1000,100 1100,200 1250,350'/%3E%3Cpath d='M930,-50 C1030,100 1130,200 1280,350'/%3E%3Cpath d='M960,-50 C1060,100 1160,200 1310,350'/%3E%3Cpath d='M990,-50 C1090,100 1190,200 1340,350'/%3E%3Cpath d='M1020,-50 C1120,100 1220,200 1370,350'/%3E%3Cpath d='M1050,-50 C1150,100 1250,200 1400,350'/%3E%3Cpath d='M1080,-50 C1180,100 1280,200 1430,350'/%3E%3Cpath d='M1110,-50 C1210,100 1310,200 1460,350'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 5;
}

.about-hero-title {
    font-family: var(--heading-font);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--secondary-color); /* Dark teal color */
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-hero-breadcrumbs {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.about-hero-breadcrumbs a {
    color: #0c403e;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.about-hero-breadcrumbs a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.about-hero-breadcrumbs .separator {
    opacity: 0.5;
    font-weight: 300;
}

.about-hero-breadcrumbs .current {
    opacity: 1;
    font-weight: 600;
}

/* Adjust padding on mobile devices for the about hero banner */
@media (max-width: 768px) {
    .about-hero {
        padding: 70px 0;
    }
}

/* --- Mission & Vision Section --- */
.mission-vision-section {
    position: relative;
    background-color: var(--white-color);
    padding: 100px 0;
    overflow: hidden;
}

.mission-vision-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-vision-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 50px;
}

.mission-vision-badge {
    background-color: var(--light-color);
    color: var(--secondary-color);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.mission-vision-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.mission-vision-title {
    font-family: var(--heading-font);
    font-size: clamp(32px, 4.2vw, 48px);
    color: var(--secondary-color);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.mission-vision-title .text-highlight {
    color: var(--primary-color);
}

.mission-vision-subtitle {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

/* Grid Layout for Cards */
/* mission-vision-grid is handled by Bootstrap row/col structure */
.mission-vision-grid {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.mv-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 45px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: var(--transition-smooth);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--border-color);
}

.mv-card:hover::before {
    opacity: 1;
}

.mv-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.mv-card:hover .mv-icon-box {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.mv-card-title {
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mv-card-desc {
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
}

.mv-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mv-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.mv-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: rgba(244, 192, 66, 0.15); /* light yellow/gold opacity */
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .mission-vision-section {
        padding: 80px 0;
    }
    /* mission-vision-grid responsive queries handled by Bootstrap */
    .mv-card {
        padding: 35px;
    }

    .about-cta{

        text-align: center;
    }
}

@media (max-width: 768px) {
    /* mission-vision-grid responsive queries handled by Bootstrap */
}

/* --- Service Details Page Layout --- */
.service-details-section {
    background-color: var(--white-color);
    padding: 80px 0;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
}

.service-menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white-color);
    padding: 18px 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 12, 33, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.service-menu-item .arrow-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 12, 33, 0.03);
    color: rgba(0, 12, 33, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: var(--transition-smooth);
}

.service-menu-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transform: translateX(5px);
}

.service-menu-item:hover .arrow-box {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.service-menu-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(244, 192, 66, 0.1);
    background-color: var(--white-color);
}

.service-menu-item.active .arrow-box {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(244, 192, 66, 0.3);
}

/* Sidebar Contact Advice Card */
.sidebar-contact-card {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(244, 192, 66, 0.15);
    transition: var(--transition-smooth);
    margin-top: 30px;
}

.sidebar-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(244, 192, 66, 0.25);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.contact-card-subtext {
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 12, 33, 0.6);
    margin-bottom: 15px;
}

.contact-card-phone {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    transition: var(--transition-fast);
}

.contact-card-phone:hover {
    opacity: 0.8;
}

/* Service Detail Content */
.service-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.service-image-wrapper img {
    height: 480px;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease-in-out;
}

.service-content-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: opacity 0.2s ease-in-out;
}

.service-content-text {
    transition: opacity 0.2s ease-in-out;
}

.service-content-text p {
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-benefits-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.service-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 12px;
    color: #667085;
}

.service-benefits-list li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}


/*----contactuspage------*/

.contactus-header{
    margin-top: 6rem;
}

/*---contactusleft---*/

.contactuspageleft{

    margin: 0px;
    padding: 0px;

}
.contactuspageleft h2{

    color: var(--secondary-color);
    font-size: clamp(25px,5vw,45px);
    font-weight: 700;
    margin-bottom: 20px;
}
 
.contactuspage-form{

    margin-top: 20px;
    padding: 0px;
}

.form-control{

    margin: 10px 0px;
    padding: 15px;
    background-color: #ececec;
    color:var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

/*------contactusright-------*/

.contactusright{

    margin: 0px;
    padding-inline-start: clamp(0px,5vw,40px);
    width: 100%;
    display: block;
}

.contactusright h2{
    color: var(--secondary-color);
    font-size: clamp(25px,5vw,45px);
    font-weight: 700;
    margin-bottom: 20px;
}


/*information*/

.information{
    margin: 0px;
    padding: 0px;
    margin-top: 40px;
}

.information-box{
    margin: 10px 0px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #ebebeb;
    border-radius: 20px;
}

.information-box-icon{
    margin: 0px;
    padding: 0px; 
    background-color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    color: var(--light-color);
    font-size: 25px;
    flex-shrink: 0;
}

.information-box-icon-text {
    margin: 0px;
    padding: 0;
    width: 100%;
    display: block;
    text-align: center;
}

.information-box-icon-text h4{
    color: var(--secondary-color);
    font-size: clamp(15px,5vw,20px);
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.information-box-icon-text p{
    white-space: normal;
    text-wrap: wrap;
    word-break: break-all;
    margin-bottom: 0;
}

/*mapbox */
.map-box{
    margin: 0px;
    padding: 0px;
    margin-top: 40px;
    padding-inline: clamp(0px,5vw,40px);
    padding-block: 20px;
}

.map-box iframe{

    border-radius: 20px;
}

/* Responsive Rules */
@media (max-width: 991px) {
    .service-details-section {
        padding: 60px 0;
    }

    .service-image-wrapper img {
        height: 360px;
    }

    .sidebar-contact-card {
        margin-top: 30px;
    }

    .service-menu-item:hover {
        transform: none;
    }
}

@media (max-width: 575px) {
    .service-details-section {
        padding: 40px 0;
    }

    .service-image-wrapper img {
        height: 240px;
    }

    .service-content-title {
        font-size: 26px;
    }
}


/* Service panel show/hide */
.service-panel { display: none; opacity: 0; transition: opacity 0.2s ease; }
.service-panel.active { display: block; opacity: 1; }
