/*
* Sugoi Indo Technocrats - Custom Style
* Designed as a copyright-free template.
* Author: Bajrang Lal Meena
* License: MIT License (Code generated from scratch, freely usable)
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary-color: #10bc69; /* Based on original --accent-color */
    --secondary-color: #333;
    --text-color: #555;
    --heading-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #eee;
    --box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background: #fff;
    scroll-behavior: smooth;
    position: relative;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: #0d8a4f; /* Darker shade of primary-color */
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
    color: var(--heading-color);
    margin: 0 0 10px 0;
    padding: 0;
}

/* Ensure no inline CSS for background images */

/* New styling for the Impact section to use the same background image */
#impact { /* Or .impact, depending on how you've set the class on your section */
    background: url('../img/toll-plaza.png') top center no-repeat fixed;
    background-size: cover;
    padding: 80px 0; /* Matches the padding of the old testimonials section */
}

/* Add any specific styling for .impact-box here if it's different from .icon-box */
.impact-box {
    /* Example: if you want a white background for the content boxes */
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease-in-out;
    height: 100%; /* Ensure boxes are same height if content varies */
}

.impact-box .icon {
    font-size: 48px;
    color: #007bff; /* Example icon color */
    margin-bottom: 15px;
    display: inline-block;
}

.impact-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.impact-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Optional: hover effect for impact boxes */
.impact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: var(--heading-color);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #777;
}

.section-title span {
    display: block;
    font-size: 12px;
    color: #ccc;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/*--------------------------------------------------------------
# Preloader (Vanilla JS will handle removal)
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--primary-color);
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #fff;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background: #0d8a4f; /* Darker shade of primary-color */
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background: #fff;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
}

.header .sitename {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    color: var(--heading-color);
}

.header .logo img {
    max-height: 40px;
    margin-right: 6px;
}

/* Scrolled Body Class (Managed by JS) */
body.scrolled .header {
    padding: 10px 0;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
}

/* Get Started Button */
.btn-getstarted {
    color: #fff;
    background: var(--primary-color);
    padding: 8px 25px;
    margin-left: 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-getstarted:hover {
    background: #0d8a4f;
    color: #fff;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--primary-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 500;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--primary-color);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
}

.navbar .dropdown .dropdown:hover>ul {
    top: 0;
    left: 100%;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle {
    color: var(--heading-color); /* Make sure --heading-color is defined */
    font-size: 28px;
    cursor: pointer;
    display: none; /* Hidden on desktop */
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block; /* Visible on mobile */
    }

    .navbar ul {
        display: none; /* Hide desktop menu on mobile initially */
    }
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
    color: var(--heading-color); /* Ensure --heading-color is defined elsewhere in your CSS */
    font-size: 28px;
    cursor: pointer;
    display: none; /* Hidden on desktop by default */
    line-height: 0;
    transition: 0.5s;
}

/* Styles for mobile screen sizes */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block; /* Show toggle button on mobile */
    }

    .navbar ul {
        display: none; /* Hide the main desktop menu on mobile */
    }
}

/* Class added by JavaScript when the mobile menu is active */
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.9); /* Dark overlay */
    transition: 0.3s;
    z-index: 999;
}

/* Styles for the mobile navigation toggle when the mobile menu is active */
.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff; /* Make close icon white on dark overlay */
}

/* Styles for the actual menu list within the mobile navigation */
.navbar-mobile ul {
    display: block; /* Show the menu list */
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #f2efe5; /* White background for the menu items container */
    overflow-y: auto;
    transition: 0.3s;
}

/* Styling for individual links within the mobile navigation */
.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--heading-color); /* Ensure --heading-color is defined */
}

/* Hover and active states for links within the mobile navigation */
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--primary-color); /* Ensure --primary-color is defined */
}

/* Styling for a "Get Started" or similar button in mobile nav if it exists */
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

/* Dropdown menu styling within mobile navigation */
.navbar-mobile .dropdown ul {
    position: static; /* Allows it to flow naturally in the mobile menu */
    display: none; /* Hidden by default for dropdowns */
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1; /* These might be redundant if display:none is used for toggling */
    visibility: visible; /* These might be redundant if display:none is used for toggling */
    background-color: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: var(--primary-color);
}

.navbar-mobile .dropdown .dropdown ul {
    padding-left: 10px;
}

/* Final CSS that controls the actual sliding animation */
/* This class is toggled on the <nav> element by JavaScript */
/* The .navbar-mobile definition above sets the initial state (e.g. right:0, left: auto or similar to hide) */
/* This rule then moves it into view */
.navbar-mobile.mobile-nav-active {
    left: 0; /* Moves the full-screen overlay into view */
    /* Assuming .navbar-mobile initially had 'left: 100%' or similar to hide it */
    /* If your .navbar-mobile CSS doesn't initially hide it, this might not work as intended.
       Check if it has 'right: -100%' or similar to slide in from the right. */
}

/* Classes added to <body> by JS when mobile nav is active to control the toggle icon */
/* Note: The JavaScript you shared adds/removes 'navbar-mobile' from the <nav> itself,
   not 'mobile-nav-active' from the body. You might need to check which class the JS
   is *actually* toggling on the body or the main nav element if these aren't working. */
/* The JS you shared toggles 'navbar-mobile' on the <nav>, so these body classes might not be active.
   If these rules are important for icon changes, the JS needs to toggle 'mobile-nav-active' on <body>. */
body.mobile-nav-active .navbar-mobile {
    left: 0;
}

body.mobile-nav-active .mobile-nav-toggle .bi-list {
    display: none;
}

body.mobile-nav-active .mobile-nav-toggle .bi-x {
    color: #fff;
    display: inline-block;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    padding: 120px 0;
    display: flex;
    align-items: center;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: var(--heading-color);
    font-family: "Ubuntu", sans-serif;
}

.hero h1 .highlight {
    color: var(--primary-color);
}

.hero p {
    color: var(--text-color);
    margin: 15px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: var(--primary-color);
}

.hero .btn-get-started:hover {
    background: #0d8a4f;
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 20px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
}

.hero .btn-watch-video i {
    font-size: 32px;
    color: var(--primary-color);
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--primary-color);
}

.hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    .hero {
        text-align: center;
        padding-top: 120px;
    }

    .hero .animated {
        animation: none;
    }

    .hero .hero-img {
        width: 80%;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .hero .btn-get-started,
    .hero .btn-watch-video {
        display: block;
        margin: 10px 0 0 0;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.hero .icon-boxes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 100px 0 100px;
    z-index: 9;
}

.hero .icon-boxes .icon-box {
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.hero .icon-boxes .icon-box .icon {
    font-size: 32px;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hero .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.hero .icon-boxes .icon-box p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 24px;
    margin-bottom: 0;
}

.hero .icon-boxes .icon-box:hover {
    transform: translateY(-10px);
}

@media (max-width: 1200px) {
    .hero .icon-boxes {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .hero .icon-boxes {
        position: static;
        padding: 60px 0;
    }

    .hero .icon-boxes .row {
        gap: 20px; /* Add some space between cards on small screens */
    }

    .hero .icon-boxes .icon-box {
        margin-bottom: 0; /* Remove extra margin if any from template */
    }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: flex-start; /* Align icon and text at the top */
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--primary-color);
    line-height: 0; /* Vertically align icon */
    margin-top: 5px; /* Adjust if needed for vertical alignment */
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .btn-learn-more {
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    padding: 10px 30px 11px 30px;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.about .btn-learn-more:hover {
    background: #0d8a4f;
}

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
    padding: 60px 0 30px 0;
    background: var(--light-bg);
}

.counts .stats-item {
    padding: 30px;
    width: 100%;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 4px;
}

.counts .stats-item .purecounter {
    font-size: 48px;
    display: block;
    font-weight: 700;
    color: var(--heading-color);
}

.counts .stats-item p {
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #777;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background: #fff;
    box-shadow: var(--box-shadow);
    padding: 40px;
    height: 100%;
    position: relative;
    border-radius: 4px;
}

.services .service-item .icon {
    margin: 0 auto;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: ease-in-out 0.3s;
}

.services .service-item .icon i {
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
}

.services .service-item h3 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
}

.services .service-item h3 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover .icon {
    background: #0d8a4f;
}

.services .service-item:hover h3 a {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio #portfolio-filters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    border-radius: 4px;
}

.portfolio #portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #444;
    margin: 0 4px 8px 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
}

.portfolio #portfolio-filters li:hover,
.portfolio #portfolio-filters li.filter-active {
    background: var(--primary-color);
    color: #fff;
}

.portfolio #portfolio-filters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 4px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

/* Portfolio Lightbox (Custom JS will handle this) */
.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.custom-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.custom-lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.custom-lightbox-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}

.custom-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 100000;
}

.custom-lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 15px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 6px solid #fff;
    margin: 0 auto;
    margin-bottom: 15px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: var(--heading-color);
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #b3e6d1; /* Lighter shade of primary for quotes */
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

/* Custom Swiper-like pagination for testimonials */
.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
    bottom: 0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    opacity: 1;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block; /* Ensure bullets are in line */
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: #fff;
    padding: 40px 0;
    font-size: 14px;
    color: var(--text-color);
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.05);
}

.footer .footer-links {
    margin-bottom: 20px;
}

.footer .footer-links i.icon {
    font-size: 20px;
    color: var(--primary-color);
    float: left;
    width: 44px;
    height: 44px;
    background: #eaf6ee;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.footer .footer-links h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--heading-color);
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links p {
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--text-color);
    padding-left: 20px; /* Adjust for icon */
}

.footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #ececec;
    color: #777;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer .copyright p {
    margin-bottom: 0;
    font-size: 13px;
    color: #777;
}


/* --- Company Stats Section --- */
.company-stats {
    background-color: #0f1c2c; /* Dark background similar to image */
    color: #fff;
    padding: 80px 0; /* More padding for a prominent section */
    position: relative; /* For positioning overlay/arrow */
    overflow: hidden; /* Hide anything overflowing, especially background elements */
}

.company-stats .container {
    position: relative; /* Ensure stats content is above background elements */
    z-index: 2; /* Make sure the stats numbers are on top */
}

.company-stats .stat-item {
    padding: 20px 0;
    position: relative;
    z-index: 3; /* Ensure text is above background and border elements */
}

.company-stats .stat-number {
    font-size: 60px; /* Large font size for numbers */
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff; /* White numbers */
    /* Add a subtle outline border like in the image, using text-shadow or a custom overlay element */
    text-shadow:
        -1px -1px 0 rgba(255, 255, 255, 0.1), /* Simulating a faint white outline/glow */
         1px -1px 0 rgba(255, 255, 255, 0.1),
        -1px  1px 0 rgba(255, 255, 255, 0.1),
         1px  1px 0 rgba(255, 255, 255, 0.1);
}

.company-stats .stat-description {
    font-size: 18px; /* Font size for descriptions */
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7); /* Slightly muted white for description */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Background elements (for the image and arrow) */
.company-stats .stats-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* To keep elements within bounds if not full coverage */
    z-index: 1; /* Below the content */
}

.company-stats .stats-background-overlay img {
    position: absolute;
    opacity: 0.1; /* Very subtle background numbers */
    pointer-events: none; /* Make sure it's not interactive */
}

.company-stats .stats-background-overlay .stats-bg { /* For the general abstract background image */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire area */
}

.company-stats .stats-background-overlay .growth-arrow { /* For the large green arrow */
    bottom: -5%; /* Adjust to position correctly */
    right: -5%; /* Adjust to position correctly */
    width: 40%; /* Adjust size of the arrow */
    max-width: 500px; /* Max size for the arrow */
    opacity: 0.5; /* Make the arrow slightly transparent */
    transform: rotate(-10deg); /* Tilt the arrow if needed */
    filter: brightness(0.8) saturate(1.5); /* Adjust color if needed */
}


/* Responsive adjustments */
@media (max-width: 991px) {
    .company-stats .stat-number {
        font-size: 50px;
    }
    .company-stats .stat-description {
        font-size: 16px;
    }
    .company-stats .stats-background-overlay .growth-arrow {
        width: 60%; /* Larger on smaller screens if background is more prominent */
        right: -10%;
        bottom: -10%;
    }
    .company-stats .stats-background-overlay img.stats-bg {
        width: 150%; /* Ensure coverage */
        left: -25%;
    }
}

@media (max-width: 767px) {
    .company-stats {
        padding: 60px 0;
    }
    .company-stats .stat-number {
        font-size: 40px;
    }
    .company-stats .stat-description {
        font-size: 14px;
    }
    .company-stats .stats-background-overlay .growth-arrow {
        display: none; /* Hide arrow on very small screens if it becomes distracting */
    }
    .company-stats .stats-background-overlay img.stats-bg {
        display: none; /* Hide background numbers on mobile if they don't scale well */
    }
}

/*--------------------------------------------------------------
# Inner Page Styles (for advanced-traffic-management.html etc.)
--------------------------------------------------------------*/
.page-title {
    padding: 80px 0 20px 0;
    background-color: var(--light-bg);
    margin-bottom: 30px;
    text-align: center;
}

.page-title h1 {
    font-size: 38px;
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 15px;
    margin-bottom: 0;
}

.page-title .breadcrumbs {
    padding: 0;
    margin: 0;
    display: inline-block;
}

.page-title .breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    color: #777;
}

.page-title .breadcrumbs ol li {
    display: flex;
    align-items: center;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    padding: 0 10px;
    color: #bbb;
}

.page-title .breadcrumbs ol a {
    color: var(--primary-color);
}

.page-title .breadcrumbs ol a:hover {
    text-decoration: underline;
}

/* Specific section styling for detail pages */
.section .lead {
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.section .features-list .icon-box {
    padding: 30px;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.section .features-list .icon-box i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.section .features-list .icon-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.section .features-list .icon-box p {
    font-size: 15px;
    line-height: 24px;
    color: var(--text-color);
}

.section .features-list .icon-box:hover {
    transform: translateY(-10px);
}

.section .benefit-list {
    margin-top: 30px;
}

.section .benefit-list .list-group-item {
    border: none;
    padding-left: 0;
    font-size: 16px;
    color: var(--text-color);
}

.section .benefit-list .list-group-item i {
    color: var(--primary-color);
    font-size: 20px;
}

/* Video container for hybrid-toll-system.html */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px; /* Max width for the video */
    width: 100%;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/*--------------------------------------------------------------
# Hero Section Video Background
--------------------------------------------------------------*/
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire area */
    z-index: 1; /* Place video behind content */
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* Place behind video, acts as poster/fallback */
}

/* Overlay to make text readable over video */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 2; /* Between video and content */
}

.hero .container.content-overlay {
    z-index: 3; /* Ensure content is above the overlay */
    position: relative; /* Make sure this container is positioned */
    color: #fff; /* Make text readable over dark overlay */
}

.hero .container.content-overlay h1,
.hero .container.content-overlay p,
.hero .container.content-overlay a {
    color: #fff; /* Ensure all text/links are white for readability */
}

.hero .container.content-overlay h1 .highlight {
    color: var(--primary-color); /* Keep highlight color */
}

/* Ensure buttons are visible */
.hero .btn-get-started {
    color: #fff;
}
.hero .btn-watch-video {
    color: #fff;
}
.hero .btn-watch-video i {
    color: var(--primary-color); /* Keep play icon color */
}

/* Adjustments for the image in the hero section if it clashes with video */
@media (min-width: 992px) {
    .hero .col-lg-6.order-1.order-lg-2 img {
        /* You might want to remove or hide this image if the video is now the primary visual */
        /* display: none; */
        /* Or adjust its position/size relative to the video background */
    }
}
@media (max-width: 991px) {
    /* Hide video background on smaller screens and show fallback image */
    .hero-video-background {
        display: none;
    }
    .hero-video-fallback {
        display: block; /* Show fallback image */
        z-index: 1;
    }
    .hero::before {
        background: rgba(0, 0, 0, 0.6); /* Slightly darker overlay for image fallback */
    }
    .hero .container.content-overlay h1,
    .hero .container.content-overlay p,
    .hero .container.content-overlay a {
        color: #fff; /* Ensure text is white over fallback image */
    }
    .hero {
        background: none; /* Ensure no residual background image */
    }
}


/*--------------------------------------------------------------
# Gallery Section (Enhanced)
--------------------------------------------------------------*/
.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Slightly more rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Softer shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transition for hover */
}

.gallery-image-wrapper:hover {
    transform: translateY(-5px); /* Slight lift effect */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* More pronounced shadow on hover */
}

.gallery-image-wrapper img {
    display: block;
    width: 100%;
    height: 250px; /* Fixed height for uniformity */
    object-fit: cover; /* Ensures images cover the area without distortion */
    transition: transform 0.4s ease-in-out; /* Zoom effect on image */
}

.gallery-image-wrapper:hover img {
    transform: scale(1.05); /* Slight zoom on image */
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75); /* Darker overlay for better text readability */
    color: #fff;
    padding: 15px; /* Increased padding */
    transform: translateY(100%); /* Start hidden below the image */
    transition: transform 0.4s ease-in-out; /* Smooth slide-up effect */
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Ensure it's not clickable when hidden */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.gallery-image-wrapper:hover .gallery-info {
    transform: translateY(0); /* Slide up on hover */
    opacity: 1; /* Fade in */
    visibility: visible;
}

.gallery-info h4 {
    font-size: 1.1rem; /* Slightly larger title */
    margin-bottom: 5px;
    color: #fff;
}

.gallery-info p {
    font-size: 0.85rem; /* Clearer description text */
    margin-bottom: 0;
    color: #ddd;
}

/* Optional: Styles for gallery filters if enabled */
/*
#gallery-flters {
    padding: 0;
    margin: 0 0 30px 0;
    list-style: none;
    text-align: center;
}

#gallery-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 0 8px 10px 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 8px 20px;
    background-color: #f7f7f7;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    color: #555;
    border: 1px solid #eee;
}

#gallery-flters li:hover,
#gallery-flters li.filter-active {
    background-color: #2441E7; /* Adjust to your primary brand color */
    color: #fff;
    border-color: #2441E7; /* Adjust to your primary brand color */
}
*/