
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #2e7093;
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 1000;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 0;
  background: rgb(255, 255, 255);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}


.header:hover {
  background: linear-gradient(
    180deg,
    rgba(23, 79, 37, 0.07) 0%,
    rgba(17, 73, 42, 0.04) 100%
  );
  box-shadow: 0 4px 20px rgba(23, 79, 45, 0.1);
}


.nav-link {
  font-weight: 600;
  text-decoration: none;
  color: #2e7093;
  position: relative;
  transition: color 0.28s, transform 0.25s;
}

.nav-link:hover {
  color: #2e7093;
  transform: translateY(-2px);
}
.nav-menu{
  color: #2e7093;
}

.nav-underline {
  position: absolute;
  bottom: -6px;
  height: 3px;
  width: 0;
  left: 0;
  background: linear-gradient(90deg, #2e7093,#2e7093);
  transition: left 0.3s ease, width 0.3s ease;
  border-radius: 2px;
  pointer-events: none;
}

.nav-link.active {
  color:#2e7093!important;
  font-weight: 700;
}


header.scrolled {
  background: linear-gradient(90deg, #ffffff, #024264); 
  border-bottom: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.8s ease, box-shadow 0.s ease;
}
header.scrolled .nav-link {
  color: #ffffff !important;   
}

header.scrolled .nav-link:hover {
  color: #000000 !important;  
}
header.scrolled nav > ul > li > a {
  color: #ffffff !important;
}

header.scrolled nav > ul > li > a:hover {
  color: #000000 !important;
}
header.scrolled .dropdown-menu a {
  color: #2e7093 !important; 
}

header.scrolled .dropdown-menu a:hover {
  color: #2e7093 !important; 
  background: #f0f9ff;
}

header.scrolled nav a {
  color: #ffffff
}
header.scrolled .tagline {
  color: #ffffff;
  transition: color 0.4s ease;
}

header.scrolled nav a::after {
  background: #ffffff;
}

header.scrolled .logo {
  color: #ffffff; 
}
header.scrolled nav a[href="#contact"],
header.scrolled nav a[href="index.html#contact"] {
  color: #ffffff !important
}

header.scrolled .search-icon {
  color: #ffffff; 
}

header.scrolled .search-input.active {
  background: #ffffff; 
  color: #2e7093; 
  border-color: #ffffff;
}
header.scrolled .dropdown-menu {
  background: #ffffff; 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

header.scrolled .dropdown-menu a {
  color: #2e7093; 
}

header.scrolled .dropdown-menu a:hover {
  background: #f0f9ff;
  color: #2e7093;
}


nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #2e7093;
  transition: width 0.3s ease, background-color 0.3s ease;
}


nav a:hover::after {
  width: 100%;
}

header.scrolled nav a::after {
  background: #ffffff;
}


header.scrolled .dropdown-menu a::after {
  background: #2e7093; 
}


.dropdown-menu a:hover::after {
  width: 100%;
}


.search-area {
  display: flex;
  align-items: center;
  position: relative;
}

.search-icon {
  background: none;
  border: none;
  font-size: 20px;
  color: #2e7093;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.search-icon:hover {
  color: #2e7093;
  transform: scale(1.1);
}

.search-input {
  width: 0;
  opacity: 0;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 14px;
  margin-left: 8px;
  outline: none;
  transition: all 0.4s ease;
  background: #ffffff;
  color: #2e7093;
}

.search-input.active {
  width: 180px;
  opacity: 1;
  border-color:#2e7093;
  box-shadow: 0 0 8px rgba(17, 57, 32, 0.3);
}


.logo {
  font-family: 'Dancing Script', cursive;
  font-size: 34px;
  color: #2e7093;
}


.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}


nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #2e7093;
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  display: inline-block;
  transition: color 0.3s ease;
}


nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #2e7093;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #2e7093;
}

header.scrolled nav a::after {
  background: #ffffff;
}

header.scrolled nav a:hover::after {
  width: 100%; 
}


nav a[href="#contact"] {
  color: #2e7093;
  font-weight: 600;
}
nav a[href="#contact"]:hover {
  color: #2e7093;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, #2e7093, #2e7093);
}


.dropdown {
  position: relative;
}

.dropdown > a {
  display: inline-block;
  padding: 8px 0;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(18, 76, 47, 0.1);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
  z-index: 9999;
}


.dropdown-menu.large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 6px 12px;
  min-width: 320px;
  max-width: 480px;
  padding: 10px 12px;
  white-space: normal;
  overflow: hidden;
  border-radius: 8px;
}


.dropdown:hover > .dropdown-menu,
.dropdown-menu:hover,
.dropdown > a:hover + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  color: #2e7093;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
}

.dropdown-menu a:hover {
  background: #f0f9ff;
  color: #2e7093;
}


#hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.caption {
  position: absolute;
  bottom: 70px;
  left: 60px;
  color: white;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.caption h2 {
  font-size: 38px;
}


.dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dots div {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dots div.active {
  background: #2e7093;
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(51, 141, 193, 0.6);
}


.section {
  padding: 80px 0;
  text-align: center;
}
.section h2 {
  color: #2e7093;
  font-size: 32px;
  margin-bottom: 20px;
}
.light-bg {
  background: #f8fafc;
}
.industries-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.industry-card, .why-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.industry-card:hover, .why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.about-section {
  background: #f8fafc;
  text-align: center;
}
.about-intro {
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 17px;
  line-height: 1.7;
  color: #2e7093;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.about-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 25px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(17, 64, 42, 0.1), rgba(14, 75, 47, 0.1));
  transition: all 0.5s ease;
  z-index: 0;
}
.about-card:hover::before {
  left: 0;
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(18, 61, 38, 0.15);
  border-color: rgba(16, 60, 39, 0.3);
}
.about-card h3 {
  color: #2e7093;
  margin-bottom: 12px;
  font-size: 20px;
  position: relative;
  z-index: 1;
}
.about-card p {
  color: #2e7093;
  line-height: 1.6;
  font-size: 15px;
  position: relative;
  z-index: 1;
}
.about-footer {
  margin-top: 50px;
  font-size: 16px;
  color: #2e7093;
  font-style: italic;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}
input, textarea {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
}


.toast {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #2e7093;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
}


footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 60px 0 20px;
  font-size: 15px;
  color: #2e7093;
}
.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-section h3 {
  color: #2e7093;
  font-size: 18px;
  margin-bottom: 15px;
}
.footer-section p {
  color: #2e7093;
  line-height: 1.6;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 8px;
}
.footer-section ul li a {
  text-decoration: none;
  color: #2e7093;
  transition: color 0.3s ease;
}
.footer-section ul li a:hover {
  color:#2e7093;
}
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}
.social-links img {
  width: 28px;
  height: 28px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.social-links img:hover {
  filter: grayscale(0%);
  transform: scale(1.15);
  box-shadow: 0 0 8px rgba(24, 124, 86, 0.3);
  border-radius: 50%;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #e2e8f0;
  padding-top: 15px;
  color: #2e7093;
  font-size: 14px;
}

@media (max-width: 768px) {
  .dropdown-menu.large {
    grid-template-columns: 1fr;
    min-width: 220px;
    max-width: 260px;
  }
}

.btn-primary {
  background: linear-gradient(90deg, #2e7093, #2e7093);
  color: #ffffff;
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(22, 111, 83, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(90deg, #2e7093, #2e7093);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(35, 107, 151, 0.3);
}

#cloud-hero {
  position: relative;
  height: 45vh; 
  overflow: hidden;
}

.cloud-caption {
  position: absolute;
  bottom: 25px;
  left: 50px;
  color: white;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.cloud-caption h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.cloud-caption p {
  font-size: 15px;
  max-width: 520px;
}


.section-title {
  color: #2e7093;
  font-size: 32px;
  margin-bottom: 25px;
}

.highlight-box {
  background: #f0f9ff;
  border-left: 5px solid #2e7093;
  border-radius: 8px;
  padding: 20px 25px;
  margin: 30px auto 40px;
  max-width: 900px;
  text-align: left;
  color: #2e7093;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.pillar {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 5px 18px rgba(24, 81, 50, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.pillar h4 {
  color: #2e7093;
  font-size: 18px;
  margin-bottom: 10px;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(16, 68, 44, 0.15);
  border-color: rgba(36, 89, 127, 0.3);
}

.value-section {
  text-align: left;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.value-section h3 {
  color: #2e7093;
  font-size: 24px;
  margin-bottom: 15px;
}

.value-points {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.value-points li {
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 8px;
  margin: 8px 0;
  border-left: 4px solid #2e7093;
  transition: transform 0.3s ease, background 0.3s ease;
}

.value-points li:hover {
  background: #f0f9ff;
  transform: translateX(5px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.stat-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card h3 {
  color: #2e7093;
  margin: 0 0 8px;
  font-size: 24px;
}
.stat-card p {
  color: #2e7093;
  font-size: 15px;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(49, 153, 127, 0.15);
}
.logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tagline {
  font-size: 13px;
  color: #2e7093;
  margin-top: -5px;
  letter-spacing: 0.5px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #000;
  margin: 4px 0;
  border-radius: 3px;
}


.mira-window.open {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}


.vm-section {
  margin: 80px 0 40px;
}

.vm-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.vm-card {
  width: 280px;
  height: 250px;
  perspective: 1100px;
}

.vm-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform .9s;
  transform-style: preserve-3d;
}

.vm-card:hover .vm-inner {
  transform: rotateY(180deg);
}

.vm-front, .vm-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.vm-front {
  background: white;
  color: #2e7093;
}

.vm-front h2 {
  margin-top: 10px;
  font-size: 20px;
}

.vm-icon {
  width: 60px;
  opacity: 0.8;
}

.vm-back {
  background: linear-gradient(135deg, #2e7093, #2e7093);
  color: white;
  transform: rotateY(180deg);
}
a.btn-primary {
  text-decoration: none !important;
}

.vm-back p {
  font-size: 15px;
  line-height: 1.6;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .vm-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .vm-card {
    width: 90%;
    max-width: 320px;
  }
}

.success-popup {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 99999;
}

.success-popup.active {
  opacity: 1;
  pointer-events: all;
}

.checkmark-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
}

.checkmark {
  width: 100%;
  height: 100%;
  stroke-width: 3;
  stroke: #2e7093;
  stroke-miterlimit: 10;
  animation: scaleUp 0.4s ease-out forwards;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: strokeCircle 0.6s ease forwards;
}

.checkmark-check {
  stroke: #2e7093;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheck 0.4s 0.6s ease forwards;
}

@keyframes strokeCircle {
  100% { stroke-dashoffset: 0; }
}

@keyframes strokeCheck {
  100% { stroke-dashoffset: 0; }
}

@keyframes scaleUp {
  0% { opacity: 0; transform: scale(0.6); }
  100% { opacity: 1; transform: scale(1); }
}

.success-text {
  font-size: 18px;
  color:#2e7093;
  font-weight: 600;
}

@media (max-width: 992px) {


  body, html {
    overflow-x: hidden !important;
  }


  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  #hero .caption {
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    width: 90% !important;
  }
}

@media (max-width: 768px) {

  .why-grid,
  .industries-grid,
  .about-cards,
  .pillars-grid,
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }


  #hero {
    height: 45vh !important;
  }

  #hero .slide img {
    height: 100% !important;
    object-fit: cover !important;
  }

  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none !important;
    background: #f6f9ff !important;
    box-shadow: none !important;
    border-radius: 8px !important;
    margin-top: 8px !important;
  }

  .dropdown-menu.show {
    display: block !important;
  }

  form input, form textarea {
    width: 100% !important;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 25px !important;
  }

  h2 {
    font-size: 24px !important;
  }
}


@media (max-width: 480px) {

  #hero {
    height: 38vh !important;
  }

  #hero .caption h2 {
    font-size: 18px !important;
  }

  #hero .caption p {
    font-size: 13px !important;
  }

  .section {
    padding: 40px 15px !important;
  }
}

@media (max-width: 768px) {
  html body header {
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;
    background: #ffffff !important;
  }
}

@media (max-width: 768px) {

  .dropdown-menu {
    display: none !important;
    position: static !important;
    width: 100% !important;
    background: #ffffff !important;
    padding: 12px 0 !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .dropdown-menu.show {
    display: block !important;
  }

  .dropdown-menu a {
    color: #2e7093 !important;
    padding: 12px 20px !important;
    display: block !important;
    text-align: center !important;
  }

  .dropdown-menu a:hover {
    background: #f0f9ff !important;
    color: #2e7093 !important;
  }
}

@media (max-width: 768px) {


  header {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger {
    display: flex !important;
  }

  nav ul {
    display: none !important;
    flex-direction: column;
    background: white;
    width: 100%;
    position: absolute;
    top: 70px;
    right: 0;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  nav ul.show-nav {
    display: flex !important;
  }

  nav ul li a {
    text-align: center;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
  }


  .dropdown-menu {
    position: static !important;
    display: none !important;
    background: #f5f7fb;
    padding: 10px 0;
  }

  .dropdown-menu.show {
    display: block !important;
  }


  #hero .slider,
  #banking-hero,
  #cloud-hero {
    height: 45vh !important;
  }

  .caption {
    left: 50% !important;
    bottom: 25px !important;
    transform: translateX(-50%);
    width: 85%;
    text-align: center;
  }

  .caption h2 {
    font-size: 20px !important;
  }

  .caption p {
    font-size: 14px !important;
  }

  .why-grid,
  .industries-grid,
  .stats-grid,
  .about-cards {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  form input,
  form textarea {
    width: 100% !important;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

}


.leadership-section {
  background: linear-gradient(
    180deg,
    #2e7093 0%,
    #2e7093 60%,
    #2e7093 100%
  );
  padding: 90px 20px;
  color: #ffffff;
}


.leadership-wrapper {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.leadership-title {
  font-size: 36px;
  margin-bottom: 60px;
}

/* SLIDER */
.leadership-slider {
  position: relative;
  min-height: 320px; 
}

/* SLIDES */
.leader-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.leader-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* CARD */
.leader-card {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.leader-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%; 
  border: 6px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* CONTENT */
.leader-content {
  max-width: 520px;
}

.quote {
  font-size: 60px;
  color: #efecec;
  line-height: 1;
}

.leader-content h3 {
  font-size: 28px;
  margin: 10px 0 4px;
}

.role {
  font-size: 15px;
  color: #d8d8d8;
  margin-bottom: 14px;
}

.desc {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e7ff;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.22);
  border: none;
  color: #ffffff;
  font-size: 34px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 30;
  backdrop-filter: blur(6px);
}

.nav-btn.prev { left: -60px; }
.nav-btn.next { right: -60px; }

.nav-btn:hover {
  background: rgba(21, 77, 47, 0.35);
}


@media (max-width: 768px) {
  .leader-card {
    flex-direction: column;
    text-align: center;
  }

  .leader-image img {
    width: 220px;
    height: 220px;
  }

  .nav-btn {
    display: none;
  }
}
.logo img {
  height: 50px;      
  width: auto;
  display: block;
  padding-right: 15px;
}


@media (max-width: 768px) {

  /* HEADER */
  header {
    padding: 10px 0;
  }

  .container.nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo-with-tagline img {
    max-height: 36px;
    width: auto;
  }

  nav ul {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: #0b1f2a;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  nav ul.active {
    right: 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  /* HERO SECTION */
  #cloud-hero {
    height: auto;
  }

  #cloud-hero img {
    height: 300px;
  }

  .cloud-caption {
    padding: 20px;
    text-align: left;
  }

  .cloud-caption h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .cloud-caption p {
    font-size: 14px;
    margin-top: 8px;
  }

  /* BUTTONS */
  .cloud-caption button,
  .btn-primary {
    width: 100%;
    margin-top: 10px;
  }

  /* SECTIONS */
  .section {
    padding: 40px 16px;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* CARDS / GRIDS */
  .pillars-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* FORMS */
  input,
  textarea,
  button {
    width: 100%;
    font-size: 14px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
}




.country {
  margin-left: 8px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #ffffff;
}

.leadership-slider,
.leader-slide,
.leader-slide.active,
.nav-btn {
  all: unset;
}

.leadership-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.leadership-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
}


.leader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}


.leader-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);

  margin-bottom: 5px;
}

.leader-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 3px;
}

/* Role */
.role {
  font-size: 13px;
  color: #e6e6e6;
  margin-top: 0;
  margin-bottom: 1px;
}

/* Place / Country */
.place {
  font-size: 12.5px;
  color: #cfd8ff;
}

/* Section title */
.leadership-title {
  font-size: 28px;
  margin-bottom: 30px;
}



.leader-card,
.leader-image img,
.leader-content h3 {
  transition: transform 0.3s ease,
              box-shadow 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
}

.leader-card:hover .leader-image img {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 32px rgba(0,0,0,0.45);
}
.leader-card:hover .leader-content h3 {
  color: #ffffff;
}



@media (max-width: 768px) {
  .leadership-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .leaders-grid {
    gap: 24px;
  }

  .leader-image img {
    width: 105px;
    height: 105px;
    margin-bottom: 4px; 
  }

  .leader-card:hover {
    transform: none;
  }
}



.leadership-section {
  background: #ffffff !important;
}


.leadership-wrapper {
  background: #2e7093;   
  padding: 45px 40px;
  border-radius: 0;      
}

.leadership-wrapper * {
  color: #ffffff;
}






.leadership-wrapper {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}


.leadership-wrapper {
  animation: panelReveal 0.9s ease-out both;
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.leadership-wrapper:hover {
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  transition: box-shadow 0.4s ease;
}

.leader-card {
  opacity: 0;
  transform: translateY(8px);
  animation: cardReveal 0.6s ease-out forwards;
}

/* Stagger animation for each card */
.leader-card:nth-child(1) { animation-delay: 0.05s; }
.leader-card:nth-child(2) { animation-delay: 0.12s; }
.leader-card:nth-child(3) { animation-delay: 0.19s; }
.leader-card:nth-child(4) { animation-delay: 0.26s; }
.leader-card:nth-child(5) { animation-delay: 0.33s; }

/* Keyframes */
@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile: disable reveal animation */
@media (max-width: 768px) {
  .leader-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* NEWS POSTER SLIDER – MEDIA STYLE */

.news-poster-section {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.news-poster-slider {
  width: 100%;
  overflow: hidden;
}

/* sliding track */
.news-slider-track {
  display: flex;
  animation: newsSlide 14s linear infinite;
}

/* each slide */
.news-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;   
}

.news-slide img {
  width: 100%;
  max-width: 1100px;       
  height: auto;
  display: block;
}

/* animation */
@keyframes newsSlide {
  0%   { transform: translateX(0); }
  30%  { transform: translateX(0); }
  35%  { transform: translateX(-100%); }
  65%  { transform: translateX(-100%); }
  70%  { transform: translateX(-200%); }
  100% { transform: translateX(-200%); }
}

/* MOBILE */
@media (max-width: 768px) {
  .news-slide img {
    max-width: 100%;
  }
}
/* ================= MOBILE NAV FIX ================= */
@media (max-width: 768px) {

  nav ul {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    height: auto;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    display: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    z-index: 9999;
  }

  nav ul.show-nav {
    display: flex;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    display: block;
    padding: 14px;
    width: 100%;
  }

  /* Disable hover underline on mobile */
  nav a::after {
    display: none;
  }

  /* Dropdown menu (tap based) */
  .dropdown-menu {
    display: none !important;
    position: static !important;
    background: #f6f9ff;
    box-shadow: none;
    border-radius: 8px;
    padding: 6px 0;
  }

  .dropdown.hover-active .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu a {
    padding: 12px;
    display: block;
    text-align: center;
  }
}
/* ================= TAP = HOVER ================= */
.about-card.hover-active,
.why-card.hover-active,
.industry-card.hover-active,
.vm-card.hover-active .vm-inner {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* VM CARD FLIP ON MOBILE */
.vm-card.hover-active .vm-inner {
  transform: rotateY(180deg);
}
button,
a,
input,
textarea {
  pointer-events: auto !important;
}
/* ================= FIX HAMBURGER POSITION ================= */
@media (max-width: 768px) {

  .container.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .logo-with-tagline {
    display: flex;
    align-items: center;
  }

  .hamburger {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
  }
}
