:root {
    --navy: #103a65;
    --orange: #ff8c00;
    --light-gray: #ffffff;
    --light-grey: #f8f9fa;
    --transition: all 0.3s ease-in-out;
    --gradient-navy: linear-gradient(135deg, #103a65 0%, #1a528a 100%);
    --navy-footer: #000d1a;
    --text-grey: #adb5bd;
    --navy-blue: #001f3f;
    --navy-text: #333333;
     --light-bg: #f8f9fa;
     --dark-overlay: rgba(0, 0, 0, 0.6);
     --primary-color: #0d47a1;
     --dark-color: #1e1e1e;
     --light-color: #f8f9fa;

     --primary-blue: #0c4da2;
     --bg-light: #f9f9f9;

     --accent-orange: #f7941d;
     --soft-blue: #eef4fb;
     --bg-gray: #f8f9fa;
     --hvac-cyan: #00bcd4;
     --bg-soft: #f4faff;
     --fire-red: #d32f2f;
     --hover-blue: #086cef;
     --white: #ffffff;
     --dark: #333333;
      
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    padding: 0px;
     background-color: var(--light-grey);
}

h1,
h2,
h3,


/* ================= TOP BAR ================= */

.top-bar {
    background: var(--navy);
    color: var(--white);
    font-size: 14px;
    padding: 6px 0;
    line-height: 1.3;
    position: relative;
    z-index: 1040;
}
.contact-hero-title,
.contact-hero-title span {
    background: transparent !important;
    background-color: transparent !important;
}
.contact-form-title,
.contact-form-title span {
    background: transparent !important;
    background-color: transparent !important;
}

.contact-form-title {
    color: var(--navy) !important;
    font-size: 32px;
    font-weight: 800;
    text-align: left;
    margin-bottom: 30px;
}

.contact-form-title span {
    color: var(--orange) !important;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    min-width: 0;
}

.top-contact a {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 14px;
}

.top-contact i {
    color: var(--orange);
    font-size: 13px;
}

.top-gstin {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}


/* ================= NAVBAR ================= */

.navbar {
    background: var(--light-gray) !important;
    min-height: 72px;
    height: auto !important;
    padding: 7px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1030;
}

.navbar > .container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    text-decoration: none;
    max-width: calc(100% - 60px);
    min-width: 0;
}

.logo-container {
    width: 58px;
    height: 58px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 58px;
}

.nav-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-name {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--navy);
    white-space: nowrap;
    min-width: 0;
}

.brand-name strong {
    color: var(--navy);
    font-weight: 800;
}

.brand-name span {
    color: var(--orange);
    font-weight: 800;
}

.navbar-toggler {
    margin-left: auto;
    padding: 5px 8px;
    border: 1px solid rgba(16, 58, 101, 0.35);
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.nav-link {
    color: var(--navy) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin: 0 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--orange) !important;
}


/* ================= DROPDOWN ================= */

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--orange);
    padding: 6px 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: var(--transition);
    color: var(--navy);
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: var(--orange) !important;
    color: var(--light-gray) !important;
    padding-left: 25px;
}


/* ================= DESKTOP ADJUSTMENT ================= */

@media (max-width: 1199px) {
    .brand-name {
        font-size: 1.15rem;
    }

    .nav-link {
        margin: 0 5px;
        font-size: 0.8rem;
    }
}


/* ================= TABLET ================= */

@media (max-width: 991.98px) {
    .navbar {
        min-height: 68px;
        padding: 8px 0;
    }

    .navbar > .container {
        flex-wrap: wrap;
    }

    .logo-container {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .navbar-collapse {
        flex-basis: 100%;
        width: 100%;
        background: var(--light-gray);
        margin-top: 10px;
        padding: 10px 0 15px;
        border-top: 1px solid rgba(16, 58, 101, 0.12);
        max-height: calc(100vh - 130px);
        overflow-y: auto;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .nav-link {
        text-align: center;
        margin: 0;
        padding: 10px 12px !important;
    }

    .dropdown-menu {
        width: 100%;
        text-align: center;
        box-shadow: none;
        border-radius: 0;
        border-top: 2px solid var(--orange);
        background: #fff;
    }

    .dropdown-item:hover {
        padding-left: 20px;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .top-bar-inner {
        justify-content: center;
        text-align: center;
        gap: 4px;
    }

    .top-contact {
        width: 100%;
        justify-content: center;
        gap: 8px 12px;
    }

    .top-gstin {
        width: 100%;
        text-align: center;
        font-size: 12px;
    }

    .top-contact a {
        font-size: 12px;
    }

    .navbar {
        min-height: 64px;
    }

    .logo-container {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .brand-name {
        font-size: 0.95rem;
    }
}


/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
    .top-bar {
        padding: 5px 0;
    }

    .top-contact {
        gap: 5px 8px;
    }

    .top-contact a {
        font-size: 11px;
        gap: 4px;
    }

    .top-contact i {
        font-size: 11px;
    }

    .top-gstin {
        font-size: 11px;
    }

    .navbar {
        padding: 7px 0;
        min-height: 60px;
    }

    .navbar-brand {
        gap: 7px;
        max-width: calc(100% - 52px);
    }

    .logo-container {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .brand-name {
        display: block;
        font-size: 0.82rem;
        line-height: 1.05;
        white-space: normal;
        max-width: 165px;
    }

    .brand-name strong,
    .brand-name span {
        display: block;
    }

    .navbar-toggler {
        padding: 4px 7px;
    }
}


/* ================= 360PX AND 320PX FIX ================= */

@media (max-width: 360px) {
    .top-bar .container,
    .navbar .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .top-contact {
        flex-direction: column;
        gap: 2px;
    }

    .top-contact a {
        font-size: 10.5px;
        line-height: 1.2;
    }

    .top-gstin {
        font-size: 10.5px;
        line-height: 1.2;
    }

    .navbar-brand {
        gap: 6px;
        max-width: calc(100% - 46px);
    }

    .logo-container {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .brand-name {
        font-size: 0.76rem;
        max-width: 145px;
    }

    .navbar-toggler {
        padding: 3px 6px;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .top-contact a {
        font-size: 10px;
    }

    .top-gstin {
        font-size: 10px;
    }

    .logo-container {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .brand-name {
        font-size: 0.72rem;
        max-width: 135px;
    }

    .navbar-toggler {
        padding: 3px 5px;
    }
}
/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('/images/eimg3.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(16, 58, 101, 0.9), rgba(16, 58, 101, 0.4));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-title span {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 20px 0 30px;
    opacity: 0.9;
}

.btn-primary-custom {
    background-color: var(--orange);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--orange);
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--orange);
    transform: translateY(-3px);
}

/* --- CURVE DIVIDER --- */
.curve-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.curve-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.curve-divider .shape-fill {
    fill: var(--light-grey);
}

/* --- STATS SECTION --- */
.stats-section {
    /* Height fix hata kar padding use ki hai taaki content expand ho sake */
    padding: 60px 0; 
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.stat-card {
    background: white;
    padding: 30px 15px; /* Side padding kam ki hai responsiveness ke liye */
    margin-top: 20px;   /* Margin ko balanced kiya gaya hai */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease; /* var(--transition) ki jagah standard use kiya hai */
    border-bottom: 5px solid var(--orange, #ff9800); /* Fallback color added */
    height: 100%; /* Saare cards ki height ek jaisi rahegi */
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card h2 {
    color: var(--navy, #000080);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
}

/* --- RESPONSIVE QUERIES --- */

/* Tablets aur Medium Screens ke liye (max 768px) */
@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }
    .stat-card h2 {
        font-size: 2rem;
    }
}

/* Mobile Screens ke liye (max 480px aur 320px tak) */
@media (max-width: 480px) {
    .stat-card {
        padding: 20px 10px;
        margin-top: 10px;
    }
    .stat-card h2 {
        font-size: 1.6rem; /* Font size chota kiya taaki 320px par wrap na ho */
    }
    .stat-card p {
        font-size: 0.85rem; /* Text size adjust kiya */
    }
}

/* Extreme Small Screens (320px) ke liye special touch */
@media (max-width: 350px) {
    .stat-card h2 {
        font-size: 1.4rem;
    }
    .stat-card p {
        font-size: 0.75rem;
    }
    .row.g-4 {
        --bs-gutter-x: 10px; /* Gutter spacing kam ki taaki cards fit ho sakein */
    }
}
/* Stats Section Heading */
.stats-main-title,
.stats-main-title span {
    background: transparent !important;
    background-color: transparent !important;
}

.stats-main-title {
    color: var(--navy);
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 10px;
}

.stats-main-title span {
    color: var(--orange);
}

.stats-subtitle {
    color: #555;
    font-size: 16px;
    font-weight: 500;
    max-width: 720px;
    margin: 0 auto;
}

.stats-title-line {
    width: 80px;
    height: 4px;
    background: var(--orange);
    border-radius: 30px;
    margin: 16px auto 0;
}

/* Mobile */
@media (max-width: 576px) {
    .stats-main-title {
        font-size: 26px;
    }

    .stats-subtitle {
        font-size: 14px;
    }
}

/* 320px */
@media (max-width: 360px) {
    .stats-main-title {
        font-size: 23px;
    }

    .stats-subtitle {
        font-size: 13px;
    }
}
/* --- SERVICES SECTION --- */
.services-section {
    padding: 8pxpx 0;
}

.main-heading {
    font-weight: 800;
    color: var(--navy);
    font-size: 2.5rem;
    
}

.main-heading span {
    color: var(--orange);
}

.heading-line {
    width: 80px;
    height: 4px;
    background: var(--orange);
    margin: 15px auto;
    border-radius: 2px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0;
    background: var(--navy);
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    color: white;
    transform: translateY(-10px);
}

.service-card .icon-box {
    width: 70px;
    height: 70px;
    background: var(--light-grey);
    color: var(--orange);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .icon-box {
    background: var(--orange);
    color: white;
}

.service-card h3 {
    color: var(--navy);
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
h3{
    justify-content: center;
}

.service-card p {
    color: #777;
    position: relative;
    z-index: 1;
}

.service-card:hover h3, .service-card:hover p {
    color: white;
}

.read-more {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .read-more {
    color: white;
}

/* --- GALLERY SECTION STYLE --- */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-grey);
    overflow: hidden;
}

/* Slider Wrapper */
.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* Gradient Fade Effect on Sides */
.gallery-slider-wrapper::before,
.gallery-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gallery-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--light-grey), transparent);
}

.gallery-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--light-grey), transparent);
}

/* The Moving Track */
.gallery-track {
    display: flex;
    width: calc(300px * 14); /* (Image width * Total items) */
    animation: scrollGallery 30s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused; /* Stops moving on hover */
}

/* Gallery Individual Item */
.gallery-item {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 0 15px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Overlay Design */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--navy), transparent);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* Hover Effects */
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border: 3px solid var(--orange);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Animation Keyframes */
@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-330px * 7)); /* (width + margin) * total unique items */
    }
}

/* --- RESPONSIVENESS --- */

@media (max-width: 768px) {
    .gallery-item {
        width: 250px;
        height: 170px;
    }
    .gallery-track {
        width: calc(280px * 14);
    }
    @keyframes scrollGallery {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-280px * 7)); }
    }
}

@media (max-width: 320px) {
    .gallery-item {
        width: 200px;
        height: 150px;
    }
    .gallery-track {
        width: calc(230px * 14);
    }
    @keyframes scrollGallery {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-230px * 7)); }
    }
    .gallery-slider-wrapper::before,
    .gallery-slider-wrapper::after {
        width: 50px; /* Smaller fade on very small screens */
    }
}

/* --- ABOUT SECTION --- */
.about-experience {
    padding: 100px 0;
    background: white;
    border-radius: 100px 100px 0 0; /* Top Curve */
}

.about-img-wrapper {
    position: relative;
}

.rounded-curve {
    border-radius: 40px 150px 40px 150px;
    box-shadow: 20px 20px 0 var(--orange);
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    right: -9px;
    background: var(--navy);
    color: white;
    padding: 1px;
    height: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.exp-badge span {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    color: var(--orange);
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.experience-list li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #555;
}

.experience-list li i {
    color: var(--orange);
    margin-right: 10px;
}

/* --- FEEDBACK SECTION --- */
.feedback-section {
    padding: 11px 0;
    background: var(--light-grey);
}

.feedback-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--orange);
}

.stars {
    color: #ffcc00;
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    color: #103a65;
    margin-top: 20px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}


.btn-orange-lg {
    background: var(--orange);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-orange-lg:hover {
    background: white;
    color: var(--navy);
    transform: scale(1.05);
}

/* --- KEYFRAMES --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .about-experience { border-radius: 50px 50px 0 0; }
    .rounded-curve { border-radius: 20px; }
}

@media (max-width: 320px) {
    .hero-title { font-size: 2rem; }
    .stat-card h2 { font-size: 1.8rem; }
    .main-heading { font-size: 1.8rem; }
    .btn-primary-custom, .btn-orange-lg {
        width: 100%;
        text-align: center;
    }
}


/* FOOTER */
.footer {
    background-color: var(--navy-blue);
    color: var(--light-gray);
    padding: 60px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer h4 {
    color: var(--light-gray);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--bright-red);
    position: absolute;
    left: 0;
    bottom: 0;
}

/* Brand Section */
.footer-brand .brand-name {
    font-weight: 700;
    font-size: 12px;
    margin-left: -10px;
    color: var(--navy-text);
}

.footer-brand .text-red {
    color: var(--bright-red);
}

.footer-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Links & Contact Style */
.footer-links,
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.contact-info li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--bright-red);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ccc;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-info li i {
    color: var(--bright-red);
    margin-top: 4px;
}

.contact-info li:hover {
    color: var(--light-gray);
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    background: var(--bright-red);
    color: var(--light-gray);
    transform: translateY(-5px);
    border-color: var(--bright-red);
}

.footer-map {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsiveness for 320px */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
        text-align: left;
    }
}

/* --- RESPONSIVENESS --- */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .z-img-box img {
        box-shadow: 10px 10px 0px var(--orange);
    }
}

@media (max-width: 768px) {
    

    .logo-container {
        height: 40px;
        width: 40px;
        margin-right: 2px;
    }

    .brand-name {
        font-size: 9px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.hide-topbar {
    transform: translateY(-100%);
    position: absolute;
    width: 100%;
}


    /* CUSTOM CSS FOR CONTACT PAGE */
        /* --- Contact Hero Section --- */
        .contact-hero {
            background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)),
                url('https://images.unsplash.com/photo-1423666639041-f56000 বাদী-contact?q=80&w=2070') center/cover;
            padding: 100px 0;
            color: var(--light-gray);
            text-align: center;
        }

        .contact-hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .contact-hero h1 span {
            color: var(--orange);
        }

        .contact-hero .underline {
            width: 80px;
            height: 5px;
            background: var(--orange);
            margin: 20px auto;
        }

        /* --- Contact Info Cards --- */
        .info-card {
            background: var(--light-gray);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid #eee;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .info-card:hover {
            transform: translateY(-10px);
            border-bottom: 5px solid var(--orange);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .info-card i {
            font-size: 3rem;
            color: var(--orange);
            margin-bottom: 20px;
        }

        .info-card h4 {
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .info-card p {
            color: var(--text-grey);
            font-size: 0.95rem;
        }

        /* --- Modern Contact Form --- */
        .contact-form-container {
            background: var(--light-gray);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border: 1px solid #eee;
        }

        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
        }

        .btn-submit {
            background: var(--orange);
            color: var(--light-gray);
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            transition: var(--transition);
            width: 100%;
            font-size: 1rem;
        }

        .btn-submit:hover {
            background: var(--navy);
            color: var(--light-gray);
            transform: scale(1.02);
        }

        /* --- Map Section --- */
        .map-container {
            width: 100%;
            height: 450px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 5px solid var(--light-gray);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* --- RESPONSIVENESS --- */
        @media (max-width: 991px) {
            .contact-hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.2rem;
            }

            .contact-form-container {
                padding: 25px;
            }
        }

        @media (max-width: 320px) {
            .contact-hero h1 {
                font-size: 1.8rem;
            }

            .container {
                padding-left: 15px;
                padding-right: 15px;
            }

            .info-card {
                padding: 20px;
            }
        }
/* contact section end */

/* --building section start -- */

body {
    background-color: var(--navy);
    color: var(--light-gray);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Section Styling */
.construction-section {
    padding: 70px 0;
    background: var(--navy);
}

.section-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
}

.text-primary-color {
    color: var(--orange);
}

/* Main Card Background */
.bg-dark-gray {
    background-color: var(--light-grey);
    min-height: 450px;
}

/* Content Box */
.content-box {
    background-color: var(--light-grey);
    padding: 55px 45px;
    min-height: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

/* Heading */
.content-box h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.content-box h2 span {
    color: var(--orange);
}

/* Paragraph */
.content-box p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark) !important;
    margin-bottom: 18px;
}

/* List */
.content-box ul {
    margin-bottom: 0;
}

.content-box ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--dark) !important;
}

/* Image Box */
.image-box {
    height: 450px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: var(--transition);
    filter: grayscale(25%);
}

.image-box img:hover {
    filter: grayscale(0%);
    transform: scale(1.04);
}

/* Button */
.btn-custom {
    background-color: var(--orange);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    margin-top: 22px;
    width: fit-content;
    transition: var(--transition);
    text-decoration: none;
}

.btn-custom:hover {
    background-color: var(--hover-blue);
    transform: translateY(-4px);
    color: var(--white);
}

/* Process Steps Extra Section */
.step-card {
    background: var(--navy);
    border-bottom: 3px solid var(--orange);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border-radius: 14px;
}

.step-card:hover {
    background: var(--orange);
    color: var(--navy);
}

.step-card:hover .step-icon,
.step-card:hover p,
.step-card:hover h4 {
    color: var(--navy) !important;
}

.step-icon {
    font-size: 40px;
    color: var(--orange);
    margin-bottom: 15px;
}

/* Laptop */
@media (max-width: 1199px) {
    .content-box {
        padding: 45px 35px;
    }

    .content-box h2 {
        font-size: 36px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .construction-section {
        padding: 55px 0;
    }

    .bg-dark-gray {
        min-height: auto;
    }

    .image-box {
        height: 360px;
    }

    .content-box {
        min-height: auto;
        padding: 42px 35px;
    }

    .content-box h2 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .construction-section {
        padding: 45px 0;
    }

    .section-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .image-box {
        height: 260px;
    }

    .content-box {
        padding: 32px 22px;
        text-align: center;
        align-items: center;
    }

    .content-box h2 {
        font-size: 26px;
        line-height: 1.25;
    }

    .content-box p {
        font-size: 14px;
        line-height: 1.7;
    }

    .content-box ul li {
        font-size: 14px;
        line-height: 1.6;
    }

    .btn-custom {
        padding: 10px 26px;
        font-size: 14px;
    }
}

/* 320px Device */
@media (max-width: 360px) {
    .content-box {
        padding: 28px 16px;
    }

    .content-box h2 {
        font-size: 23px;
    }

    .content-box p,
    .content-box ul li {
        font-size: 13px;
    }

    .image-box {
        height: 230px;
    }
}

.construction-cta {
    background-color: var(--orange);
}

.construction-cta .cta-title {
    background: transparent !important;
    color: #ffffff !important;
    font-size: 36px;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

.construction-cta p {
    font-size: 18px;
}

.construction-cta .cta-btn {
    background-color: var(--navy);
    color: #ffffff;
    border: 2px solid var(--navy);
    transition: all 0.3s ease;
}

.construction-cta .cta-btn:hover {
    background-color: #ffffff;
    color: var(--navy);
    border-color: #ffffff;
}

/* Mobile */
@media (max-width: 576px) {
    .construction-cta .cta-title {
        font-size: 25px;
    }

    .construction-cta p {
        font-size: 15px;
    }

    .construction-cta .cta-btn {
        padding: 10px 28px !important;
        font-size: 15px;
    }
}

/* 320px */
@media (max-width: 360px) {
    .construction-cta .cta-title {
        font-size: 22px;
    }

    .construction-cta p {
        font-size: 14px;
    }
}
/* --building section end-- */
 /* road section start */
/* ROAD STATS SECTION START */

.road-stats-section {
    background-color: var(--orange);
    padding: 55px 0;
    color: var(--dark);
}

.road-stat-box {
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(16, 58, 101, 0.25);
    border-radius: 18px;
    padding: 28px 10px;
    height: 100%;
    transition: var(--transition);
}

.road-stat-box:hover {
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.road-stat-box h2 {
    color: var(--navy);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.road-stat-box p {
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Tablet */
@media (max-width: 991px) {
    .road-stats-section {
        padding: 45px 0;
    }

    .road-stat-box h2 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .road-stats-section {
        padding: 38px 0;
    }

    .road-stat-box {
        padding: 22px 8px;
        border-radius: 15px;
    }

    .road-stat-box h2 {
        font-size: 28px;
    }

    .road-stat-box p {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* 320px */
@media (max-width: 360px) {
    .road-stat-box {
        padding: 18px 6px;
    }

    .road-stat-box h2 {
        font-size: 24px;
    }

    .road-stat-box p {
        font-size: 10.5px;
    }
}

/* ROAD STATS SECTION END */

.road-section,
.road-section.bg-light {
    background-color: var(--navy) !important;
    color: var(--light-gray);
    padding: 70px 0;
    overflow: hidden;
}

/* Road Card */
.road-card {
    background-color: var(--light-grey);
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 45px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.road-card:hover {
    transform: translateY(-5px);
}

/* Road Image */
.road-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: var(--transition);
}

.road-card:hover .road-img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

/* Road Content */
.road-content {
    min-height: 440px;
    padding: 55px 45px;
    background-color: var(--light-grey);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.road-content h2 {
    color: var(--navy);
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.road-content h2 span {
    color: var(--orange) !important;
}

.road-content p {
    color: var(--dark) !important;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.road-content ul {
    margin-bottom: 0;
}

.road-content ul li {
    color: var(--navy) !important;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Button */
.btn-construction {
    background-color: var(--orange);
    color: var(--white);
    font-weight: 800;
    padding: 12px 30px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--orange);
    width: fit-content;
    transition: var(--transition);
}

.btn-construction:hover {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-4px);
}

/* Tablet */
@media (max-width: 991px) {
    .road-section,
    .road-section.bg-light {
        padding: 55px 0;
    }

    .road-img {
        height: 360px;
    }

    .road-content {
        min-height: auto;
        padding: 42px 34px;
    }

    .road-content h2 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .road-section,
    .road-section.bg-light {
        padding: 45px 0;
    }

    .road-card {
        border-radius: 18px;
        margin-bottom: 32px;
    }

    .road-img {
        height: 260px;
    }

    .road-content {
        padding: 32px 22px;
        text-align: center;
        align-items: center;
    }

    .road-content h2 {
        font-size: 26px;
    }

    .road-content p,
    .road-content ul li {
        font-size: 14px;
    }

    .btn-construction {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* 320px Fix */
@media (max-width: 360px) {
    .road-img {
        height: 230px;
    }

    .road-content {
        padding: 28px 16px;
    }

    .road-content h2 {
        font-size: 23px;
    }

    .road-content p,
    .road-content ul li {
        font-size: 13px;
    }

    .btn-construction {
        padding: 9px 20px;
        font-size: 12px;
    }
}

/* road section end */
   /* ELECTRICAL PAGE START */

.electrical-hero {
    background:
        linear-gradient(rgba(16, 58, 101, 0.82), rgba(16, 58, 101, 0.82)),
        url("../images/elect5.jpg") center/cover no-repeat;
}

.electrical-page {
    background-color: var(--light-grey);
    padding: 70px 0;
    overflow: hidden;
}

.elec-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 45px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.elec-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    filter: grayscale(12%);
    transition: var(--transition);
}

.elec-card:hover .elec-img {
    filter: grayscale(0);
    transform: scale(1.04);
}

.elec-content {
    min-height: 440px;
    padding: 55px 45px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.elec-content h2 {
    color: var(--navy);
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 18px;
}

.elec-content h2 span {
    color: var(--orange);
}

.elec-content p {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.elec-content ul {
    margin-bottom: 0;
}

.elec-content ul li {
    color: var(--navy);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 9px;
    font-weight: 700;
}

.elec-content ul li i {
    color: var(--orange);
    margin-right: 8px;
}

.btn-elec {
    background-color: var(--orange);
    color: var(--white);
    font-weight: 800;
    padding: 12px 30px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--orange);
    width: fit-content;
    transition: var(--transition);
}

.btn-elec:hover {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-4px);
}
/* Electrical CTA */
.electrical-cta {
    background: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 24px;
    padding: 45px 25px;
    text-align: center;
}

.electrical-cta h2 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.3;
}

.electrical-cta h2 span {
    color: var(--navy);
}

.electrical-cta p {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0;
}

.btn-call-now {
    background: var(--navy);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-call-now:hover {
    background: #ffffff;
    color: var(--navy);
    transform: translateY(-4px);
}

.btn-call-now i {
    transform: rotate(90deg);
}

/* Mobile */
@media (max-width: 576px) {
    .electrical-cta {
        padding: 35px 18px;
        border-radius: 18px;
    }

    .electrical-cta h2 {
        font-size: 24px;
    }

    .electrical-cta p {
        font-size: 14px;
    }

    .btn-call-now {
        padding: 11px 24px;
        font-size: 14px;
    }
}

/* 320px */
@media (max-width: 360px) {
    .electrical-cta h2 {
        font-size: 21px;
    }

    .electrical-cta p {
        font-size: 13px;
    }

    .btn-call-now {
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* Feature Boxes */
.feature-box {
    background: var(--gradient-navy);
    padding: 35px 25px;
    border-radius: 22px;
    text-align: center;
    height: 100%;
    box-shadow: 0 12px 30px rgba(16, 58, 101, 0.25);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-8px);
}

.feature-box i {
    color: var(--orange);
    font-size: 42px;
    margin-bottom: 18px;
}

.feature-box h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

/* CTA */
.electrical-cta {
    background: var(--orange);
    border-radius: 24px;
    padding: 45px 25px;
    text-align: center;
}

.electrical-cta h2 {
    color: var(--white);
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.electrical-cta p {
    color: var(--dark);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 25px;
}

.btn-call {
    background: var(--navy);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 800;
    transition: var(--transition);
}

.btn-call:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-4px);
}

.btn-call i {
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 991px) {
    .electrical-page {
        padding: 55px 0;
    }

    .elec-img {
        height: 360px;
    }

    .elec-content {
        min-height: auto;
        padding: 42px 34px;
    }

    .elec-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .electrical-page {
        padding: 45px 0;
    }

    .elec-card {
        border-radius: 18px;
        margin-bottom: 32px;
    }

    .elec-img {
        height: 260px;
    }

    .elec-content {
        padding: 32px 22px;
        text-align: center;
        align-items: center;
    }

    .elec-content h2 {
        font-size: 26px;
    }

    .elec-content p,
    .elec-content ul li {
        font-size: 14px;
    }

    .btn-elec,
    .btn-call {
        padding: 10px 24px;
        font-size: 14px;
    }

    .electrical-cta h2 {
        font-size: 24px;
    }

    .electrical-cta p {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .elec-img {
        height: 230px;
    }

    .elec-content {
        padding: 28px 16px;
    }

    .elec-content h2 {
        font-size: 23px;
    }

    .elec-content p,
    .elec-content ul li {
        font-size: 13px;
    }
}

/* ELECTRICAL PAGE END */
    
    
/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    background: url('images/about-hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(16, 58, 101, 0.9), rgba(16, 58, 101, 0.7));
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.text-orange {
    color: var(--orange) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white;
}

/* Who We Are */
.who-we-are {
    background-color: var(--light-gray);
}

.about-img-stack {
    position: relative;
    padding: 20px;
}

.main-about-img {
    border-radius: 30px 150px 30px 150px;
    box-shadow: 20px 20px 0 var(--orange);
    transition: var(--transition);
}

.main-about-img:hover {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--navy);
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-left: 5px solid var(--orange);
}

.experience-badge span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    display: block;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Mission & Vision */
.mission-vision {
    background-color: var(--light-grey);
    padding: 80px 0;
}

.mv-card {
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.mission {
    background: white;
    border-bottom: 6px solid var(--navy);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    color: var(--navy);
}

.vision {
    background: var(--navy);
    color: white;
    border-bottom: 6px solid var(--orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--orange);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.vision .mv-icon {
    background: white;
    color: var(--navy);
}

/* Expertise Section */
.expertise-section {
    background-color: var(--light-gray);
}

.exp-card {
    background: var(--accent-orange);
    padding: 30px;
    color: #000080;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
}

.exp-card i {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
    transition: var(--transition);
}

.exp-card:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-10px);
}

.exp-card:hover i {
    color: var(--orange);
}

/* Core Values */
.core-values {
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    background:var(--navy);
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-item:hover {
    background:var(--accent-orange);
    border-color: var(--orange);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.v-icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    text-align: center;
}

/* --- RESPONSIVENESS --- */

@media (max-width: 768px) {
    .about-hero { height: 50vh; }
    .display-3 { font-size: 2.5rem; }
    .values-grid { grid-template-columns: 1fr; }
    .main-about-img { border-radius: 20px; }
}

@media (max-width: 320px) {
    .display-3 { font-size: 2rem; }
    .main-heading { font-size: 30px; }
    .experience-badge { padding: 10px; }
    .experience-badge span { font-size: 1.5rem; }
}

/* --- PIPELINE SERVICE PAGE STYLES --- */

/* Hero Section */
.service-hero {
    position: relative;
    height: 50vh;
    background: url('images/pipeline-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(16, 58, 101, 0.9), rgba(16, 58, 101, 0.6));
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

/* Overview Section */
.service-overview {
    background-color: white;
}

.overview-img-wrapper {
    position: relative;
}

.rounded-curve-service {
    border-radius: 50px 20px 150px 20px;
    box-shadow: -20px 20px 0 var(--orange);
    transition: var(--transition);
}

.safety-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--navy);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 5px solid var(--orange);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Work Process Section */
.work-process {
    background-color: var(--light-grey);
}

.process-card {
    background: white;
    padding: 40px 20px;
    border-radius: 30px;
    text-align: center;
    color: #000d1a;
    position: relative;
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--orange);
    background: var(--accent-orange);
}

.step-num {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    font-weight: 900;
    color:navy;
    z-index: 0;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--navy);
    color: var(--orange);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--orange);
    color: white;
}

.process-card h4 {
    color: var(--navy);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Gallery Section */
.service-gallery {
    background-color: white;
}

.gallery-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.gallery-img-box img {
    transition: var(--transition);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, var(--navy));
    color: white;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
}

.gallery-img-box:hover img {
    transform: scale(1.1);
}

.gallery-img-box:hover .img-label {
    opacity: 1;
}

/* CTA Section */
.service-cta {
    padding: 80px 0;
    background: var(--gradient-navy);
    text-align: center;
}

/* --- RESPONSIVENESS --- */

@media (max-width: 768px) {
    .service-hero { height: 40vh; }
    .display-4 { font-size: 2.2rem; }
    .rounded-curve-service { border-radius: 20px; }
    .safety-badge { right: 10px; font-size: 0.8rem; }
}

@media (max-width: 320px) {
    .display-4 { font-size: 1.8rem; }
    .main-heading { font-size: 1.5rem; margin-top: 18px; }
    .process-card { padding: 20px 10px; }
    .step-num { font-size: 2rem; }
    .llift{margin-top: -100px; margin-bottom: 1rem; }
}

/* --- LIFT SERVICE PAGE STYLES --- */

/* Hero Section (Using existing style from other pages) */
.service-hero {
    position: relative;
    height: 50vh;
    background: url('images/lift-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(16, 58, 101, 0.9), rgba(16, 58, 101, 0.6));
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

/* Overview Section */
.service-overview {
    background-color: white;
}

.rounded-curve-service {
    border-radius: 150px 50px 20px 150px;
    box-shadow: -20px 20px 0 var(--orange);
    transition: var(--transition);
}

.safety-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--navy);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 5px solid var(--orange);
    animation: float 3s ease-in-out infinite;
}

/* Lift Types Cards */
.lift-types {
    background-color: var(--light-grey);
}

.type-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
}

.type-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.type-content {
    padding: 25px;
    position: relative;
}

.type-content h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 15px;
}

.type-content p {
    color: #666;
    font-size: 0.95rem;
}

.type-content .arrow {
    position: absolute;
    right: 25px;
    bottom: 20px;
    color: var(--orange);
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.type-card:hover .type-img img {
    transform: scale(1.1);
}

.type-card:hover .arrow {
    opacity: 1;
    right: 15px;
}

/* Maintenance Section */
.maintenance-section {
    background-color: white;
}

.amc-list {
    margin-top: 30px;
}

.amc-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.amc-icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.amc-item h5 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 5px;
}

.maintenance-card {
    background: var(--light-grey);
    border: 2px solid var(--navy);
    border-radius: 30px;
    padding: 30px;
    position: relative;
    box-shadow: 15px 15px 0 var(--orange);
}

.m-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.m-header h3 {
    color: var(--navy);
    font-weight: 800;
    margin: 0;
}

.badge-orange {
    background: var(--orange);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.m-body .m-row {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    color: #555;
    font-weight: 500;
}

.m-body .m-row i {
    color: var(--orange);
    margin-right: 10px;
}

/* Gallery (Using existing style) */
.service-gallery {
    background-color: var(--light-grey);
}

/* CTA (Using existing style) */
.service-cta {
    padding: 80px 0;
    background: var(--gradient-navy);
    text-align: center;
}

/* --- RESPONSIVENESS --- */

@media (max-width: 768px) {
    .service-hero { height: 40vh; }
    .display-4 { font-size: 2.2rem; }
    margi
    .rounded-curve-service { border-radius: 20px; }
    .safety-badge { right: 10px; }
}

@media (max-width: 320px) {
    .display-4 { font-size: 17px;margin-bottom: 100px; }
    .main-heading { font-size: 22px; }
    .maintenance-card { padding: 20px; }
    .m-header { flex-direction: column; gap: 10px; text-align: center; }
}

/* --- DESIGN VARIABLES --- */
:root {
    --navy: #103a65;
    --orange: #ff8c00;
    --white: #ffffff;
    --light-grey: #f8f9fa;
    --text-muted: #666666;
    --transition: all 0.3s ease-in-out;
}

/* --- GLOBAL STYLES --- */
body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.section-title {
    color: var(--navy);
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.2;
}

.section-title span {
    color: var(--orange);
}

.title-line {
    width: 60px;
    height: 4px;
    background-color: var(--orange);
    border-radius: 2px;
}

/* --- 1. STATS SECTION --- */
.stats-section {
    padding: 60px 0;
    background-color: var(--white);
}

.stat-card {
    background: var(--white);
    padding: 30px 15px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-bottom: 5px solid var(--orange);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card h2 {
    color: var(--navy);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

/* --- 2. WORKFLOW SECTION --- */
.workflow-section {
    background-color: var(--light-grey);
}

.step-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-top: 5px solid var(--navy);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.highlight-card {
    border-top-color: var(--orange);
}

.step-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(16, 58, 101, 0.1);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.highlight-card .step-icon-box {
    background: rgba(255, 140, 0, 0.1);
    color: var(--orange);
}

.step-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.step-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.step-card:hover .step-img-container img {
    transform: scale(1.1);
}

.step-title {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- 3. CAPABILITIES SECTION --- */
.capabilities-section {
    background-color: var(--white);
}

.capability-img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-left: 8px solid var(--orange);
}

.capability-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
}

.capability-item:hover {
    background: var(--light-grey);
}

.cap-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

.cap-heading {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 5px;
}

.cap-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================================================
   FULLY RESPONSIVE QUERIES (320px to All Devices)
   ========================================================================== */

/* Tablet Mode */
@media (max-width: 991px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* Mobile Mode */
@media (max-width: 767px) {
    .section-title {
        font-size: 1.6rem;
    }
    .stats-section {
        padding: 40px 0;
    }
    .capability-img-wrapper img {
        max-height: 300px;
        margin-bottom: 20px;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.4rem;
    }
    .step-card {
        padding: 20px 15px;
    }
    .step-img-container {
        height: 180px;
    }
    .capability-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .cap-icon {
        margin: 0 auto;
    }
}

/* Extreme Small Mobile (320px - iPhone SE) */
@media (max-width: 350px) {
    .section-title {
        font-size: 15px;
    }
    .stat-card h2 {
        font-size: 2rem;
    }
    .step-title {
        font-size: 1.1rem;
    }
    .row.g-3 {
        --bs-gutter-x: 10px;
    }
}

.service-hero {
    position: relative;
    background: linear-gradient(rgba(16, 58, 101, 0.75), rgba(16, 58, 101, 0.75)),
                url('images/solar-hero.jpg') center/cover no-repeat;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.curve-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.curve-divider svg {
    display: block;
    width: 100%;
    height: 90px;
}

.shape-fill {
    fill: #ffffff;
}
/* ELECTRICAL POWER PAGE START */

.electrical-power-hero {
    background:
        linear-gradient(rgba(16, 58, 101, 0.82), rgba(16, 58, 101, 0.82)),
        url("../images/img7.jpeg") center/cover no-repeat;
}

/* Common Titles */
.section-subtitle {
    color: var(--orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    color: var(--navy);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.section-title span {
    color: var(--orange);
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--orange);
    border-radius: 30px;
    margin-top: 15px;
}

/* Workflow Section */
.power-workflow-section {
    background: var(--light-grey);
}

.power-step-card {
    background: var(--white);
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
    transition: var(--transition);
    border-bottom: 5px solid var(--orange);
}

.power-step-card:hover {
    transform: translateY(-8px);
}

.highlight-card {
    border-bottom-color: var(--navy);
}

.step-icon-box {
    width: 70px;
    height: 70px;
    background: var(--navy);
    color: var(--orange);
    border-radius: 50%;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.step-img-container {
    width: 100%;
    height: 210px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 22px;
}

.step-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.power-step-card:hover .step-img-container img {
    transform: scale(1.06);
}

.step-title {
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.step-text {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Capabilities Section */
.capabilities-section {
    background: var(--white);
}

.capability-img-wrapper {
    border-radius: 24px;
    overflow: hidden;
}

.capability-img-wrapper img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.capability-item {
    display: flex;
    gap: 18px;
    background: var(--light-grey);
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 18px;
    transition: var(--transition);
}

.capability-item:hover {
    background: var(--navy);
    transform: translateX(5px);
}

.cap-icon {
    width: 42px;
    height: 42px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
}

.cap-heading {
    color: var(--navy);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
}

.cap-text {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.capability-item:hover .cap-heading,
.capability-item:hover .cap-text {
    color: var(--white);
}

/* Tablet */
@media (max-width: 991px) {
    .section-title {
        font-size: 32px;
    }

    .capability-img-wrapper img {
        height: 360px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .section-title {
        font-size: 25px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .power-step-card {
        padding: 22px;
    }

    .step-img-container {
        height: 190px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-text {
        font-size: 14px;
    }

    .capability-img-wrapper img {
        height: 260px;
    }

    .capability-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 22px 18px;
    }

    .cap-heading {
        font-size: 16px;
    }

    .cap-text {
        font-size: 14px;
    }
}

/* 320px */
@media (max-width: 360px) {
    .section-title {
        font-size: 22px;
    }

    .step-img-container {
        height: 165px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-text,
    .cap-text {
        font-size: 13px;
    }
}

/* ELECTRICAL POWER PAGE END */
/* SOLAR CTA START */

.solar-cta {
    background: var(--orange);
    border: 2px solid var(--primary-blue);
    border-radius: 24px;
    padding: 45px 25px;
    text-align: center;
}

.solar-cta h2 {
    background: transparent !important;
    background-color: transparent !important;
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 12px;
}

.solar-cta h2 span {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--navy);
}
.solar-cta h2 span {
    color: var(--navy);
}

.solar-cta p {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0;
}

.solar-call-btn {
    background: var(--navy);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.solar-call-btn:hover {
    background: #ffffff;
    color: var(--navy);
    transform: translateY(-4px);
}

.solar-call-btn i {
    transform: rotate(90deg);
}

/* Mobile */
@media (max-width: 576px) {
    .solar-cta {
        padding: 35px 18px;
        border-radius: 18px;
    }

    .solar-cta h2 {
        font-size: 24px;
    }

    .solar-cta p {
        font-size: 14px;
    }

    .solar-call-btn {
        padding: 11px 24px;
        font-size: 14px;
    }
}

/* 320px */
@media (max-width: 360px) {
    .solar-cta h2 {
        font-size: 21px;
    }

    .solar-cta p {
        font-size: 13px;
    }

    .solar-call-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* SOLAR CTA END */