body {
    font-family: "Montserrat", sans-serif !important;

}


@media (min-width: 1400px) {
    .container {
        max-width: 1200px !important;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px !important;
    }
}



.text-justify {
    text-align: justify;
}

a {
    text-decoration: none;
    color: white;
}

li {
    list-style: none;
}

.primary-color {
    color: #2b3990;
}

.secondary-color {
    color: #4aab3d !important;
}

.pera {
    line-height: 2em;
    margin-bottom: 20px;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-25 {
    font-size: 25px !important;
}

.fs-28 {
    font-size: 28px !important;
}

.fs-30 {
    font-size: 30px !important;
}

.fs-36 {
    font: 36px !important;
}

.fs-38 {
    font: 38px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.custom-black {
    color: #222;
}

.custom-gray {
    color: #777;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mt-20 {
    margin-top: 20px !important;
}


.main-nav .nav-link {
    font-size: 15px;
    /* font-weight: 700; */
    font-size: 14px;
}

.main-nav .nav-item .dropdown-menu {
    background: white;
}

.main-nav .dropdown-item:hover {
    background: #4aab3d;
    color: white;
    padding-top: 4px;
    padding-bottom: 4px;
}

.nav-link {
    color: #fff !important;
    display: flex;
    align-items: center;
}

.custom-box {
    border: 1px solid #fff;
    padding: 8px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 25px 25px;
    /* Top corners normal, bottom corners rounded */
    background: transparent;
}

.arrow-btn {
    width: 15px;
    height: 15px;
    background: #ffffff;
    /* White circle */
    border-radius: 50%;
    /* Make it round */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4aab3d;
    /* Green arrow */
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
    padding: 15px;
}

.arrow-btn:hover {
    background: #2e9d3f;
    /* Green on hover */
    color: #ffffff;
    /* White arrow */
}

.dropdown-menu {
    display: none;
    transition: all 0.3s ease-in-out;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* slider css */

/* Full Banner */
.hero-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* Background Video / Image */
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Left Social Icons */
.social-bar {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-bar a {
    color: white;
    font-size: 24px;
    transition: 0.3s;
}

.social-bar a:hover {
    color: #4aab3d;
}

/* Right Side Box */
.visit-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    padding: 15px 20px;
    border-radius: 20px 0 0 20px;
    color: white;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
}

/* Flag */
.visit-box img {
    width: 35px;
    margin-top: 10px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    right: 40px;
    top: 65%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.scroll-indicator i {
    font-size: 22px;
    margin-top: 8px;
}

/* Center Text */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;

    /* optional */
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-content h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-content span {
    background: #4aab3d;
    padding: 0 10px;
    font-weight: 900;
}

/* Mobile Responsive */
@media(max-width: 768px) {
    .social-bar {
        left: 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}

.btn-outline-orange {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 8px 20px;
    padding-right: 13px;
    border: 2px solid #4aab3d;
    /* Outer border color */
    border-radius: 50px;
    /* Rounded oval shape */
    font-size: 18px;
    color: #4aab3d;
    /* Text color */
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-outline-orange:hover {
    background: #4aab3d;
    color: #fff;
}

.btn-arrow-circle {
    width: 38px;
    height: 38px;
    background: #4aab3d;
    /* Orange circle */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    /* Arrow color */
    font-size: 20px;
}

.btn-outline-orange:hover .btn-arrow-circle {
    color: #4aab3d;
    background: white;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 8px 20px;
    padding-right: 13px;
    border: 2px solid #fff;
    /* Outer border color */
    border-radius: 50px;
    /* Rounded oval shape */
    font-size: 18px;
    color: #fff;
    /* Text color */
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-outline-light:hover {
    background: #4aab3d;
    color: #fff;
    border: 1px solid #4aab3d;
}

.btn-outline-light:hover .btn-arrow-circle {
    color: #4aab3d;
    background: #fff;
}

.product-section {
    /* background: linear-gradient(#062027, #08252d); */
    padding: 80px 8%;
    position: relative;
}

/* Title */
.product-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}

.tab {
    font-size: 20px;

    cursor: pointer;
    padding-bottom: 6px;
    position: relative;
}



.tab.active::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 3px;
    background: #4aab3d;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

/* Main Layout */
.product-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 30px;
}

/* Left side image area */
.panel-wrapper {
    position: relative;
    width: 420px;
}

.circle1,
.circle2 {
    position: absolute;
    border-radius: 50%;
    border: 3px solid #4aab3d;
    opacity: 0.4;
    left: 50%;
    transform: translateX(-50%);
}

.circle1 {
    width: 360px;
    height: 360px;
    top: -20px;
}

.circle2 {
    width: 420px;
    height: 420px;
    top: -50px;
    opacity: 0.25;
}

.panel-img {
    position: relative;
    width: 350px;
    z-index: 10;
    transform: rotate(-8deg);
    display: block;
    margin: auto;
}

/* Right side content */
.content h3 {
    font-size: 36px !important;
    font-weight: 600;
    margin: 18px 0 10px;
}

.content h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}

.features {
    padding-top: 80px;
    font-size: 18px;
    line-height: 32px;

}

/* Read More Button */
.read-btn {
    margin-top: 30px;
    padding: 12px 24px;
    border: 2px solid #cce1e6;
    border-radius: 8px;
    background: transparent;

    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.read-btn:hover {
    background: #1ec9ff;
    border-color: #1ec9ff;
}

/* Responsive */
@media (max-width: 900px) {
    .product-container {
        flex-direction: column;
        text-align: center;
    }

    .panel-wrapper {
        width: 100%;
    }

    .panel-img {
        width: 260px;
    }
}

/* .mySwiper {
    width: 100%;
     height: 200px;
    overflow: hidden;
} */

.mySwiper {
    height: auto !important;
}

.mySwiper .swiper-wrapper {
    height: auto !important;
}

.swiper-slide {
    height: auto !important;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}


.swiper-slide-logo {
    width: auto !important;
    /* Important: marquee ke liye */
    height: calc(200px / 2);
    ;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 40px;
    background-color: #fff;
    margin-right: 30px;
    font-size: 22px;
    white-space: nowrap;
    border: 1px solid gray;
}

.swiper-slide-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.footer {
    background: #111;
    color: white;
    padding: 80px 0px;
    display: flex;
    grid-template-columns: 1fr 0.6fr 0.8fr;
    gap: 60px;
    position: relative;
}

.footer h2 {
    font-size: 45px;
    font-weight: 700;
}

.footer-desc {
    margin: 20px 0 40px;
    line-height: 1.7;
    font-size: 17px;
    max-width: 500px;
}

.footer-logos img {
    height: 50px;
    margin-right: 20px;
}

.footer-center h3,
.footer-right h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-center ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li {
    margin: 8px 0;
}

.footer-center ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
}

.footer-center ul li a:hover {
    color: white;
}

.office-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.office-address {
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-item {
    margin: 10px 0;
    font-size: 18px;
}

/* new add 23-01-25 */
/* ===== Form Card ===== */
.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


.social-icons {
    position: absolute;
    right: 100px;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-icons a {
    color: white !important;
    font-size: 26px;
    text-decoration: none;
}

@media (max-width: 992px) {
    .footer {
        grid-template-columns: 1fr 1fr;
        padding: 50px 0;
    }

    .social-icons {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer {
        grid-template-columns: 1fr;
    }

    .footer h2 {
        font-size: 32px;
    }
}


.product-section {
    color: #000;
    background-color: #f8f8f8;
}

.product-section p,
.product-section h4,
.product-section li {
    color: #000;
}

#panelImg,
#productContent {
    transition: opacity 0.3s ease-in-out;
}

.hide {
    opacity: 0;
}

/* ==== Team Slider Section Styling ==== */

.team-slider-section {
    padding: 60px 0;
}

/* Card Styling */
.team-card {
    background: #f8f8f8;
    border-radius: 22px;
    padding: 35px 20px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 470px;
}

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

/* Circular Image */
.team-card img {
    border: 1px solid black;
    padding: 10px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
}

/* Name */
.team-card h4 {
    font-size: 24px;
    color: #000;
    margin-bottom: 6px;
    font-weight: 600;
}

/* Role */
.team-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* LinkedIn Button */
.linkedin {
    width: 42px;
    height: 42px;
    background: #ff8a30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin: 0 auto;
    transition: 0.3s ease;
}

.linkedin:hover {
    background: #ff6a00;
}

/* ===== Swiper Arrows (Custom Design) ===== */
.team-slider-section .swiper-button-next,
.team-slider-section .swiper-button-prev {
    background: #fff;
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.team-slider-section .swiper-button-next:after,
.team-slider-section .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.directorSwiper .swiper-pagination {
    position: relative;
    bottom: -10px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.directorSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: black !important;
    /* Light peach color */
    opacity: 1;
    margin: 0 6px !important;
}

.directorSwiper .swiper-pagination-bullet-active {
    background: #F27C2C;
    /* Orange color for active dot */
}

/* Left Menu Wrapper */
.left-menu {
    border: 1px solid #4aab3d;
}

/* Orange Title Box */
.menu-title {
    background: #4aab3d;
    color: #fff;
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
}

/* Menu Items */
.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    border-top: 1px solid #4aab3d;
    padding: 20px;
    font-size: 18px;
    color: #444;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover Effect */
.menu-item:hover {
    background: #4aab3d;
    color: #fff;
}

/* Active Item */
.menu-item.active {
    background: #4aab3d;
    color: #fff;
    font-weight: 600;
}

/* Right side Content Box */
.content-box {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #eee;
}

/* Top Header with light grey background */
.content-header {
    background: #4aab3d;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* PDF Icon */
.pdf-icon {
    color: #4aab3d;
    font-size: 22px;
}

.content-body {
    display: flex;
    justify-content: space-between;
}

.single-item-row {
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}

.single-item-row p {
    flex: 1;
    margin-right: 10px;
    white-space: normal;
}

.pdf-icon i {
    color: #4aab3d;
    /* red pdf icon */
}

.content-body {
    display: block;
}

.investor-banner {
    position: relative;
    background-image: url('../image/investors.jpg');
    height: 500px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.investor-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    /* Light black overlay */
}

.investor-banner h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 50px;
    font-weight: 700;

}


/* sticky header hidden */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transform: translateY(-100%);
    transition: 0.4s ease-in-out;
}

/* active */
.sticky-header.active {
    transform: translateY(0);
}

.team-banner {
    position: relative;
    background-image: url('../image/Picture2.png');
    height: 500px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.team-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    /* Light black overlay */
}

.team-banner h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
}


.director-card {
    background: #fff;
    border-radius: 14px;
}

.director-img {
    width: 100%;
    border-radius: 14px;
    border: 2px solid #dcdcdc;
}

.know-btn {
    background: #f58220;
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
    transition: 0.3s;
    text-decoration: none;
    font-weight: 500;
}

.know-btn:hover {
    background: #d96e16;
    color: #fff;
}

/* Background overlay */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

/* Modal box */
.custom-modal-content {
    width: 65%;
    background: #fff;
    border-radius: 12px;
    border: 3px solid #f58220;
    padding: 25px;
    position: relative;
    animation: popIn 0.3s ease;
}

/* Close icon */
.close-modal {
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 30px;
    cursor: pointer;
}


.col-left {
    width: 30%;
    text-align: center;
}

.col-left img {
    width: 100%;
    border-radius: 12px;
}

.col-left h3 {
    margin-top: 15px;
    margin-bottom: 0;
}

.designation {
    color: #f58220;
    font-weight: 600;
    margin-bottom: 10px;
}

.col-right {
    width: 70%;
}

.col-right ul {
    padding-left: 20px;
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.blog-banner {
    position: relative;
    background-image: url('../image/ChatGPT Image Jan 21, 2026, 06_20_48 PM.png');
    height: 500px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.blog-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
}

.blog-banner h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
}

.director-section {
    padding: 40px 0;
}


.director-card {
    background: #fff;
    padding-bottom: 20px;
    border-radius: 12px;
    transition: 0.3s ease;  
}

.director-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.director-card h4 {
    margin-top: 15px;
    font-weight: 700;
}

.director-card p {
    color: #777;
    margin-bottom: 10px;
}


.know-btn {
    display: inline-block;
    margin-top: 5px;
    padding: 8px 18px;
    background: #4aab3d;
    color: #fff;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.know-btn:hover {
    background: #077a3a;
}

.card-text-limit {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.obj-cover {
    object-fit: cover;
}

.conatct-banner {
    position: relative;
    background-image: url('../image/contact-us-banner.jpg');
    height: 500px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.conatct-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    /* Light black overlay */
}

.conatct-banner h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    font-size: 50px;
}

.values-section .value-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    /* filter: brightness(0) saturate(100%) invert(63%) sepia(68%) saturate(374%) hue-rotate(347deg) brightness(96%) contrast(95%); */
}

.values-section .value-content h4 {
    font-size: 22px;
    font-weight: 600;
}

.values-section p {
    color: #555;
    margin-top: 8px;
    line-height: 1.6;
}

.about-banner {
    position: relative;
    background-image: url('../image/solar-images (5).jpg');
    height: 500px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.about-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    /* Light black overlay */
}

.about-banner h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
}

.client-banner {
    position: relative;
    background-image: url('../image/solar-images (3).jpg');
    height: 500px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.client-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    /* Light black overlay */
}

.client-banner h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
}

.iso-banner {
    position: relative;
    background-image: url('../image/663395d3790b636e6eefcbf4_Blog-Banner-ISO27001-Framework.jpg');
    height: 500px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.iso-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    /* Light black overlay */
}

.iso-banner h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
}

.text-muted {
    color: #9b9b9b !important;
}

/* Colors */
.bg-green {
    background: #dfe8c4;
}

.bg-gray {
    background: #eee;
}

/* Text */
.timeline-card .year {
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-card h4 {
    font-size: 18px;
    font-weight: 600;
}

.timeline-card p {
    font-size: 14px;
    color: #666;
}

/* Mobile */
@media (max-width: 991px) {
    .timeline-line {
        display: none;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

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

.timeline-prev,
.timeline-next {
    color: #ff7a00;
}

.timeline-prev::after,
.timeline-next::after {
    font-size: 22px;
    font-weight: bold;
}

.range-section {
    position: relative;
    background-image: url('../image/8533683.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 350px;
    /* fixed feel */
    display: flex;
    align-items: center;
    /* vertical center */
}

.range-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 80%);
    /* black overlay */
    z-index: 1;
}

.range-section .container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
}

.esg-section {
    background: #f8f9fa;
}

.esg-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    height: 500px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.esg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.esg-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.esg-content {
    padding: 24px;
}

.esg-content h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
}

.esg-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.esg-content a {
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.esg-content a:hover {
    text-decoration: underline;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 18px;
    line-height: 1.7;
}

.more-text {
    display: none;
}

.toggle-btn {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.contact-strip {
    background: #ffffff;
    padding: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 30px;
}

.contact-item h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 12px;
}

.contact-item a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 22px;
}

.social-icons a {
    color: #000;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* background: transparent;   */
    z-index: 1000;
}

.hero-section img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.meet-us {
    padding: 80px 0;
    background: #f8fafc;
}

.meet-grid {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 40px;
}

.meet-left h2 {
    font-size: 42px;
    font-weight: 700;
}

.meet-right .intro {
    max-width: 650px;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.office-card-new {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    height: 100%;
}

.office-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.office-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}


.office-card-new h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}


.office-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #111;
}

.office-card-new p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.map-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: #009444;
    font-weight: 600;
    text-decoration: none;
}

.map-link:hover {
    color: #2b3990;
}

/* .office-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 12px;
} */

/* .map-link {
    font-size: 15px;
    color: #4aab3d;
    font-weight: 500;
    text-decoration: none;
} */

/* .map-link:hover {
  text-decoration: underline;
} */

@media (max-width: 992px) {
    .meet-grid {
        grid-template-columns: 1fr;
    }

    .office-grid {
        grid-template-columns: 1fr;
    }

    .meet-left h2 {
        font-size: 34px;
    }
}

.e-font-icon-svg {
    width: 18px;
    /* size yahan control karo */
    height: 18px;
    fill: #4aab3d !important;
}

.product-banner {
    position: relative;
    background-image: url('../image/ai-generated-energy-saving-and-power-sustainability-concept-expansive-solar-farms-large-scale-solar-panels-generating-clean-renewable-energy-for-sustainable-and-efficient-power-saving-photo.jpg');
    height: 450px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.product-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%) !important;
}

.product-banner h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    font-size: 50px;
}

.product-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
}

.section-desc {
    max-width: 700px;
    margin: 15px auto 40px;
    font-size: 15px;
    color: #333;
}

/* Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width:575px) {
    .product-tabs {
        display: flex !important;
        flex-direction: column !important;
    }
}

.product-tabs .tab {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding-bottom: 6px;
    color: #333;
    border-bottom: 2px solid transparent;
}

.product-tabs .tab.active {
    border-color: #00a6a6;
    font-weight: 600;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.product-card img {
    max-width: 100%;
    height: 320px;
    object-fit: contain;
}

.product-card span {
    display: block;
    margin-top: 15px;
    padding: 12px;
    background: #e5e5e5;
    border-radius: 0 0 14px 14px;
    font-weight: 600;
}

/* Tab content */
/* .tab-content {
    display: none;
} */

.tab-content.active {
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.proname-card:hover {
    background-color: #fff !important;
}


.proname-card.active {
    background: #fff !important;
    /* 🔥 white bg */
}

.innovation-section {
    padding: 90px 0;
    background: #fff;
    text-align: center;
}

/* Top Tabs */
.top-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 70px;
}

.top-tab {
    background: none;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    color: #000;
    padding-bottom: 8px;
    cursor: pointer;
    position: relative;
}

.top-tab.active {
    color: #000;
    font-weight: 600;
}

.top-tab.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.feature-card h4 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #111;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Icon */
.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-circle img {
    width: 80px;
}

/* Tabs logic */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.epc-banner {
    position: relative;
    background-image: url('../image/ai-generated-energy-saving-and-power-sustainability-concept-expansive-solar-farms-large-scale-solar-panels-generating-clean-renewable-energy-for-sustainable-and-efficient-power-saving-photo.jpg');
    height: 450px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.epc-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.epc-banner h1 {
    position: relative;
    z-index: 2;
    color: #fff;
}

.epc-section {
    padding: 80px 50px;
    background: #fff;
    color: #111;
}

@media (max-width:575px) {
    .epc-section {
        padding: 40px 0 0px 0px;
    }
}

/* Headings */
.epc-title {
    font-size: 36px;
    font-weight: 700;
}

.epc-subtitle {
    font-size: 16px;
    color: #444;
    margin: 20px 0px;

}

.epc-desc {
    font-size: 16px;
    line-height: 1.4em;
    color: #333;
}

.epc-heading {
    margin: 70px 0 40px;
    font-size: 22px;
    font-weight: 600;
}

/* Grid */
.epc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    background: #f7f7f7;
    padding: 60px;
}

.epc-card {
    background: transparent;
}

.epc-icon {
    width: 45px;
    margin-bottom: 20px;
}

.epc-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.epc-card ul {
    list-style: none;
    padding: 0;
}

.epc-card ul li {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    position: relative;
    padding-left: 22px;
}

.epc-card ul li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #4aab3d;
}

/* Footer */
.epc-footer-text {
    margin: 40px 0 25px;
    font-size: 15px;
}

.epc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid #ff7a18;
    color: #ff7a18;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
}

.epc-btn span {
    background: #ff7a18;
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
    .epc-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}


.swiper-slide-logo {
    height: 100px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.swiper-slide-logo img {
    max-height: 60px;
    object-fit: contain;
}

.swiper-slide {
    /* display: flex; */
    align-items: center;
    justify-content: center;
}

/* .swiper-slide img {
    height: 100px !important;
    object-fit: contain;
} */

.mySwiper .swiper-slide {
    width: 200px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.mySwiper img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.product-wrap {
    max-width: 90%;
    margin: auto;
    padding: 40px 20px;
}

/* Tabs */
.switch-tabs {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 35px;
}

.switch-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding-bottom: 10px;
    position: relative;
}

.switch-btn.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: 0;
    background: #009444;
}

/* Accordion */
.info-item {
    border: 1px solid #e3e3e3;
    margin-bottom: 20px;
}

.info-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    color: #000;
    cursor: pointer;
}

.toggle-icon {
    width: 28px;
    height: 28px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info-body {
    padding: 0 25px 25px;
    color: #555;
}


.pdf-card-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 15px;
}

.pdf-card {
    width: 260px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pdf-icon {
    width: 60px;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    position: relative;
}

.pdf-icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-width: 12px;
    border-style: solid;
    border-color: #fff #fff transparent transparent;
}

.pdf-card h4 {
    font-size: 17px;
    margin-bottom: 18px;
    color: #111;
}

.pdf-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
}

.pdf-btn:hover {
    background: #000;
    color: #fff;
}

.switch-content {
    display: none;
}

.switch-content {
    display: none;
}

.switch-content.active {
    display: block;
}

.info-body {
    display: none;
}

.info-item.active .info-body {
    display: block;
}

.download-banner {
    position: relative;
    background-image: url('../image/download-banner.jpg');
    height: 500px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.download-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
}

.download-banner h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    font-size: 50px;
}

.endeavour-section {
    padding: 80px 0;
}


.endeavour-title {
    font-size: 36px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .endeavour-title {
        margin-bottom: 0px;
    }
}

.endeavour-stats {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-box h3 {
    font-weight: 600;
    color: #4aab3d;
    /* orange */
    margin-bottom: 10px;
}

.stat-box h5 {
    color: #222;
    transition: all 0.3s;
}

.stat-box:hover h5 {
    color: #777 !important;
}

.logo-marquee {
    overflow: hidden;
    width: 100%;
    margin: 25px 0;
}

.logo-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

/* .logo-marquee.reverse .logo-track {
  animation-direction: reverse;
} */

.logo-track img {
    object-fit: contain;
    border: 1px solid black;
    width: 130px;
    height: 70px;
    padding: 10px;
}

/* Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    /* important */
}


.video-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 80%);
    /* adjust darkness here */

}

/* Main header base */
#mainHeader {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    transition: background 0.3s ease;
    z-index: 1050;
}

/* Scroll ke baad */
#mainHeader.scrolled {
    background: white !important;
}

#mainHeader.scrolled .nav-link {
    color: #000 !important;
}

#mainHeader.scrolled .nse-btn {
    color: #000 !important;
}

.nse-btn {
    color: #fff !important;
}

/* MOBILE MENU OPEN STATE */
#mainHeader.menu-open {
    background: rgba(0, 0, 0, 0.98);
}

/* Bootstrap collapse fix */
@media (max-width: 991px) {
    #mainHeader .navbar-collapse {
        background: rgba(0, 0, 0, 0.98);
        padding: 80px 20px 20px;
        /* 👈 top space for header */
        min-height: calc(100vh - 70px);
        /* 👈 header height minus */
    }
}

#mainHeader {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    transition: background 0.3s ease;
    z-index: 1050;
}

#mainHeader.scrolled,
#mainHeader.menu-open {
    background: rgba(0, 0, 0, 0.95);
}

#mainHeader.scrolled .custom-box {
    border: 1px solid #000;
}

/* .navbar-toggler {
    border: 1px solid #fff;
} */

.navbar-toggler-icon {
    filter: invert(1);
}

.logo {
    height: 40px;
    transition: opacity 0.3s ease;
}

/* Default state */
.logo-scroll {
    display: none;
}

/* Scroll hone ke baad */
#mainHeader.scrolled .logo-default {
    display: none;
}

#mainHeader.scrolled .logo-scroll {
    display: inline-block;
}

/* Mobile menu open state */
#mainHeader.menu-open .logo-default {
    display: none;
}

#mainHeader.menu-open .logo-scroll {
    display: inline-block;
}


/* .footer-link-con {
    display: flex;
}

@media (max-width:576px) {
    .footer-link-con {
        display: block;
    }
} */

.site-footer {
    background: #ffffff;
    padding: 80px 60px 20px;
    border-top: 1px solid #e5e5e5;
}

@media (max-width:576px) {
    .site-footer {
        padding: 80px 0px 20px;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 30px !important;
    }
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #0a5d5d;
}

/* Email Form */
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-form input {
    padding: 12px;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    font-size: 15px;
}

.footer-form button {
    width: 120px;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

.footer-form button:hover {
    background: #0a5d5d;
}

/* Bottom Section */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #555;
}

.social-icons-footer a {
    margin-left: 15px;
    font-size: 18px;
    color: #fff;
}

.social-icons-footer a:hover {
    color: #4aab3d;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.logoSwiper {
    width: 100%;
    padding: 20px 0;
}

.logoSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logoSwiper img {
    width: 150px;
    object-fit: contain;
    padding: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 8px !important;
}

#mapwrapper {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0;
    background-color: transparent;
    min-width: 220px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#visnames {
    font-size: 16px;
}

#mapbase svg {
    max-height: 100%;
    width: 100%;
    margin: 0;
    -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

#tryjstip {
    font: 14px/16px Trebuchet MS, Helvetica, Arial, sans-serif;
    display: none;
    max-width: 40%;
    padding: 5px;
    border: 1px solid #404040;
    color: #404040;
    z-index: 1000;
    float: left;
    position: absolute;
    background: rgba(265, 265, 265, 0.9);
    word-break: keep-all;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

#tryjstip p {
    margin: 0 !important;
    color: #404040 !important;
}

#tryjstip img {
    float: left;
    padding: 3px;
    max-width: 100%;
}

@media screen and (max-width: 320px) {
    #mapbase svg {
        height: 270px;
    }
}

@media screen and (max-width: 400px) and (min-width: 321px) {
    #mapbase svg {
        height: 320px;
    }
}

@media screen and (max-width: 480px) and (min-width: 401px) {
    #mapbase svg {
        height: 400px;
    }
}

@media screen and (max-width: 568px) and (min-width: 481px) {
    #mapbase svg {
        height: 480px;
    }
}

@media screen and (max-width: 685px) and (min-width: 569px) {
    #mapbase svg {
        height: 550px;
    }
}

@media screen and (max-width: 767px) and (min-width: 686px) {
    #mapbase svg {
        height: 560px;
    }
}

@media screen and (min-width: 768px) {
    #mapbase svg {
        height: 590px;
    }
}

/* THIS IS TO HIDE AN AREA IF NEEDED
#tryjs2, #tryjsvn2 {
  display: none;
}*/


.milestone-section {
    /* position: relative; */
    display: flex;
    height: 90vh;
    /* background: #000; */
    /* overflow: hidden; */
}

@media (min-width: 1600px) {
    .milestone-section {
        height: 70vh;
    }
}

@media (min-width: 1400px) {
    .milestone-section {
        height: 60vh;
    }
}

/* LEFT TEXT */
/* .milestone-left{
  position: absolute;
  left: 60px;
  top: 120px;
  z-index: 10;
  color: #fff;
  max-width: 300px;
} */

.milestone-left h2 {
    font-size: 42px;
    font-weight: 600;
}

.milestone-left .line {
    display: block;
    width: 50px;
    height: 3px;
    background: #fff;
    margin: 15px 0;
}

/* SLIDER */
.milestoneSwiper {
    width: 100%;
}

.milestone-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.milestone-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background:rgba(0,0,0,0.35); */
    pointer-events: none;
}

/* DIVIDER LINE */
.milestone-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

/* CONTENT */
.milestone-slide .content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}

.milestone-slide h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.milestone-slide h4 {
    font-size: 48px;
    font-weight: 700;
}

.milestone-slide span {
    font-size: 14px;
    opacity: 0.8;
}

.milestone-slide::after {
    pointer-events: none;
}

.navbar .dropdown-toggle {
    display: flex;
    align-items: center;
}

.navbar .dropdown-toggle::after {
    margin-left: 6px;
    margin-top: 2px;
}

.navbar-nav .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
}

.about-we-are {
    font-size: 18.2px;
    line-height: 1;
    text-transform: uppercase;
}

.solar-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scaleX(-1);
}

.solar-wrapper img {
    transform: rotateY(180deg);
}

/* IMAGE */
.solar-img {
    max-width: 290px;
    position: relative;
    z-index: 3;
}


/* RIPPLE BASE */
.ripple {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid #777;
    animation: rippleOut 3s linear infinite;
    z-index: 1;
}

/* DIFFERENT TIMINGS */
.r1 {
    animation-delay: 0s;
}

.r2 {
    animation-delay: 0.5s;
}

.r3 {
    animation-delay: 1s;
}

.r4 {
    animation-delay: 1.5s;
}

.r5 {
    animation-delay: 2s;
}

.r6 {
    animation-delay: 2.5s;
}

/* OUTWARD ANIMATION */
@keyframes rippleOut {
    0% {
        transform: scale(0.2);
        opacity: 0.9;
    }

    70% {
        opacity: 0.4;
    }

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

.milestone {
    background-image: url('../image/wmremove-transformed.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.milestone::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.milestone>.container {
    position: relative;
    z-index: 2;
}

.icon-milestone i {
    font-size: 50px;
}

.milestone-slide .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    color: #fff;
    text-align: center;
    z-index: 2;
    transition: all 5s;
}


.milestone-slide .hover-text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    max-height: 0;
    transition: all 0.6s;
}

.milestone-slide {
    transition: all 0.4s;
}

.milestone-slide:hover .hover-text {
    opacity: 1;
    transform: translateY(0);
    max-height: 120px;
}

.milestone-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.35); */
    transition: 0.4s ease;
}

.milestone-slide:hover::after {
    background: rgba(0, 0, 0, 0.55);
    height: 300px;
}

.team-director-content h3 {
    font-size: 30px !important;
    transition: all 0.3s;
}

.team-director-content:hover h3 {
    color: #777 !important;
}

.social-icons-team {
    display: flex;
    gap: 14px;
}

.social-icons-team .icon {
    width: 38px;
    height: 38px;
    background: #f7f7f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    text-decoration: non3;
    transition: all 0.3s ease;
}

.social-icons-team .icon:hover {
    background: #4aab3d;
    color: #fff;
}

/* 
.timeline-section {
    background: #fff;
}

.timeline-line {
    position: absolute;
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e5e5e5;
}

.timeline-item {
    position: relative;
    text-align: center;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    background: #f58220;
    border-radius: 50%;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.timeline-dot::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    width: 2px;
    height: 40px;
    background: #f58220;
    transform: translateX(-50%);
}

.timeline-card {
    background: #fff;
    height: 150px;
    border-radius: 18px;
    padding: 20px;

    margin-top: 40px;
}

.timeline-img {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.timeline-img img {
    width: 100%;
    max-height: 160px;
    object-fit: contain;
} */

.timeline-section .container {
    position: relative;
}


.timeline-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    margin-top: 50px;
    position: relative;

    height: 200px !important;
}

/* Hover / Active popup */
.timeline-item:hover .timeline-card,
.swiper-slide-active .timeline-card {
    transform: translateY(-20px) scale(1.03);
}

.timeline-dot {
    width: 18px;
    height: 18px;
    background: #2e9d3f;
    border-radius: 50%;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

/* Pulse ring */
.timeline-dot::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: #2e9d3f4a;
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.swiper-slide-active .timeline-dot::before {
    opacity: 1;
}

.timeline-card h5,
.timeline-card p {
    transition: all 0.4s ease;
}

.timeline-item:hover h5,
.timeline-item:hover p {
    transform: translateY(-5px);
}

.timeline-card::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid #fff;
}

.timeline-card::after {
    content: "";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid rgba(0, 0, 0, 0.06);
    z-index: -1;
}

.timeline-line {
    position: absolute;
    top: 8px;
    /* dot ke center ke level par */
    left: 0;
    width: 100%;
    height: 4px;
    background: #1c2b5a;
    /* dark blue like image */
    z-index: 1;
    border-radius: 4px;
}

.project-card-horizontal {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    height: 220px;
    align-items: center;
    display: flex;
}

@media (max-width: 767px) {
    .project-card-horizontal {
        height: auto;
    }
}

.project-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

/* Image */
.project-img {
    position: relative;
    height: 100%;
}

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

/* Badge */
.project-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 2;
}

/* Content */
.project-body {
    padding: 40px;
}

.accent-line {
    width: 50px;
    height: 4px;
    background: #4aab3d;
    display: block;
    border-radius: 20px;
    margin-bottom: 15px;
}

.project-title {
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 20px;
}

.project-subtitle {
    color: #4aab3d;
    font-weight: 600;
    margin-top: 5px;
    font-size: 17px;
}

.project-desc {
    color: #777;
    margin-top: 10px;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 767px) {
    .project-body {
        padding: 25px;
        text-align: center;
    }

    .accent-line {
        margin-left: auto;
        margin-right: auto;
    }
}

.blog-page-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    /* 🔥 MOST IMPORTANT */
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    display: block;
}


/* ===== PRODUCTS HOVER SUBMENU ===== */

.product-dropdown {
    position: relative;
}

/* Main dropdown */
.product-main-menu {
    min-width: 220px;
}

/* Parent item */
.has-submenu {
    position: relative;
}

/* Hide submenu initially */
.product-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 260px;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 999;
}

/* Hover to show submenu */
.has-submenu:hover>.product-submenu {
    display: block;
}

/* Arrow alignment */
.has-submenu>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hover effect */
.product-main-menu .dropdown-item:hover,
.product-submenu .dropdown-item:hover {
    background: #4aab3d;
}

.manufacturing-banner {
    position: relative;
    background-image: url('../image/DSC09552.jpg') !important;
    height: 500px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.manufacturing-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    /* Light black overlay */
}

.manufacturing-banner h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    font-size: 50px;
}

/* HERO SECTION */
.hero-section-manufacturing {
    background: url("../image/NBF09993a.jpg") center/cover no-repeat;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-card-manufacturing {
    background: #fff;
    padding: 25px;
    max-width: 468px;
    border-left: 5px solid #4aab3d;
    border-radius: 10px;
}

.hero-card-manufacturing h2 {
    font-size: 2em;
}

/* BREADCRUMB */
.breadcrumb-wrapper {
    background: #f5dede;
    padding: 8px 0;
}

/* VIDEO SECTION */
.video-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.video-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    cursor: pointer;
}

.manufacturing-info {
    background-color: #FAF9F9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-card {
        max-width: 100%;
    }
}

.infra-section {
    background: #fff;
}

/* Wrapper */
.infra-wrapper {
    min-height: 420px;
}

/* Left Image */
.infra-img img {
    width: 50%;
    border-radius: 12px;
    height: 440px;
}

/* Content Box */
.infra-content {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 40px;
    width: 70%;
    border-radius: 12px;
}

.infra-content-left {
    position: absolute;
    left: 0;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 40px;
    width: 70%;
    border-radius: 12px;
    z-index: 999 !important;
}

.infra-img-right img {
    width: 50%;
    height: 440px;
    margin-left: auto;
    display: block;
    border-radius: 12px;
}


/* Heading */
.infra-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Text */
.infra-content p {
    color: #555;
    line-height: 1.7;
}

.infra-content-left h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Text */
.infra-content-left p {
    color: #555;
    line-height: 1.7;
}



/* RESPONSIVE */
@media (max-width: 991px) {
    .infra-img img {
        width: 100%;
    }

    .infra-img-right img {
        width: 100%;
    }

    .infra-content {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 20px;
    }

    .infra-content-left {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 20px;
    }
}


.project-banner {
    position: relative;
    background-image: url('../image/solar-images (5).jpg');
    height: 500px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.project-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.project-banner-card {
    position: relative;
    z-index: 2;
    background-color: #fff !important;
    width: 550px !important;
}

.arrow-btn-white {
    width: 15px;
    height: 15px;
    background: #4aab3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
    padding: 15px;
}

.amc-section {
    padding: 80px 0;
}

.amc-title {
    margin-bottom: 25px;
}


.key-details {
    padding-left: 40px;
}

.key-title {
    margin-bottom: 25px;
}

.key-list {
    list-style: none;
    padding: 0;
}

.key-list li {
    margin-bottom: 15px;
}

.key-list li span {
    color: #4aab3d;
}

.explore-btn {
    background: #4aab3d;
    color: #fff;
    padding: 14px 26px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 25px;
    text-decoration: none;
}

.explore-btn:hover {
    background: #4aab3d;
    color: #fff;
}

/* Responsive */
@media(max-width:991px) {
    .key-details {
        padding-left: 0;
        margin-top: 40px;
    }
}

.gallery-slider img {
    width: 100%;

    object-fit: cover;
    border-radius: 8px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

.swiper-pagination-bullet-active {
    background: #4CAF50;
}

.banner-common-style {
    position: relative;
    height: 500px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.banner-common-style .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
}

.banner-common-style h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    font-size: 50px;
}

.faq-banner {
    background-image: url('../image/mt-1279-about-header-bg.jpg') !important;
}

.event-banner {
    background-image: url('../image/360_F_935113876_ZuJdvJbR8Vgn1lgNgvYk5kMCstzl4IZD.jpg') !important;
}

.career-banner {
    background-image: url('../image/career.jpg') !important;
    overflow: hidden;
}

.reasons-why-summer {
    background-image: url('../image/ganesh-green-blog-image-5.png') !important;
}

.solar-for-commercial {
    background-image: url('../image/untitled-design-2025-08-04t161040636.png') !important;
}

.what-is-off-grid-solar {
    background-image: url('../image/untitled-design-1.png') !important;
}

.how-ganesh-green {
    background-image: url('../image/ganesh-green-blog-image-1 (1).png') !important;
}

.Why-Switching-to-Solar {
    background-image: url('../image/ganesh-green-blog-image-2 (1).png') !important;
}

.job-section {
    padding: 80px 0;
    background: #ffffff;
}

.job-card {
    border: 1px solid #d9e2ef;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.job-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.job-location {
    color: #6c7a90;
    font-size: 18px;
}

.apply-btn {
    background: #0b5d66;
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.apply-btn:hover {
    background: #094b52;
    color: #fff;
}

/* Bottom slide modal */
.bottom-modal .modal-dialog {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100vw;
    height: 95vh;
    transform: translateY(100%);
    /* 👈 height thodi kam */
    transition: bottom 0.5s ease-in-out;
}

.bottom-modal.show .modal-dialog {
    top: 0;
}

/* Modal design */
.modal-content {
    border-radius: 20px 20px 0 0;
    padding: 10px 40px 20px 40px;
    height: 100%;
}

.custom-close {
    position: absolute;
    right: 25px;
    top: 25px;
    z-index: 10;
}

/* Inputs */
.form-control,
.form-select {
    height: 45px;
    border-radius: 8px;
}

/* Submit button */
.submit-btn {
    background: #000;
    color: #fff;
    height: 55px;
    font-size: 18px;
    border-radius: 8px;
}

.submit-btn:hover {
    background: #222;
}

.blog-order-1 {
    order: 1;
}

.blog-order-2 {
    order: 2;
}


@media (max-width:576px) {
    .blog-order-1 {
        order: 2;
    }

    .blog-order-2 {
        order: 1;
    }
}


#typewriter::after {
    content: "|";
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.typed-cursor {
    font-weight: bold;
    color: #4CAF50;
}


/* Full screen dark background */
#preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #0b1a13, #020617);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Circular solar ring */
.solar-loader {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid #22c55e;
    /* Green theme */
    border-right: 5px solid #4ade80;
    animation: spin 1.2s linear infinite;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
}

/* Moving dot inside ring */
.solar-loader span {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

/* Loading text */
.loading-text {
    margin-top: 20px;
    font-size: 15px;
    color: #9ae6b4;
    letter-spacing: 1px;
    animation: fadeText 1.5s infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeText {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.iso-box {
    width: 360px;
}

.iso-card {
    position: relative;
    background: #f7fbff;
    padding: 50px 30px 40px 100px;
    border-radius: 6px;
    height: 180px;
    display: flex;
    align-items: center;
}

.iso-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #111;
}

/* ISO Circle */
.iso-badge {
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.iso-badge img {
    width: 70px;
}

/* Responsive */
@media (max-width: 767px) {
    .iso-card {
        padding: 60px 25px 30px 25px;
        text-align: center;
    }

    .iso-badge {
        left: 50%;
        top: -45px;
        transform: translateX(-50%);
    }

    .iso-box {
        width: 100%;
    }
}

.custom-grid-swiper {
    width: 100%;
    height: 450px;
    /* FIXED HEIGHT DO */
}

.custom-grid-swiper .swiper-slide {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.light-yellow .category-value {
    background: #e7e7e7;
}

.key-project-card.light-yellow {
    background: #ffff !important;
}

.key-project-card {
    padding: 15px 15px;
    border-radius: 20px;
}

.key-project-card {
    box-shadow: 0px 14px 29px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    min-height: 200px;
}

.category-value {
    display: inline;
    padding: 8px 20px;
    border-radius: 10px;
}

.category-value p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline;
}

.calculated-values {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 5px;
    margin-top: 20px;
    row-gap: 15px;
}

.count-value {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0px;
}

.comissioned-name {
    color: #454545;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0px;
}

.key-project-col {
    height: 100%;
}

.video-box {
  position: relative;
  overflow: hidden;
}

.video-box video {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 50px 80px;
    background: #f8f9fa; /* optional */
}
.cell-banner {
    position: relative;
    background-image: url('../image/cell-banner.png');
    height: 500px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.cell-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
}
/* Section */
.warranty-section{
    padding:60px 0;
}

/* 30 Years Badge */
.warranty-badge{
    display:inline-block;
    background:#1f3c88;
    color:#fff;
    padding:6px 18px;
    font-weight:700;
    font-size:20px;
    letter-spacing:1px;
}

.warranty-text{
    font-size:14px;
    margin-left:10px;
    color:#333;
}

/* Blue Box */
.warranty-box{
    background:#0f2d66;
    color:#fff;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    font-weight:600;
}

.warranty-caption{
    margin-top:10px;
    font-size:14px;
    color:#1a1a1a;
    font-weight:500;
    letter-spacing:0.5px;
}

@media(max-width:768px){
    .warranty-box{
        font-size:32px;
        height:80px;
    }
}