.navbar-brand.logowrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand.logowrap img {
    max-height: 72px;
}

.navbar-brand.logowrap h3 {
    font-size: 21px;
    font-weight: 400;
    color: var(--bs-secondary) !important
}

.navbar-brand.logowrap h3 span {
    display: block;
    font-size: 10px;
    color: #000;
    font-weight: 300
}

/* Header / Navbar styling to match target design */
.nav-wrap {
    border-bottom: 1px #eee solid;
}

.navbar-nav .nav-link {
    color: #333;
    padding: 10px 16px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    color: #7fc041;
}

.navbar-nav .nav-link.active {
    color: #7fc041;
}

/* Dropdown Refinement - Classy & Simple */
.navbar-nav .dropdown-menu {
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
    padding: 8px !important;
    min-width: 230px;
    border: 1px solid rgba(0, 0, 0, 0.07) !important;
}

.navbar-nav .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.2s ease;
    color: #333;
}

.navbar-nav .dropdown-item:hover {
    background: rgba(127, 192, 65, 0.08);
    /* Light green background */
    color: #7fc041;
    /* Brand green color */
    transform: none;
}

@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        animation: slideUp 0.3s ease forwards;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    padding: 10px 20px;
    transition: all .22s ease;
    z-index: 1200;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
}

.search-overlay .search-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.search-overlay.d-none {
    display: none !important;
}

.search-overlay.visible {
    opacity: 1;
}

.offcanvas .offcanvas-body a {
    color: #222;
    display: block;
    padding: 8px 0;
}

.offcanvas .offcanvas-body a.text-success {
    color: #7fc041 !important;
}

.enqu-btn {
    background: linear-gradient(90deg, #7fc041, #5aa72f);
    color: #fff;
    border: none;
}

/* Custom offcanvas (right panel) */
.custom-offcanvas {
    background: #000;
    color: #fff;
}

.custom-offcanvas .offcanvas-body {
    padding: 28px;
}

.custom-offcanvas .offcanvas-close {
    background: none;
    border: none;
    color: #fff;
    opacity: 1;
    box-shadow: none;
}

.custom-offcanvas .offcanvas-close i {
    color: #fff;
}

.custom-offcanvas .offcanvas-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* offcanvas width for larger screens */
@media (min-width: 992px) {
    .custom-offcanvas.offcanvas-end {
        width: 420px;
    }
}

@media (max-width: 991.98px) {
    .custom-offcanvas.offcanvas-end {
        width: 100%;
    }
}

/* Collapsed nav appearance on small screens */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 12px 18px;
        margin-top: 8px;
        border-radius: 0 0 8px 8px;
    }

    .navbar-nav {
        display: block;
    }

    .navbar-nav .nav-item {
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .navbar-nav .nav-item:last-child a {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 12px 8px;
        color: #333;
        text-align: left;
    }

    .navbar-nav .nav-link.active {
        color: #7fc041;
    }

    .navbar-collapse .enqu-btn {
        display: none !important;
        margin-top: 10px;
    }
}

.custom-offcanvas .contact-list p {
    margin: 8px 0;
    color: #fff;
    font-size: 16px;
}

.custom-offcanvas .company-address {
    font-size: 15px;
    color: #dedede;
}

.custom-offcanvas .social-icons a {
    font-size: 18px;
}

.custom-offcanvas {
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0 10px, transparent 10px 20px);
    background-size: 20px 20px, 40px 40px;
}

.enquiry-btn {
    border: none !important;
}

.enquiry-btn:hover {
    border: none !important;
}

.service {
    padding: 100px 10px;
}



@media (max-width: 991.98px) {
    .navbar-brand.logowrap img {
        max-height: 48px;
    }

    .search-overlay {
        height: 56px;
    }

    .service {
        padding: 60px 10px;
    }

}

/* Responsive header: use offcanvas on small screens */
@media (max-width: 991.98px) {

    /* Use the default Bootstrap collapse behavior on small devices */
    /* rely on Bootstrap's collapse behavior for .navbar-nav */
    .navbar-toggler {
        display: block !important;
        border: none;
        width: 48px;
        height: 40px;
    }

    /* custom thin red burger lines */
    .navbar-toggler .navbar-toggler-icon {
        background-image: none !important;
    }

    .navbar-toggler .custom-burger {
        display: block;
        width: 28px;
        height: 3px;
        background: #d90000;
        border-radius: 2px;
        margin: 0 auto;
        position: relative;
    }

    .navbar-toggler .custom-burger::before,
    .navbar-toggler .custom-burger::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: #d90000;
        border-radius: 2px;
    }

    .navbar-toggler .custom-burger::before {
        top: -8px;
    }

    .navbar-toggler .custom-burger::after {
        top: 8px;
    }

    /* Keep Bootstrap's default visibility for .d-lg-none so mobile offcanvas button shows. */
    /* .d-lg-none rule intentionally left to Bootstrap's behavior. */
    /* Hide enquiry button on small screens */
    .enqu-btn {
        display: none !important;
    }

    .logowrap img {
        max-height: 48px;
    }

    .search-overlay .search-inner {
        padding: 0 12px;
    }

    .search-suggestions {
        top: 56px;
        left: 12px;
        right: 12px;
    }

    /* Right align mobile navbar toggler and order layout */
    nav.navbar {
        position: relative;
    }

    nav.navbar .navbar-brand {
        order: 1;
    }

    nav.navbar .collapse {
        order: 2;
    }

    nav.navbar .d-flex.align-items-center {
        order: 3;
        padding-right: 56px;
    }

    nav.navbar .navbar-toggler {
        order: 4;
        margin-left: 0;
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2050;
    }
}

/* Medium and up: show center nav and hide mobile menu trigger if needed */

/* Medium and up: show center nav and hide mobile menu trigger if needed */

/* Offcanvas close at top-right on mobile */




@media (max-width: 991.98px) {
    .custom-offcanvas .offcanvas-header {
        padding: 18px;
    }

    .custom-offcanvas .offcanvas-close {
        position: absolute;
        top: 18px;
        right: 18px;
    }

    .custom-offcanvas .offcanvas-logo {
        margin-left: 12px;
    }
}

/* Search overlay specifics to match reference */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 85px;
    background: #17120f;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    transition: all .22s ease;
    z-index: 2000;
}

.search-overlay .search-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.search-overlay.d-none {
    display: none !important;
}

.search-overlay .search-input {
    background: transparent;
    border: none;
    color: #eee;
    font-size: 18px;
    padding: 14px 10px;
    box-shadow: none;
}

.search-overlay .search-input:focus {
    outline: none;
    box-shadow: none;
}

.search-overlay .btn-link {
    color: #eee;
}

.search-overlay .btn-link:hover {
    color: #fff;
    text-decoration: none;
}

.search-overlay .form-control::placeholder {
    color: #bfbfbf;
}

.search-overlay .fa-search,
.search-overlay .fa-times,
.search-overlay .fa-arrow-right {
    color: #fff;
}

.search-overlay[aria-hidden="false"] {
    visibility: visible;
}

/* Slide-down animation */
.search-overlay {
    transform: translateY(-120%);
    opacity: 0;
}

.search-overlay.visible {
    transform: translateY(0);
    opacity: 1;
    transition: transform .28s cubic-bezier(.2, .9, .2, 1), opacity .2s ease;
}

/* Ensure search toggle is on top and clickable */
#searchToggle {
    z-index: 2000;
    cursor: pointer;
    position: relative;
}

/* Suggestions dropdown */
.search-suggestions {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 64px;
    background: #0f0b09;
    border-radius: 6px;
    padding: 8px;
    display: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    z-index: 1350;
}

.search-suggestions ul {
    margin: 0;
    padding: 0;
}

.suggest-item {
    padding: 10px 12px;
    color: #e6e6e6;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.suggest-item:last-child {
    border-bottom: none;
}

.suggest-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

/* Decorative circular element at right */
.search-decor-circle {
    position: absolute;
    right: 18px;
    top: -10px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 6px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Close button larger spacing */
.search-close {
    font-size: 22px;
}

.navbar-wrap {
    position: absolute;
    z-index: 2;
}

.navbar-wrap .navbar-light {
    /* background: var(--bs-light) !important; */
    background: #ffffffc7 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}














@media (max-width:767.98px) {
    .navbar-wrap {
        position: relative;
    }

    .sticky-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .search-overlay {
        height: 64px;
        padding: 8px 12px;
    }

    .search-overlay .search-input {
        font-size: 16px;
    }
}

.banner-text h1 {
    font-size: 3rem;
    line-height: 1.2
}

.banner-text p {
    margin-bottom: 20px !important
}

.ab-point p {
    margin: 0;
}

.ab-point p i {
    padding-top: 3px;
}


.stats-box {
    background: #fff;
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.stats-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.stats-box .icon i {
    font-size: 45px;
    color: #1e75ff;
}

.stats-box .text h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.stats-box .text p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.count-wrap {
    /* Dark layered background (countdown style) */
    background: linear-gradient(120deg, #3f1515 0%, #000000 45%, #260a0b 100%);
    padding: 60px 0;
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* Soft light overlay for depth */
.count-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(800px at 10% 20%, rgba(255, 255, 255, 0.04), transparent 12%), radial-gradient(600px at 90% 80%, rgba(255, 255, 255, 0.02), transparent 18%);
    filter: blur(12px);
}

/* Animated bubble background */
.count-wrap .bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.count-wrap .bubbles .bubble {
    position: absolute;
    bottom: -20vh;
    left: var(--left, 10%);
    width: var(--size, 90px);
    height: var(--size, 90px);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.12) 60%);
    opacity: 0.18;
    filter: blur(3px);
    transform: translateY(0) scale(.9);
    animation: bubbleFloat var(--dur, 18s) linear infinite;
    animation-delay: var(--delay, 0s);
}

.count-wrap .bubbles .bubble:nth-child(odd) {
    opacity: 0.14;
}

.count-wrap .bubbles .bubble:nth-child(even) {
    opacity: 0.08;
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(0) scale(.8);
        opacity: 0.12;
    }

    40% {
        opacity: 0.22;
    }

    70% {
        opacity: 0.12;
    }

    100% {
        transform: translateY(-160vh) translateX(30px) scale(1.25);
        opacity: 0;
    }
}

/* Hide bubbles on very small devices */
@media (max-width: 420px) {
    .count-wrap .bubbles {
        display: none;
    }
}

/* Count card UI: glassy rounded squares with a white label pill */
.count-cards {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}

.count-card {
    width: 170px;
    height: 170px;
    border-radius: 14px;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(8, 7, 20, 0.45);
    backdrop-filter: blur(8px) saturate(120%);
    overflow: visible;
}

.count-card .card-inner {
    height: 100%;
    padding: 18px;
    border-radius: 12px;
}

.count-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.count-card::before {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    height: 44%;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    filter: blur(6px);
    opacity: 0.65;
    pointer-events: none;
}

.count-card .card-label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -14px;
    background: #fff;
    color: #333;
    padding: 8px 18px;
    border-radius: 14px;
    font-size: 12px;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(16, 24, 40, 0.18);
}

.count-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(7, 10, 30, 0.45);
    transition: transform .25s ease, box-shadow .25s ease;
}

@media (max-width: 767.98px) {
    .count-card {
        width: 140px;
        height: 140px;
    }

    .count-number {
        font-size: 40px;
    }
}

.count-wrap .stats-card {
    position: relative;
    z-index: 2;
}

/* New stats card UI for count-wrap */
.stats-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 28px 22px;
    transition: transform .28s cubic-bezier(.2, .9, .2, 1), box-shadow .28s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px) saturate(120%);
    box-shadow: 0 14px 36px rgba(6, 10, 25, 0.55);
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(6, 10, 25, 0.6);
}

.stat-icon {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: linear-gradient(135deg, #a10e10, #710a0b);
    box-shadow: inset 0 -6px 14px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-icon i {
    font-size: 26px;
}

.stats-card .count {
    font-weight: 700;
    color: #fff !important;
    font-size: 44px;
    margin-bottom: 4px;
}

.stats-card p {
    color: rgba(255, 255, 255, 0.90);
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .stat-icon {
        width: 64px;
        height: 64px;
    }

    .stats-card .count {
        font-size: 36px;
    }
}

.cert-section {
    padding: 100px 0;
    /*    background: #f4f4f4;*/
    background-image: url(../img/bgimg.jpg);
    /*    padding: 23px 0;*/
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;

}




.cert-card {
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s ease;
    padding: 0px;
    background: #fff;
    border: 2px #e9e6e6 solid;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Carousel image */
.cert-img {
    width: 100%;
    /* height: 350px; */
    object-fit: contain;
}

/* Certificate carousel dots (bottom) */
.certificate-carousel .owl-dots {
    text-align: center;
    margin-top: 18px;
}

.certificate-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.certificate-carousel .owl-dots .owl-dot span,
.certificate-carousel .owl-dots .owl-dot button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.30);
    border: none;
    display: inline-block;
}

.certificate-carousel .owl-dots .owl-dot.active span,
.certificate-carousel .owl-dots .owl-dot.active button {
    background: #d90000;
}

.certificate-carousel .owl-nav {
    display: none !important;
}

/* Indicators */
.carousel-indicators [data-bs-target] {
    background-color: #8b0000;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #ff0000;
}

.cert-section ul.cert-list {
    list-style: none;
    padding-left: 5px
}

.cert-section ul.cert-list li {
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    margin-bottom: 15px;
}

.cert-section ul.cert-list li i {
    padding-top: 6px;
    font-size: 16px;
}

/*
.cert-section .sub-title{padding-left: 0}
.cert-section .section-title{text-align: left}
.cert-section .section-title .sub-style::before{display: none}
.cert-section .section-title .sub-style::after{display: none}*/

.owl-carousel.product-carousel .owl-prev,
.owl-carousel.product-carousel .owl-next {
    /*
  position: absolute;
    top: 0;
*/
    font-size: 18px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    border-radius: 58px;
    color: #ffffffba;
}

.owl-carousel.product-carousel {
    position: relative;
}

.owl-carousel.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.owl-carousel.product-carousel .owl-prev {
    left: 0
}

.owl-carousel.product-carousel .owl-next {
    right: 0
}

.product-item .service-title-name a.h4 {
    font-size: 16px;
}

.product-item .service-content h4 {
    font-size: 20px;
}

/* Mission section layout matching provided design */
.missionsection {
    padding: 48px 0;
    background: #f5f5f5;
}

.missionsection .container {
    max-width: 1140px;
}

.missionsection .row {
    position: relative;
    align-items: flex-start;
}

/* center vertical divider between columns */
/* .missionsection .row::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: #b71c1c;
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
} */

.missionsection .feature-item {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: left;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 25px;
    border: 1px solid rgb(0 0 0 / 9%);
    transition: transform .28s cubic-bezier(.2, .9, .2, 1), box-shadow .28s;
    margin-bottom: 20px;
    padding: 41px 50px !important;
    border-left: 6px #ce1214 solid;
    background: linear-gradient(120deg, #e6e4e4 0%, #ece3e3 45%, #ffffff 100%);

}

.missionsection .feature-item i {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #b71c1c;
    color: #fff;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.missionsection {
    padding: 48px 0;
    background: linear-gradient(120deg, #ffecec 0%, #fff4f4 45%, #ffffff 100%);
}

.missionsection .feature-item h5 {

    color: #000;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 5px;
}

.missionsection .feature-item p {
    color: #333;
    line-height: 1.9;
    font-size: 16px;
}

.missionsection .feature-item ul {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
    padding-left: 21px
}

.missionsection .feature-item ul li {
    font-size: 16px;
    color: #444;
    list-style-position: outside;
}

/* column padding for breathing room */


@media (max-width: 991.98px) {
    .missionsection .row::before {
        display: none;
    }

    .missionsection .col-md-6 {
        padding: 12px 18px;
    }

    .missionsection .feature-item h5 {
        font-size: 28px;
    }

    .missionsection .feature-item i {
        width: 72px;
        height: 72px;
        font-size: 26px;
    }
}

@media (max-width: 575.98px) {
    .missionsection {
        padding: 30px 0;
    }

    .missionsection .feature-item {
        padding: 0 12px;
    }

    .missionsection .feature-item h5 {
        font-size: 22px;
    }
}

/* Roadmap / Value sections UI */
.value-sections .roadmap-wrap {
    position: relative;
    padding: 30px 0 18px;
}

.value-sections .roadmap {
    gap: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: hidden;
    -webkit-overflow-scrolling: hidden;
    padding-bottom: 8px;
}

.value-sections .roadmap::-webkit-scrollbar {
    height: 8px;
}

.value-sections .roadmap::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

.value-sections .step {
    flex: 0 0 23%;
    min-width: 230px;
    position: relative;
    z-index: 2;
    scroll-snap-align: center;
}

.value-sections .step .feature-item {
    background: transparent;
    padding: 12px 0px !important;
    text-align: left;
}

.value-sections .step .step-marker {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #b71c1c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 12px;
    box-shadow: 0 8px 18px rgba(183, 28, 28, 0.12);
    transform-origin: center center;
    animation: popIn .6s cubic-bezier(.2, .9, .2, 1) both;
    position: relative;
}

.value-sections .step .step-marker .marker-num {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.value-sections .step.active .step-marker {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(183, 28, 28, 0.18);
}

/* Disable 'active' animations and transitions for the value/roadmap section */
.value-sections .step.active .step-marker {
    transform: none !important;
    box-shadow: none !important;
    animation: none !important;
}

.value-sections .step .feature-item-text,
.value-sections .step .step-marker {
    transition: none !important;
}

.value-sections .step:hover .feature-item-text {
    transform: none !important;
    box-shadow: none !important;
}

.value-sections .roadmap::before {
    animation: none !important;
}

/* Card visuals */
/* .value-sections .step .feature-item{ background:#ffffff47; border-radius:12px; padding:18px 16px; border:1px solid rgba(0,0,0,0.04); box-shadow: 0 10px 24px rgb(10 10 10 / 20%); transition: transform .22s ease, box-shadow .22s ease; } */


.value-sections .step .feature-item-text {
    background: #ffffff47;
    border-radius: 12px;
    padding: 18px 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 24px rgb(10 10 10 / 20%);
    transition: transform .22s ease, box-shadow .22s ease;
    min-height: 290px;
}

.value-sections .step:hover .feature-item-text {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(10, 10, 10, 0.10);
}

/* Connector dot under marker */
.value-sections .step::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(50% + 18px);
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

/* Arrow controls */
.roadmap-wrap {
    position: relative;
}

.roadmap-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #b71c1c;
    cursor: pointer;
    z-index: 6;
}

.roadmap-prev {
    left: 8px;
}

.roadmap-next {
    right: 8px;
}

.roadmap-control:focus {
    outline: 2px solid rgba(183, 28, 28, 0.18);
}

/* keyboard focus styles for roadmap when using keyboard */
/* .value-sections .roadmap.focus-visible .step:focus{ outline: 3px solid rgba(183,28,28,0.14); box-shadow: 0 12px 28px rgba(183,28,28,0.12); transform: translateY(-6px); } */
@media (max-width: 991.98px) {
    .roadmap-control {
        display: flex;
    }
}

@media (max-width: 575.98px) {
    .roadmap-control {
        width: 32px;
        height: 32px;
        font-size: 18px
    }
}


/* animated connector bar */
.value-sections .roadmap::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 19%;
    height: 6px;
    background: linear-gradient(90deg, rgba(183, 28, 28, 0.05), rgba(183, 28, 28, 0.20));
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 4px;
    background-size: 200% 100%;
    animation: gradientMove 6s linear infinite;
    width: 74%;
    margin: 0 auto;
}

/* step card entrance */
.value-sections .step {
    opacity: 0;
    transform: translateY(18px);
    animation: slideUp .6s cubic-bezier(.2, .9, .2, 1) both;
}

.value-sections .step:nth-child(1) {
    animation-delay: .08s;
}

.value-sections .step:nth-child(2) {
    animation-delay: .18s;
}

.value-sections .step:nth-child(3) {
    animation-delay: .28s;
}

.value-sections .step:nth-child(4) {
    animation-delay: .38s;
}

.value-sections .step .step-marker {
    animation-delay: .05s;
}

.value-sections .step:nth-child(2) .step-marker {
    animation-delay: .12s;
}

.value-sections .step:nth-child(3) .step-marker {
    animation-delay: .2s;
}

.value-sections .step:nth-child(4) .step-marker {
    animation-delay: .28s;
}

.value-sections .step h5 {
    color: #1b1b1b;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

.value-sections .step p {
    color: #3b3b3b;
    line-height: 1.7;
}

@keyframes popIn {
    0% {
        transform: scale(.6);
        opacity: 0
    }

    70% {
        transform: scale(1.05);
        opacity: 1
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(18px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%
    }

    100% {
        background-position: 100% 50%
    }
}

/* Disable JS/CSS animations for sections that opt out */
.value-sections.no-js-animations .step,
.value-sections.no-js-animations .step .step-marker,
.value-sections.no-js-animations .roadmap::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.value-sections.no-js-animations .roadmap {
    scroll-behavior: auto !important;
}

.value-sections.no-js-animations .step {
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 991.98px) {
    .value-sections .step {
        width: 48%;
        flex: 0 0 48%;
    }

    .value-sections .roadmap::before {
        left: 4%;
        right: 4%;
    }
}

@media (max-width: 575.98px) {
    .value-sections .step {
        width: 100%;
        flex: 0 0 100%;
    }

    .value-sections .roadmap {
        display: block;
        overflow: visible;
    }

    .value-sections .roadmap::before {
        display: none;
    }

    .value-sections .step .feature-item {
        text-align: left;
        padding: 12px 6px;
    }
}





/* Testimonial section */
.testimonial-section {
    background: linear-gradient(180deg, #fff, #fbfbfb);
    border: 1px #cccccc40 solid;
}

.testimonial-section .testimonial-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 16px 36px rgba(10, 10, 10, 0.06);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px #cccccc40 solid;
}

.testimonial-section .testimonial-quote {
    /* font-size: 18px; */
    color: #222;
    /* font-style: italic; */
    margin: 0 0 14px;
}

.testimonial-section .testimonial-meta h5 {
    font-size: 16px;
    color: #111;
    margin: 0;
    font-weight: 700;
}

.testimonial-section .testimonial-meta small {
    color: #666;
}

.testimonial-section .about-testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 18px;
}

/* Infrastructure section with diagonal image */
.infrastructure-section {
    background: linear-gradient(180deg, #fff, #f8f8f8);
}

.infrastructure-section .infra-text {
    padding: 78px 32px;
}

.infrastructure-section .infra-title {
    font-size: 44px;
    font-weight: 700;
    color: #b71c1c;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.infrastructure-section .infra-paragraph {
    color: #4b4b4b;
    line-height: 1.9;
    font-size: 16px;
    max-width: 680px;
    margin: 0 auto 18px;
}

.infrastructure-section .infra-image {
    min-height: 420px;
    background-size: cover;
    background-position: center right;
}

/* diagonal clip (desktop) */
@supports (clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%)) {
    .infrastructure-section .infra-image {
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    }
}

/* subtle overlay for contrast */
.infrastructure-section .infra-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.06));
    pointer-events: none;
}

/* remove clip and stack on small screens */
@media (max-width: 767.98px) {
    .infrastructure-section .infra-image {
        clip-path: none;
        min-height: 260px;
        background-position: center center;
    }

    .infrastructure-section .infra-text {
        text-align: left;
        padding: 28px;
    }

    .infrastructure-section .infra-title {
        font-size: 32px;
    }
}

/* Styled owl dots for testimonial carousel */
.testimonial-section .about-testimonial-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.testimonial-section .about-testimonial-carousel .owl-dots .owl-dot span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e6e6e6;
    transition: transform 600ms ease, background 600ms ease, box-shadow 600ms ease;
}

.testimonial-section .about-testimonial-carousel .owl-dots .owl-dot.active span,
.testimonial-section .about-testimonial-carousel .owl-dots .owl-dot:hover span,
.testimonial-section .about-testimonial-carousel .owl-dots .owl-dot:focus span {
    background: #b71c1c;
    transform: scale(1.35);
    box-shadow: 0 8px 20px rgba(183, 28, 28, 0.18);
}

.testimonial-section .about-testimonial-carousel .owl-dots .owl-dot:focus {
    outline: 2px solid rgba(183, 28, 28, 0.12);
    border-radius: 50%;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .testimonial-section .about-testimonial-carousel .owl-dots .owl-dot span {
        transition: none;
        transform: none;
    }
}

@media (min-width: 768px) {
    .testimonial-section .testimonial-item {
        min-height: 180px;
    }
}

.cta-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(120deg, #000, #341417);
    overflow: hidden;
}


/* Floating Shapes Animation */
.shape {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}


.shape:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-duration: 6s;
}


.shape:nth-child(2) {
    bottom: 10%;
    left: 60%;
    animation-duration: 7s;
    border: 10px #dadada3b solid;
    background-color: transparent;
}


.shape:nth-child(3) {
    top: 40%;
    right: 10%;
    animation-duration: 9s;
    border: 10px #dadada3b solid;
    background-color: transparent;
}


.shape:nth-child(4) {
    top: 80%;
    right: 10%;
    animation-duration: 9s;

}


.shape:nth-child(5) {
    top: 40%;
    left: 10%;
    animation-duration: 9s;

}

.shape:nth-child(6) {
    bottom: 10%;
    left: 30%;
    animation-duration: 9s;

}


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

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

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


.cta-box {
    backdrop-filter: blur(10px);
    background: #ffffff1a;
    border-radius: 20px;
    padding: 50px;

}


.cta-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
}

.cta-desc {
    color: #f1f1f1;
    font-size: 1.1rem;
}

.cta-btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.top-social a.btn-square {
    border: 2px #b3b3b38f solid;
}

.top-social a.btn-square i {
    color: #ffffff87 !important;
}

.top-social a.btn-square:hover i {
    color: var(--bs-secondary) !important;
}

.nav-wrap {
    border-bottom: 1px #ccc solid;
}

.contact {
    padding: 100px 10px;
}

.custom-offcanvas .offcanvas-body .social-icons {
    display: flex;
    gap: 5px;
}

.footer {
    padding: 60px 0 30px !important;
    background: linear-gradient(180deg, #0f0f10 0%, #1b1b1b 60%, #111 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.35) inset;
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -40px;
    height: 120px;
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.02), transparent 40%);
    pointer-events: none;
}

.footer-item h4 {
    color: #ffffffd1 !important;
    font-weight: 700;
    margin-bottom: 38px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 19px;
}

.footer-item h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 46px;
    height: 3px;
    background: linear-gradient(90deg, #ce1214, #ec2135);
    border-radius: 2px;
}

.footer .footer-item a {
    /* color: rgba(255,255,255,0.85); */
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer .footer-item a i {
    color: rgba(255, 255, 255, 0.65);
    margin-right: 8px;
}

.footer .footer-item a:hover {
    margin-left: 4px;
}


.footer .footer-item p {

    margin-bottom: 12px;
    line-height: 1.5;
}

.socialmedia .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform .15s ease, background .15s ease;
}

.socialmedia .btn:hover {
    transform: translateY(-2px);
    /* background: linear-gradient(90deg,#ff6b00,#ff3b3b); */
    color: #fff;
}

.footer .footer-brand img {
    max-height: 52px;
}

.copyright {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.18));
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 0;
}

.copyright .text-white {
    font-size: 14px;
    color: #fbfbfb91 !important;
}

.copyright a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.06);
}

.footer {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}



.footer .footer-item .socialmedia {
    margin-top: 20px;
}

.footer .footer-item .socialmedia a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .footer-item .socialmedia a i {
    margin-right: 0;
}

.sub-title-wrap {
    display: block;
    width: 100%;
    overflow: hidden;
}



/* Sticky container logic */
.sticky-wrapper {
    position: relative;
}

.sticky-content-area {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    /* Adjust based on header height */
    z-index: 10;
    align-self: flex-start;
}

.product-tabs-sidebar .nav-link {
    background-color: #fff;
    color: #000;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 18px 24px;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.product-tabs-sidebar .nav-link:hover {
    background-color: #fcfcfc;
    border-color: #ced4da !important;
    transform: translateX(5px);
}

.product-tabs-sidebar .nav-link.active {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-tabs-sidebar .nav-link i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.detail-header {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.detail-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60px;
    height: 4px;
    background-color: #ce1214 !important;
    border-radius: 2px;
}

.product-card {
    border-radius: 15px !important;
    border: 1px solid #e9ecef !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    height: 100%;
    padding: 10px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    border-color: #dee2e6 !important;
}

.product-card .card-header {
    background: transparent !important;
    padding: 20px 25px 20px 25px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px #cccccc75 solid;
}

.product-card .card-header h5 {
    margin: 0;
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
}

.product-card .card-header i {
    color: #ce1214 !important;
    font-size: 0.9rem;
}

.product-card .card-body {
    padding: 15px 25px 30px 25px !important;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}





/*</------------------------------Responsive----------------------------------------/>*/
@media (max-width: 1250px) {
    .navbar-wrap nav.navbar {
        padding: 10px 10px !important;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 15px;
        padding: 15px 0px;
        margin: 0 10px;
    }

}

@media (max-width: 1150px) {
    .logo-text-snp {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .carousel-header .carousel-inner .carousel-item {
        min-height: 400px;
    }

    .stats-box {
        height: 100%
    }

    .cert-img {
        height: auto
    }

    .product-tabs-sidebar {
        margin-bottom: 40px;
    }

    .detail-header {
        font-size: 1.6rem;
    }

    .sticky-content-area {
        position: static;
    }

    .navbar-nav .nav-item .d-flex.justify-content-between.align-items-center {
        padding: 0;
    }

    .right-bar-btn {
        display: none !important;
    }


}

@media (max-width: 767.98px) {

    h1,
    .h1 {
        font-size: 24px !important;
    }

    .sub-title {
        font-size: 17px !important;
    }

    .logo-text-snp {
        display: none !important;
    }

    .contact {
        padding: 50px 10px;
    }

    nav.navbar {
        padding: 10px !important;
    }

    .navbar-brand.logowrap h1 {
        font-size: 16px;
        font-weight: 400;
    }

    .navbar-brand.logowrap h1 span {
        font-size: 8px
    }

    .enqu-btn {
        display: none !important;
    }

    .banner-text h1 {
        font-size: 1.5rem;
    }

    .cert-section ul.cert-list li {
        justify-content: center;
    }

    .cert-section h2 {
        text-align: center;
        font-size: 22px;
    }

    .banner-text p {
        font-size: 14px !important;
    }

    .mb-view {
        padding: 10px 16px !important;
    }




    .footer {
        padding-top: 40px !important;
        padding-bottom: 0px !important;
    }

    .footer-item {
        text-align: center;
        margin-bottom: 18px;
    }

    .footer-item h4 {
        text-align: center;
    }

    .socialmedia {
        justify-content: flex-start;
    }

    .footer-wrap {
        padding-left: 8px;
        padding-right: 8px;
    }

    .footer-item h4::after {
        margin: 0 auto;
        right: 0;
    }

    element.style {
        visibility: visible;
        animation-delay: 0.7s;
        animation-name: fadeInUp;
    }

    .section-title {
        margin-bottom: 20px !important
    }

    .cert-section ul.cert-list {
        padding-bottom: 20px
    }

    .year-card {
        display: none;
    }

    .section-title {
        overflow: hidden
    }

    .cta-title {
        font-size: 1.5rem;
        font-weight: 400;
    }

    .cta-box {
        padding: 20px
    }

    .cta-section {
        padding: 80px 10px
    }

    .testimonial .owl-carousel.testimonial-carousel {
        position: relative;
        margin-top: 80px !important;
    }

    .aboutsec {
        padding-top: 10px !important;
        padding-bottom: 30px !important;
    }

    .footer-item {
        text-align: center
    }

    .socialmedia {
        justify-content: center
    }

    .footer-wrap {
        padding: 30px 19px !important;
    }

    .bg-breadcrumb {
        padding: 30px 20px 30px 0;
        margin-bottom: 6px !important;
    }

    .bg-breadcrumb h3 {
        font-size: 26px;
    }

    .office-content h4 {
        font-size: 18px;
        margin-bottom: 15px !important;
    }

    .office-content a {
        font-size: 17px;
    }

    .count-wrap {
        padding: 60px 32px;
    }

    .office-content p {
        padding-top: 13px;
    }

    .missionsection .feature-item {
        flex-direction: column;
        justify-content: center;
        padding: 20px !important;

    }

    /* .missionsection .feature-item ul li {
        list-style-position: inside;
    } */

    .missionsection .feature-item ul {
        grid-template-columns: 1fr;
    }

    .missionsection .feature-item .iconbaarleft {
        margin-bottom: 0px;
        display: none;
    }

    .value-sections .step .feature-item-text {
        min-height: 180px;
        margin-top: -42px;
        padding-top: 38px;
    }

    .value-sections .roadmap::before {
        display: none;
    }

    .testimonial-section .testimonial-item {
        text-align: center;
    }



}

@media (max-width: 560.98px) {
    .value-sections .step .feature-item-text {
        min-height: 150px;
    }
}

/*** Contact Card ***/
.contact-card {
    transition: 0.5s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    background: #fff !important;
    border-color: transparent;
}

.contact-card .btn-square {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

.contact-card:hover .btn-square {
    background: var(--bs-primary) !important;
    color: #fff !important;
}

.map-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}