*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}


/* WhatsApp Button Styling */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 50px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
  position: fixed;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}

/* Tooltip Styling */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  /* Position to the left of the WhatsApp button */
  background-color: #ffffff;
  color: #25D366;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}



@media (max-width: 480px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    left: 15px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

}

@media (min-width: 481px) and (max-width: 768px) {
  .whatsapp-button {
    width: 55px;
    height: 55px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .whatsapp-button {
    width: 60px;
    height: 60px;
  }

  .whatsapp-icon {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 1025px) {
  .whatsapp-button {
    width: 70px;
    height: 70px;
  }

  .whatsapp-icon {
    width: 35px;
    height: 35px;
  }
}




/* ============================= */
/* NAVBAR FULL PROFESSIONAL CSS */
/* ============================= */

.container {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 50px;
  background: transparent;
  transition: 0.4s ease;
  z-index: 1000;
}

.navbar.scrolled {
  position: fixed;
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* LOGO */
.navbar-logo {
  width: 80px;
  height: auto;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
  white-space: nowrap;
}

.navbar.scrolled .nav-links a {
  color: black;
}

.nav-links a:hover {
  color: #0d6efd;
}

.active {
  color: #0d6efd;
}

.btn-contact {
  background: #0d6efd;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 4px;
}

.btn-contact:hover {
  background: #084298;
}

/* ============================= */
/* HAMBURGER MENU */
/* ============================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #0b5ed7;
  margin: 4px 0;
  border-radius: 3px;
  transition: 0.4s ease;
}

/* CROSS ANIMATION */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {

  .navbar {
    padding: 15px 20px;
  }

  .navbar-logo {
    width: 55px;
  }
  .navbar.scrolled .nav-links a {
  color: white;
}

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #000;
    width: 100%;
    flex-direction: column;
    text-align: center;
    display: none;
    padding: 25px 0;
    gap: 20px;
  }

  .nav-links a {
    color: #ffffff;
    font-size: 16px;
  }

  .nav-links.active {
    display: flex;
  }
}






.about-hero {
  position: relative;
  height: 85vh;
  background: url("/images/hero-img2.webp") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.about-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(15, 27, 45, 0.85); */
  /* background: rgba(10, 20, 40, 0.8); */
      background: rgba(0, 0, 0, 0.65);

}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.about-hero h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.7;
}

.breadcrumb {
  font-size: 14px;
  color: #9ca3af;
}

.breadcrumb a {
  color: #0d6efd;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 992px) {

  .about-hero {
    height: 70vh; /* mobile smoothness */
  }

  .about-hero h1 {
    font-size: 38px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-hero-content {
    padding: 0 30px;
  }
}


/* Mobile */
@media (max-width: 600px) {

  .about-hero {
    height: 60vh;
    padding: 0 20px;
  }

  .about-hero-content {
    max-width: 100%;
    padding: 0 15px;
  }

  .about-hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .about-hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  .breadcrumb {
    font-size: 13px;
  }

}



















.vision-mission {
  padding: 70px 80px;
  background: #f8f9fc;
}

.vm-header {
  text-align: center;
  margin-bottom: 70px;
}

.vm-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f1b2d;
  margin-bottom: 15px;
}

.vm-header p {
  font-size: 16px;
  color: #6c757d;
  max-width: 700px;
  margin: auto;
}

/* FLEX CONTAINER */
.vm-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* BOX */
.vm-box {
  width: 40%;
  min-width: 280px;
  padding: 50px 40px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
  text-align: center;
  border-radius: 20px 0px 20px 0px;
  border-left: 2px solid #0d6efd;
  border-bottom: 2px solid #0d6efd;

}

.vm-box i {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 25px;
}

.vm-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #0f1b2d;
}

.vm-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #6c757d;
}

/* Professional Hover */
.vm-box:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transform: translateY(-6px);
  border-top: 2px solid #0d6efd;
  border-right: 2px solid #0d6efd;
  border-left: hidden;
  border-bottom: hidden;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .vision-mission {
    padding: 80px 30px;
  }

  .vm-box {
    width: 100%;
  }
}





.core-values {
  padding: 120px 80px;
  background: #ffffff;
}

.values-header {
  text-align: center;
  margin-bottom: 70px;
}

.values-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f1b2d;
  margin-bottom: 15px;
}

.values-header p {
  font-size: 16px;
  color: #6c757d;
  max-width: 750px;
  margin: auto;
}

/* GRID */
.values-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* BOX */
.value-box {
  width: 30%;
  min-width: 280px;
  padding: 40px 30px;
  border: 1px solid #e5e7eb;
  background: #fff;
  transition: 0.3s ease;
    border-radius: 20px 0px 20px 0px;
  border-left: 2px solid #0d6efd;
  border-bottom: 2px solid #0d6efd;
}

.value-box i {
  font-size: 28px;
  color: #0d6efd;
  margin-bottom: 20px;
}

.value-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #0f1b2d;
}

.value-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #6c757d;
}

/* Professional Hover */
.value-box:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transform: translateY(-6px);
  /* border-top: 4px solid #0d6efd; */
    border-top: 2px solid #0d6efd;
  border-right: 2px solid #0d6efd;
  border-left: hidden;
  border-bottom: hidden;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1000px) {
  .value-box {
    width: 48%;
  }
}

@media (max-width: 600px) {
  .core-values {
    padding: 80px 30px;
  }

  .value-box {
    width: 100%;
  }
}











.final-cta {
  position: relative;
  height: auto;
  padding: 80px 30px;
  background: url("/images/hero-img1.webp") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border-radius: 0px 0px 15px 15px;

  
}

/* Dark Overlay */
.final-cta-overlay {
  position: absolute;
  inset: 0;
background: rgba(0, 0, 0, 0.65);
  border-radius: 0px 0px 15px 15px;

}

/* Content */
.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}

.final-cta-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.final-cta-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 40px;
}

/* Button */
.final-cta-btn {
  padding: 16px 38px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.final-cta-btn:hover {
  background: #0b5ed7;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta {
    height: 60vh;
    background-attachment: scroll; /* better mobile support */
  }
  .final-cta-btn {
  padding: 9px 10px;
  font-size: 11px;
}
  .final-cta-content h2 {
    font-size: 26px;
  }
}














.footer {
  background: #0f1b2d;
  color: #cbd5e1;
  padding-top: 80px;
    border-top: 3px solid white;
  border-radius: 15px 15px 0px 0px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 80px 60px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #0d6efd;
  padding-left: 5px;
}

/* Contact Icons */
.contact-info li i {
  margin-right: 10px;
  color: #0d6efd;
}

/* Social Links */
.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  color: #fff;
  margin-right: 8px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #0d6efd;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #0c1524;
  font-size: 14px;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    padding: 0 30px 60px;
  }
}