/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  background: #f5f5f5;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1px;
}

/* Remove link underline & force black logo text */
.logo {
  text-decoration: none;
  color: #000;
}

.logo h3 {
  color: #000;
}

.logo:hover {
  opacity: 0.9;
}


.logo-img {
  height: 44px;
}

.logo-text h3 {
  font-size: 18px;
  font-weight: 600;
}

.logo-text span {
  font-size: 12px;
  color: #777;
}

.menu {
  list-style: none;
  display: flex;
  gap: 32px;
}

.menu a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

/* ================= DROPDOWN MENU ================= */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    width: 340px;
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
    z-index: 1500;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #f3f6ff;
}

.dropdown-menu strong {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.dropdown-menu span {
    font-size: 13px;
    color: #666;
}

/* Disable hover dropdown on mobile */
@media (max-width: 768px) {
    .dropdown-menu {
        display: none;
    }
}


.connect-btn {
  background: #2f69ff;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 10px;
  cursor: pointer;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #222;
  border-radius: 2px;
}

/* ================= SIDEBAR ================= */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.3s ease;
  z-index: 2000;
}

.sidebar.active {
  right: 0;
}

.sidebar a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

.close-btn {
  align-self: flex-end;
  font-size: 22px;
  cursor: pointer;
}

.sidebar-connect {
  margin-top: auto;
  padding: 14px;
  background: #2f69ff;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
}

.sidebar-item {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-submenu {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  gap: 12px;
}

.sidebar-submenu a {
  font-size: 16px;
  color: #444;
}

/* ================= HERO ================= */
/* .hero {
  height: 650px;
  background: url("kppl_img/banner.png") center/cover
    no-repeat;
  position: relative;
  color: #fff;
  color:  #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  max-width: 600px;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.dot {
  width: 8px;
  height: 8px;
  background: #34c759;
  border-radius: 50%;
}

.hero h1 {
  font-size: 56px;
  margin: 20px 0;
  line-height: 1.1;
}

.blue {
  color: #2f69ff;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;      
  letter-spacing: 0.3px; 
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.primary-btn,
.secondary-btn {
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
}

.primary-btn {
  background: #2f69ff;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
} */

.hero {
  height: 100vh;
  width: 100vw;
  max-width: 100%;
  padding: 0;
  margin: 0;
  background: url("kppl_img/banner.png") center/cover no-repeat;
  background-attachment: fixed;
  background-color: #f5f5f5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8%;
  filter: brightness(1.30);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  display: none;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
  display: none;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  display: none;
}

.hero-buttons {
  display: none;
}

.primary-btn,
.secondary-btn {
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  display: none;
}

/* ================= FOOTER ================= */

.footer {
  background: #fff;
  padding: 70px 80px 30px;
  font-size: 15px;
  color: #333;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-logo-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-logo-wrap img {
  height: 44px;
}

.footer-logo-wrap h3 {
  font-size: 18px;
  font-weight: 600;
}

.footer-logo-wrap span {
  font-size: 13px;
  color: #777;
}

.footer-col p {
  line-height: 1.6;
  margin-top: 10px;
}

.footer-col a {
  text-decoration: none;
  color: #333;
  line-height: 1.8;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
}

.contact-item {
  line-height: 1.6;
}

.contact-btn {
  margin-top: 10px;
  padding: 10px 18px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.footer-col span {
  line-height: 1.8;
}

.footer hr {
  margin: 50px 0 30px;
  border: none;
  border-top: 1px solid #eee;
}

.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.newsletter-input {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-input input {
  padding: 10px 14px;
  width: 260px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.newsletter-input button {
  background: #2f69ff;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  color: #444;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #777;
}
.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icons img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
  opacity: 1;
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {
  nav,
  .connect-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* .hero {
    min-height: 100vh;    
    padding: 100px 20px;
    text-align: center;
    background-position: center;
    background-size: cover;
  }

  .hero-content {
    padding: 0;
    align-items: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons:hover{
    background-color: #003366;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  } */

  /* 2 */
  /* .hero {
    height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    display: none;
  }

  .hero h1 {
    display: none;
  }

  .hero p {
    display: none;
  }

  .hero-buttons {
    display: none;
  }

  .primary-btn,
  .secondary-btn {
    display: none;
  } */

  .hero {
    height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    display: none;
  }

  .hero h1 {
    display: none;
  }

  .hero p {
    display: none;
  }

  .hero-buttons {
    display: none;
  }

  .primary-btn,
  .secondary-btn {
    display: none;
  }

  /* FOOTER MOBILE */
  .footer {
    padding: 50px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .newsletter-input input {
    width: 100%;
  }
}

/* ================= WHO WE ARE ================= */

.about-home {
  background: #fff;
  padding: 100px 80px;
}

.about-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: auto;
}

/* LEFT */
.about-left {
  max-width: 520px;
}

.section-tag {
  font-size: 13px;
  font-weight: 600;
  color: #2f69ff;
  letter-spacing: 1px;
}

.about-left h2 {
  font-size: 42px;
  margin: 14px 0 20px;
  color: #111;
}

.about-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 28px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: #333;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f69ff;
  font-weight: bold;
  
}

.about-btn {
  display: inline-block;
  background: #204ec0;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}
.about-btn:hover {
  background: #1c4ed8;  
}

/* RIGHT */
.about-right {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 24px;
}

.stat-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 36px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.stat-card h3 {
  font-size: 42px;
  color: #2f69ff;
  margin-bottom: 10px;
}

.stat-card span {
  font-size: 15px;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-home {
    padding: 70px 20px;
  }

  .about-container {
    flex-direction: column;
    gap: 50px;
  }

  .about-left h2 {
    font-size: 32px;
  }

  .about-right {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================= SOLUTIONS ================= */

.solutions-home {
  background: #f9fafb;
  padding: 100px 80px;
}

.solutions-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.solutions-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.solutions-header p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1300px;
  margin: auto;
}

.solution-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.solution-card h3 {
  font-size: 22px;       /* was 20px */
  font-weight: 600;
  margin-bottom: 16px;  /* more breathing room */
  color: #111;
  text-align: center;   /* optional but looks better with centered logos */
}


.solution-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.solution-card a {
  text-decoration: none;
  color: #2f69ff;
  font-weight: 500;
}

/* ICONS */
.icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
}

.icon.blue {
  background: #e9f0ff;
  color: #2f69ff;
}

.icon.purple {
  background: #f2e9ff;
  color: #8b5cf6;
}

.icon.green {
  background: #e9f9ef;
  color: #16a34a;
}

.icon.orange {
  background: #fff1e6;
  color: #f97316;
}

.icon.pink {
  background: #fde7f3;
  color: #ec4899;
}

.icon.teal {
  background: #e6fbfa;
  color: #0ea5a4;
}

/* MOBILE */
@media (max-width: 768px) {
  .solutions-home {
    padding: 70px 20px;
  }

  .solutions-header h2 {
    font-size: 32px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= SOLUTION LOGOS ================= */

.solution-logo {
  width: 110px;          /* was 90px */
  height: 110px;         /* was 90px */
  border-radius: 18px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;   /* more space below logo */
}

.solution-logo img {
  max-width: 80%;        /* was 70% */
  max-height: 80%;       /* was 70% */
  object-fit: contain;
}

.future-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);

  transition: all 0.35s ease;
}

.future-card {
  text-align: center;          /* centers icon + text */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.future-icon.blue {
  background: linear-gradient(135deg, #0a66c2, #004a8f);
}

.future-icon.purple {
  background: linear-gradient(135deg, #6f4cff, #3f2bbd);
}


.future-icon i {
  font-size: 34px;
  color: #0d3161;
}
/* Microsoft Blue */
.future-icon.blue {
  background: linear-gradient(135deg, #0078d4, #0056a6);
}

/* AI Purple */
.future-icon.purple {
  background: linear-gradient(135deg, #7b5cff, #4b2bd6);
}
.future-card:hover .future-icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.25),
    0 0 25px rgba(0, 120, 212, 0.35);
}

.future-card:hover .future-icon.purple {
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.25),
    0 0 25px rgba(123, 92, 255, 0.4);
}
.future-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  transition: all 0.35s ease;
}

.future-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* ================= CASE STUDIES ================= */

.case-studies-home {
  background: #fff;
  padding: 100px 80px;
}

.case-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.case-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.case-header p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1300px;
  margin: auto;
}

.case-card {
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 36px;
  background: #fafafa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.case-tag {
  display: inline-block;
  background: #e9f0ff;
  color: #2f69ff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.case-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #111;
}

.case-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
}

.case-btn {
  text-decoration: none;
  color: #2f69ff;
  font-weight: 500;
}

.case-footer {
  text-align: center;
  margin-top: 60px;
}

.load-more-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #2f69ff;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .case-studies-home {
    padding: 70px 20px;
  }

  .case-header h2 {
    font-size: 32px;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= FUTURE PLANS ================= */

.future-plans {
  padding: 90px 0;
  background: #ffffff;
}

.future-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.future-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.future-badge {
  display: inline-block;
  background: #eef3ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.future-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.future-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.future-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* CARD */
.future-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.future-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* ICON (UPDATED – NO IMAGES) */
.future-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

/* ICON COLORS */
.future-icon.blue {
  background: #eaf0ff;
  color: #2563eb;
}

.future-icon.purple {
  background: #f3e8ff;
  color: #7c3aed;
}

/* TEXT */
.future-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #111;
}

.future-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
}

.future-card a {
  font-size: 15px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.future-card a:hover {
  text-decoration: underline;
}

/* ================= SERVICES SLIDER ================= */

.services-slider-section {
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
}

.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-header p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

.services-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.services-slider {
  display: flex;
  gap: 40px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.service-slide {
  min-width: 340px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  opacity: 0.35;
  transform: scale(0.9);
  transition: all 0.5s ease;
}

.service-slide.active {
  opacity: 1;
  transform: scale(1);
}

.service-slide h3 {
  font-size: 20px;
  margin: 18px 0 12px;
  font-weight: 600;
}

.service-slide p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ICONS */
.icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: auto;
}

.icon.blue { background: #eef3ff; }
.icon.purple { background: #f3ecff; }
.icon.green { background: #ecfdf3; }
.icon.orange { background: #fff3e8; }
.icon.pink { background: #ffeef6; }
.icon.teal { background: #e6fffb; }

/* ARROWS */
.slider-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.left { left: -20px; }
.slider-btn.right { right: -20px; }

.slider-btn:hover {
  background: #2563eb;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-slide {
    min-width: 280px;
  }
}
 
/* ================= SLIDER DOTS ================= */

.services-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.services-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfd4dc; /* neutral grey */
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* ACTIVE DOT — subtle, not highlighted */
.services-dots span.active {
  background: #9ca3af; /* slightly darker grey */
}

/* DARK BLUE SHIMMER ON HOVER */
.services-dots span::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.35) 0%,
    rgba(37, 99, 235, 0.15) 35%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* SHOW SHIMMER */
.services-dots span:hover::after {
  opacity: 1;
}

/* SLIGHT LIFT ON HOVER */
.services-dots span:hover {
  transform: scale(1.15);
}


/* ================= INDUSTRIES EXPAND DOWN ================= */

.industries-expand {
  border-radius: 12px;
}

.industries-trigger {
  padding: 12px 14px;
  cursor: pointer;
  border-radius: 12px;
  position: relative;
  transition: background 0.2s ease;
}

.industries-trigger strong {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.industries-trigger span {
  font-size: 13px;
  color: #666;
}

/* Arrow */
.industries-trigger::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 16px;
  font-size: 14px;
  color: #9ca3af;
  transition: transform 0.3s ease;
}

/* Hidden list */
.industries-list {
  max-height: 0;
  overflow: hidden;
  background: #f9fafb;
  border-radius: 0 0 12px 12px;
  transition: max-height 0.35s ease;
}

/* Expand on hover */
.industries-expand:hover .industries-list {
  max-height: 260px;
}

/* Rotate arrow */
.industries-expand:hover .industries-trigger::after {
  transform: rotate(180deg);
}

/* Industry items */
.industries-list a {
  display: block;
  padding: 12px 22px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  border-top: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.industries-list a:hover {
  background: #eef2ff;
  padding-left: 28px;
}

/* Sidebar dropdown arrow */
.sidebar-item span {
  font-size: 16px;
  color: #777;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.sidebar-item.active span {
  transform: rotate(180deg);
}

.sidebar-submenu .sidebar-item {
  color: black;
  font-size: 16px;
  padding: 6px 0;
}




/* ================= Industry Section ================= */

/* ================= INDUSTRY PAGES ================= */

.industry-hero {
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}

.food-hero {
  background: url("../kppl_img/food-hero.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-text {
  position: relative;
  padding: 0 80px;
  max-width: 700px;
}

.hero-text h1 {
  font-size: 56px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
}

.industry-section {
  padding: 80px;
  background: #fff;
}

.industry-section.light {
  background: #f5f7fb;
}

.industry-wrap {
  max-width: 1200px;
  margin: auto;
}

.industry-wrap h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.industry-wrap p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.challenge-grid,
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.challenge-card,
.impact-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-weight: 500;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid-2 img {
  width: 100%;
  border-radius: 14px;
}

.industry-points li {
  margin-bottom: 10px;
  font-size: 16px;
}

.industry-cta {
  background: linear-gradient(120deg, #1e3a8a, #2563eb);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.industry-cta h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.industry-cta p {
  font-size: 17px;
  max-width: 700px;
  margin: auto;
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 36px;
  background: #fff;
  color: #1e3a8a;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* ================= MOBILE NAV REFINEMENT ================= */
@media (max-width: 768px) {

  /* Hamburger icon smaller */
  .hamburger {
    width: 18px;
    height: 13px;
  }

  .hamburger span {
    height: 2px;
  }

  /* Sidebar / mobile menu text */
  .sidebar,
  .mobile-menu {
    font-size: 14px;
    color: #000;
  }

  /* Main menu headings */
  .sidebar h3,
  .mobile-menu h3 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
  }

  /* Menu items */
  .sidebar a,
  .mobile-menu a {
    font-size: 14px;
    color: #000;
    padding: 8px 0;
  }

  /* Sub-items (Industries list) */
  .sidebar .industries-list a,
  .mobile-menu .industries-list a {
    font-size: 13px;
    padding-left: 12px;
  }

  /* Dropdown arrows smaller */
  .sidebar .arrow,
  .mobile-menu .arrow {
    font-size: 12px;
  }

  /* Close (X) icon */
  .sidebar .close-btn,
  .mobile-menu .close-btn {
    font-size: 20px;
    color: #000;
  }

  /* Connect button spacing */
  .sidebar .connect-btn,
  .mobile-menu .connect-btn {
    font-size: 14px;
    padding: 10px 14px;
  }
}

/* CONTACT SECTION */
.contact-section {
  background: #ffffff;
  padding: 80px 60px;
}

.contact-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT INFO */
.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #111;
}

.office h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #222;
}

.office p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-links p {
  font-size: 0.95rem;
  color: #222;
  margin-bottom: 10px;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 340px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* FORM */
.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #111;
}

.form-note {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 25px;
}

.form-note span {
  color: #e53935;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 0.9rem;
  outline: none;
  background: transparent;
}

.contact-form textarea {
  resize: none;
  height: 90px;
}

.contact-form button {
  margin-top: 20px;
  align-self: flex-start;
  padding: 10px 30px;
  border-radius: 6px;
  background: #1f3c88;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

/* SUBTLE ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-up:nth-child(2) { animation-delay: 0.15s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  font-size: 0.9rem;
  color: #111;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 280px;
  }
}
html {
  scroll-behavior: smooth;
}

.wave-bg {
  position: absolute;
  top: 50%;
  left: -60%;
  width: 220%;
  height: 160px;
  background: linear-gradient(
    120deg,
    transparent 25%,
    rgba(31, 60, 136, 0.12),
    transparent 75%
  );
  animation: waveMove 5s linear infinite;
  transform: translateY(-50%) rotate(-3deg);
}
@keyframes waveMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.section-subtitle {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #555;
}
@media (max-width: 768px) {
    .wave-bg {
        display: flex;
    } 
}
.connect-btn {
  background: #2f69ff;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;       
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.connect-btn:hover {
  background: #1e3a8a;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  cursor: pointer;
  z-index: 2100;
}
.hamburger span {
  height: 3px;
  background: #222;
  border-radius: 2px;
}
.sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;      
  flex-direction: column;
  gap: 24px;
  transition: right 0.3s ease;
  z-index: 2000;    
}
.sidebar.open {
  right: 0;
}

/* ================= SOLUTIONS EXPAND DOWN ================= */

.solutions-expand {
  border-radius: 12px;
}

.solutions-trigger {
  padding: 12px 14px;
  cursor: pointer;
  border-radius: 12px;
  position: relative;
  transition: background 0.2s ease;
}

.solutions-trigger strong {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.solutions-trigger span {
  font-size: 13px;
  color: #666;
}

/* Arrow */
.solutions-trigger::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 16px;
  font-size: 14px;
  color: #9ca3af;
  transition: transform 0.3s ease;
}

/* Hidden list */
.solutions-list {
  max-height: 0;
  overflow: hidden;
  background: #f9fafb;
  border-radius: 0 0 12px 12px;
  transition: max-height 0.35s ease;
}

/* Expand on hover */
.solutions-expand:hover .solutions-list {
  max-height: 420px; /* enough for 9 items */
}

/* Rotate arrow */
.solutions-expand:hover .solutions-trigger::after {
  transform: rotate(180deg);
}

/* Solution items */
.solutions-list a {
  display: block;
  padding: 12px 22px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  border-top: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.solutions-list a:hover {
  background: #eef2ff;
  padding-left: 28px;
}
.solutions-list {
  max-height: 360px;
  overflow-y: auto;
}
/* ================= SOLUTIONS HOVER DROPDOWN ================= */

.solutions-expand {
  position: relative;
}

/* Trigger area */
.solutions-trigger {
  padding: 12px 14px;
  cursor: pointer;
  border-radius: 12px;
}

/* Hidden by default */
.solutions-list {
  max-height: 0;
  overflow: hidden;
  background: #f9fafb;
  border-radius: 0 0 12px 12px;
  transition: max-height 0.35s ease;
}

/* OPEN ON HOVER */
.solutions-expand:hover .solutions-list {
  max-height: 420px; /* height for 9 items */
}

/* Links */
.solutions-list a {
  display: block;
  padding: 12px 22px;
  text-decoration: none;
  color: #374151;
}

.solutions-list a:hover {
  background: #eef2ff;
}


/* ================= HERO ================= */
.life-hero {
  height: 70vh;
  background: linear-gradient(120deg, rgba(47,105,255,0.8), rgba(0,0,0,0.85)),
  url('/kppl_img/technology_abstract_background.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner h1 {
  font-size: 64px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-inner p {
  font-size: 20px;
  margin-top: 18px;
  opacity: 0.9;
  animation: fadeUp 1.6s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= SECTIONS ================= */
.section {
  padding: 40px 8%;
}

.section-title {
  font-size: 40px;
  margin-bottom: 50px;
  text-align: center;
}

/* ================= GALLERY ================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transform: scale(0.9);
  opacity: 0;
  animation: zoomIn 1s ease forwards;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

@keyframes zoomIn {
  to { transform: scale(1); opacity: 1; }
}

/* ================= TIMELINE ================= */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.timeline-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(12px);
  transition: transform 0.4s ease;
}

.timeline-card:hover {
  transform: translateY(-12px);
}

.timeline-card h4 {
  color: #2f69ff;
  margin-bottom: 12px;
}

/* ================= life at kppl CTA ================= */
.life-cta {
  background: linear-gradient(135deg, #e3e4e6, #1e3fa9);
  padding: 90px 8%;
  text-align: center;
  border-radius: 40px 40px 0 0;
}

.life-cta h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.life-cta p {
  font-size: 18px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-inner h1 { font-size: 42px; }
  .section { padding: 70px 6%; }
}

/* ================= FINAL HAMBURGER (MOBILE ONLY) ================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 3000;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #222;
  border-radius: 2px;
}
@media (max-width: 768px) {
  nav,
  .connect-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
/* ================= FINAL SIDEBAR ================= */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.3s ease;
  z-index: 2500;
}

.sidebar.active {
  right: 0;
}
@media (max-width: 768px) {

  /* Navbar padding */
  .navbar {
    padding: 14px 20px;
  }

  /* Logo smaller */
  .logo-img {
    height: 36px;
  }

  .logo-text h3 {
    font-size: 15px;
  }

  /* Sidebar text */
  .sidebar a,
  .sidebar-item {
    font-size: 15px;
  }

  /* Hero spacing */
  .hero {
    padding: 90px 20px 70px;
  }

  .hero p {
    text-align: center;
  }
}

/* ================= MOBILE & TABLET FIXES ================= */

/* ---------- NAVBAR ---------- */
@media (max-width: 1024px) {
  .navbar {
    padding: 14px 20px;
  }

  nav {
    display: none; /* hide desktop nav */
  }

  .hamburger {
    display: flex;
  }

  .connect-btn {
    display: none;
  }
}

/* ================= MOBILE SIDEBAR (FINAL FIX) ================= */

@media (max-width: 1024px) {

  body.sidebar-open {
    overflow: hidden;
  }

  .sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 3000;
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;

    transition: right 0.35s ease-in-out;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sidebar.active {
    right: 0;
  }

  /* Close button */
  .sidebar .close-btn {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 22px;
    cursor: pointer;
  }

  /* Menu */
  .sidebar .menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .sidebar-item {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sidebar-submenu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding-left: 12px;
    margin-top: 8px;
  }

  .sidebar-submenu a {
    font-size: 14px;
    color: #444;
    text-decoration: none;
  }

  .sidebar-connect {
    margin-top: 24px;
    padding: 12px;
    background: #2f69ff;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  #sidebarOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  #sidebarOverlay.active {
    opacity: 1;
    pointer-events: all;
  }
}
.sidebar-submenu {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* ================= INDUSTRIES – MOBILE FIX ================= */

@media (max-width: 768px) {

  /* Stack text & image */
  .industry-wrap.grid-2 {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* Image full width */
  .industry-wrap.grid-2 img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 14px;
    object-fit: cover;
  }

  /* Improve text readability */
  .industry-wrap h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .industry-wrap p {
    font-size: 15px;
    line-height: 1.7;
  }

  .industry-points li {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .industry-wrap.grid-2 img {
    transition: transform 0.4s ease;
  }

  .industry-wrap.grid-2 img:hover {
    transform: scale(1.02);
  }
}
/* ================= INDUSTRY CHALLENGES – MOBILE FIX Text================= */

@media (max-width: 768px) {

  /* Fix grid overflow */
  .challenge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Card sizing & wrapping */
  .challenge-card {
    width: 100%;
    padding: 16px 14px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;

    /* CRITICAL FIX */
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  /* Section heading spacing */
  .industry-wrap h2 {
    margin-bottom: 24px;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .challenge-grid {
    grid-template-columns: 1fr;
  }
}
/* =====================================================
   GLOBAL MOBILE TEXT & GRID OVERFLOW FIX (INDUSTRIES)
   ===================================================== */

@media (max-width: 768px) {

  /* Prevent horizontal scroll completely */
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Ensure all sections respect viewport */
  section,
  .industry-section,
  .industry-wrap {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* ---------- HEADINGS ---------- */
  .industry-wrap h2 {
    font-size: 26px;
    line-height: 1.3;
    word-break: break-word;
  }

  .industry-hero h1 {
    font-size: 30px;
    line-height: 1.2;
    word-break: break-word;
  }

  /* ---------- PARAGRAPHS ---------- */
  .industry-wrap p {
    font-size: 15px;
    line-height: 1.7;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* ---------- BULLET POINTS ---------- */
  .industry-points li {
    font-size: 15px;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* ---------- CHALLENGE GRID ---------- */
  .challenge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .challenge-card {
    width: 100%;
    max-width: 100%;
    padding: 16px 14px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;

    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  /* ---------- IMPACT GRID ---------- */
  .impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .impact-card h3,
  .impact-card p {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* ---------- IMAGE + TEXT STACK ---------- */
  .industry-wrap.grid-2 {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .industry-wrap.grid-2 img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
  }
}

/* Extra-small phones */
@media (max-width: 480px) {

  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .industry-hero h1 {
    font-size: 26px;
  }
}
/* ================= SMART SCROLL NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* When hidden */
.navbar.nav-hide {
  transform: translateY(-100%);
}

/* Optional shadow when visible */
.navbar.nav-show {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
/* ================= SIDEBAR ================= */

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  transition: right 0.35s ease;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: flex-end;
  padding: 16px;
}

.close-btn {
  font-size: 22px;
  cursor: pointer;
}

.sidebar-menu {
  list-style: none;
  padding: 0 20px 40px;
}

.sidebar-menu li {
  margin-bottom: 16px;
}

.sidebar-menu a,
.sidebar-menu span {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  cursor: pointer;
  display: block;
}

.submenu {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  padding-left: 12px;
}

.submenu li {
  margin-bottom: 10px;
}

.sidebar-submenu .submenu-heading {
    display: block;
    margin-top: 2px;
    font-weight: 700;
    color: #000;          /* same as <strong> */
    text-decoration: none;
}
/* whatsapp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 55px;
  height: 55px;
  background-color: #14a549;
  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp-float i {
  line-height: 1;
}
.whatsapp-float:hover {
  background-color: #1ebe57;
  text-decoration: none;
  color: #fff;
}

/* organization */
/* ================= PAGE HEADER ================= */
.page-header {
  background: linear-gradient(135deg, #003366, #031525);
  color: #fff;
  text-align: center;
  padding: 140px 20px;
}

.page-header h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 16px;
  opacity: 0.9;
}
.page-header {
  min-height: 300px;
  padding-top: 160px;
  padding-bottom: 80px;
}

/* ================= CONTAINER ================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

/* ================= ABOUT ================= */
.about-section p,
.who-we-are p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

/* ================= VISION / MISSION ================= */
.vmr-section {
  background: #f7f9fc;
}

.vmr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.vmr-card {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.vmr-card h3 {
  color: #0056a6;
  margin-bottom: 15px;
}

/* ================= DIFFERENTIATORS ================= */
.differentiators h2 {
  text-align: center;
  margin-bottom: 40px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.diff-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.diff-card span {
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 48px;
  color: #e6eef7;
  font-weight: bold;
}

.diff-card h3 {
  color: #003366;
  margin-bottom: 10px;
}
