:root {
    --navy: #1F2B48;
    --green: #8cc63f;
    --deep: #0f172a;
    --soft-white: #f8fafc;
    --glass: rgba(255, 255, 255, 0.9);
    --deepskyblue: deepskyblue;
}

.text-navy {
    color: var(--navy);
}
.bg-navy{
    background-color: var(--navy);
}
/* Hero Section Layout */
.service-hero {
    padding: 100px 0;
    overflow: hidden;
    color: var(--navy);
}

/* Gradient Text Effect */
.text-green-gradient {
    background: linear-gradient(90deg, var(--green), #a3e635);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-divider {
    width: 60px;
    height: 5px;
    background: var(--green);
    border-radius: 10px;
}

/* The Visual Wrapper */
.hero-visual-wrapper {
    position: relative;
    z-index: 1;
}

.hero-main-img {
    border-radius: 60px 20px 60px 20px;
    /* Modern Asymmetrical look */
    border: 8px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Floating Glass Card Styling */
.floating-glass-card {
    position: absolute;
    bottom: -30px;
    /* left: -40px; */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    width: 280px;
    border-left: 6px solid var(--green);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Decorative Dots */
.hero-dot-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#000000 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.3;
    z-index: -1;
}

.text-green {
    color: var(--green);
}

.bg-green {
    background-color: var(--green);
}

.btn-navy {
    background-color: var(--navy);
    color: white;
    transition: 0.3s;
}

.btn-navy:hover {
    background-color: #162035;
    color: var(--green);
}

.service-hero a#scopeBtn {
    border: 1px solid var(--green);
    color: #000;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s
}

.service-hero a#scopeBtn:hover {
    background-color: var(--green);
    color: #fff;
}

.service-hero a#contactTo {
    background-color: var(--green);
    border: 1px solid var(--green);
    color: #fff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s
}

.service-hero a#contactTo:hover {
    background-color: transparent;
    color: #000;
}

/* Scope Checklist */
.scope-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--green);
    font-size: 0.95rem;
    height: 100%;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.scope-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Sidebar Menu */
.service-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: var(--navy);
    border-bottom: 1px solid #f1f1f1;
    font-weight: 500;
    transition: 0.3s;
}

.service-menu li a:hover,
.service-menu li a.active {
    background-color: var(--green);
    color: white;
    padding-left: 20px;
}

.sidebar-cta {
    background: #f0f7e6;
}

/* Gallery Aesthetic */

body,
html {
    height: 100%;
    margin: 0;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(5, 1fr);
    width: 100%;
    height: 100%;
    grid-gap: 10px;
}

.grid-item {
    background-size: cover;
    background-position: center;
}

.grid-item1 {
    background-image: url("../../img/services/civil-infra/civil-infra2.jpg");
    grid-column: 1/4;
    grid-row: 1/2;
}

.grid-item2 {
    background-image: url("../../img/services/civil-infra/civil-infra3.jpg");
    grid-column: 1/2;
    grid-row: 2/5;
}

.grid-item3 {
    background-image: url("../../img/services/civil-infra/civil-infra1.jpg");
    grid-column: 1/5;
    grid-row: 5/5;
}

.grid-item4 {
    background-image: url("../../img/services/civil-infra/civil-infra5.jpg");
    grid-column: 2/4;
    grid-row: 2/5;
}

.grid-item5 {
    background-image: url("../../img/services/civil-infra/civil-infra8.jpg");
    grid-column: 4/6;
    grid-row: 1/3;
}

.grid-item6 {
    background-image: url("../../img/services/civil-infra/civil-infra7.jpg");
    grid-column: 4/5;
    grid-row: 3/5;
}

.grid-item7 {
    background-image: url("../../img/services/civil-infra/civil-infra6.jpg");
    grid-column: 5/6;
    grid-row: 3/6;
}

.grid-item8 {
    background-image: url("../../img/services/civil-infra/civil-infra4.jpg");
    grid-column: 6/8;
    grid-row: 1/6;
}


.our-approach-section {
    background-color: #fcfdfe;
}

.bg-green-soft {
    background-color: rgba(118, 186, 27, 0.1);
}

.heading-line {
    width: 50px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
}

/* The Approach Card */
.approach-card {
    position: relative;
    padding: 40px 30px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    overflow: hidden;
}

.approach-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(31, 43, 72, 0.1);
    border-color: var(--green);
}

/* Step Number Styling */
.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: -1;
    transition: 0.4s;
}

.approach-card:hover .step-number {
    color: rgba(118, 186, 27, 0.08);
    transform: scale(1.1);
}

/* Icon Design */
.approach-icon {
    width: 70px;
    height: 70px;
    background: rgba(118, 186, 27, 0.1);
    color: var(--green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.approach-card:hover .approach-icon {
    background: var(--green);
    color: white;
    transform: rotateY(180deg);
}

/* Highlighted (Middle) Card */
.highlight-card {
    background: linear-gradient(145deg, var(--navy), #162035);
    border: none;
}

.highlight-card .approach-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--green);
}

.highlight-card .step-number {
    color: rgba(255, 255, 255, 0.03);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .step-number {
        font-size: 5rem;
        top: 10px;
    }
}



/* key services */
.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Service Card Design */
.service-feature-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.service-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(31, 43, 72, 0.12);
}

/* Image & Floating Icon */
.service-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-feature-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-icon-floating {
    position: absolute;
    bottom: -15px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
    box-shadow: 0 10px 20px rgba(118, 186, 27, 0.3);
    z-index: 2;
    transition: 0.3s;
}

.service-feature-card:hover .service-icon-floating {
    background: var(--navy);
    transform: translateY(-5px);
}

/* Typography & Links */
.op-10 {
    opacity: 0.1;
}

.service-feature-card a {
    transition: 0.3s;
}

.service-feature-card a:hover {
    color: var(--navy) !important;
    padding-left: 5px;
}

@media (max-width: 768px) {
    .service-img-wrapper {
        height: 180px;
    }
}


/* Value Card Styling */
.value-card {
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    background-color: #fcfdfe;
}

.bg-light-green {
    background-color: rgba(118, 186, 27, 0.03);
}

/* Icon Wrap Styling */
.value-icon-wrap {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.5rem;
    transition: 0.3s;
}

.value-card:hover .value-icon-wrap {
    background: var(--green);
    color: white;
    transform: scale(1.1);
}

.borderColorValue {
    border-color: #f1f5f9 !important;
}

/* Borders for Grid */
@media (max-width: 991px) {
    .border-end {
        border-right: none !important;
    }

    .border-bottom {
        border-bottom: 1px solid #f1f5f9 !important;
    }
}

.cap-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    transition: 0.3s;
}

.cap-card:hover {
    border-color: var(--green);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.cap-icon-circle {
    width: 65px;
    height: 65px;
    background: rgba(118, 186, 27, 0.1);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Human Capital Styling */
.team-feature {
    border-left: 2px solid rgba(118, 186, 27, 0.3);
    padding-left: 15px;
    margin-bottom: 10px;
}

.team-feature i {
    font-size: 1.2rem;
}

.team-feature h6 {
    font-weight: 600;
    margin-bottom: 0;
}

/* Visual Stack with 24/7 Tag */
.human-visual-stack {
    position: relative;
    padding: 20px;
}

.main-team-img {
    border: 10px solid rgba(255,255,255,0.05);
}

.support-tag-247 {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: var(--green);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    text-align: center;
}

@media (max-width: 991px) {
    .human-visual-stack { margin-top: 50px; }
    .support-tag-247 { position: relative; bottom: 0; left: 0; margin-top: 20px; width: 100%; }
}