:root {
    --primary: #006d77;
    /* Deep Teal */
    --primary-dark: #00565e;
    --primary-light: #e6f0f1;
    --accent: #f97316;
    /* Vibrant Orange */
    --accent-hover: #ea580c;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.text-primary2 {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.section-padding {
    padding: clamp(80px, 12vw, 150px) 0;
}

.margin-bottom-large {
    margin-bottom: clamp(40px, 6vw, 80px);
}

/* Sharp Buttons */
.btn-theme {
    background-color: var(--accent);
    color: var(--bg-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 4px;
    border: 2px solid var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-theme:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateX(5px);
}

.btn-outline-theme {
    background-color: transparent;
    color: var(--bg-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 4px;
    border: 2px solid var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-theme:hover {
    background-color: var(--bg-white);
    color: var(--primary);
}

/* Full-Width Navbar */
#mainNav {
    background: var(--bg-white);
    padding: 18px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

#mainNav.scrolled {
    padding: 10px 0;
    /* background: rgba(255, 255, 255, 0.98); */
    background: #fff;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark) !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin: 0 25px;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu */
.hamburger .bar {
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    margin: 6px 0;
    transition: 0.4s;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-link {
    font-family: 'Montserrat', sans-serif;
    display: block;
    font-size: 1.5rem;
    color: var(--bg-white);
    text-decoration: none;
    margin: 20px 0;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s;
}

.mobile-link:hover {
    color: var(--accent);
    transform: translateX(10px);
}

/* Diagonal Hero Section */
.hero-section {
    height: 100vh;
    min-height: 800px;
    background: url('../images/cta-banner.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    padding-top: 100px;
    margin-bottom: clamp(60px, 8vw, 100px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(0, 109, 119, 0.8) 45%, transparent 100%);
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 4rem);
    line-height: 1.1;
    color: var(--bg-white);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    font-style: italic;
    margin-bottom: 30px;
}

.hero-tagline {
    background: var(--accent);
    color: var(--bg-white);
    display: inline-block;
    padding: 8px 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    transform: skewX(-15deg);
}

.hero-tagline span {
    display: inline-block;
    transform: skewX(15deg);
}

/* Overlapping Info Bar */
.info-bar-wrapper {
    margin-top: -160px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.info-box {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 5px solid var(--accent);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.4s ease;
    height: 100%;
}

.info-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 38px;
    color: var(--primary);
}

/* ==========================================
       DESKTOP DROPDOWN (HOVER WITH ANIMATION)
    ========================================== */
@media (min-width: 992px) {
    .nav-dropdown-wrapper {
        position: relative;
    }

    .nav-dropdown-wrapper .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: none;
        border-radius: 10px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        padding: 10px 0;
        margin-top: 0;
        min-width: 220px;
    }

    /* Invisible bridge to keep menu open while moving mouse */
    .nav-dropdown-wrapper .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 0;
        width: 100%;
        height: 15px;
    }

    .nav-dropdown-wrapper:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-dropdown-wrapper .dropdown-item {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        padding: 10px 25px;
        color: var(--text-dark);
        transition: all 0.3s ease;
    }

    .nav-dropdown-wrapper .dropdown-item:hover {
        background-color: rgba(249, 115, 22, 0.05);
        /* Very light orange */
        color: var(--accent) !important;
        transform: translateX(6px);
        /* Premium slide effect */
    }
}

/* ==========================================
       MOBILE SUB-MENU (CLICK WITH ANIMATION)
    ========================================== */
.mobile-link .fa-chevron-down {
    transition: transform 0.3s ease;
}

.mobile-link[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--accent);
}

.mobile-submenu-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    margin: 10px 30px;
    padding: 10px 20px;
    text-align: left;
}

.mobile-sub-link {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.mobile-sub-link:hover,
.mobile-sub-link.active-sub {
    opacity: 1;
    color: var(--accent);
    transform: translateX(8px);
}

/* Corporate Profile Image */
.about-image-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 30px;
}

.about-image-wrapper img {
    border-radius: 8px;
    position: relative;
    z-index: 2;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 85%;
    background-color: var(--primary-light);
    border-radius: 8px;
    z-index: 0;
    transition: 0.4s;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 60px;
    background-color: var(--accent);
    z-index: 3;
    border-radius: 4px;
    transition: 0.4s;
}

.about-image-wrapper:hover::before {
    transform: translate(-10px, -10px);
    background-color: var(--primary);
    opacity: 0.05;
}

.about-image-wrapper:hover::after {
    height: 100px;
    transform: translateY(-10px);
}

/* Horizontal Services Area */
.service-list-item {
    background: var(--bg-white);
    border: 1px solid #e2e8f0;
    border-left: 6px solid transparent;
    padding: 45px 40px;
    margin-bottom: 25px;
    border-radius: 6px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.service-list-item:hover {
    border-left-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateX(12px);
}

.service-number {
    position: absolute;
    right: 20px;
    bottom: -20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 130px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.04;
    line-height: 1;
    transition: 0.5s ease;
}

.service-list-item:hover .service-number {
    opacity: 0.08;
    transform: scale(1.05) translateY(-5px);
}

.service-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-icon-wrap-new {
    width: 70px;
    height: 70px;
    background: rgba(0, 109, 119, 0.08);
    color: var(--primary);
    font-size: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.4s;
}

.service-list-item:hover .service-icon-wrap-new {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 10px 20px rgba(0, 109, 119, 0.25);
}

@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Parallax CTA */
.parallax-cta {
    background: url('../images/cta-banner.jpeg') center/cover fixed;
    position: relative;
    padding: 130px 0;
    margin: clamp(60px, 8vw, 100px) 0;
}

.parallax-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 109, 119, 0.92);
}

/* Seamless Grid Gallery */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    flex: 1 1 50%;
    height: 350px;
}

@media (min-width: 992px) {
    .gallery-item {
        flex: 1 1 25%;
        height: 400px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(100%);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 115, 22, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 45px;
    color: var(--bg-white);
    transform: translateY(30px);
    transition: 0.5s ease;
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

/* About Us Page CSS */
.corp-profile-section {
    padding: 120px 0;
    background-color: var(--bg-white);
}

.img-collage-wrapper {
    position: relative;
    height: 600px;
    width: 100%;
}

.main-img {
    width: 75%;
    height: 85%;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.sub-img {
    width: 60%;
    height: 55%;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 12px solid var(--bg-white);
    transition: transform 0.5s ease;
}

.img-collage-wrapper:hover .sub-img {
    transform: scale(1.05);
}

/* Floating Badge */
.floating-experience-badge {
    position: absolute;
    top: 40px;
    right: 5%;
    background: var(--accent);
    color: white;
    padding: 25px 30px;
    border-radius: 8px;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
    text-align: center;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-experience-badge .number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.floating-experience-badge .text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.profile-text-content .subtitle-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile-text-content .accent-dash {
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin-right: 15px;
}

.profile-text-content h6 {
    color: var(--accent);
    letter-spacing: 2px;
    margin: 0;
    font-size: 0.95rem;
}

.profile-text-content .main-heading {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.15;
}

.profile-text-content .desc-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.custom-check-list {
    list-style: none;
    padding: 0;
    margin-top: 35px;
}

.custom-check-list li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.custom-check-list li i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent);
    border-radius: 50%;
    font-size: 0.85rem;
    margin-right: 15px;
}

@media (max-width: 991px) {
    .img-collage-wrapper {
        height: 450px;
        margin-bottom: 40px;
    }

    .floating-experience-badge {
        padding: 15px 20px;
        right: 0;
    }

    .floating-experience-badge .number {
        font-size: 2.2rem;
    }

    .profile-text-content .main-heading {
        font-size: 2.2rem;
    }
}

.dark-mv-section {
    background-color: var(--primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.dark-mv-section::before {
    content: 'AV ROAD';
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 18vw;
    color: rgba(255, 255, 255, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.mv-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 60px 50px;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.mv-glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-10px);
}

.mv-icon {
    font-size: 55px;
    color: var(--accent);
    margin-bottom: 30px;
}

.mv-title {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.mv-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 300;
}

.values-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.value-box {
    text-align: center;
    padding: 30px 20px;
}

.value-icon-circle {
    width: 90px;
    height: 90px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.value-box:hover .value-icon-circle {
    background: var(--accent);
    color: var(--bg-white);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.value-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-text {
    color: var(--text-muted);
    line-height: 1.7;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f172a;
    /* Sleek dark background */
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader-scene {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glowing Spinner Ring */
.loader-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--accent);
    border-bottom-color: var(--primary);
    animation: spinRing 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Vibrating Truck Icon */
.truck-icon-bob {
    font-size: 55px;
    color: var(--bg-white);
    z-index: 2;
    animation: truckVibrate 0.15s infinite alternate ease-in-out;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes truckVibrate {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-2px) rotate(-1deg);
    }
}

/* Animated Speed Lines Background */
.speed-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    border-radius: 50%;
}

.speed-line {
    position: absolute;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    animation: speedFly linear infinite;
}

.speed-line:nth-child(1) {
    top: 30%;
    left: 100%;
    width: 30px;
    animation-duration: 0.6s;
}

.speed-line:nth-child(2) {
    top: 60%;
    left: 100%;
    width: 50px;
    animation-duration: 0.8s;
    animation-delay: 0.2s;
}

.speed-line:nth-child(3) {
    top: 80%;
    left: 100%;
    width: 20px;
    animation-duration: 0.5s;
    animation-delay: 0.4s;
}

@keyframes speedFly {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(-150px);
        opacity: 0;
    }
}

/* Text and Loading Bar */
.preloader-text-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-shimmer-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 1rem;
    background: linear-gradient(90deg, #fff 0%, var(--accent) 50%, #fff 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    animation: shimmerText 2s linear infinite;
}

@keyframes shimmerText {
    to {
        background-position: 200% center;
    }
}

.loading-bar-bg {
    width: 140px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loading-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent);
    animation: fillBar 1.5s ease-in-out infinite;
}

@keyframes fillBar {
    0% {
        width: 0%;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 100%;
        left: 100%;
    }
}

.truck-to-top {
    position: fixed;
    bottom: 105px;
    right: 35px;
    width: 55px;
    height: 55px;
    background: var(--primary, #006d77);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 109, 119, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.truck-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.truck-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1e293b;
    background-image: linear-gradient(to bottom, var(--accent, #f97316) 50%, transparent 50%);
    background-size: 4px 20px;
    background-repeat: repeat-y;
    background-position: center 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.truck-to-top:hover {
    box-shadow: 0 12px 30px rgba(30, 41, 59, 0.6);
    border-color: var(--accent, #f97316);
}

.truck-to-top:hover::before {
    opacity: 1;
    animation: highwayDrive 0.3s linear infinite;
}

.truck-to-top i {
    font-size: 1.4rem;
    color: #ffffff;
    transform: rotate(-90deg);
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.truck-to-top:hover i {
    animation: truckVibrate2 0.15s ease-in-out infinite alternate;
}

@keyframes highwayDrive {
    0% {
        background-position: center 0;
    }

    100% {
        background-position: center 20px;
    }
}

@keyframes truckVibrate2 {
    0% {
        transform: rotate(-90deg) translateX(0px);
    }

    100% {
        transform: rotate(-90deg) translateX(1.5px);
    }
}

/* Standard WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    z-index: 100;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-10deg);
    color: white;
}


/* Service Page CSS */
/* Base Resets for this specific section */
.av-exclusive-services-wrap {
    background-color: #f0f4f8 !important;
    padding: 120px 0 !important;
    font-family: 'Open Sans', sans-serif !important;
}

.av-srv-header-box {
    text-align: center !important;
    margin-bottom: 80px !important;
}

.av-srv-subtitle {
    color: #f97316 !important;
    /* Orange */
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
}

.av-srv-title {
    color: #006d77 !important;
    /* Teal */
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900 !important;
    font-size: 3.5rem !important;
    text-transform: uppercase !important;
    margin-bottom: 25px !important;
}

.av-srv-divider {
    width: 100px !important;
    height: 6px !important;
    background-color: #f97316 !important;
    /* Orange */
    margin: 0 auto 25px auto !important;
    border-radius: 3px !important;
}

/* The Floating Block Cards */
.av-block-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 60px 40px 50px 40px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
    border-top: 8px solid #006d77 !important;
    /* Teal Top Border */
    position: relative !important;
    height: 100% !important;
    transition: all 0.4s ease !important;
    margin-top: 40px !important;
    /* Space for the overlapping icon */
}

.av-block-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
    border-top-color: #f97316 !important;
    /* Switches to Orange on hover */
}

/* Overlapping Icon */
.av-overlap-icon {
    width: 90px !important;
    height: 90px !important;
    background: #f97316 !important;
    /* Orange */
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 40px !important;
    position: absolute !important;
    top: -45px !important;
    left: 40px !important;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.4) !important;
    transition: all 0.4s ease !important;
}

.av-block-card:hover .av-overlap-icon {
    background: #006d77 !important;
    /* Switches to Teal on hover */
    box-shadow: 0 10px 20px rgba(0, 109, 119, 0.4) !important;
    transform: rotate(15deg) !important;
}

/* Card Typography */
.av-card-heading {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    font-size: 1.6rem !important;
    margin-bottom: 20px !important;
    margin-top: 10px !important;
}

.av-card-text {
    color: #64748b !important;
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    margin-bottom: 30px !important;
}

/* Card Button */
.av-card-btn {
    display: inline-block !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    color: #006d77 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    letter-spacing: 1px !important;
    border-bottom: 2px solid transparent !important;
    padding-bottom: 3px !important;
    transition: 0.3s ease !important;
}

.av-card-btn i {
    margin-left: 8px !important;
    transition: transform 0.3s ease !important;
}

.av-block-card:hover .av-card-btn {
    color: #f97316 !important;
    border-bottom-color: #f97316 !important;
}

.av-block-card:hover .av-card-btn i {
    transform: translateX(6px) !important;
}

/* Inner Hero Quick Reset */
.av-inner-hero {
    height: 50vh !important;
    min-height: 400px !important;
    background: url('images/3.jpeg') center/cover no-repeat !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.av-hero-dark-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 109, 119, 0.85) !important;
}


/* Contact Us Page CSS */
.contact-highlight-box {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
    height: 100%;
}

.contact-highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.contact-highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px auto;
}

/* Split Contact Area Enhancements */
.contact-split {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.contact-info-panel {
    background: var(--primary);
    color: var(--bg-white);
    padding: clamp(50px, 5vw, 70px);
    position: relative;
    z-index: 1;
}

/* Massive Globe Watermark Background */
.contact-info-panel::before {
    content: '\f0ac';
    /* FontAwesome Globe Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -80px;
    right: -60px;
    font-size: 400px;
    color: #ffffff;
    opacity: 0.04;
    z-index: -1;
    transform: rotate(-15deg);
}

.contact-form-panel {
    padding: clamp(50px, 5vw, 70px);
    background: var(--bg-white);
}

/* Premium Form Inputs with Icons */
.custom-input-group {
    position: relative;
    margin-bottom: 25px;
}

.custom-input-group i {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: 0.3s ease;
}

.custom-input-group input,
.custom-input-group textarea {
    width: 100%;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    padding: 15px 20px 15px 50px;
    /* Space for icon */
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.custom-input-group textarea {
    padding-left: 20px;
    /* No icon for textarea usually, but we can add one */
}

.custom-input-group.textarea-group i {
    top: 20px;
}

.custom-input-group input:focus,
.custom-input-group textarea:focus {
    background: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    outline: none;
}

.custom-input-group input:focus+i,
.custom-input-group textarea:focus+i,
.custom-input-group input:not(:placeholder-shown)~i {
    color: var(--accent);
}

.submit-btn {
    background: var(--accent);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 6px;
    padding: 18px 30px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

.submit-btn:hover {
    background: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 109, 119, 0.3);
    transform: translateY(-3px);
}

.full-map-container {
    border-top: 5px solid var(--accent);
}


/* Footer CSS */
.footer-mega {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 120px 0 30px;
    position: relative;
    overflow: hidden;
    /* margin-top: 80px; */
}

.footer-mega::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.footer-cta-block {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-mega h4 {
    color: var(--bg-white);
    margin-bottom: 30px;
    font-size: 1.15rem;
    letter-spacing: 1px;
}

.footer-mega .footer-link {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
    font-size: 1rem;
    transition: 0.3s;
}

.footer-mega .footer-link:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-mega .social-btn {
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.05);
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: 0.3s;
    margin-right: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.footer-mega .social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
}


/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
    z-index: 100;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-10deg);
    color: white;
}