/* ===== CUSTOMER LOGO TICKER — preserve aspect ratio, no stretching ===== */
.scrolling-content span img {
    width: 135px !important;
    height: 100px !important;
    object-fit: contain !important;
    padding: 10px;
}

/* ===== FOOTER FULL WIDTH — override bg-section rounding ===== */
footer.main-footer.bg-section {
    max-width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* ===== GLOBAL NAV — white text on all pages (navbar is position:absolute over dark heroes) ===== */
.main-menu ul li a {
    color: #ffffff !important;
    text-shadow: 0 1px 5px rgba(0,0,0,0.55);
}
.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: #a2cb46 !important;
    text-shadow: none;
}
header.main-header .header-sticky {
    background: linear-gradient(to bottom, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.12) 70%, transparent 100%);
    border-bottom: none !important;
}
header.main-header .header-sticky.active {
    background: #1a1a2e !important;
}

/* ===== ORGANISATION STRUCTURE ===== */
.organisation-structure {
    background: #f8f9fa;
    padding: 60px 0;
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

/* LEVELS */
.org-level {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}



.org-box:hover {
    transform: translateY(-5px);
}

.org-box.small {
    width: 220px;
}

.org-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.org-box span {
    color: #00aaff;
    font-size: 14px;
    font-weight: 500;
}


/* =====================
                                                                   TABLET RESPONSIVE
                                                                    ===================== */
@media (max-width: 992px) {
    .org-box {
        width: 230px;
    }

    .org-box.small {
        width: 200px;
    }

    .org-chart {
        gap: 50px;
    }
}

/* =====================
                                                                   MOBILE RESPONSIVE
                                                                ===================== */
@media (max-width: 576px) {

    .org-chart {
        gap: 30px;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .org-box,
    .org-box.small {
        width: 100%;
        max-width: 320px;
    }

    /* REMOVE CONNECTORS ON MOBILE */
    .org-level::before {
        display: none;
    }
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
}

.journey-header p {
    font-size: 18px;
    color: #555;
}

/* Wrapper */
.journey-wrapper {
    max-width: 900px;
    margin: auto;
    position: relative;
    padding-left: 90px;
}

/* Arrow Line */
.journey-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 12px;
    background: linear-gradient(to bottom, #3bb3e6, #00c6ff);
    border-radius: 10px;
}

.journey-line::after {
    content: "";
    position: absolute;
    top: -20px;
    left: -12px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 22px solid #3bb3e6;
}

.journey-line span {
    position: absolute;
    transform: rotate(-90deg);
    top: 50%;
    left: -80px;
    font-weight: 700;
    color: #333;
}

/* Cards */
.journey-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 30px;
    padding: 15px 25px;
    margin-bottom: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.journey-card:hover {
    transform: translateX(8px);
}

/* Year */
.journey-card .year {
    min-width: 70px;
    height: 40px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Colors */
.journey-card.green .year {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.journey-card.yellow .year {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #000;
}

.journey-card.pink .year {
    background: linear-gradient(135deg, #f5b7b1, #eb984e);
    color: #000;
}

.journey-card.gold .year {
    background: linear-gradient(135deg, #f5c542, #e1a900);
}

/* Text */
.journey-card p {
    margin: 0;
    font-weight: 500;
}


@media (max-width: 768px) {
    .journey-wrapper {
        padding-left: 50px;
    }

    .journey-line {
        left: 15px;
        width: 8px;
    }

    .journey-line span {
        display: none;
    }

    .journey-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .journey-card .year {
        height: 34px;
        font-size: 14px;
    }

    .journey-header h2 {
        font-size: 26px;
    }
}

.certification-section {
    background: #f9f9f9;
    padding: 70px 0;
}

.certification-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}



.certification-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.certificate-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.certificate-info {
    flex: 1;
}

.certificate-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1f3c88;
}

.green-text {
    color: #2fa84f;
}

.certificate-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.certificate-image {
    flex: 0 0 260px;
    text-align: center;
}

.certificate-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .certificate-card {
        flex-direction: column;
        text-align: center;
    }

    .certificate-image {
        flex: 0 0 auto;
    }
}

.cert-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cert-img:hover {
    transform: scale(1.03);
}

/* Modal */
.cert-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.cert-modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.cert-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

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

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

/* //// */
.org-structure-section {
    /* background: #f7f1e3; */
    padding: 70px 0;
}

.org-structure-section .container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.org-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px;
}

.org-title span {
    display: block;
    background: #a2cb46;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 30px;
    width: fit-content;
    margin: 10px auto 0;
}

/* Chart Layout */
.org-chart {
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-items: center;
}

.org-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Boxes */
.org-box {
    background: #a2cb46;
    color: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    min-width: 240px;
    text-align: center;
}

.org-box.small {
    min-width: 200px;
}

.org-box strong {
    display: block;
    font-size: 16px;
    color: #000;
}

.org-box span {
    display: block;
    font-size: 14px;
    color: #1e88e5;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .org-box {
        min-width: 100%;
    }
}


/* //////////////////////////// */
.approach-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.approach-box h3 {
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-primary {
    color: #0d6efd;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}

.icon-list i {
    color: #0d6efd;
    font-size: 14px;
}

/* //////////////////// */
.specialization-v2 {
    background: #ffffff;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(25, 135, 84, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #198754;
    flex-shrink: 0;
}

.card:hover {
    transform: translateY(-4px);
    transition: 0.3s ease;
}


/* //////// */
.process-premium .badge {
    background: #eaf4d3 !important;
    color: #5f7d1f !important;
}


.process-stepper .nav-link {
    background: #fff;
    border: 1px solid #eaeaea;
    margin-bottom: 10px;
    text-align: left;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 500;
    transition: all .3s ease;
}

.process-stepper .nav-link:hover {
    background: #f6f6f6;
}

.process-stepper .nav-link.active {
    background: #a2cb46;
    color: #fff !important;
    border-color: #a2cb46;
}

.process-stepper button strong{
    color: #000;
}


.glass-card {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 25px 30px;
    border-radius: 12px;
}

.icon-list {
    padding-left: 0;
    list-style: none;
}

.icon-list li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #545454;
    display: flex;
    align-items: center;
}

.icon-list i {
    color: #a2cb46;
    margin-right: 8px;
}

/* Image Box */
.process-img-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    background: #fff;
}

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

.img-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,.65);
    color: #fff;
    padding: 3px 10px;
    font-size: 13px;
    border-radius: 5px;
}




/* //////////    sustainability   /////////////// */

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

.text-brand {
    color: #A2CB46 !important;
}

.pillar-card {
    background: #F8FBEF;
    border: 1px solid #E1EED1;
    border-radius: 10px;
    padding: 24px;
    min-height: 250px;
    transition: 0.3s;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(162, 203, 70, 0.25);
}

.pillar-icon-bg img {
    width: 45px;
    margin-bottom: 16px;
}

.pillar-title {
    font-size: 18px;
    font-weight: 600;
}

.pillar-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #4a4a4a;
}

.pillar-text {
    font-size: 14px;
    color: #6c6c6c;
}

.styled-list {
    padding-left: 20px;
}

.styled-list li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #555;
    position: relative;
}

.styled-list li::before {
    content: "•";
    color: #A2CB46;
    font-weight: bold;
    position: absolute;
    left: -14px;
}


/* /////////////// Product /////////////// */

.product-section .filter-btn {
    border: none;
    padding: 8px 18px;
    margin: 5px;
    border-radius: 4px;
    background: #E8F2D4;
    color: #4A4A4A;
    font-size: 14px;
    cursor: pointer;
}

.product-section .filter-btn.active,
.product-section .filter-btn:hover {
    background: #A2CB46;
    color: #fff;
}

.product-card {
    display: block;
}

.product-card .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s;
}

.product-card .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(162, 203, 70, 0.3);
}

.product-card .card-title {
    font-size: 16px;
    font-weight: 600;
}

.product-card .card-text {
    font-size: 13px;
}



/* ///// prodcuct about ////// */

.product-intro-section {
    background: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
}

.product-intro-section h2 span {
    color: #a2cb46 !important;
    /* Pragati Green Accent */
}

.product-intro-section .btn-primary {
    background-color: #a2cb46;
    border-color: #a2cb46;
}

.product-intro-section .btn-primary:hover {
    background-color: #8db339;
    border-color: #8db339;
}


/* /////////////vision mission ////////////////// */
.vm-split { padding: 70px 0; background:#F7F5EE; }
.vm-head { text-align:center; margin-bottom:40px; }
.vm-head h2 { font-size:32px; font-weight:700; margin-bottom:10px; }
.vm-head p { color:#666; max-width:600px; margin:0 auto; }

.vm-panels { display:flex; gap:25px; flex-wrap:wrap; }
.vm-panel {
  flex:1;
  padding:35px;
  background:#fff;
  border-radius:14px;
  border:1px solid #e5e7eb;
  position:relative;
  transition:.3s;
}
.vm-panel:hover { transform:translateY(-6px); box-shadow:0 15px 35px rgba(0,0,0,.08); }

.vm-panel.left::after {
  content:"";
  position:absolute;
  right:-15px;
  top:20px;
  width:30px;
  height:30px;
  background:#a2cb46;
  border-radius:50%;
  opacity:.15;
}

.vm-icon {
  width:55px; height:55px;
  border-radius:10px;
  background:#a2cb46;
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; margin-bottom:18px;
}
.vm-panel h3 { font-size:22px; font-weight:700; margin-bottom:12px; }
.vm-panel p { color:#444; margin-bottom:14px; line-height:1.6; }
.vm-panel ul { padding-left:18px; margin:0; }
.vm-panel ul li { color:#333; margin-bottom:8px; }
