﻿@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
:root{
    --brand-blue:#0F5132;
    --accent:#C89B2C;
    --muted:#6B7280;
    --page-max:1200px;
  }
  body { font-family: "Josefin Sans", sans-serif, "Roboto Mono", monospace;
    background:#F8F9FA; color:#1F2937; }
  a { text-decoration:none; }

  /* NAV */
  

  /* HERO */
  .hero {
    position:relative;
    height:80vh;
    min-height:420px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .hero video, .hero .hero-bg {
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    min-width:100%; min-height:100%;
    width:auto; height:auto;
    object-fit:cover;
    z-index:0;
    filter:brightness(0.45);
  }

  .hero-content {
    position:relative;
    z-index:6;
    color:#fff;
    text-align:center;
    max-width:920px;
    padding:20px;
  }
  .hero-content h1 { font-size:2.6rem; font-weight:800; text-shadow:0 8px 30px rgba(0,0,0,0.45); }
  .custom-card {
    width: 300px; /* adjust as needed */
    margin: 1rem;
  }
  
  .custom-card-img {
    width: 100%;
    height: 250px; /* image height independent of text */
    object-fit: cover;
    display: block;
    border-radius: 0.5rem;
    filter:grayscale(100%) contrast(.95) brightness(.95);
  }
  .custom-card-img:hover{
    filter:grayscale(0%) contrast(1) brightness(1);
  }
  
  .custom-card-text {
    padding: 0.5rem 0;
  }
  
  
  

  /* large white overlapping card */
  .feature-card {
    position:relative;
    z-index:5;
    width:calc(100% - 40px);
    max-width:1200px;
    margin:-80px auto 32px;
    background:#fff;
    border-radius:18px;
    padding:36px;
    display:flex;
    gap:28px;
    align-items:center;
    box-shadow:0 24px 60px rgba(6,20,34,0.12);
  }
  .feature-left { flex:1.1; }
  .feature-left h1 { font-size:2rem; margin-bottom:18px; font-weight:700; }
  .feature-left p { color:var(--muted); line-height:1.6; }
  .btn-cta {
    background:var(--brand-blue);
    color:#fff;
    border-radius:12px;
    padding:10px 18px;
    border:0;
    margin-top:18px;
  }

  .feature-mid { width:300px; border-left:1px solid #eee; border-right:1px solid #eee; padding:0 20px; }
  .feature-mid h5 { margin-bottom:14px; font-weight:700; }
  .feature-mid .list-item { padding:14px 0; border-bottom:1px solid #f3f3f3; cursor:pointer; color:#444; }
  .feature-mid .list-item small { display:block; color:var(--muted); font-size:0.85rem; }

  .feature-right { width:260px; flex-shrink:0; display:flex; justify-content:center; align-items:center; }
  .img-box { width:220px; height:320px; border-radius:14px; overflow:hidden; box-shadow:0 16px 40px rgba(6,20,34,0.08); }
  .img-box img { width:100%; height:100%; object-fit:cover; display:block; filter:grayscale(100%) contrast(.95) brightness(.95); }
  .img-box img:hover{
    filter:grayscale(0%) contrast(1) brightness(1);
  }

  /* Section header styles */
  .section-hero-title {
    background:var(--brand-blue);
    color:#fff;
    padding:50px 0;
    position:relative;
  }
  .section-hero-title .container { position:relative; z-index:2; }

  /* categories carousel */
  .categories .card { border-radius:12px; overflow:hidden; }
  .categories .card img { height:140px; object-fit:cover; }

  .slick-slide { padding:8px; }
  .slick-prev:before, .slick-next:before { color:var(--brand-blue); }

  /* Brands grid (now slick) */
  .brands-grid .brand-item { background:#fff; border-radius:8px; padding:18px; box-shadow:0 10px 24px rgba(6,20,34,0.05); display:flex;align-items:center; justify-content:center; height:100px; }

  /* Feature tiles row */
  .product-tile { background:#fff; border-radius:12px; padding:20px; box-shadow:0 12px 32px rgba(6,20,34,0.06); }
  .tile-title { font-weight:700; margin-bottom:10px; }
  .business-section {
    padding: 60px 0;
    background: #0F5132;
  }
  .business-section-about{
    padding: 60px 0;
  }
  
  .section-title {
    color: white;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 35px;
  }
  .section-title-about {
    color: #0F5132 ;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 35px;
  }
  
  /* Card Style */
  .business-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 500px;
  }
  
  .business-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter:grayscale(100%) contrast(.95) brightness(.95);
  }
  .business-img:hover{
    filter:grayscale(0%) contrast(1) brightness(1);
  }
  
  .business-text {
    padding: 20px;
  }
  
  .business-text h4 {
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  /* Swiper Size */
  .businessSwiper {
    padding-bottom: 45px;
  }
  
 
  .community-section {
    padding: 60px 0;
  }
  
  .community-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  
  .community-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .community-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    filter:grayscale(100%) contrast(.95) brightness(.95);
  }
  .community-img:hover{
    filter:grayscale(0%) contrast(1) brightness(1);
  }
  
  .community-overlay {
    position: absolute;
    left: 25px;
    bottom: 25px;
    color: white;
  }
  
  .community-overlay h3 {
    font-size: 28px;
    font-weight: 700;
  }
  
  .community-btn {
    margin-top: 15px;
    display: inline-block;
    background: #0F5132;
    color: white;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
  }
  
 
  

  .shaping{
    font-size: 5rem; font-weight: 800;
  }
  .shape{
    font-size: 22px; margin-top: 30px; 
  }

  /* yellow leadership band */
  .leadership {
    background:var(--accent);
    color:#0b0b0b;
    padding:48px 0;
    margin-top:40px;
  }
  .leadership-h1{
    font-size: 4rem;
    font-weight: 800;
  }
  .leadership-img{
    filter:grayscale(100%) contrast(.95) brightness(.95);

  }
  .leadership-img:hover{
    filter:grayscale(0%) contrast(1) brightness(1);
  }

  /* -----------------------------------------
   Investor Corner Hero Section
----------------------------------------- */
.investor-hero {
    background: url('https://plus.unsplash.com/premium_photo-1664297849663-e25a3ca42dab?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTIxfHxkZWxpdmVyaWVzfGVufDB8fDB8fHww')
      center/cover no-repeat;
    padding: 100px 0 120px;
    position: relative;
    color: white;
  }
  
  .investor-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5); /* dark overlay */
  }
  
  .investor-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  /* ------------ LEFT TEXT ------------ */
  .small-heading {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
  }
  
  .big-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin: 20px 0 30px;
  }
  
  /* ------------ RIGHT SIDE PRICE ------------ */
  .hero-right .label {
    font-size: 14px;
    opacity: 0.7;
  }
  
  .hero-right .company {
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  .price {
    font-size: 50px;
    font-weight: 700;
    color: #C89B2C;
  }
  
  .price span {
    font-size: 20px;
  }
  
  .movement {
    margin-top: 10px;
  }
  
  .date {
    font-size: 13px;
    margin-top: 8px;
  }
  
  /* ------------ BUTTONS ------------ */
  .blue-btn {
    background: rgba(15,81,50,0.82);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .blue-btn:hover {
    background: #0d4a2e;
  }
  
  /* -----------------------------------------
     Yellow Cards Section
  ----------------------------------------- */
  .investor-cards {
    background: #0f0f0f;
    padding: 70px 0;
  }
  
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .yellow-card {
    background: #C89B2C;
    padding: 40px;
    border-radius: 20px;
  }
  
  .card-label {
    font-size: 14px;
    font-weight: bold;
  }
  
  /* -----------------------------------------
     RESPONSIVE
  ----------------------------------------- */
 

  /* blue global presence band */
  #global-presence {
    background: #0F5132;
    color: #fff;
    padding: 56px 20px;
  }

  .global-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .global-left {
    flex: 0 0 420px;
  }

  .global-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .global-left h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .global-left p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }

  .global-office {
    font-weight: 600;
    margin-bottom: 26px;
    color: #C89B2C;
  }

  .stat-number {
    font-weight: 800;
    color: #C89B2C;
    line-height: 1;
  }

  #stat-1 { font-size: 48px; }
  #stat-2 { font-size: 40px; }
  #stat-3 { font-size: 36px; }

  .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
  }

  .global-map {
    flex: 1;
    min-height: 260px;
    background: transparent;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .global-map svg {
    width: 100%;
    height: auto;
    max-width: 700px;
  }
 /* Buttons */
 #people-careers .btn-primary {
    background:#0F5132;
    border-color:#0F5132;
    border-radius:12px;
    box-shadow:0 8px 24px rgba(15,81,50,0.12);
    margin-bottom: 50px;
  }
  #people-careers .btn-primary:hover { background:#065f22; border-color:#065f22; }

  /* image tiles */
 

  .people-grid .tile img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:grayscale(100%) contrast(.95) brightness(.95);
    transition: filter .45s ease, transform .45s ease;
    transform: scale(1.02);
    border-radius: 14px;
  }

  
  .people-grid .tile:hover img {
    filter:grayscale(0%) contrast(1) brightness(1);
    
  }
  
  /* ===== RESPONSIVE DESIGN ===== */

 

  

  /* people grid -> slick */
  .people-grid .person { border-radius:8px; overflow:hidden; box-shadow:0 10px 30px rgba(6,20,34,0.06); background:#fff; padding:0; }
  .people-grid .person img { width:100%; height:220px; object-fit:cover; display:block; }

  /* news cards (slick) */
  .news-card { background:#fff; border-radius:10px; overflow:hidden; box-shadow:0 12px 28px rgba(6,20,34,0.06); }

  .nm-card {
    background: transparent;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
    cursor: pointer;
    display:flex; flex-direction:column;
  }
  .nm-card:focus { outline: 2px solid rgba(15,81,50,0.18); outline-offset:4px; }

  .nm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(6,20,34,0.12);
  }

  /* Image area */
  .nm-card-img { width:100%; height: 220px; overflow:hidden; background:#eee;  }
  .nm-card-img img { width:100%; height:100%; object-fit:cover; display:block; border-radius:12px 12px 0 0; transition: transform .45s ease; filter:grayscale(100%) contrast(.95) brightness(.95); }
  .nm-card:hover .nm-card-img img:hover { transform: scale(1.05); filter:grayscale(0%) contrast(1) brightness(1);}

  /* Body area (light grey block) */
  .nm-card-body {
    background: #f2f4f6;
    padding: 18px 3rem;
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap: 3rem;
    border-radius:0 0 12px 12px;
  }

  .nm-title {
    font-size:1.05rem;
    font-weight:700;
    color:#111827;
    margin-bottom:14px;
  }

  .btn-know {
    background:#0F5132;
    color:#fff;
    border:0;
    border-radius:10px;
    padding:8px 14px;
    box-shadow:0 8px 20px rgba(15,81,50,0.12);
  }
  .btn-know:hover { background:#0d4a2e; }

  /* Responsive image height */
  
  /* footer */
  footer { background:#0F5132; color:#fff; padding:40px 0; margin-top:40px; }

 
  * {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* ---------------------------------------------------
 NAVBAR STYLING
---------------------------------------------------- */
.navbar {
background: #ffffff;
height: 10vh;
padding: 18px 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.navbar-nav li {
position: relative;
padding: 0 18px;
}

.navbar-nav a {
font-size: 16px;
font-weight: 500;
color: #1F2937;
text-decoration: none;
display: flex;
align-items: center;
gap: 6px;
transition: color .3s ease;
}

.navbar-nav a:hover {
color: #0F5132;
}

.logo{
    width: 60%;
}

/* ---------------------------------------------------
 ADD ARROW BESIDE EACH NAV ITEM
---------------------------------------------------- */
.dropdown-parent > a::after {
content: "\25BC"; /* Down arrow ▾ */
font-size: 10px;
margin-left: 6px;
transition: transform .3s ease;
}

/* Rotate arrow UP when hovered */
.dropdown-parent:hover > a::after {
transform: rotate(180deg);
}

/* Remove arrow for items without dropdown */
.no-dropdown > a::after {
    display: none !important;
  }
  
/* ---------------------------------------------------
 MEGA MENU (Already Integrated + Slide Animation)
---------------------------------------------------- */

.mega-menu {
position: fixed;
top: 60px;
left: 50%;
transform: translateX(-50%);
width: 900px;
max-width: 95%;
background: #fff;
padding: 30px;
display: flex;
gap: 35px;
border-radius: 12px;
box-shadow: 0 6px 22px rgba(0,0,0,0.15);
opacity: 0;
visibility: hidden;
transition: opacity .25s ease, visibility .25s ease;
z-index: 999;
}

/* SLIDE DOWN ANIMATION */
@keyframes slideDown {
0% {
  opacity: 0;
  transform: translate(-50%, -25px);
}
100% {
  opacity: 1;
  transform: translate(-50%, 0);
}
}

/* SHOW ON HOVER */
.dropdown-parent:hover .mega-menu {
opacity: 1;
visibility: visible;
animation: slideDown .35s ease forwards;
}

/* Left Section */
.mega-left {
width: 35%;
}
.mega-right{
    width: 30%;
}
.mega-middle{
    width: 35%;
}
.mega-left h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 10px;
}

.mega-left p {
font-size: 14px;
line-height: 1.4;
color: #555;
}

.btn-more {
margin-top: 10px;
padding: 8px 18px;
background: #0F5132;
color: #fff;
border-radius: 8px;
border: none;
}

/* Middle List */
.mega-middle ul {
list-style: none;
padding: 0;
}

.mega-middle ul li {
padding: 6px 0;
cursor: pointer;
font-size: 15px;
transition: color .2s;
}

.mega-middle ul li:hover {
color: #0F5132;
}

/* Right Image */
.mega-right img {
width: 220px;
height: auto;
border-radius: 8px;
}

.hero-about {
    position:relative;
    height:90vh;
    min-height:420px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .hero-about img, .hero-about .hero-bg {
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    min-width:100%; min-height:100%;
    width:auto; height:auto;
    object-fit:cover;
    z-index:0;
    
  }

  .hero-content {
    position:relative;
    z-index:6;
    color:#fff;
    text-align:center;
    max-width:920px;
    padding:20px;
  }
  .hero-content h1 { font-size:2.6rem; font-weight:800; text-shadow:0 8px 30px rgba(0,0,0,0.45); }

  .about-hero {
    position:relative;
    height:90vh;
    min-height:420px;
    overflow:hidden;
    display:flex;
    justify-content:center;
}
.hero-overlay {
    background: rgba(0,0,0,0.35);
    width: 100%;
    padding: 60px 0;
    color: #fff;
    height: 10%;
}
.hero-title {
     position:relative;
    z-index:6;
    color:#fff;
    max-width:720px;
    margin-top: 2rem;
    padding:20px;
    font-size: 5rem;
    font-weight: 700;

    line-height: 1.1;
}
 /* INTRO SECTION */
 .intro-text p {
    font-size: 17px;
    color: #505050;
    line-height: 1.7;
}

/* STATS BAR */
.stats-bar {
    background: #0F5132;
    color: #fff;
    padding: 28px;
    border-radius: 14px;
}
.stat-block {
    text-align: center;
    padding: 0 10px;
}
.stat-value {
    font-size: 36px;
    font-weight: 800;
}
.stat-label {
    font-size: 14px;
    opacity: 0.8;
}
.divider {
    width: 1px;
    background: rgba(255,255,255,0.3);
    height: 60px;
}

.values-swiper { padding-bottom: 24px; }
  .value-card {
    background:#fff;
    border-radius:16px;
    padding:30px;
    min-height:300px;
    box-shadow: 0 18px 40px rgba(6,20,34,0.08);
    display:flex;
    flex-direction:column;
    gap:18px;
    height: 500px;
  }
  .icon-wrap { width:64px; height:64px; display:flex; align-items:center; justify-content:center; border-radius:12px; background:rgba(43,155,214,0.06); }
  .value-title { color:#0F5132; font-weight:700; margin-top:6px; font-size:1.1rem; }
  .value-list { list-style: none; padding-left:0; margin:0; color:#333; display:block; }
  .value-list li { padding:8px 0; position:relative; padding-left:18px; line-height:1.5; }
  .value-list li::before { content:""; position:absolute; left:0; top:12px; width:6px; height:6px; background:#0F5132; border-radius:50%; }

  /* nav circles */
  .vals-nav {
    border:0;
    width:46px; height:46px; border-radius:50%;
    display:inline-flex; align-items:center; justify-content:center;
    cursor:pointer;
    box-shadow: 0 8px 20px rgba(15,81,50,0.12);
  }
  .prev-circle { background:rgba(255,255,255,0.9); }
  .next-circle { background:#0F5132; color:#fff; }

  /* Swiper slide spacing */
  .swiper-slide { width: auto; padding-right: 18px; }

  .timeline-section { display:flex; gap:32px; align-items:flex-start; padding:48px 20px; background:#f6f7f8; position:relative; }
  .timeline-left {
    width:180px;
    background:#0F5132;
    color:#fff;
    border-radius:8px;
    padding:28px 18px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    flex-shrink:0;
    position:relative;
  }
  .timeline-left .big-year {
    font-size:72px;
    font-weight:800;
    line-height:0.9;
  }
  .timeline-left .years-list { margin-top:6px; display:flex; flex-direction:column; gap:18px; }
  .year-item {
    color: rgba(255,255,255,0.7);
    font-weight:700;
    cursor:pointer;
    transition: color .18s, transform .12s;
    font-size:28px;
  }
  .year-item:hover { color:#C89B2C; transform: translateX(4px); }
  .year-item.active { color:#C89B2C; }

  /* center carousel area */
  .timeline-center { flex:1; min-width: 0; position:relative; }
  .timeline-header { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:12px; }
  .timeline-year-label { color:#0F5132; font-weight:700; font-size:20px; }
  .timeline-swiper .swiper-slide {
    width: 100%;
    
    box-sizing: border-box;
  }

  /* swiper slide card */
  .timeline-card {
    background:#fff;
    border-radius:12px;
    padding:18px;
    box-shadow:0 18px 40px rgba(6,20,34,0.06);
    display:flex;
    flex-direction:column;
    gap:12px;
  }
  .timeline-card img { width:100%; height:320px; object-fit:cover; border-radius:12px; display:block; filter: grayscale(100%) contrast(.98) brightness(.98); }
  .timeline-card img:hover{filter: grayscale(0%) contrast(1) brightness(1);}
  /* prev/next buttons top right */
  .timeline-controls { position:absolute; right:16px; top:8px; display:flex; gap:12px; z-index:10; }
  .ctrl-btn {
    border:0; background:#fff; padding:10px 14px; border-radius:8px; box-shadow: 0 8px 20px rgba(6,20,34,0.08); cursor:pointer;
  }

  /* responsive */
 

  .rnd-bg-section {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    /* Replace this URL with your real background image */
    background-image: url('https://plus.unsplash.com/premium_photo-1661962576440-90b30009fc8b?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTYwfHxkZWxpdmVyaWVzfGVufDB8fDB8fHww');
    background-size: cover;
    background-position: center;
    padding: 60px 0 ;
    color: #fff;
  }

  /* optional dark overlay for readability */
  .rnd-bg-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15,81,50,0.30); /* slight darkening of image */
    z-index: 0;
  }

  /* left overlay card (sits on top of background) */
  .rnd-overlay {
    position: relative;
    z-index: 2;
    max-width: 680px;
    background: linear-gradient(180deg, rgba(15,81,50,0.96), rgba(15,81,50,0.96));
    border-radius: 18px;
    padding: 48px;
    box-shadow: 0 24px 60px rgba(6,20,34,0.28);
    color: #fff;
    backdrop-filter: blur(6px);
  }

  .rnd-overlay h6 { color: rgba(255,255,255,0.9); font-weight:700; letter-spacing:0.6px; font-size:13px; margin-bottom:12px; }
  .rnd-overlay h2 { font-size:36px; line-height:1.05; font-weight:800; margin-bottom:14px; }
  .rnd-overlay .sub { font-style:italic; color: rgba(214,230,246,0.95); font-size:18px; margin-bottom:18px; }
  .rnd-overlay p { color: rgba(233,238,246,0.95); line-height:1.7; margin-bottom:10px; }

  /* Right column is empty because background image fills it */
  .rnd-right { position: relative; z-index:1; }

  /* Make overlay full-width on small screens (stacked) */
  .awards-section {
    padding: 60px 0 80px;
    background: #f7f7f7;
    
  }
  .awards-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
  }
  .award-year {
    font-size: 18px;
    font-weight: 700;
    color: #0F5132;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .award-year img {
    width: 20px;
    opacity: 0.8;
  }
  .award-card {
    background: #fff;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(6,20,34,0.06);
    transition: transform 0.2s;
    height: 400px;
  }
  .award-card:hover {
    transform: translateY(-4px);
  }
  .award-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(.98) brightness(.98);
  }
  .award-img:hover{
    filter: grayscale(0%) contrast(1) brightness(1);
    
  }
  .award-content {
    padding: 18px 10px 22px;
  }
  .award-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .award-text {
    font-size: 15px;
    color: #555;
  }

  .awards-nav-btn {
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0F5132;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    cursor: pointer;
  }
  .awards-nav-btn.prev {
    background: rgba(0,0,0,0.05);
    color: #333;
  }
   /* breadcrumb band */
   .breadcrumb-band { background:#666; color:#fff; padding:14px 0; }
   .breadcrumb-band .container { display:flex; align-items:center; gap:12px; }
   .breadcrumb-band a { color:rgba(255,255,255,0.9); text-decoration:none; }
 
   /* page header */
   .page-hero { padding:48px 0 30px; }
   .page-hero h1 { font-size:64px; font-weight:800; margin:0 0 12px; line-height:1.02; }
   .page-hero p.lead { color:var(--muted); font-size:18px; max-width:920px; margin:0; }
 
   /* divider line */
   .thin-sep { border-top:1px solid #e6e6e6; margin:36px 0; }
 
   /* two-column contact area */
   .contact-grid { display:grid; grid-template-columns: 1fr 520px; gap:36px; align-items:start; }
   
 
   /* left info / form */
   .contact-info { padding-right:10px; }
   .info-block { margin-bottom:26px; }
   .info-title { font-weight:700; font-size:18px; margin-bottom:8px; }
   .info-text { color:var(--muted); font-size:15px; line-height:1.6; }
 
   /* phone / email link styles */
   .contact-link { color:var(--brand-blue); font-weight:600; text-decoration:none; display:inline-block; margin:8px 0; }
   .contact-link:hover { text-decoration:underline; }
   .office-photo {
    width:100%; height:100%; min-height:720px; object-fit:cover; border-radius:12px; display:block;
    box-shadow: 0 20px 40px rgba(6,20,34,0.08);
    filter: grayscale(100%) contrast(.98) brightness(.98);
  }

  .office-photo:hover{
    filter: grayscale(0%) contrast(1) brightness(1);
  }

  .page-wrap { padding: 40px 18px 80px;  margin: 10px auto; }

  /* big card */
  .big-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(19,33,55,0.06);
    padding: 34px;
  }

  .page-title {
    text-align:center;
    font-weight:800;
    font-size:40px;
    margin-bottom: 20px;
  }
  .divider { border-top:1px solid #e6e6e9; margin: 10px 0 10px; }

  /* reasons row */
  .reason-row { display:flex; gap:20px; flex-wrap:wrap; align-items:center; margin-bottom:5px; }
  .reason-row .form-check { margin-bottom:0; }

  /* form layout grid */
  .form-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:18px; }
 

  /* large textarea span both columns */
  .full-span { grid-column: 1 / -1; }

  /* selects and inputs styling */
  .form-control, .form-select {
    border-radius:8px;
    height:56px;
    box-shadow:none;
    border:1px solid #e3e7ea;
    padding:14px 16px;
  }
  .form-control:focus, .form-select:focus { border-color: var(--brand-blue); box-shadow: 0 6px 20px rgba(15,81,50,0.06); outline:none; }

  /* message textarea */
  textarea.form-control { min-height:120px; resize:vertical; padding-top:14px; }

  /* small character counter aligned bottom-right */
  .char-counter { font-size:12px; color:#8b8f95; float:right; margin-top:6px; }

  /* submit button */
  .submit-wrap { text-align:center; margin-top:22px; }
  .btn-submit {
    background: var(--brand-blue);
    color:#fff;
    border:0;
    padding:14px 42px;
    border-radius:12px;
    font-weight:600;
    box-shadow: 0 12px 30px rgba(15,81,50,0.14);
  }
  .btn-submit:disabled { opacity:.6; transform:none; box-shadow:none; }

  /* subtle small labels */
  label.small-label { font-size:14px; font-weight:600; color:#333; display:block; margin-bottom:8px; }

  /* helper text */
  .help-text { color:#6b7280; font-size:13px; }

  /* top checkboxes container border */
  .top-border { border-top:1px solid #e6e6e9; padding-top:18px; margin-top:12px; }

  /* accessible focus */
  .form-control:focus-visible, .form-select:focus-visible, .btn:focus-visible { outline: 3px solid rgba(15,81,50,0.12); outline-offset:2px; }
   
  .faq-band { background:#f3f4f6; padding:56px 0; }
  .faq-wrap { max-width:1100px; margin:0 auto; padding:0 18px; }

  .faq-title {
    text-align:center;
    font-size:46px;
    font-weight:800;
    margin-bottom:18px;
  }

  /* accordion item style */
  .faq-accordion .accordion-item {
    border:0;
    border-top:1px solid #e6e6e9;
    background:transparent;
  }
  .faq-accordion .accordion-button {
    padding:28px 18px;
    background:transparent;
    font-weight:700;
    color:#111827;
    box-shadow:none;
    border-radius:0;
  }
  .faq-accordion .accordion-button::after { display:none; } /* hide default caret */
  .faq-accordion .faq-icon {
    width:44px; height:44px; border-radius:50%;
    display:inline-flex; align-items:center; justify-content:center;
    border:1px solid rgba(43,155,214,0.12); margin-right:14px;
    transition: all .18s;
  }
  .faq-accordion .accordion-button.collapsed .faq-icon { background:transparent; color:#0F5132; transform:none; }
  .faq-accordion .accordion-button:not(.collapsed) .faq-icon {
    background:#0F5132; color:#fff; transform:rotate(180deg);
  }

  .faq-body { padding: 0 18px 28px 62px; color:#4b5563; line-height:1.7; font-size:15px; }

  /* tiny plus/minus visual at right */
  .faq-toggle-symbol { margin-left:auto; width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:#fff; border:1px solid rgba(0,0,0,0.04); color:#0F5132; font-weight:700; box-shadow:0 6px 18px rgba(6,20,34,0.04); }

  /* Careers CTA */
  .careers-cta { padding:56px 18px; max-width:1200px; margin:40px auto; }
  .careers-card { display:grid; grid-template-columns: 1fr 1fr; gap:0; align-items:stretch; border-radius:18px; overflow:hidden; box-shadow:0 20px 60px rgba(6,20,34,0.06); }
  .careers-left { background:#C89B2C; padding:48px 42px; display:flex; flex-direction:column; justify-content:center; gap:18px; }
  .careers-left h6 { color:#0F5132; font-weight:800; letter-spacing:0.6px; margin:0; }
  .careers-left h2 { color:#111827; font-size:42px; line-height:1.02; margin:0; font-weight:800; }
  .careers-left p { color:rgba(0,0,0,0.75); margin:0; }
  .careers-cta-btn { display:inline-block; margin-top:18px; background:#0F5132; color:#fff; padding:12px 20px; border-radius:10px; text-decoration:none; font-weight:700; }
  .careers-right img { width:100%; height:100%; object-fit:cover; display:block; filter:grayscale(100%) contrast(.98) brightness(.98); }
  .careers-right img:hover{filter: grayscale(0%) contrast(1) brightness();}

  
  .navbar-toggler:focus {
    outline: 2px solid rgba(15,81,50,0.18);
    outline-offset:4px;
  }

  .whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 9999;
  
    /* Animation */
    animation: whatsapp-pulse 1.8s infinite;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
  }
  
  .whatsapp-float:hover {
    animation: none;
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    color: #fff;
  }
  
  /* Pulse animation */
  @keyframes whatsapp-pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
      transform: scale(1.12);
      box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }
  

  
  

  /* small screens handling */
  @media (max-width:991px){
    .feature-card { flex-direction:column; padding:24px; gap:18px; margin:-40px auto 24px; }
    .feature-mid { width:100%; border-left:none; border-right:none; padding:10px 0; }
    .feature-right { width:100%; display:flex; justify-content:center; }
    .hero { height:48vh; min-height:320px; }
    .hero-content h1 { font-size:1.6rem; }
    .contact-grid { grid-template-columns: 1fr; } 
    .form-grid { grid-template-columns: 1fr; }
    .careers-card { grid-template-columns: 1fr; }
    .careers-right img { height:320px; }
    .faq-title { font-size:36px; }
    /* Mobile navbar dropdown background */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #0F5132; /* same as navbar */
    padding: 16px;
    border-radius: 0 0 12px 12px;
  }

  .navbar-nav .nav-link {
    padding: 12px 8px;
  }

  .dropdown-menu {
    background: #0F5132;
    border: none;
  }

  
}


    /* ============================================
 MOBILE & TABLET RESPONSIVENESS
============================================ */

/* Disable fixed mega menu on mobile */
.timeline-section { flex-direction:column; padding:32px 12px; }
.timeline-left { width:100%; flex-direction:row; align-items:center; padding:12px; gap:12px; overflow-x:auto; }
.timeline-left .big-year { display:none; }
.year-item { font-size:18px; white-space:nowrap; }
.mega-menu {
position: static;
width: 100%;
transform: none;
box-shadow: none;
padding: 10px 15px;
border-radius: 0;
display: none; /* hidden by default */
opacity: 1;
visibility: visible;
animation: none;
}

.rnd-overlay { max-width:100%; padding:28px; border-radius:12px; }
    .rnd-bg-section { padding:30px 0; }

/* Show simple sub-links list when tapped/clicked */
.dropdown-parent.open .mega-menu {
display: block;
}

/* Style mobile items */
.mega-middle ul,
.mega-left,
.mega-right {
width: 100%;
}

/* Remove multi-column layout */
.mega-menu {
flex-direction: column;
gap: 10px;
}

.mega-right img {
width: 100%;
max-width: 280px;
}

/* Disable hover logic */
.dropdown-parent:hover .mega-menu {
display: none !important;
}

/* Arrow remains but reacts to click */
.dropdown-parent > a::after {
transform: rotate(0deg);
}

.dropdown-parent.open > a::after {
transform: rotate(180deg);
}

.shaping{
    font-size: 3rem; font-weight: 500; color: #0F5132;
  }
  .shape{
    font-size: 16px; margin-top: 10px; 
  }

  .community-wrapper {
    grid-template-columns: 1fr;
  }
  .community-img {
    height: 300px;
  }
  .investor-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .big-title {
    font-size: 45px;
  }

  .price {
    font-size: 40px;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
      #global-presence > div { flex-direction:column; align-items:flex-start; gap:18px; padding:36px 16px; }
      #global-presence div[style*="flex:1"] { width:100%; min-height:180px; background-position: center 30%; }
      #global-presence div[style*="flex:0 0 420px"] { order:2; }
       /* Tablets */
  
    .global-wrapper {
      flex-direction: column;
      text-align: left;
    }
    .global-left {
      width: 100%;
    }
    .global-map {
      width: 100%;
      height: 260px;
    }
    .people-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 120px; gap:16px; }
    .people-grid .tile-large { grid-column: 1 / span 6 !important; grid-row: 1 / span 3 !important; height:auto; }
    .people-grid .tile-portrait { grid-column: 1 / span 6 !important; grid-row: 4 / span 2 !important; }
    .people-grid .tile-med, .people-grid .tile-small { grid-column: 1 / span 6 !important; grid-row:auto !important; }

        .nm-card-img { height: 180px; }
      
        .col-lg-5 { display:none !important; } /* hide right nav on small screens */
        .swiper-slide { padding-right: 12px; }
    
 

   
}
  
  
  
  @media (max-width: 600px) {
    .big-title {
      font-size: 35px;
    }
  
    .cards-grid {
      grid-template-columns: 1fr;
    }
  
    .yellow-card {
      text-align: center;
    }
    
  /* Mobile */
  
    .global-left h2 {
      font-size: 26px;
    }
    .global-left h3 {
      font-size: 18px;
    }
    #stat-1 { font-size: 40px; }
    #stat-2 { font-size: 34px; }
    #stat-3 { font-size: 30px; }

    .global-wrapper {
      gap: 24px;
    }

    .global-map {
      height: 220px;
    }
    .people-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap:12px; }
    #people-careers .container.text-center h3 { font-size:1.1rem; padding:0 12px; }
    
        .nm-card-img { height: 160px; }
      
        #our-values { padding:32px 0; }
        .value-card { min-height:260px; padding:20px; }
        .leadership-h1{
          font-size: 2rem;
          font-weight: 800;
        }
  }
  
  #tr-operational-reach {
  background-color: #0F5132;
  padding: 90px 6%;
  color: #ffffff;
}

.tr-reach-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tr-reach-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: #cfe4ff;
}

.tr-reach-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 15px 0 20px;
}

.tr-reach-description {
  max-width: 520px;
  line-height: 1.7;
  color: #dbe9ff;
  margin-bottom: 30px;
}

.tr-reach-label {
  font-weight: 600;
  margin-bottom: 30px;
}

.tr-reach-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tr-reach-stat {
  background: rgba(255, 255, 255, 0.06);
  padding: 25px;
  border-radius: 14px;
}

.tr-reach-number {
  font-size: 36px;
  color: #C89B2C;
  margin-bottom: 6px;
}

.tr-reach-text {
  font-size: 14px;
  color: #e6f0ff;
}

.tr-reach-map svg {
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .tr-reach-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tr-reach-stats {
    grid-template-columns: 1fr;
  }
}


