/* Default social icon style */
.nav-social {
    font-size: 18px;
    transition: 0.3s ease;
}

/* WhatsApp green */
.nav-social .fa-whatsapp {
    color: #316a08;
}

.bg-green {
    background: linear-gradient(135deg, #09572c, #24b24b);
    transition: all 0.5s ease;
    transform: translateY(-4px);
}

/* Instagram & Facebook red */
.nav-social .fa-instagram,
.nav-social .fa-facebook-f {
    color: #e11f26;
}

/* Hover effects */
.nav-social:hover .fa-whatsapp {
    color: #204903;
    /* darker green */
}

.nav-social:hover .fa-instagram,
.nav-social:hover .fa-facebook-f {
    color: #e11f26;
    /* darker red */
}

/* Optional: hide on mobile */
@media (max-width: 991px) {
    .nav-social {
        display: none;
    }
}





.services-slider {
    background: #fff;
}

.service-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 163, 95, 0.25);
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.service-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    color: #1aa35f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #148f52;
}

/* Swiper pagination bullets */
.servicesSwiper .swiper-pagination-bullet {
    background: #ff0000;
    /* red */
    opacity: 0.4;
}

/* Active bullet */
.servicesSwiper .swiper-pagination-bullet-active {
    background: #ff0000;
    /* solid red */
    opacity: 1;
}


.servicesSwiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.servicesSwiper .swiper-pagination-bullet {
    background: #ff0000;
    opacity: 0.4;
}

.servicesSwiper .swiper-pagination-bullet-active {
    background: #ff0000;
    opacity: 1;
}

.service-wrapper {

    margin-bottom: 35px;
}








/* Make all slides equal height */
.servicesSwiper .swiper-slide {
    height: auto;
    display: flex;
}

/* Fixed-height card */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* Fixed image height */
.service-img img {
    width: 100%;
    height: 320px;
    /* ✅ FIXED */
    object-fit: cover;
}

/* Content area */
.service-content {
    flex: 1;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

/* Title stays natural */
.service-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Clamp description text */
.service-content p {

    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;

    display: -webkit-box;
    -webkit-line-clamp: 6;
    /* ✅ SAME HEIGHT */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Push Read More to bottom */
.service-content .read-more {
    margin-top: auto;
    /* ✅ aligns button */
    font-weight: 600;
    color: #1aa35f;
    text-decoration: none;
}




/* Tabs container */
.why-tabs {
    max-width: 100%;
}

/* Each tab button */
.why-tabs .nav-link {
    width: 100%;
    /* ✅ same width */
    min-height: 64px;
    /* ✅ same height */
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 20px;
    margin-bottom: 14px;
    /* ✅ gap between tabs */

    border-radius: 12px;
    border: 1px solid #eee;

    background: #f9f9f9;
    font-weight: 600;
    text-align: left;
    color: #111;

    transition: all 0.3s ease;
}

/* Icon size */
.why-tabs .nav-link img {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

/* Active tab */
.why-tabs .nav-link.active {
    background: linear-gradient(135deg, #991b1f, #e11f26);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(225, 31, 38, 0.35);
}

/* Hover effect */
.why-tabs .nav-link:not(.active):hover {
    background: #f1f1f1;
}

/* Active tab text & icon color */
.why-tabs .nav-link.active,
.why-tabs .nav-link.active h4,
.why-tabs .nav-link.active span,
.why-tabs .nav-link.active img {
    color: #ffffff !important;
    fill: #ffffff;
}

/* Fixed image wrapper */
.why-tab-content img {
    width: 100%;
    max-width: 420px;
    /* ✅ fixed width */
    height: 280px;
    /* ✅ fixed height */
    object-fit: cover;
    /* keeps aspect ratio */
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-tab-content p {
    text-align: justify;
    /* ✅ text justification */
    text-justify: inter-word;
    line-height: 1.8;
}

.why-tabs .nav-link i {
    font-size: 20px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

/* Equipment box image wrapper */
.eqiupment-box img {
    width: 100%;
    height: 260px;
    /* ✅ FIXED HEIGHT (adjust if needed) */
    object-fit: contain;
    /* use cover if you want full crop */
}


.about-service-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 20px;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.about-service-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    max-width: 70%;
    color: #111;
}

/* RED ICON */
.about-service-card i {
    font-size: 28px;
    color: #e11f26;
    /* ✅ red icon */
}

/* Hover polish */
.about-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}

.who-we-are {

    padding: 0px 0px !important;
    margin-top: -80px;
}

.footer-social {
    display: flex;
    gap: 14px;
    padding-left: 0;
    list-style: none;
}

.footer-social li a {
    width: 36px;
    height: 36px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-social li a {
    background: #e11f26;
    /* brand red */
    transform: translateY(-3px);
}

.clients-sec {

    margin-top: -78px;
}


.vision-mission-section {
    background: #0e0e0e;
    /* or your existing dark bg */
}

.vm-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 30px;
    height: 100%;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
}

.vm-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vm-title i {
    color: #e11f26;
    font-size: 22px;
}

.vm-card p {
    color: #dddddd;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}


.why-box {
    background: #09572c;
    color: #fff;
    transform: translateY(-6px);
    transition: 0.3s;
}

.why-box i {
    transition: 0.3s;
}

.why-box:hover i {
    transform: scale(1.2);
}

.content h6 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    background-color: #961717;

}





.logo-tagline {
    font-size: 14px;
    line-height: 1.2;
    color: #09572c;
    font-weight: 500;
    margin-top: 2px;
}

/* Optional: center on mobile */
@media (max-width: 991px) {
    .navbar-brand {
        align-items: center;
        text-align: center;
    }
}






.vyom-philosophy {
    padding: 80px 0;
    background: #f9f9f9;
}

.vyom-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.vyom-card:hover {
    transform: translateY(-6px);
}

.vyom-letter {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    font-size: 34px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow:
        inset 0 3px 6px rgba(255,255,255,0.5),
        inset 0 -4px 6px rgba(0,0,0,0.25),
        0 8px 18px rgba(0,0,0,0.3);
}

.vyom-letter.green {
    background: linear-gradient(135deg, #2ecc71, #0b6b3a);
}

.vyom-letter.red {
    background: linear-gradient(135deg, #ff4d4d, #991b1f);
}

.vyom-card h5 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #09572c;
}

.vyom-card p {
    font-size: 14.5px;
    color: #555;
    margin-bottom: 0;
}

 @media (max-width: 991px) {
    .vyom-card {
        padding: 30px 20px;
    }
}








  /* Section */
.vyom-horizontal {
    padding: 100px 0;
    background: #ffffff;
}

/* Title */
.vyom-title {
    font-size: 32px;
    font-weight: 700;
}

.vyom-title .green { color: #09572c; }
.vyom-title .red { color: #991b1f; }

.vyom-desc {
    max-width: 560px;
    margin: auto;
    font-size: 15.5px;
    color: #555;
}

/* Timeline container */
.horizontal-timeline {
    margin-top: 70px;
}

/* Letters row */
.timeline-letters {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
}

.timeline-letters::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 12%;
    right: 12%;
    height: 1px; /* narrow line */
    background: linear-gradient(
        to right,
        rgba(9, 87, 44, 0.35),
        rgba(153, 27, 31, 0.35)
    ); /* light transparent */
    transform: translateY(-50%);
    z-index: 0;
}


/* Letter nodes */
.timeline-node {
    position: relative;
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* sits above the line */
    box-shadow:
        inset 0 3px 6px rgba(255,255,255,0.45),
        inset 0 -4px 6px rgba(0,0,0,0.25),
        0 8px 22px rgba(0,0,0,0.3);
}

/* Node colors */
.timeline-node.green {
    background: linear-gradient(135deg, #2ecc71, #0b6b3a);
}

.timeline-node.red {
    background: linear-gradient(135deg, #ff4d4d, #991b1f);
}

/* ❌ REMOVE old broken connectors */
.timeline-node::after {
    display: none;
}

/* Vertical connectors */
.timeline-connectors {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 18px;
}

.timeline-connectors span {
    display: block;
    width: 2px;
    height: 45px;
    background: #09572c;
    margin: auto;
}

/* Cards */
.timeline-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.timeline-card {
    background: #ffffff;
    padding: 26px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-6px);
}

.timeline-card h5 {
    margin-bottom: 8px;
    font-weight: 600;
    color: #09572c;
}

.timeline-card p {
    font-size: 14.5px;
    color: #555;
    margin: 0;
}

/* Mobile */
@media (max-width: 991px) {
    .timeline-letters,
    .timeline-connectors,
    .timeline-cards {
        grid-template-columns: 1fr;
    }

    .timeline-letters::after {
        display: none;
    }

    .timeline-card {
        margin-bottom: 20px;
    }
}




.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .footer p {
    color: #cccccc;
    text-decoration: none;
    font-size: 17.5px;
}
 

.footer-links a:hover {
    color: #ffffff;
}

.row .mega-links li a:hover {
    color: #121010 !important;
}

 





@media (max-width: 768px) {

    .client-logo {
        width: 100px;
        margin-bottom: 15px;
    }


    .who-we-are {

        margin-top: -9px;
    }


}