:root {
      --green: #1b8f5a;
      --green-dark: #146e45;
      --light-green: #8ed081;
      --blue: #0b6ea9;
      --blue-dark: #08527d;
      --yellow: #f4c542;
      --yellow-light: #ffd866;
      --dark: #183b3d;
      --text: #536767;
      --light: #f4fbf8;
      --white: #ffffff;
      --border: #dce9e4;
      --shadow-sm: 0 10px 30px rgba(24, 59, 61, 0.08);
      --shadow-md: 0 20px 50px rgba(24, 59, 61, 0.12);
      --radius: 24px;
      --transition: all 0.35s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--light);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.7;
    }

    section {
      padding: 100px 0;
      position: relative;
    }

    .section-title {
      max-width: 760px;
      margin: 0 auto 4rem;
      text-align: center;
    }

    .section-title .badge-title {
      display: inline-block;
      background: rgba(27, 143, 90, 0.1);
      color: var(--green);
      padding: 0.5rem 1rem;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-title h2 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: var(--dark);
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .section-title p {
      font-size: 1.05rem;
      color: #6b7c7c;
    }

    /* Navbar */
    .navbar {
      padding: 1rem 0;
      transition: var(--transition);
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(220, 233, 228, 0.5);
    }

    .navbar.scrolled {
      padding: 0.75rem 0;
      box-shadow: var(--shadow-sm);
    }

    .navbar-brand {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--green) !important;
      letter-spacing: -0.02em;
    }

    .navbar-brand span {
      color: var(--blue);
    }

    .nav-link {
      position: relative;
      color: var(--dark) !important;
      font-weight: 600;
      margin-left: 1.25rem;
      padding: 0.35rem 0 !important;
      transition: var(--transition);
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--green), var(--blue));
      transition: var(--transition);
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--green) !important;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

   

    /* Cards */
    .card-base {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      border: 1px solid rgba(220,233,228,0.7);
    }

    .card-base:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-md);
    }

    .service-card,
    .project-card,
    .about-box,
    .contact-card,
    .stats-card {
      overflow: hidden;
    }

    .service-card {
      height: 100%;
      padding: 2rem;
      position: relative;
    }

    .service-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--green), var(--blue));
    }

    .service-icon {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--green), var(--blue));
      color: white;
      font-size: 1.9rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 15px 30px rgba(11,110,169,0.2);
    }

    .service-card h5,
    .project-content h5,
    .about-box h4,
    .contact-card h4 {
      color: var(--dark);
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .about-section,
    .projects-section {
      background: linear-gradient(135deg, #eefbf4, #eef8fd);
    }

    .about-box {
      padding: 2.5rem;
      height: 100%;
    }

    .stats-card {
      padding: 2rem;
      border-radius: var(--radius);
      text-align: center;
      background: linear-gradient(135deg, var(--green), var(--blue));
      color: white;
      height: 100%;
    }

    .stats-card.highlight {
      background: linear-gradient(135deg, var(--yellow), #f0a500);
      color: var(--dark);
    }

    .stats-card h3 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }

    /* Projects */
    .project-card {
      background: white;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      height: 100%;
      transition: var(--transition);
    }

    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-md);
    }

    .project-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .project-card:hover img {
      transform: scale(1.05);
    }

    .project-content {
      padding: 1.75rem;
    }

    .project-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      background: rgba(27, 143, 90, 0.1);
      color: var(--green);
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .project-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--blue);
      font-weight: 700;
      text-decoration: none;
      margin-top: 1rem;
    }

    /* CTA */
    .cta-section {
      background: linear-gradient(135deg, var(--blue), var(--green));
      color: white;
      border-radius: 36px;
      padding: 4rem 2rem;
      text-align: center;
      box-shadow: var(--shadow-md);
    }

    .cta-section h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      margin-bottom: 1rem;
    }

    /* Contact */
    .contact-card {
      padding: 2rem;
      height: 100%;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .contact-item i {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(11,110,169,0.08);
      color: var(--blue);
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .form-control {
      border-radius: 16px;
      border: 1px solid var(--border);
      padding: 0.95rem 1rem;
      font-size: 0.95rem;
      transition: var(--transition);
    }

    .form-control:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 0.25rem rgba(27,143,90,0.12);
    }

    textarea.form-control {
      resize: none;
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.8);
      padding: 2.5rem 0;
    }

    .footer-links a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      margin-left: 1rem;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--yellow);
    }

    /* Animation */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .fade-up.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 991px) {
      section {
        padding: 80px 0;
      }

      .hero {
        text-align: center;
        padding-bottom: 4rem;
      }

      .hero-badges,
      .hero-stats,
      .hero .d-flex {
        justify-content: center;
      }

      .btn-outline-custom {
        margin-left: 0;
        margin-top: 1rem;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .navbar-brand {
        font-size: 1.5rem;
      }

      .hero h1 {
        font-size: 2.9rem;
      }

      .section-title h2 {
        font-size: 2.2rem;
      }

      .service-card,
      .about-box,
      .contact-card {
        padding: 1.5rem;
      }

      .footer-links a {
        display: inline-block;
        margin: 0.4rem 0.6rem;
      }
    }

    /* =========================================================
   PREMIUM CORPORATE HERO SECTION
========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(13,110,253,0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0,180,255,0.12), transparent 35%),
    linear-gradient(135deg, #06121f 0%, #0b1726 45%, #0f2236 100%);
}

/* Animated glowing background */
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(13,110,253,0.08);
  filter: blur(120px);
  border-radius: 50%;
  top: -250px;
  left: -200px;
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(0,180,255,0.06);
  filter: blur(120px);
  border-radius: 50%;
  bottom: -250px;
  right: -180px;
  animation: floatGlowTwo 12s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  from {
    transform: translateY(0px) translateX(0px);
  }
  to {
    transform: translateY(50px) translateX(40px);
  }
}

@keyframes floatGlowTwo {
  from {
    transform: translateY(0px) translateX(0px);
  }
  to {
    transform: translateY(-40px) translateX(-30px);
  }
}

/* GRID CONTAINER */
.hero .row {
  position: relative;
  z-index: 5;
}

/* CARD WRAPPER */
.hero-highlight {
  width: 100%;
  height: 100%;
}

/* MAIN GLASS CARD */
.highlight-card {
  position: relative;
  height: 100%;
  padding: 65px 55px;

  background: rgba(255,255,255,0.06);

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  overflow: hidden;

  transition: all .45s ease;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* TOP LIGHT EFFECT */
.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
  transform: skewX(-20deg);
  transition: .9s;
}

.highlight-card:hover::before {
  left: 140%;
}

.highlight-card:hover {
  transform: translateY(-10px);

  border-color: rgba(13,110,253,0.35);

  box-shadow:
    0 25px 70px rgba(0,0,0,0.35),
    0 0 40px rgba(13,110,253,0.12);
}

/* DIVIDER BETWEEN LEFT/RIGHT */
.col-lg-6:first-child .highlight-card {
  border-right: 1px solid rgba(255,255,255,0.08);
}

/* LABEL */
.highlight-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #0d6efd, #3ea6ff);

  color: #fff;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  padding: 10px 18px;

  border-radius: 100px;

  margin-bottom: 28px;

  box-shadow:
    0 10px 25px rgba(13,110,253,0.28);

  position: relative;
  z-index: 2;
}

/* TITLE */
.highlight-card h4 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;

  color: #fff;

  margin-bottom: 28px;

  position: relative;
  z-index: 2;
}

/* PARAGRAPH */
.highlight-card p {
  color: rgba(255,255,255,0.82);

  font-size: 15.8px;
  line-height: 1.95;

  margin-bottom: 18px;

  position: relative;
  z-index: 2;
}

/* MINI FEATURE BOXES */
.mini-feature {
  position: relative;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 22px;

  padding: 24px;

  height: 100%;

  overflow: hidden;

  transition: all .35s ease;
}

/* MINI FEATURE HOVER */
.mini-feature:hover {
  transform: translateY(-6px);

  background: rgba(255,255,255,0.07);

  border-color: rgba(13,110,253,0.18);

  box-shadow:
    0 15px 30px rgba(0,0,0,0.18);
}

/* MINI FEATURE GLOW */
.mini-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(13,110,253,0.08),
      transparent 60%
    );
  opacity: 0;
  transition: .35s ease;
}

.mini-feature:hover::after {
  opacity: 1;
}

/* MINI FEATURE TITLE */
.mini-feature h6 {
  color: #fff;

  font-size: 15px;
  font-weight: 700;

  margin-bottom: 14px;

  position: relative;
  z-index: 2;
}

/* MINI FEATURE TEXT */
.mini-feature p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;

  color: rgba(255,255,255,0.75);

  position: relative;
  z-index: 2;
}

/* BUTTON AREA */
.hero .btn-main,
.hero .btn-outline-custom {
  position: relative;
  overflow: hidden;
}

/* PRIMARY BUTTON */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 16px 34px;

  border-radius: 70px;

  background: linear-gradient(135deg, #0d6efd, #3ea6ff);

  color: #fff;

  font-weight: 700;
  font-size: 15px;

  text-decoration: none;

  transition: all .35s ease;

  box-shadow:
    0 12px 30px rgba(13,110,253,0.28);
}

.btn-main:hover {
  transform: translateY(-4px);

  color: #fff;

  box-shadow:
    0 18px 40px rgba(13,110,253,0.4);
}

/* OUTLINE BUTTON */
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 32px;

  border-radius: 70px;

  border: 1px solid rgba(255,255,255,0.18);

  color: #fff;

  font-weight: 600;
  font-size: 15px;

  text-decoration: none;

  background: rgba(255,255,255,0.03);

  backdrop-filter: blur(10px);

  transition: all .35s ease;
}

.btn-outline-custom:hover {
  transform: translateY(-4px);

  color: #fff;

  background: rgba(255,255,255,0.08);

  border-color: rgba(255,255,255,0.3);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.2);
}

/* BUTTON CONTAINER */
.hero .d-flex {
  position: relative;
  z-index: 5;
}

/* RESPONSIVE */
@media (max-width: 1399px) {

  .highlight-card h4 {
    font-size: 2rem;
  }

}

@media (max-width: 1199px) {

  .highlight-card {
    padding: 50px 40px;
  }

  .highlight-card h4 {
    font-size: 1.8rem;
  }

}

@media (max-width: 991px) {

  .hero {
    padding: 80px 0;
  }

  .highlight-card {
    padding: 40px 24px;
  }

  .highlight-card h4 {
    font-size: 1.6rem;
  }

  .highlight-card p {
    font-size: 14.8px;
  }

  .col-lg-6:first-child {
    margin-bottom: 1px;
  }

}

@media (max-width: 767px) {

  .hero {
    padding: 65px 0;
  }

  .highlight-card {
    padding: 35px 20px;
  }

  .highlight-card h4 {
    font-size: 1.4rem;
    line-height: 1.35;
  }

  .highlight-label {
    font-size: 11px;
    padding: 8px 14px;
  }

  .mini-feature {
    padding: 20px;
  }

  .btn-main,
  .btn-outline-custom {
    width: 100%;
  }

}


/* =========================================================
   TEAM / OFFICERS SECTION
========================================================= */

.team-section {
  background:
    linear-gradient(135deg, #eefbf4, #eef8fd);
}

.team-card {
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  border-radius: var(--radius);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: 1.8rem;
  text-align: center;
}

.team-content h5 {
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .35rem;
}

.team-content span {
  display: inline-block;
  color: var(--blue);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.team-content p {
  font-size: .95rem;
  color: #6b7c7c;
  margin-bottom: 0;
}

/* Optional gradient overlay */
.team-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.28),
      transparent 50%
    );
}

/* Responsive */
@media (max-width: 767px) {

  .team-image {
    height: 280px;
  }

}

/* FEATURED PROJECT */

.featured-project {
  position: relative;
  overflow: hidden;
  border-radius: 24px;

 /* background: linear-gradient(
    135deg,
    #fffdf5 0%,
    #fff7db 100%
  );*/

  /*border: 3px solid #f4b400;*/

  /*box-shadow:
    0 15px 40px rgba(244, 180, 0, 0.25),
    0 0 0 10px rgba(244, 180, 0, 0.08);*/

  transition: all 0.4s ease;
}

.featured-project:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 60px rgba(11, 61, 145, 0.35),
    0 0 35px rgba(30, 136, 229, 0.25);
}

/* Ribbon */
.featured-project::before {
  /*content: "★ FLAGSHIP PROJECT";*/
  position: absolute;
  top: 22px;
  right: -58px;

  width: 230px;

  /*background: linear-gradient(
    135deg,
    #f4b400,
    #ffcc33
  );*/

  color: #111;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;

  text-align: center;
  padding: 10px 0;

  transform: rotate(45deg);
  z-index: 10;

  box-shadow: 0 8px 25px rgba(244,180,0,.4);
}

/* Badge */
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 16px;
  border-radius: 50px;

  background: linear-gradient(
    135deg,
    #f4b400,
    #ffcc33
  );

  color: #111;
  font-weight: 800;

  box-shadow: 0 8px 20px rgba(244,180,0,.25);
}

/* Title */
.featured-project h5 {
  color: #8a5a00;
  font-size: 1.7rem;
  font-weight: 800;
}

/* Tag */
.featured-project .project-tag {
  background: rgba(244,180,0,.12);
  color: #8a5a00;
  border: 1px solid rgba(244,180,0,.25);
}

.carousel-item{
    min-height: 90vh;
}

.carousel-item .container{
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-image{
    width:100%;
    max-width:600px;
    height:auto;
    object-fit:contain;
    display:block;
    margin:auto;
}

@media (max-width:991px){
    .hero-image{
        margin-top:40px;
        max-width:450px;
    }
}


.team-card{
    cursor:pointer;
    transition:.35s;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

#modalImage{
    max-height:420px;
    object-fit:cover;
}

.modal-content{
    border-radius:20px;
}

.executive-modal{
    border:none;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,.25);
}

.executive-header{
    background:linear-gradient(135deg,#0b6ea9,#1b8f5a);
    padding:25px 35px;
}

.profile-card{
    background:#f8fbfd;
    border-radius:18px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.profile-image{
    width:100%;
    border-radius:20px;
    object-fit:cover;
    border:6px solid #fff;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.profile-position{
    color:#0b6ea9;
    font-weight:600;
}

.profile-info{
    margin-top:20px;
}

.info-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    text-align:left;
}

.info-item i{
    font-size:22px;
    color:#0b6ea9;
}

.info-item small{
    display:block;
    color:#888;
}

.info-item h6{
    margin:0;
    font-weight:600;
}

.section-heading{
    color:#0b6ea9;
    font-weight:700;
    margin-bottom:20px;
}

.detail-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    padding:20px;
    height:100%;
    box-shadow:0 6px 18px rgba(0,0,0,.05);
}

.detail-card h6{
    color:#1b8f5a;
    font-weight:700;
    margin-bottom:15px;
}

.detail-card ul{
    padding-left:18px;
}

.detail-card li{
    margin-bottom:10px;
}


.partner-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partner-track {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.partner-track:hover {
    animation-play-state: paused;
}

.partner-item {
    flex: 0 0 auto;
    width: 180px;
    margin: 0 20px;
    text-align: center;
}

.partner-item img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

.partner-item span {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.featured-project img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.featured-project .project-content {
    padding: 2rem;
}

.members{
    text-align: left;
}

.members ul{
    list-style-position: outside;
    padding-left: 20px;
    margin: 8px 0 0;
    text-align: left;
}

.members li{
    text-align: left;
    margin-bottom: 5px;
}