:root {
    --orange-color: #E6562B;
}


.nav-top {
    display: flex;
    justify-content: end;
    align-items: center;
    color: #fff;
    padding: 12px 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: 500;
    z-index: 1000;
    position: relative;
    gap: 20px;
}

.nav-top a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-top a:hover {
    color: #ffffff;
}

.nav-top-social-icons {
    display: flex;
    gap: 10px;
}

.nav-top-social-icons i {
    font-size: 22px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.nav-top-social-icons i:hover {
    color: #ffffff;
    transform: scale(1.15);
}

.fa-square-facebook {
    color: #1877F2;
}

.fa-square-instagram {
    color: #E4405F;
}

.fa-square-youtube {
    color: #FF0000;
}


/* Responsive (Mobile-friendly) */
@media (max-width: 600px) {
    .nav-top {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px 20px;
    }

    .nav-top-social-icons {
        justify-content: center;
    }
}


.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);


    .slider-container {
        position: relative;
        height: 100%;
        width: 100%;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        transform: scale(1.1);
        z-index: 1;
    }

    .slide.active {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }

    .slide.prev {
        opacity: 0;
        transform: scale(0.9);
        z-index: 1;
    }

    .slide img { 
        object-fit: cover;
        transition: transform 8s ease-out;
    }

    .slide.active img {
        transform: scale(1.05);
    }

    .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg,
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0.2) 50%,
                rgba(0, 0, 0, 0.6) 100%);
        z-index: 3;
    }

    .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        z-index: 4;
        opacity: 0;
        transition: all 1s ease-in-out 0.5s;
        display: none
    }

    .slide.active .slide-content {
        opacity: 1;
    }

    .slide-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        letter-spacing: 2px;
    }

    .slide-content p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-explore {
        padding: 15px 40px;
        font-size: 1.1rem;
        font-weight: 600;
        background: linear-gradient(45deg, #ff6b6b, #ee5a24);
        border: none;
        border-radius: 50px;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .btn-explore:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5);
        background: linear-gradient(45deg, #ee5a24, #ff6b6b);
        color: white;
    }

    .navigation {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        display: flex;
        gap: 15px;
    }

    .nav-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .nav-dot.active {
        background: #ff6b6b;
        border-color: white;
        transform: scale(1.2);
    }

    .nav-dot:hover {
        background: rgba(255, 255, 255, 0.8);
        transform: scale(1.1);
    }

    .arrow-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        backdrop-filter: blur(10px);
    }

    .arrow-nav:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-50%) scale(1.1);
        color: white;
    }

    .arrow-prev {
        left: 30px;
    }

    .arrow-next {
        right: 30px;
    }

    .progress-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 4px;
        background: #ff6b6b;
        z-index: 5;
        transition: width 0.1s linear;
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
        display: none
    }



    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    .slide.active .btn-explore {
        animation: pulse 2s infinite;
    }
}


.banner-text {
    position: absolute;
    z-index: 999;
    margin-top: -260px;
    margin-left: 120px;
}

.banner-text h4 {
    font-size: 35px;
    color: #ffffff;
    text-shadow: 1px 1px 2px #000000;
}

.banner-text h1 {
    font-size: 60px;
    font-weight: 800;
    color: #c74a23;
    line-height: 61px;
    text-shadow: 1px 1px 2px #ffffff;
    font-family: system-ui;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* .hero-area{
    background-image: url(../Images/Home/Pile_Foundation_Machinary.webp);
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
} */


.Video_Gallery {
    position: relative;
    padding: 80px 0px;
}


.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.video-item:hover .play-button {
    background-color: #e6562b;
    color: #fff;
}

/* Custom Grid Area Spans Based on the image */
.video1 {
    grid-row: span 1;
    grid-column: span 1;
}

.video2 {
    grid-row: span 1;
    grid-column: span 1;
}

.video3 {
    grid-row: span 2;
    grid-column: span 1;
}

.video4 {
    grid-row: span 2;
    grid-column: span 1;
}

.video5 {
    grid-row: span 1;
    grid-column: span 1;
}

.video6 {
    grid-row: span 2;
    grid-column: span 1;
}

.video7 {
    grid-row: span 1;
    grid-column: span 1;
}

.video8 {
    grid-row: span 1;
    grid-column: span 1;
}

.video9 {
    grid-row: span 1;
    grid-column: span 1;
}

/* .video10      { grid-row: span 1; grid-column: span 1; } */

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video10 {
        grid-column: span 2 !important;
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video10 {
        grid-column: span 1 !important;
    }
}

.modal-content {
    background: #000;
    border-radius: 0.75rem;
}

video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
}

.btn-close {
    background-color: #fff;
    border-radius: 50%;
    padding: 0.5rem;
}


/* Service */

.gp-tech-services {
    margin: 80px 0 0;
}

.gp-tech-services .section-title h2 span {
    font-size: 60px;
}

/* 

.slick-prev:before,
.slick-next:before {
    color: #E6562B;
    font-size: 24px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: #E6562B;
}

.slick-dots li.slick-active button:before {
    color: #E6562B;
    opacity: 1;
}

@media (max-width: 767px) {
    .gp-tech-card {
        margin: 20px auto;
        max-width: 95%;
    }

    .gp-tech-services {
        padding: 0 10px;
    }
}


.gp-tech-services .slick-prev,
.gp-tech-services .slick-next {
    width: 40px;
    height: 40px;
    background: #E6562B;
    color: #fff;
    z-index: 10;
    border-radius: 50%;
    border: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    top: 40%;
    transform: translateY(-50%);
    display: none !important;
}

.gp-tech-services .slick-prev {
    left: -50px;
}

.gp-tech-services .slick-next {
    right: -50px;
}
 
.gp-tech-services .slick-dots {
    text-align: center;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gp-tech-services .slick-dots li button {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    border: none;
    padding: 0;
    font-size: 0;
}
 
.gp-tech-services .slick-dots li button::before {
    display: none !important;
}
 
.gp-tech-services .slick-dots li.slick-active button {
    background: #E6562B;
}


.gp-tech-services .slick-initialized .slick-slide {
    display: block;
    margin: 0px 15px; 
} */


.gp-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
    grid-auto-rows: auto;
    /* automatic row height */
    gap: 30px;
    /* spacing between cards */
    padding: 20px;
}

/* Responsive for mobile (less than 768px) */
@media (max-width: 767px) {
    .gp-slider {
        grid-template-columns: 1fr;
        /* stack cards vertically */
    }
}

.gp-tech-card {
    background: #ebe6e6;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.gp-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    z-index: 1;
}

.gp-tech-card:hover {
    transform: translateY(-10px) scale(1.02);

}

.gp-tech-card:hover::before {
    background: rgba(0, 0, 0, 0.6);
}


.gp-tech-card>* {
    position: relative;
    z-index: 2;
}

.gp-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 3px solid #E6562B;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: scale(1);
}

.gp-tech-card:hover .gp-icon {
    transform: scale(1.1);
    border-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gp-icon img {
    max-width: 60px;
    transition: transform 0.3s ease;
}

.gp-tech-card:hover .gp-icon img {
    transform: rotate(5deg) scale(1.1);
}

.gp-tech-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    color: #333;
}

.gp-tech-card:hover h5 {
    color: #fff;
    transform: translateY(-3px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gp-tech-card p {
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.gp-tech-card:hover p {
    color: #f0f0f0;
    transform: translateY(-2px);
}

.gp-btn {
    margin-top: 15px;
    background: #E6562B;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    transform: translateY(0);
}

.gp-btn:hover {
    background: #c74a23;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 86, 43, 0.4);
}

.gp-tech-card:hover .gp-btn {
    background: #fff;
    color: #E6562B;
    border: 2px solid #E6562B;
    font-weight: 600;
}

.gp-tech-card:hover .gp-btn:hover {
    background: #E6562B;
    color: #fff;
    transform: translateY(-4px);
}

.gp-tech-card[data-service="PilingWork"]:hover {
    background-image: url('../Images/icons/PilingWork.webp');
}

.gp-tech-card[data-service="GroundAnchors"]:hover {
    background-image: url('../Images/icons/GroundAnchors.webp');
}

.gp-tech-card[data-service="soilNailingShotcrete"]:hover {
    background-image: url('../Images/icons/SoilNailingShotcrete.webp');
}

.gp-tech-card[data-service="SlopeProtection"]:hover {
    background-image: url('../Images/icons/SlopeProtection.webp');
}

.gp-tech-card[data-service="PTAnchors"]:hover {
    background-image: url('../Images/icons/PTAnchors.webp');
}

.gp-tech-card[data-service="PileFoundations"]:hover {
    background-image: url('../Images/icons/PileFoundations.webp');
}

.gp-tech-card[data-service="PileLoadTest"]:hover {
    background-image: url('../Images/icons/PileLoadTest.webp');
}

.gp-tech-card[data-service="GroundImprovementSolutions"]:hover {
    background-image: url('../Images/icons/GroundImprovementSolutions.webp');
}

.gp-tech-card[data-service="DrillingGrouting"]:hover {
    background-image: url('../Images/icons/DrillingGrouting.webp');
}

.gp-tech-card[data-service="MicroPiles"]:hover {
    background-image: url('../Images/icons/MicroPiles.webp');
}

.gp-tech-card[data-service="DewateringSolutions"]:hover {
    background-image: url('../Images/icons/DewateringSolutions.webp');
}

.gp-tech-card[data-service="SoilTestingServices"]:hover {
    background-image: url('../Images/icons/SoilTestingServices.webp');
}



.custom-list-wrapper {
    margin: auto;
    border-radius: 16px;
}

.custom-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 35px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.custom-list li {
    position: relative;
    padding-left: 25px;
    color: #333;
    transition: all 0.3s ease;
}

.custom-list li::before {
    content: url(../Images/List-style.webp);
    /* font-family: 'Font Awesome 6 Free'; */
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #E6562B;
    font-size: 12px;
}

.custom-list li a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 15px;
}

.custom-list li a::after {
    content: ' readmore \2192';
    /* Font Awesome arrow-right */
    /* font-family: 'Font Awesome 6 Free'; */
    font-weight: 900;
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.3s ease;
    color: #020000;
    font-size: 12px;
}

.custom-list li:hover a {
    color: #E6562B;
    font-weight: 600;
}

.custom-list li:hover a::after {
    opacity: 1;
    right: -90px;
}

@media (max-width: 576px) {
    .custom-list {
        grid-template-columns: 1fr;
    }
}

/* Services */


.count-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 60px 0px 0;
    max-width: 1200px;
    margin: auto;
    font-family: none;
}

.count-card {
    position: relative;
    padding: 30px 20px;
    text-align: center;
    overflow: hidden;
    transition: 0.3s;
    font-family: none;
    backdrop-filter: blur(0px) saturate(180%);
    -webkit-backdrop-filter: blur(0px) saturate(180%);
    background-color: rgba(90, 91, 92, 0.75);
    border-radius: 12px;
}

.count-card:hover {
    transform: translateY(-5px);
}

.count-card .top-left-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 85px;
    height: 85px;
    background: #ccc;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.count-card .top-left-icon i {
    font-size: 16px;
    color: #c74a23;
    position: relative;
    right: 20px;
    bottom: 10px;
    display: none;
}

.count-card .bottom-right-corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85px;
    height: 85px;
    background-color: #c74a23;
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    display: none;
}

.count-card h2 {
    font-size: 30px;
    color: #13b8d9;
    margin: 0px 0 10px;
    font-family: auto;
}

.count-card h2 span {
    color: #ffffffc7;
    font-size: 50px;
}

.count-card p {
    font-size: 18px;
    color: #e27642;
    font-weight: 600;
}

.blog-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.blog-section .blog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
}

.blog-section .blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.date-box {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(240, 75, 35, 0.9);
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.blog-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    padding: 8px 16px;
    background: #f04b23;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.read-more:hover {
    background: #c93816;
}

.photo-location {
    position: absolute;
    z-index: 99;
    bottom: 10px;
    left: 75%;
    color: #fff;
}

.faqs {
    padding: 0px 0px 60px;

    .accordion-button::after {
        display: none;
        /* Hide default Bootstrap arrow */
    }

    .accordion-button {
        background-color: #fff;
        color: var(--blue-color);
        border: none;
        box-shadow: none !important;
    }

    .accordion-button span {
        margin-left: auto;
        font-weight: bold;
    }

    .accordion-body {
        background: #e9e9e9;
    }
}


.client-gallery {
    display: grid;
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}






/* inside-banner */
.inside-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-top: 150px;
}

/* inside-banner */
.inside-banner h1 {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* inside-banner */
.inside-banner p {
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
}

.inside-banner::after {
    position: absolute;
    content: "";
    top: 0;
    background: linear-gradient(180deg,
            #000000 0%,
            rgba(0, 0, 0, 0.8) 30%,
            rgba(0, 0, 0, 0.5) 60%,
            rgba(0, 0, 0, 0.2) 90%,
            transparent 100%);
    height: 112px;
    z-index: 999;
    width: 100%;
}

.page-title-content {
    text-align: center;
}

.page-title-content p {
    font-size: 18px;
}

.page-title-content p span {
    font-size: 22px;
}

/* Inside Banners */
.banner-piling-work {
    background: url('../Images/Services/Piling_work/Piling.webp') no-repeat center center;
    background-size: cover;
}

.banner-ground-anchors {
    background: url('../Images/Services/Ground_Anchors/Ground_Anchoring.webp') no-repeat center center;
    background-size: cover;
}

.banner-soil-nailing {
    background: url('../Images/Services/Soil_Nailing_Shotcrete/Nailing.webp') no-repeat center center;
    background-size: cover;
}

.banner-slope-protection {
    background: url('../Images/Services/Slope_Protection/Slope_Protection.webp') no-repeat center center;
    background-size: cover;
}

.banner-pt-anchors {
    background: url('../Images/Services/PT_Anchors/PT_Anchor_wall.webp') no-repeat center center;
    background-size: cover;
}

.banner-pt_anchor_load_test {
    background: url('../Images/Services/PT_Anchor_Load_Test/PT_Anchors_Load_Test.webp') no-repeat center center;
    background-size: cover;
}

.banner-pile-foundation {
    background: url('../Images/Services/Pile_Foundation/Pile_Foundation.webp') no-repeat center center;
    background-size: cover;
}

.banner-pile-load-test {
    background: url('../Images/Services/Pile_Load_Test/Piles.webp') no-repeat center center;
    background-size: cover;
}

.banner-ground_improvement_techniques {
    background: url('../Images/Services/Ground_Improvement_Techniques/Ground_Improvement_Machines.webp') no-repeat center center;
    background-size: cover;
}

.banner-drilling-grouting {
    background: url('../Images/Services/Drilling-Grouting/Drilling_Grouting.webp') no-repeat center center;
    background-size: cover;
}

.banner-Micropiles {
    background: url('../Images/Services/MicroPiles/Micropiles.webp') no-repeat center center;
    background-size: cover;
}

.banner-dewatering {
    background: url('../Images/Services/Dewatering_Solutions/Dewatering.webp') no-repeat center center;
    background-size: cover;
}

.banner-dewatering-system {
    background: url('../Images/Services/Dewatering/Dewatering.webp') no-repeat center center;
    background-size: cover;
}

.banner-soil-testing-services {
    background: url('../Images/Services/Soil-Testing/SoilTesting.webp') no-repeat center center;
    background-size: cover;
}

.banner-clients {
    background: url('../Images/Banner/Shakehand.webp') no-repeat center center;
    background-size: cover;
}

.banner-faqs {
    background: url('../Images/Banner/Faq.webp') no-repeat center center;
    background-size: cover;
}

.banner-blogs {
    background: url('../Images/Banner/Blogs.webp') no-repeat center center;
    background-size: cover;
}

.banner-gp-soil {
    background: url('../Images/Banner/Why_GP.webp') no-repeat center center;
    background-size: cover;
}

.banner-contact {
    background: url('../Images/Banner/Wall.webp') no-repeat center center;
    background-size: cover;
}

.banner-gp-soil-machinaries {
    background: url('../Images/WhyGPSoil/All_Machinaries.webp') no-repeat center center;
    background-size: cover;
}

.banner-gp-soil-quality-statement {
    background: url('../Images/WhyGPSoil/Quality-Statement.webp') no-repeat center center;
    background-size: cover;
}

.banner-gp-soil-safety-policy {
    background: url('../Images/WhyGPSoil/SafetyPolicy.webp') no-repeat center center;
    background-size: cover;
}

.banner-gp-soil-testimonials {
    background: url('../Images/WhyGPSoil/Testimonials.webp') no-repeat center center;
    background-size: cover;
}

.banner-gp-soil-pan-india-presance {
    background: url('../Images/WhyGPSoil/Pan_India_Presance.webp') no-repeat center center;
    background-size: cover;
}

.banner-gp-soil-capabilities {
    background: url('../Images/WhyGPSoil/Capabilities.webp') no-repeat center center;
    background-size: cover;
}

/* About page */


.banner-about {
    background: url('../Images/About/RetainingWall_Pile_Foundation.webp') no-repeat center center;
    background-size: cover;
}

.banner-about-director {
    background: url('../Images/About/Director_banner.webp') no-repeat center center;
    background-size: cover;
}

.banner-about-vision-mission {
    background: url('../Images/About/Vision_mission_banner.webp') no-repeat center center;
    background-size: cover;
}

.banner-about-milestone {
    background: url('../Images/About/Milestone.webp') no-repeat center center;
    background-size: cover;
}

.banner-about-csr {
    background: url('../Images/About/CSR-banner.webp') no-repeat center center;
    background-size: cover;
}


.about-gp-soil {
    padding: 0px 0px 60px;
    overflow: hidden;
}

.about-gp-soil-content h2 {
    color: var(--orange-color);
}

.vis-mis-gp-soil {
    padding: 60px 0px;
    background: url('../Images/About/Sketch.webp') no-repeat;
    background-position: bottom;
}


.vis-mis-gp-soil .icon-box {
    background-color: #d4d4d4;
    padding: 12px;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
}

.vis-mis-gp-soil h2 {
    font-weight: 700;
}

.vis-mis-gp-soil p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #fff !important;
}

.vis-mis-gp-soil .text-primary {
    color: #fff !important;
}

.vis-mis-gp-soil .card {
    background-color: var(--orange-color);
    height: 430px;
}

.vis-mis-gp-soil .card i {
    color: var(--orange-color);
}


:root {
    --color1: #2E3C47;
    --color2: #202C36;
}

.timeline-gp-soil {
    margin: 60px 0;
}

.timeline-gp-soil-content {
    margin-bottom: 30px;
    text-align: center;
}

.main-timeline {
    font-family: 'Poppins', sans-serif;
}

.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}

.main-timeline .timeline {
    border-right: 10px solid var(--color1);
    width: 50%;
    padding: 10px 20px 10px 0;
    box-shadow: 10px 0 var(--color2);
    float: left;
}

.main-timeline .timeline-content {
    text-align: center;
    display: block;
    position: relative;
    border-radius: 10px 10px;
}

.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.main-timeline .timeline-content:before,
.main-timeline .timeline-content:after {
    content: "";
    background: var(--color2);
    width: 80px;
    height: 3px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -120px;
}

.main-timeline .timeline-content:after {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    right: -125px;
}

.main-timeline .timeline-year {
    color: #fff;
    background: #13b8d9;
    font-size: 40px;
    font-weight: 400;
    padding: 3px 20px 2px;
    border-radius: 100px;
    border: 5px solid #13b8d9;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -300px;
}

.main-timeline .title {
    color: #fff;
    background: #e27642;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 10px 9px;
    margin: 0;
    border-radius: 10px 10px 0 0;
}

.main-timeline .description {
    color: #555;
    background: linear-gradient(#f1f1f1, #d9d9d9);
    font-size: 15px;
    letter-spacing: 1px;
    padding: 20px 10px;
    border-radius: 0 0 10px 10px;
    margin: 0;
}

.main-timeline .timeline:nth-child(even) {
    float: right;
    border: none;
    border-left: 10px solid var(--color2);
    box-shadow: -10px 0 var(--color1);
    padding: 10px 0 10px 20px;
    margin: 0 0 0 10px;
}

.main-timeline .timeline:nth-child(even) .timeline-content:before {
    right: auto;
    left: -120px;
}

.main-timeline .timeline:nth-child(even) .timeline-content:after {
    right: auto;
    left: -125px;
}

.main-timeline .timeline:nth-child(even) .timeline-year {
    right: auto;
    left: -300px;
}

/* .main-timeline .timeline:nth-child(2) {
    --color1: #9AE365;
    --color2: #81CA47;
}

.main-timeline .timeline:nth-child(3) {
    --color1: #F15B53;
    --color2: #D63C38;
}

.main-timeline .timeline:nth-child(4) {
    --color1: #7c49b7;
    --color2: #5b2499;
} */

.director-message {
    padding: 80px 0px 60px;
    background: #ECE9E6;
    background: -webkit-linear-gradient(to right, #FFFFFF, #ECE9E6);
    background: linear-gradient(to right, #FFFFFF, #ECE9E6);
    margin-bottom: 60px;
    position: relative;
}

.director-message h2 {
    color: var(--orange-color);
    margin-bottom: 10px;
}

.quotes {
    position: absolute;
    display: inline-block;
    right: 10%;
    top: -20%;
}

/* About page */


/* Services */

.service-banner {
    padding: 60px 0px 60px;
}

.need-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../Images/Services/Piling_work/piles.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    margin-bottom: 60px;
}

.need-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
    text-align: center;
}

.piling-card {
    background-color: rgb(181 181 181 / 50%);
    border: none;
    color: #fff;
    transition: transform 0.3s;
}

.piling-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.piling-card i {
    font-size: 2rem;
    color: #e27642;
    margin-bottom: 15px;
}

.piling-card h5 {
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.piling-card p {
    color: #ffffff;
}


.ground-anchor-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../Images/Services/Ground_Anchors/Ground_Anchor.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    margin-bottom: 60px;
}

.ground-anchor-section h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 50px;
}

.anchor-card {
    background-color: rgb(181 181 181 / 50%);
    border: none;
    color: #fff;
    transition: transform 0.3s;
    text-align: center;
}

.anchor-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.anchor-card i {
    font-size: 2rem;
    color: #e27642;
    margin-bottom: 15px;
}

.anchor-card h5 {
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.anchor-card p {
    color: #FFFFFF;
}


.soil-shotcrete-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../Images/Services/Soil_Nailing_Shotcrete/SoilNailing.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    margin-bottom: 60px;
}



.need-section h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 50px;
    color: #fff;
}

.need-section-card {
    background-color: rgb(181 181 181 / 50%);
    border: none;
    color: #fff;
    transition: transform 0.3s;
    text-align: center;
}

.need-section-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.need-section-card i {
    font-size: 2rem;
    color: #e27642;
    margin-bottom: 15px;
}

.need-section-card h5 {
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.need-section-card p {
    color: #FFFFFF;
}


.slope-protection-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../Images/Services/Slope_Protection/SlopeProtection_location.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    margin-bottom: 60px;
}

.pt-anchor-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../Images/Services//PT_Anchors/Anchorings.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    margin-bottom: 60px;
}


.why-pt-load-test .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-pt-load-test .icon-box {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
    height: 100%;
}

.why-pt-load-test .icon-box:hover {
    background-color: #e9ecef;
}

.why-pt-load-test .icon-box h5 {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--orange-color);
}


.why-pt-load-test .section-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.why-pt-load-test .info-box {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    height: 100%;
    transition: 0.3s ease;
}

.why-pt-load-test .info-box:hover {
    background-color: #e9ecef;
}

.why-pt-load-test .info-box h5 {
    font-weight: 600;
    color: #e27642;
    text-transform: uppercase;
}

.ground-improvement-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../Images/Services/Ground_Improvement_Techniques/Improved_Ground.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    margin-bottom: 60px;
}

.grouting-types {
    background: #f0f2f5;
    margin-bottom: 60px;
}

.grouting-types .overview {
    background: #fff;
    border-left: 6px solid #e27642;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.grouting-types .overview h5 {
    color: var(--orange-color);
}

.grouting-types .card-img {
    height: 180px;
    object-fit: cover;
    border-top-left-radius: .75rem;
    border-top-right-radius: .75rem;
}

.grouting-types .grout-card {
    transition: transform 0.25s, box-shadow 0.25s;
}

.grouting-types .grout-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.grouting-types .card-body h5 {
    font-weight: 600;
    color: var(--orange-color);
    text-transform: uppercase;
}

.grouting-types .card-body p {
    color: #555;
    font-size: .95rem;
}


.micropile-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../Images/Services/Ground_Improvement_Techniques/Improved_Ground.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    margin-bottom: 60px;
}

.when-dewatering .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.when-dewatering .info-box {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: 0.3s ease;
}

.when-dewatering .info-box:hover {
    background-color: #e9ecef;
}

.when-dewatering .info-box h5 {
    font-weight: 600;
    color: var(--orange-color);
    text-transform: uppercase;
}

.soil-testing-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../Images/Services/Soil-Testing/SoilTesting_Machines.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    margin-bottom: 60px;
}

.geotech-content {
    max-width: 600px;
    margin: 0 auto;
}

.geotech-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--orange-color);
    margin-bottom: 20px;
}

.geotech-content p {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 5px;
}

.code-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.code-box {
    background-color: #e9ecef;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 1.2rem;
    color: var(--orange-color);
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}





.contact-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
    border: none;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    color: var(--orange-color);
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 2.5rem;
}

.btn-primary {
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}

.btn-primary:hover {
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}

.contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: var(--orange-color);
    color: white;
    padding: 30px 0;
    margin-top: 50px;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--accent-color);
}





.quality-section {
    padding: 60px 0;
}

.quality-section .quality-title {
    color: var(--orange-color);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.quality-section .quality-text {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
}

.quality-section .quality-img {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}




/* Main testimonials section */
.testimonial-section-custom {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin-bottom: 60px;
}

/* Title styling */
.testimonial-title-custom {
    text-align: center;
    margin-bottom: 10px;
}

.testimonial-title-custom h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.testimonial-title-custom p {
    font-size: 18px;
    color: #6c757d;
}

/* Card styling */
.testimonial-card-custom {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
    text-align: center;
    outline: none;
}

.testimonial-text-custom {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-text-custom::before {
    content: '"';
    font-size: 60px;
    color: var(--orange-color);
    position: absolute;
    left: -15px;
    top: -30px;
    font-family: Georgia, serif;
    z-index: 0;
}

.testimonial-author-custom {
    font-weight: 700;
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-position-custom {
    color: #6c757d;
    font-size: 16px;
}

/* Custom pagination styling - only affects our testimonial slider */
.testimonial-slider-custom .slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.testimonial-slider-custom .slick-dots li {
    margin: 0 5px;
    width: auto;
    height: auto;
}

/* .testimonial-slider-custom .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
}

.testimonial-slider-custom .slick-dots li button:before {
    display: none;
}

.testimonial-slider-custom .slick-dots li.slick-active button {
    background: var(--orange-color);
    width: 15px;
    height: 15px;
} */

.testimonial-slider-custom .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
}

.testimonial-slider-custom .slick-dots li.slick-active button {
    background: var(--orange-color);
    width: 15px;
    height: 15px;
}

.testimonial-slider-custom .slick-dots li button {
    font-size: 0;
}

.testimonial-slider-custom .slick-dots li button:before {
    font-size: 16px;
    /* Keep dot visible */
    color: #ccc;
    /* Default color */
}

.testimonial-slider-custom .slick-dots li.slick-active button:before {
    color: #e6562b;
    /* Active dot color */
}

.testimonial-card-custom {
    display: flex !important;
    align-items: start;
    gap: 30px;
}

.testimonial-card-custom img {
    border-radius: 50%;
    width: 150px;
}


.panindia-wrapper {
    padding: 60px 0;
    background-color: #f9f5f5;
    margin-bottom: 60px;
    position: relative;
}

.panindia-wrapper .map-image {
    width: 100%;
    animation: zoomIn 6s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.panindia-wrapper .counter-box {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.panindia-wrapper .counter-box:hover {
    transform: translateY(-5px);
}

.panindia-wrapper .counter-box i {
    font-size: 32px;
    color: var(--orange-color);
    margin-bottom: 15px;
}

.panindia-wrapper .counter-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-color);
    margin-bottom: 5px;
}

.panindia-wrapper .counter-box p {
    margin: 0;
    font-size: 1.1rem;
    color: #555;
}

.Machineries {

    padding: 60px 0px;

    .table-container {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        margin: 2rem 0;
    }

    .custom-table {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .custom-table thead {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .custom-table thead th {
        border: none;
        padding: 1rem 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.85rem;
    }

    .custom-table tbody tr {
        transition: all 0.3s ease;
        border-bottom: 1px solid #e9ecef;
    }

    .custom-table tbody tr:hover {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .custom-table tbody td {
        padding: 1rem 0.75rem;
        vertical-align: middle;
        border: none;
    }

    .serial-badge {
        background: linear-gradient(45deg, #ff6b6b, #feca57);
        color: white;
        padding: 0.3rem 0.6rem;
        border-radius: 20px;
        font-weight: bold;
        font-size: 0.8rem;
    }

    .status-badge {
        background: linear-gradient(45deg, #2ecc71, #27ae60);
        color: white;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }

    .machine-type {
        font-weight: 600;
        color: #2c3e50;
    }

    .make-brand {
        background: #f8f9fa;
        padding: 0.3rem 0.6rem;
        border-radius: 10px;
        font-weight: 500;
        color: #495057;
    }

    .capacity-info {
        font-weight: 600;
        color: #e74c3c;
    }

    .year-badge {
        background: #3498db;
        color: white;
        padding: 0.2rem 0.5rem;
        border-radius: 10px;
        font-size: 1.2rem;
    }

    .quantity-circle {
        background: linear-gradient(45deg, #9b59b6, #8e44ad);
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin: 0 auto;
    }

    .stats-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .stats-number {
        font-size: 2.5rem;
        font-weight: bold;
        background: var(--orange-color);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        padding: 10px 0px 20px;
    }




    .fade-in {
        animation: fadeIn 0.8s ease-in;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


.capabilities-section {
    padding: 80px 0;
}

.capabilities-section .section-subtitle {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #555;
}

.capabilities-section .stat-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.capabilities-section .stat-card:hover {
    transform: translateY(-5px);
}

.capabilities-section .stat-icon i {
    font-size: 2.5rem;
    color: #0076c0;
    margin-bottom: 15px;
}

.capabilities-section .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.capabilities-section .stat-label {
    color: #666;
    font-size: 1rem;
}

.capabilities-section .service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.capabilities-section .service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.capabilities-section .service-card h5 {
    font-weight: 600;
    font-size: 1.1rem;
}

.capabilities-section .service-card p {
    font-size: 0.95rem;
    color: #555;
}

.capabilities-section .divider-image {
    width: 100%;
    margin: 60px 0;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.capabilities-section .extra-content {
    margin-top: 80px;
}

.capabilities-section .extra-content h4 {
    font-size: 1.5rem;
    color: #0c3c60;
    margin-bottom: 10px;
}

.capabilities-section .extra-content p {
    font-size: 1rem;
    color: #444;
}






































































































































































































































































/* Large screens: 6 columns (5 rows) */
@media (min-width: 992px) {
    .client-gallery {
        grid-template-columns: repeat(6, 1fr);
    }

    /* Vertical lines between first 5 images in each row */
    .client-gallery .gallery-item:not(:nth-child(6n)) {
        border-right: 1px solid #e2764263;
        padding-right: 15px;
    }
}

/* Medium screens: 3 columns (10 rows) */
@media (max-width: 991px) and (min-width: 576px) {
    .client-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small screens: 2 columns */
@media (max-width: 575px) {
    .client-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.client-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.client-gallery .gallery-item img {
    width: 75%;
    height: auto;
    transition: filter 0.3s ease;
    filter: grayscale(100%);
}

.client-gallery .gallery-item:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .hero-area  {
        position:relative;
        margin-top: -50px;
    }


    .banner-text {
        position: absolute;
        z-index: 999;
        margin-top: -310px;
        margin-left: 0px;
        text-align: center;
    }


    .banner-text h1 {
        font-size: 39px;
        font-weight: 800;
        color: #c74a23;
        line-height: 39px;
        text-shadow: 1px 1px 2px #ffffff;
        font-family: system-ui;
        letter-spacing: 2px;
        text-transform: uppercase;
    }


    .photo-location {
        position: absolute;
        z-index: 99;
        bottom: 0px;
        left: 70%;
        color: #fff;
        font-size: 10px;
    }

    .banner-text h4 {
        font-size: 30px;
        color: #ffffff;
        text-shadow: 1px 1px 2px #000000;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .arrow-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .arrow-prev {
        left: 15px;
    }

    .arrow-next {
        right: 15px;
    }

    .vis-mis-gp-soil .icon-box {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even) {
        width: 100%;
        padding: 100px 0 20px 20px;
        margin: 0 0 0 10px;
        box-shadow: -10px 0 var(--color2);
        border: none;
        border-left: 10px solid var(--color1);
        float: none;
    }

    .main-timeline .timeline-content:before,
    .main-timeline .timeline-content:after,
    .main-timeline .timeline:nth-child(even) .timeline-content:before,
    .main-timeline .timeline:nth-child(even) .timeline-content:after {
        top: -50px;
        left: -20px;
        width: 50px;
    }

    .main-timeline .timeline-content:after,
    .main-timeline .timeline:nth-child(even) .timeline-content:after {
        width: 15px;
        right: auto;
        left: 15px;
    }

    .main-timeline .timeline-year,
    .main-timeline .timeline:nth-child(even) .timeline-year {
        transform: translateX(-50%);
        top: -85px;
        left: 50%;
        right: auto;
    }

    .custom-table {
        font-size: 0.8rem;
    }

    .custom-table thead th,
    .custom-table tbody td {
        padding: 0.5rem 0.3rem;
    }

    .company-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .hero-area {
        height: auto !important;
        display: block;
    }

    .section-title h2 { 
        line-height: 40px !important;
        margin: 15px 0;
    }
    .gp-tech-services .section-title h2 span{
        font-size: 38px !important;
    }

    .quotes {
        position: relative;
        display: inline-block;
        right: 0;
        top: 0%; 
        text-align: center;
    }
    .director-message-content{
        margin-top: 15px;
    }
    .quality-section .quality-text br{
        display: none;
    }
    .footer-bottom ul li:nth-child(1)::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    background: #e6562b;
    /* top: 50%; */
    /* right: -15px; */
    /* transform: translateY(-50%); */
    z-index: 1;
    /* margin-right: 15px; */
    margin-left: 8px;
    margin-top: 3px;
}
}