:root{
    --primary: #EF6700;
    --secondary: #56BE08;
    --secondaryLight: #5CB85C;
    --tertiary: #e9b220;
    --tertiary-light: #e9b3204f;
    --dark: #000;
    --black: #000;
    --mid-dark: #444444;
    --grey: #666666;
    --light-grey: #F3F3F3;
    --mid-grey: #ced4da;
    --white: #fff;
    --red: #f00;
}

html{
    font-size: 10px;
}

body{
    height: 100%;
    padding: 0;
    margin: 0;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    background: var(--white);
}

ul li, ol li, ol, ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
}

/* ==============================================================
+++++++++++++++++++++++++++++++ CSS +++++++++++++++++++++++++++++
================================================================== */
/* ─── NAVBAR ─── */
    .navbar {
      background: var(--black);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.12);
      padding: 1rem 0;
      position: fixed; top: 0; width: 100%; z-index: 1000;
      transition: all 0.3s;
    }
    .navbar-brand img { height: 44px; }
    .navbar-nav .nav-link {
      font-weight: 600;
      font-size: 1.4rem;
      color: var(--white) !important;
      padding: 0.8rem 1.2rem !important;
      letter-spacing: 0.3px;
      transition: color 0.2s;
    }
    .navbar-nav .nav-link:hover { color: var(--primary) !important; }
    .navbar-nav .nav-item.active > .nav-link { color: var(--primary) !important; }

    /* Mega Dropdown */
    .navbar .dropdown-menu {
      border: none;
      border-top: 3px solid var(--primary);
      border-radius: 0 0 8px 8px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.13);
      padding: 0;
      min-width: 220px;
    }
    .navbar .dropdown-item {
      font-size: 1.4rem;
      font-weight: 600;
      padding: 1rem 2rem;
      color: var(--dark);
      border-bottom: 1px solid #f0f0f0;
      transition: all 0.2s;
    }
    .navbar .dropdown-item:last-child { border-bottom: none; }
    .navbar .dropdown-item:hover {
      background: var(--primary);
      color: var(--dark);
      padding-left: 2.8rem;
    }

    /* About Us Mega Menu */
    .mega-menu {
      width: 600px !important;
      padding: 2rem !important;
      display: none;
      flex-wrap: wrap;
      margin-top: 1.6rem !important;
      gap: 1rem;
    }
    #strengthsMega{width: 400px !important;}
    #strengthsMega .mega-card{width: calc(49% - 0.8rem) !important;}
    .mega-menu.show { display: flex !important; }
    .mega-card {
      width: calc(33.33% - 0.8rem);
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      transition: transform 0.2s;
    }
    .mega-card:hover { transform: translateY(-0.4rem); }
    .mega-card img {
      width: 100%; height: 10rem; object-fit: cover;
      display: block;
    }
    .mega-card .mc-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: var(--primary);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      padding: 0.6rem 0.8rem;
      text-align: center;
    }

        /* Navbar toggler */
    .navbar-toggler { border: 2px solid var(--primary); }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f47b20' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Smooth scroll */
    html { scroll-behavior: smooth; }

/* ========================================= */
    /* ─── BANNER ─── */
    .hero-banner {
      position: relative;
      height: 100vh;
      min-height: 500px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero-video {
      position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.2));
      z-index: 1;
    }
    .hero-content {
      position: absolute; 
      z-index: 2;
      padding-left: 7%;
      bottom: 10%;
    }
    .hero-content h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.15;
      text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    }
    .hero-content h1 span { color: var(--primary); }

  /* ─── ABOUT SECTION ─── */
    .about-section { padding: 8rem 0; background: #F8FAFC; }
    .about-section h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 4.8rem; font-weight: 900;
      color: var(--primary); margin-bottom: 1.8rem;
    }
    .about-section p { font-size: 1.8rem; line-height: 1.8; color: #444; font-weight: 400; }
    .about-section ul { list-style: none; padding: 0; }
    .about-section ul li {
      padding: 0.6rem 0 0.6rem 2.2rem;
      position: relative; font-size: 1.4rem; color: #444;
    }
    .about-section ul li::before {
      content: '▸'; position: absolute; left: 0;
      color: var(--primary); font-size: 1.6rem;
    }
    .about-section strong { color: var(--dark); }
    .region-badge {
      display: inline-block;
      background: var(--primary);
      color: var(--white);
      border-radius: 20px;
      padding: 0.4rem 1.6rem;
      font-size: 1.4rem;
      font-weight: 600;
      margin: 0.4rem 0.4rem 0 0;
    }
    .video-thumb {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      box-shadow: 25px 0px 0px 14px var(--primary);
    }
    .video-thumb img { width: 100%; display: block; }
    .play-btn {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 6.4rem; height: 6.4rem;
      background: var(--primary);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      box-shadow: 0 0 0 10px rgba(244,123,32,0.25);
      transition: transform 0.2s;
    }
    .play-btn:hover { transform: translate(-50%,-50%) scale(1.1); }
    .play-btn i { color: var(--white); font-size: 2.2rem; margin-left: 0.4rem; }

    
    .stats-bar {
      background: var(--primary);
      padding: 2.8rem 0;
    }
    .stat-item { text-align: center; padding: 1rem; }
    .stat-item .stat-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 4.2rem; font-weight: 900;
      color: var(--white); display: block;
    }
    .stat-item .stat-label {
      font-size: 1.8rem; color: rgba(255,255,255,0.87);
      font-weight: 400; margin-top: 0.4rem; display: block;
    }
    .stat-divider {
      border-left: 1px solid rgba(255,255,255,0.35);
      height: 6rem; align-self: center;
    }

    /* ===================== */

    .chairman-card {
      background: var(--primary);
      border-radius: 22px;
      padding: 3.6rem 3.2rem;
      position: relative;
      overflow: hidden;
      color: var(--white);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    }

    .quote-icon {
      margin-bottom: 2rem;
      opacity: 0.7;
    }

    .chairman-card h2 {
      font-weight: 700;
      font-size: 3rem;
      margin-bottom: 1.4rem;
    }

    .chairman-card .quote-text {
      font-style: italic;
      font-size: 1.8rem;
      line-height: 2.7rem;
      margin-bottom: 1rem;
    }

    .chairman-card .attribution {
      font-weight: 700;
      font-size: 1.6rem;
    }

    .chairman-card .know-more {
      color: var(--white);
      font-size: 1.6rem;
      text-decoration: underline;
      margin-top: 1rem;
      display: inline-block;
    }

    .chairman-photo {
      border-radius: 16px;
      width: 100%;
      max-width: 220px;
      object-fit: cover;
      display: block;
      margin: 0 auto;
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    }

    .close-quote {
      position: absolute;
    bottom: 2.4rem;
    right: 30rem;
    opacity: 0.7;
    transform: scaleX(-1);
    }

    .trusted-card {
      background: var(--white);
      border-radius: 22px;
      padding: 3.2rem 2.8rem;
      height: 100%;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    }

    .trusted-card .seal {
      width: 9rem;
      margin-bottom: 1.6rem;
    }

    .trusted-card h3 {
      font-weight: 700;
      font-size: 2.4rem;
      margin-bottom: 1.4rem;
    }

    .trusted-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .trusted-card ul li {
      font-size: 1.6rem;
      padding: 0.4rem 0;
      color: var(--dark);
      font-weight: 500;
    }

    .trusted-card ul li::before {
      content: "· ";
      font-weight: 700;
      color: var(--dark);
    }

    .feature-card {
      background: var(--white);
      border-radius: 22px;
      padding: 3.2rem 2.8rem;
      height: 100%;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    }

    .feature-card:hover {
      transform: translateY(-4px);
      /* box-shadow: 0 12px 32px rgba(0,0,0,0.10); */
    }

    .feature-card .icon-wrap {
      margin-bottom: 2rem;
    }

    .feature-card .icon-wrap img,
    .feature-card .icon-wrap svg {
      width: 7.2rem;
      height: 7.2rem;
      object-fit: contain;
    }

    .feature-card h4 {
      font-weight: 700;
      font-size: 2.4rem;
      margin-bottom: 1.2rem;
    }

    .feature-card p,
    .feature-card ul {
      font-size: 1.6rem;
      color: var(--dark);
      line-height: 1.7;
      font-weight: 500;
    }

    .feature-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .feature-card ul li::before {
      content: "· ";
      font-weight: 700;
      color: var(--dark);
    }

    .fiem-badge {
      width: 8rem;
      height: 8rem;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 4px solid #f5c842;
      margin: 0 auto 2rem;
    }

    .fiem-badge .one {
      font-size: 2rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }

    .fiem-badge .label {
      font-size: 0.55rem;
      color: var(--white);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .handshake-icon {
      font-size: 3rem;
    }

    .seal-wrap svg {
      width: 9rem;
    }

    .section-wrapper {
      padding: 4.8rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ================= */
    .grid-wrapper {
      margin: 0 auto;
      padding: 4.8rem 2rem;
    }

    .grid-cell {
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .grid-cell .data h3{
        font-size: 2.6rem;
        color: var(--white);
        font-weight: 600;
    }

    /* Orange text cards */
    .card-orange {
      background: var(--primary);
      padding: 2.8rem;
      justify-content: space-between;
    }

    .card-orange h3 {
      color: var(--white);
      font-weight: 700;
      font-size: 1.35rem;
      margin: 0;
    }

    /* Image cards */
    .card-image {
      padding: 0;
    }

    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 18px;
    }

    /* Click Here Button */
.grid-cell .data .btn-click {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 20px;
    padding: 0.7rem 1.6rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

    .grid-cell .data .btn-click:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.18);
      color: #1a1a1a;
    }

    .grid-cell .data  .btn-click .hand {
      color: var(--white);
      filter: brightness(3.5);
      font-size: 2rem;
      position: absolute;
      right: 0;
      transform: rotate(-31deg);
      bottom: -13px;
    }

     /* ─── CTA SECTION ─── */
    .cta-section {
      background: linear-gradient(135deg, var(--primary) 0%, #e05c10 100%);
      padding: 8rem 0;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; top: -6rem; right: -6rem;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
    }
    .cta-section h2 {
      font-size: clamp(2rem, 4vw, 5rem);
      font-weight: 900; color: var(--white);
      line-height: 1.2;
    }
    .cta-form .form-control {
      border-radius: 8px; border: none;
      padding: 1.2rem 1.6rem; font-size: 1.4rem;
      margin-bottom: 1.4rem;
    }
    .btn-send {
      background: var(--dark);
      color: var(--white);
      border: none;
      border-radius: 30px;
      padding: 1.3rem 3.6rem;
      font-weight: 700;
      transition: background 0.2s;
      font-size: 1.4rem;
    }
    .btn-send:hover { background: var(--dark); }

    /* ─── FOOTER ─── */
    .footer {
      background: #111;
      padding: 6rem 0 0;
    }
    .footer-logo img { height: 4.4rem; }
    .footer-desc {
      font-size: 1.4rem;
      color: #aaa;
      line-height: 1.8;
      margin-top: 1.4rem;
    }
    .footer h6 {
      font-weight: 800; font-size: 1.4rem;
      color: var(--primary);
      margin-bottom: 1.8rem;
      letter-spacing: 0.1rem;
      text-transform: uppercase;
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 0.9rem; }
    .footer-links a {
      color: #aaa; font-size: 1.4rem;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--primary); }
    .social-btn {
      width: 3.8rem; height: 3.8rem;
      border-radius: 50%;
      background: #2a2a2a;
      display: inline-flex; align-items: center; justify-content: center;
      color: #aaa; margin-right: 0.8rem;
      font-size: 1.5rem;
      transition: background 0.2s, color 0.2s;
      text-decoration: none;
    }
    .social-btn:hover { background: var(--primary); color: var(--white); }
    .footer-bottom {
      border-top: 1px solid #2a2a2a;
      margin-top: 5rem;
      padding: 1.8rem 0;
      text-align: center;
    }
    .footer-bottom p {
      font-size: 1.3rem; color: #666; margin: 0;
    }
    .footer-bottom a { color: #888; text-decoration: none; font-size: 1.2rem; }
    .footer-bottom a:hover { color: var(--primary); }

    /* Inner page css start */
    .banner img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    }

    .banner.csr img {
        width: 100%;
        height: 620px;
        margin-top: 6rem;
    }

    /* Overview Page Css */

    .overviewSec1 .main-heading {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--primary);
}

.overviewSec1 p {
    color: #555;
    line-height: 2.7rem;
    font-weight: 400;
}

.overviewSec1 p strong{
    color: var(--dark);
}

.overviewSec1 .info-card {
    background: #f7c9a6;
    border-radius: 20px;
    padding: 4rem 2rem;
}

.overviewSec1 .info-card h2 {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--primary);
}

.overviewSec1 .info-card p {
    margin: 0;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.4rem;
}

.overviewSec1 .object-fit-cover {
    object-fit: cover;
    height: 240px;
    border-radius: 20px;
}

.overviewSec2 .main-heading {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--primary);
}

.overviewSec2 p {
    color: #555;
    line-height: 2.7rem;
    font-weight: 400;
    font-size: 1.8rem;
}

.overviewSec2 .region-card {
    background: var(--white);
    border: 1px solid #EDEDED;
    border-radius: 20px;
    padding: 2.5rem;
}

.overviewSec2 .region-card h3 {
    font-weight: 700;
    font-size: 2.8rem;
}

.overviewSec2 .units {
    color: #999;
    font-size: 1.4rem;
    font-weight: 600;
}

.overviewSec2 .tags span {
    display: inline-block;
    background: #e9edf2;
    color: #45556C;
    padding: 0.8rem 1.4rem;
    border-radius: 20px;
    margin: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.overviewSec2 .bottom-box {
    background: #eef2f6;
    padding: 2rem;
    border-radius: 16px;
}

.overviewSec2 .icon {
    background: var(--white);
    border-radius: 15px;
    padding: 1rem 1rem;
    margin-right: 1rem;
    height: 5rem;
    line-height: 3rem;
    font-size: 1.5rem;
    box-shadow: 0 0 4px 1px #00000012;
}

/* ===================== */
.overviewSec3 .main-heading {
    font-size: 3rem;        
    font-weight: 700;
    color: var(--primary);
}

.overviewSec3 p {
    font-weight: 400;
    font-size: 1.8rem;
    color: #555;
    line-height: 2.7rem;
}

.overviewSec3 .mini-card {
    background: #f2f3f5;
    border-radius: 1rem;
    padding: 1.2rem;
    height: 100%;
}

.overviewSec3 .mini-card p{
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.8rem;
    color: var(--dark);
}

.overviewSec3 .mini-card .icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overviewSec3 .quote-box {
    background: #f4e7db;
    border-left: 0.25rem solid #f26522;
    padding: 1.2rem;
    border-radius: 0.8rem;
}

.overviewSec3 .quote-text {
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.overviewSec3 .quote-box small{
    font-size: 1.5rem;
    font-weight: 300;
}

.overviewSec3 .object-fit-cover {
    object-fit: cover;
    height: 100%;
    box-shadow: 0 0 5px 1px #00000045;
    border-radius: 20px;
}

/* =================================== */
.overviewSec4 {
    background: #0d0d0d;
    color: var(--white);
}

.overviewSec4 .main-heading {
    font-size: 4rem;        
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.overviewSec4 p {
    font-size: 1.8rem;
    color: #bbb;
    line-height: 2.7rem;
}

.overviewSec4 .list-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overviewSec4 .list-item {
    background: #1a1a1a;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: 0.3s;
    font-size: 1.5rem;
}

.overviewSec4 .num {
    background: var(--primary);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.overviewSec4 .list-item:hover {
    background: #222;
}

.overviewSec4 .object-fit-cover {
    object-fit: cover;
    border-radius: 20px;
}

/* ====================== */
.overviewSec5 .main-heading {
    font-size: 4.8rem;       
    font-weight: 700;
    color: var(--primary);
}

.overviewSec5 p {
    font-size: 1.8rem;
    color: #555;
    line-height: 2.7rem;
    font-weight: 400;
}

.overviewSec5 .cert-card {
    background: #f5f6f8;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
}

.overviewSec5 .cert-card h6 {
    font-weight: 700;
    color: var(--primary);
    margin-top: 2rem;
    font-size: 1.8rem;
}

.overviewSec5 .cert-card p {
    margin: 0;
    font-size: 1.4rem;
    color: #666;
}

.overviewSec5 .icon {
    position: relative;
    width: 2rem;
    height: 2rem;
    background: var(--secondary);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 5;
    margin-left: 1rem;
    margin-top: 1rem;
}

.overviewSec5 .icon:after{
    content: '';
    position: absolute;
    width: 4rem;
    height: 4rem;
    background: var(--secondary);
    left: -1rem;
    top: -1rem;
    border-radius: 20px;
    opacity: 0.2;
    z-index: -1;
}

.overviewSec5 .testing-box {
    background: var(--white);
    border: 1px solid #ccc;
    padding: 2rem;
    border-radius: 20px;
}

.overviewSec5 .testing-box h5 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.overviewSec5 .badge-green {
    background: var(--secondary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
}

/* ================================= */

.overviewSec6 .main-heading {
    font-size: 4.8rem;    
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.overviewSec6 p {
    font-size: 1.6rem;
    color: #555;
}

.overviewSec6 .country-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
}

.overviewSec6 .country-item b {
    font-size: 1.6rem;
}

.overviewSec6 .country-item p {
    font-size: 1.3rem;
    margin: 0.5rem 0 0;
    color: #777;
}

.overviewSec6 .badge {
    background: #ffe5d3;
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

.overviewSec6 .big-card {
    background: #f7c9a6;
    border-radius: 2rem;
    padding: 3rem;
    height: 100%;
}

.overviewSec6 .big-card h2 {
    font-size: 4rem;
    color: var(--primary);
    font-weight: 700;
}

.overviewSec6 .big-card p {
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 700;
}

.overviewSec6 .big-card small {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 700;
}

.overviewSec6 .object-fit-cover {
    object-fit: cover;
    border-radius: 20px;
}

/* Divider */
.center-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.center-divider .line {
    width: 6rem;            
    height: 0.2rem;         
    background: #dcdcdc;
    display: block;
}

.center-divider .dot {
    width: 1rem;             
    height: 1rem;
    background: var(--primary);
    border-radius: 50%;
}

.center-text {
    text-align: center;
    font-size: 2rem;
    font-style: italic;
    color: #333;
    max-width: 80rem;
    margin: 0 auto;
    line-height: 2.7rem;
}

/* ==================== */
.overviewSec7 .main-heading {
    font-size: 4rem;      
    font-weight: 700;
    color: var(--primary);
    line-height: 2.7rem;
}

/* ========================== */

.chairmanSec .main-heading {
    font-size: 4rem; 
    font-weight: 700;
    color: var(--primary);
}

.chairmanSec p {
    font-size: 1.8rem; 
    color: #333;
    line-height: 2.7rem;
}

.chairmanSec .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 1.6rem;
}

.chairmanSec .image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.chairmanSec .name-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 2rem;
}

.chairmanSec .name-strip h5 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.chairmanSec .name-strip p {
    font-size: 1.4rem;
    margin: 0;
    color: var(--white);
}

/* ========================= */

.visionSec1 .main-heading {
    font-size: 4rem; 
    font-weight: 700;
    color: var(--primary);
    line-height: 5rem;
}

.visionSec1 .vision-icon {
   width: 20rem;
}

.visionSec1 .vision-text {
    border-left: 0.3rem solid var(--primary);
    padding-left: 1.5rem;
}

.visionSec1 .vision-text p {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 1rem;
}

.visionSec1 .image-wrapper {
    position: relative;
    display: inline-block;
}

.visionSec1 .bg-shape {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 2rem;
    z-index: 0;
}

.visionSec1 .main-img {
    position: relative;
    border-radius: 2rem;
    z-index: 1;
}

/* ====================== */

.missionSec1 .main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.missionSec1 .mission-icon {
    width: 7rem;
    margin-right: 2rem;
}

.missionSec1 .mission-item {
    display: flex;
    gap: 1.5rem;
}

.missionSec1 .num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 3rem;
}

.missionSec1 .content {
    border-left: 0.3rem solid var(--primary);
    padding-left: 1.5rem;
}

.missionSec1 .content p {
    font-size: 1.8rem;
    color: #333;
    line-height: 2.7rem;
    margin: 0;
}

.valuesSec1 .main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.valuesSec1 .values-icon {
    width: 8rem;
    margin-right: 2rem;
}


.valuesSec1 .values-row {
    display: flex;
    width: 100%;
}

.valuesSec1 .value-box {
    flex: 1;
    padding: 4rem 3rem;
    background: #f5f6f8;
    border: 0.1rem solid #e5e5e5;
}

.valuesSec1 .value-box:first-child {
    border-left: none;
}
.valuesSec1 .value-box:last-child {
    border-right: none;
}

.valuesSec1 .num {
    background: #ffe5d3;
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.valuesSec1 h4 {
    font-size: 2rem;
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.valuesSec1 h4 span {
    color: var(--primary);
}

/* ================= */

.boardSec1 .main-heading {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--primary);
}

.boardSec1 .director-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    background: #ddd;
    height: 100%;
    transition: 0.3s;
}

.boardSec1 .director-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s ease all;
}

.boardSec1 .director-card:hover img {
    transform: scale(1.05);
}

.boardSec1 .card-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(40, 40, 50, 0.85);
    backdrop-filter: blur(0.5rem);
    border-radius: 1.2rem;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.boardSec1 .card-overlay h6 {
    font-size: 1.4rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
}

.boardSec1 .card-overlay p {
    font-size: 1.2rem;
    color: #bbb;
    margin: 0;
}

.boardSec1 .open-btn {
    background: var(--secondary);
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    transition: 0.3s;
}

.boardSec1 .open-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.director-custom-modal .modal-content {
    border-radius: 2rem;
    padding: 2.5rem;
    border: none;
    border-bottom: 15px solid var(--primary) !important;
}

.director-custom-modal .modal-body {
    padding: 0;
}

.director-custom-modal img {
    border-radius: 1.5rem;
    background: #dadada;
}

.director-custom-modal h3 {
    font-size: 2.4rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2rem;
}

.director-custom-modal p {
    font-size: 1.8rem;
    color: #444;
    line-height: 2.7rem;
}

/* ================== */
.corporateSec1 h1{
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.corporateSec1 p{
    font-size: 1.8rem;
}

/* ================ */
.corporateSec2 h1{
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.corporateSec2 p{
    font-size: 1.8rem;
}

/* ================ */

.rainwaterSec1 {
    overflow: hidden;
}

.rainwaterSec1 .left-box {
    background: var(--primary);
    padding: 6rem 4rem;
    color: var(--white);
}

.rainwaterSec1 .content {
    max-width: 45rem;
}

.rainwaterSec1 h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 3.2rem;
}

.rainwaterSec1 p {
    font-size: 1.8rem;
    line-height: 2.9rem;
    font-weight: 400;
    margin: 0;
}

.rainwaterSec1 .img-box {
    height: 100%;
}

.rainwaterSec1 .img-box img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* ==================== */

.impactSec1 .main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.impactSec1 .left-box {
    background: var(--primary);
    color: var(--white);
    border-radius: 2rem;
    padding: 4rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.impactSec1 .left-box p {
    font-size: 3.3rem;
    line-height: 4.5rem;
    font-weight: 400;
    margin: 0;
}

.impactSec1 .right-box {
    background: #f5f6f8;
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    font-size: 2.4rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 3.4rem;
    border: 1px solid #ccc;
}

.impactSec1 .right-box b {
    font-weight: 700;
}

/* =============== */

.awardsSec1 .main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.awardsSec1 .sub-text {
    font-size: 1.6rem;
    color: #666;
    margin-top: 1rem;
}


.awardsSec1 .award-card {
    height: 100%;
    text-align: center;
    transition: 0.3s;
    border: 1px solid var(--dark);
}


.awardsSec1 img {
    width: 100%;
    object-fit: contain;
    display: block;
}

.awardsSec1 .caption {
    border-top: 1px solid var(--dark);
    padding: 1rem;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

/* ==================== */
.strengthSec1 .main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.strengthSec1 p{
    font-size: 1.8rem;
    font-weight: 400;
}

/* =============== */
.strengthSec2 .main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.strengthSec2 p{
    font-size: 1.8rem;
    font-weight: 400;
}

.strengthSec2 ul{
    text-align: center;
}
.strengthSec2 ul li {
    width: 23.9%;
    display: inline-block;
    margin: 0.5rem;
    margin-bottom: 1rem;
}
/* =================== */

.protoSec1 .main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.protoSec1 .content-box {
    background: #F8FAFC;
    padding: 2.5rem;
    border-radius: 1rem;
    height: 100%;
}

.protoSec1 h4 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.protoSec1 ul {
    padding-left: 1.5rem;
    margin: 0;
    margin-bottom: 5rem;
}

.protoSec1 li {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.8rem;
    position: relative;
    list-style: disc;
}

.protoSec1 li::marker {
    color: var(--primary);
}

.protoSec1 .img-card {
    background: #e9e9e9;
    border-radius: 1rem;
    padding: 1rem;
    height: 100%;
}

.protoSec1 .img-card img {
    width: 100%;
    height: 18rem;
    object-fit: contain;
}

.protoSec1 .img-card.large img {
    height: 28rem;
    object-fit: cover;
}

/* ====================== */

.conceptSec1 {
    background: var(--black);
    color: var(--white);
}

/* Heading */
.conceptSec1 .main-heading {
    font-size: 4.5rem;
    color: var(--primary);
    font-weight: 700;
}

.conceptSec1 .sub-text {
    font-size: 1.5rem;
    max-width: 80rem;
    margin: 1rem auto;
    color: #ccc;
}

/* Tabs */
.conceptSec1 .tab-btn {
    padding: 1rem 2rem;
    border-radius: 3rem;
    border: 0.2rem solid var(--secondary);
    background: transparent;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 1rem;
}

.conceptSec1 .tab-btn.active {
    background: var(--secondary);
    color: var(--white);
    font-weight: 700;
}

/* Content */
.conceptSec1 .tab-content {
    display: none;
    margin-top: 3rem;
}

.conceptSec1 .tab-content.active {
    display: block;
}

/* Slider */
.conceptSec1 .slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem;
    scroll-behavior: smooth;
}

.conceptSec1 .slider::-webkit-scrollbar {
    display: none;
}

/* Slide */
.conceptSec1 .slide {
    min-width: 40rem;
    background: #111;
    border-radius: 1.5rem;
    border: 0.1rem solid var(--primary);
    overflow: hidden;
}

.conceptSec1 .slide img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
}

.conceptSec1 .slide p {
    color: var(--primary);
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.conceptSec1 .swiper-button-next, 
.conceptSec1 .swiper-button-prev{
    color: var(--primary) !important;
    display: none;
}

/* .conceptSec1  .swiper {
    width: 100%;
    overflow: hidden;
}

.conceptSec1  .swiper-wrapper {
    align-items: stretch;
}

.conceptSec1 .swiper-slide {
    height: auto;
}

.conceptSec1 .slide {
    width: 100%;
    box-sizing: border-box;
} */


/* Heading */
.moldingSec1 .main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

/* Image boxes */
.moldingSec1 .big-img-box,
.moldingSec1 .small-img-box {
    position: relative;
    border: 0.1rem solid var(--dark);
}

.moldingSec1 img {
    width: 100%;
    display: block;
}

/* Caption */
.moldingSec1 .img-caption {
    /* background: #f5f5f5; */
    text-align: center;
    padding: 1rem;
    font-size: 1.4rem;
    border-top: 0.1rem solid var(--dark);
    font-weight: 700;
}

.moldingSec1 .img-caption span {
    color: var(--primary);
    font-weight: 700;
}

/* Product cards */
.moldingSec1 .product-card {
    border: 0.1rem solid #ddd;
    text-align: center;
    /* padding: 1.5rem; */
    /* height: 100%; */
}

.moldingSec1 .product-card img {
    max-width: 100%;
    height: 20rem;
    object-fit: contain;
}

.moldingSec1 .product-card p {
    margin-top: 1rem;
    font-size: 1.4rem;
    text-align: center;
    padding: 1rem;
    border-top: 0.1rem solid #ddd;
    margin-bottom: 0;
    color: var(--black);
    font-weight: 700;
}

/* Big card */
.moldingSec1 .product-card.big {
    height: 100% !important;
}

.moldingSec1 .product-card.big img {
    height: 92% !important;
}

.moldingSec1 .product-card.big p{
    margin-top: 0px !important;
}

/* =================== */

.integratedSec1 {
    background: #fff;
}

/* Heading */
.integratedSec1 .main-heading {
    font-size: 3.5rem;
    font-weight: 700;
}

.integratedSec1 .sub-heading {
    font-size: 1.4rem;
    color: #333;
    margin-top: 0.5rem;
}

/* Image box */
.integratedSec1 .img-box {
    position: relative;
    border: 0.1rem solid #ddd;
    overflow: hidden;
    background: #fff;
}

.integratedSec1 .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Heights control */
.integratedSec1 .img-box.big {
    height: 100%;
}

.integratedSec1 .img-box.full {
    height: 100%;
}

.integratedSec1 .img-box.small {
    height: 100%;
}

/* Caption */
.integratedSec1 .caption {
    background: var(--white);
    padding: 0.8rem;
    font-size: 1.4rem;
    color: var(--black);
    font-weight: 700;
    border: 0.1rem solid var(--black);
}

.integratedSec1 .img-box .caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

/* ========= */

/* Heading */
.smtSec1 .main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

/* Top image */
.smtSec1 .top-img img {
    width: 100%;
    height: auto;
    border: 0.1rem solid #ddd;
}

/* Card */
.smtSec1 .card-box {
    border: 0.1rem solid var(--black);
    background: var(--white);
}

.smtSec1 .card-box img {
    width: 100%;
    height: 100%;
    max-height: 40.5rem;
    object-fit: cover;
}

.smtSec1 .card-box p {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    color: var(--black);
    font-weight: 600;
    font-size: 1.4rem;
    margin: 0;
}

/* Swiper */
.smtSec1 .swiper {
    padding-bottom: 3rem;
}

.smtSec1 .swiper-button-next,
.smtSec1 .swiper-button-prev {
    color: var(--primary);
    display: none;
}

.projector-lamp .main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

/* ==================== */

.electronicsSec1 .main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.electronicsSec1 .sub-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1rem;
}

.electronicsSec1 .desc {
    font-size: 1.5rem;
    margin-top: 1rem;
    color: #333;
}

.electronicsSec1 .circle-box img {
    width: 20rem;
    height: 20rem;
    object-fit: contain;
}

.electronicsSec1 .card-box {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
}

.electronicsSec1 .card-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.electronicsSec1 .card-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.electronicsSec1 .overlay-text {
    position: absolute;
    bottom: 1.5rem;
    right: 0;
    left: 0;
    color: var(--primary);
    font-size: 2rem;
    font-weight: 600;
    z-index: 2;
}

/* ================ */

/* Heading */
.photoSec1 .main-heading {
    font-size: 3rem;
    font-weight: 700;
}

.photoSec1 .sub-text {
    font-size: 1.5rem;
    color: #333;
}

/* Image box */
.photoSec1 .img-box {
    border: 0.1rem solid #ddd;
    background: var(--white);
}

.photoSec1 .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Heights */
.photoSec1 .img-box.big {
    height: 34.1rem;
}

.photoSec1 .img-box.small-top {
    height: 18rem;
}

.photoSec1 .img-box.small {
    height: 15rem;
}

/* Caption */
.photoSec1 .caption {
    background: var(--white);
    padding: 0.8rem;
    font-size: 1.4rem;
    border: 0.1rem solid #000000;
    color: var(--black);
    font-weight: 700;
}

/* Bottom strip */
.photoSec1 .bottom-strip {
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem;
    font-size: 1.4rem;
    margin-top: 2rem;
}

/* ============ */

.envSec1 .main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.envSec1 .card-box {
    border: 0.1rem solid #ddd;
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.envSec1 .card-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.envSec1 .card-box p {
    margin: 0;
    padding: 1rem;
    text-align: center;
    background: var(--white);
    font-size: 1.4rem;
    border: 0.1rem solid var(--black);
    font-weight: 700;
}

/* ======================= */

.productSec1 .main-heading {
    color: var(--primary);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.productSec1 .subHeading{
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--black);
}

.productSec1 ul.product{
     display: flex;
  flex-wrap: wrap;
}

.productSec1 ul.product li {
    display: inline-block;
    text-align: center;
    margin: 0;
    padding: 0;
    white-space: normal;
    vertical-align: top;
}

.productSec1 ul.product.five li {
    width: 20%;
}

ul.product.three li {
    width: 33.3%;
}

.productSec1 ul.product .box {
    background: var(--white);
    border: 0.1rem solid #ddd;
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

ul.product.three li .box{
    height: 30rem;
}

ul.product.three li .box img{
    max-height: 15rem
}

/* Image */
.productSec1 ul.product .box img {
    max-width: 90%;
    max-height: 10rem;
    object-fit: contain;
    transition: 0.3s;
}

/* ========================= */
.customerSec .main-heading {
    color: var(--primary);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.customerSec .subHeading{
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--black);
}

.customerSec ul.customer{
     display: flex;
  flex-wrap: wrap;
}

.customerSec ul.customer li {
    display: inline-block;
    text-align: center;
    margin: 0;
    padding: 0;
    white-space: normal;
    vertical-align: top;
}

.customerSec ul.customer.five li {
    width: 20%;
}

.customerSec ul.customer .box {
    background: var(--white);
    border: 0.1rem solid #ddd;
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.customerSec ul.customer .box img {
    max-width: 90%;
    max-height: 10rem;
    object-fit: contain;
    transition: 0.3s;
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    margin-top: 4rem;
}

.globalCustomerSec1 .main-heading {
    color: var(--primary);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.globalCustomerSec1 .subHeading{
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--black);
}

.globalCustomerSec1 .desc {
    max-width: 70rem;
    margin: auto;
    font-size: 1.8rem;
    color: #444;
    line-height: 2.9rem;
}

/* ========================= */

.investorSec1 .inv-block {
    padding: 3rem 0;
    border-bottom: 0.1rem solid var(--primary);
}

.investorSec1 .inv-count {
    font-size: 1.4rem;
    color: var(--black);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.investorSec1 .inv-title {
    color: var(--primary);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.investorSec1 .inv-desc {
    font-size: 1.8rem;
    color: #555;
    max-width: 75rem;
    line-height: 2.7rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.investorSec1 .inv-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.investorSec1 .btn-contact {
    border-radius: 2rem;
    border: 0.15rem solid var(--secondary);
    color: var(--black) !important;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
    background: transparent;
    transition: 0.3s;
}

.investorSec1 .btn-contact:hover {
    background: var(--secondary);
    color: var(--white) !important;
    text-decoration: none !important;
}

.investorSec1 .btn-contact.active {
    background: var(--secondary);
    color: var(--white) !important;
}

/* =================== */

/* Description */
.investorTableSec1 .top-desc {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 1.5rem;
}

/* BUTTONS */
.investorTableSec1 .inv-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* TABLE TOP */
.investorTableSec1 .table {
  margin-bottom: 0;
  border: 1px solid #dcdcdc;
}

.investorTableSec1 thead th {
  background-color: var(--secondaryLight);
  color: var(--white);
  font-weight: 600;
  padding: 1.4rem;
  font-size: 1.4rem;
  border: 1px solid var(--secondaryLight);
  position: relative;
}

.investorTableSec1 tbody td {
  padding: 1.4rem;
  border: 1px solid #DDDDDD; /* full grid lines */
  background-color: var(--white);
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
}

/* PDF link */
.investorTableSec1 a {
  color: var(--secondaryLight) !important;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.investorTableSec1 a i {
  color: #e74c3c;
  margin-right: 6px;
  font-size: 16px;
}

/* Optional: header sort arrows jaisa UI */
.investorTableSec1 thead th::after {
  content: "\f0dc";
  font-family: 'FontAwesome';
  font-size: 1.4rem;
  position: absolute;
  right: 10px;
  opacity: 0.9;
  font-weight: 300;
}

/* ================== */

.custom-breadcrumb2 {
  font-size: 1.6rem;
  font-weight: 400 !important;
  color: #999 !important;
}

.custom-breadcrumb2 a {
  color: #999 !important;
  text-decoration: none !important;
}

.custom-breadcrumb2 span {
  margin: 0 10px;
}

.custom-breadcrumb2 .active {
  color: var(--dark) !important;
  font-weight: 500 !important;
}
/* ===================== */

.investorTableSec3 .top-desc {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.investorTableSec3 .inv-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.investorTableSec3 .btn-contact {
    border-radius: 2rem;
    border: 0.15rem solid var(--secondary);
    color: var(--black) !important;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
    background: transparent;
    transition: 0.3s;
}

.investorTableSec3 .btn-contact:hover {
    background: var(--secondary);
    color: var(--white) !important;
    text-decoration: none !important;
}

.investorTableSec3 .btn-contact.active {
    background: var(--secondary);
    color: var(--white) !important;
}

/* --------------- */

.report-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.report-list li {
    width: calc(20% - 1.6rem);
    margin-bottom: 2rem;
}

.report-card {
    border: 0.1rem solid var(--dark);
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.img-box {
    border-bottom: 0.1rem solid var(--black);
}

.report-card img {
    width: 100%;
    height: 28rem;
    object-fit: cover;
}

.report-card .content {
    padding: 1rem;
}

.report-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.report-card .download-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: underline;
    font-size: 1.2rem;
}
/* ================== */
.csrSec1 h1.main-heading{
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.csrSec1 p{
    color: #555;
    font-weight: 400;
    font-size: 1.8rem;
}

.csrSec2 h1.main-heading{
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.impactSec1 .section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    margin-bottom: 4rem;
    position: relative;
    color: #99A1AF;
    position: relative;
    background: var(--white);
}

/* .impactSec1 .section-title:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    right: 0;
    background-color: #99A1AF;
    top: 1.1rem;
} */

.impactSec1 .impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.impactSec1 .impact-card {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 1.2rem;
    border: 0.1rem solid #e5e5e5;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

.impactSec1 .impact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.4rem;
    background: var(--primary);
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
}

.impactSec1 .impact-card .icon {
    width: 4.5rem;
    min-width: 4.5rem;
    max-width: 4.5rem;
    height: 4.5rem;
    background: #fff3eb;
    border-radius: 1rem;
    color: var(--primary);
    text-align: center;
    line-height: 4.5rem;
    display: block;
}

.impactSec1 .impact-card .icon img{
    width: 2.5rem;
}

.impactSec1 .impact-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.impactSec1 .impact-card p {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.6;
}

.impactSec1 .impact-card:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.08);
}

/* ================= */

.trusteeSec1 .section-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4rem;
}

.trusteeSec1 .trustee-top {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-bottom: 4rem;
}

.trusteeSec1 .trustee-card {
    text-align: center;
}

.trusteeSec1 .trustee-img {
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    margin-bottom: 1.5rem;
}

.trusteeSec1 .trustee-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trusteeSec1 .trustee-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.trusteeSec1 .trustee-card span {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.1rem;
}

.trusteeSec1 .trustee-message {
    display: flex;
    gap: 2rem;
    position: relative;
}

.trusteeSec1 .trustee-message::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0.4rem;
    height: 100%;
    background: var(--primary);
}

.trusteeSec1 .quote-icon {
    position: absolute;
    top: -6rem;
    width: 4rem;
}

.trusteeSec1 .message-text {
    padding-left: 2rem;
}

.trusteeSec1 .message-text p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.trusteeSec1 .message-text strong {
    font-weight: 700;
}

/* ==================== */

.honor-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.honor-row.reverse {
    direction: rtl;
}

.honor-row.reverse .honor-text {
    direction: ltr;
}

.honor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.honor-text {
    background: #f4f4f4;
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.honor-text p {
    font-size: 1.8rem;
    line-height: 2.2;
    text-align: center;
    color: #222;
    font-weight: 600;
}

/* ================== */

.duskSec1 {
    background: #000;
    color: #fff;
}

/* LEFT SIDE */
.dusk-left h2 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 3rem;
}

.dusk-left p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1.5rem;
}

/* RIGHT SIDE */
.dusk-right .top-text {
    font-size: 1.8rem;
    line-height: 1.9;
    color: #ccc;
    margin-bottom: 3rem;
}

/* Image */
.dusk-img img {
    width: 100%;
    height: auto;
    border-radius: 0.8rem;
}

/* ================ */

.gallerySec1 .gallery-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4rem;
}

.gallerySec1 .gallery-card {
    border-radius: 1rem;
    overflow: hidden;
}

.gallerySec1 .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* spacing */
.gallerySec1 .gallerySwiper {
    padding-bottom: 2rem;
}

/* ============== */
.careerSec1 h1.main-heading{
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.careerSec1 p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}
/* ============= */

.work-text h2 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.work-text p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.work-img img {
    width: 100%;
    border-radius: 2rem;
    object-fit: cover;
}

.work-note {
    margin-top: 4rem;
    background: #FEF3C6;
    padding: 2.5rem 3rem;
    border-radius: 0.8rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border-top: 0.3rem solid #FEE685;
    border-bottom: 0.3rem solid #FEE685;
}

.note-icon {
    width: 10rem;
}

.note-text h4 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #973C00;
}

.note-text p {
    font-size: 1.8rem;
    color: #973C00;
    line-height: 1.7;
}

.note-text a {
    color: #973C00;
    text-decoration: none;
    font-weight: 600;
}

/* =============== */
