*{
    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;
  }
}














.services-hero {
  position: relative;
  height: 85vh;
  background: url("/images/services.webp") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(15, 27, 45, 0.85); */
      background: rgba(0, 0, 0, 0.65);
}

.services-hero-content {
  position: relative;
  z-index: 2;
}

.services-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-hero p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.breadcrumb {
  font-size: 14px;
  color: #9ca3af;
}

.breadcrumb a {
  color: #0d6efd;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}


/* Tablet */
@media (max-width: 992px) {

  .services-hero {
    height: 70vh;
 
  }

  .services-hero h1 {
    font-size: 38px;
  }

  .services-hero p {
    font-size: 16px;
  }

}

/* Mobile */
@media (max-width: 600px) {

  .services-hero {
    height: 60vh;
    padding: 0 20px;
  }

  .services-hero-content {
    max-width: 100%;
  }

  .services-hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .services-hero p {
    font-size: 15px;
  }

  .breadcrumb {
    font-size: 13px;
  }

}







.services-overview {
  padding: 70px 80px;
  background: #ffffff;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f1b2d;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 16px;
  color: #6c757d;
}

/* GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* CARD */
.service-card {
  width: 30%;
  min-width: 280px;
  padding: 40px 30px;
  border: 1px solid #e5e7eb;
  border-top: 3px solid #0d6efd;
  transition: 0.3s ease;
  background: #fff;
  border-radius: 20px 0px 20px 0px;
  border-left: 1px solid #0d6efd;
  box-shadow: 0 5px 15px rgba(0,0,0,0.07);

}

.service-card i {
  font-size: 30px;
  color: #0d6efd;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0f1b2d;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #6c757d;
}

/* PROFESSIONAL HOVER */
.service-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
  transform: translateY(-8px);
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .service-card {
    width: 48%;
  }
}

@media (max-width: 600px) {
  .services-overview {
    padding: 80px 30px;
  }

  .service-card {
    width: 100%;
  }
}








.services-division {
  padding: 120px 80px;
  background: #f8f9fc;

}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f1b2d;
}

.services-header p {
  margin-top: 15px;
  color: #6c757d;
}

.division-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;

}

.division-card {
  flex: 0 0 calc(33.333% - 30px);
  background: #fff;
  padding: 40px;
  cursor: pointer;
  transition: 0.3s ease;
      border-radius: 20px 0px 20px 0px;
    border-left: 1px solid #0d6efd;
    border-top: 3px solid #0d6efd;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
      position: relative; /* Needed for absolute positioning of span */
}

.division-card:hover {
  border-color: #0d6efd;
  transform: translateY(-6px);
}

.division-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0f1b2d;
}

.division-card p {
  color: #6c757d;
  font-size: 14px;
}

.card-cta {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  color: #0d6efd;
  font-weight: 600;
  cursor: pointer;
  /* No hover effect, always visible */
}

.division-card:hover .card-cta {
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 1024px) {
  .division-card {
    flex: 0 0 calc(50% - 15px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-division {
    padding: 80px 20px;
  }

  .division-card {
    flex: 0 0 100%;
  }
}

/* @media (max-width: 900px) {
  .division-card {
    flex: 1 1 100%;
  }
} */









/*.service-modal {*/
/*  position: fixed;*/
/*  inset: 0;*/
/*  background: rgba(15, 27, 45, 0.8);*/
/*  backdrop-filter: blur(8px);*/
/*  display: none;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  padding: 40px;*/
/*  z-index: 999;*/
/*}*/

/*.modal-content {*/
/*  background: #fff;*/
/*  max-width: 900px;*/
/*  max-height: 80vh;*/
/*  overflow-y: auto;*/
/*  padding: 50px;*/
/*  position: relative;*/
/*  margin-top: 100px;*/
/*}*/

/*.close-btn {*/
/*  position: absolute;*/
/*  top: 20px;*/
/*  right: 25px;*/
/*  font-size: 24px;*/
/*  cursor: pointer;*/
/*}*/



/* RESPONSIVE */
/*@media (max-width: 900px) {*/

/*}*/




/* MODAL DESIGN */
.service-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(6px);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.modal-content{
  background:#ffffff;
  width:90%;
  max-width:900px;
  max-height:85vh;
  overflow-y:auto;
  padding:40px;
  border-radius:12px;
  box-shadow:0 25px 60px rgba(0,0,0,0.2);
  position:relative;
  animation:modalFade .35s ease;
}

@keyframes modalFade{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* CLOSE BUTTON */

.close-btn{
  position:absolute;
  top:18px;
  right:25px;
  font-size:28px;
  cursor:pointer;
  color:#666;
  transition:.3s;
}

.close-btn:hover{
  color:#0d6efd;
}

/* MODAL TYPOGRAPHY */

#modalBody h2{
  font-size:28px;
  margin-bottom:10px;
}

#modalBody h4{
  margin-top:25px;
  margin-bottom:10px;
  color:#0d6efd;
}

#modalBody ul{
  padding-left:18px;
  line-height:1.7;
}

/* BRANDS SECTION */

.brands-section{
  margin-top:35px;
  padding-top:25px;
  border-top:2px solid #f0f0f0;
}

.brands-section h3{
  font-size:22px;
  margin-bottom:18px;
  color:#111;
}

/* BRANDS GRID */

.brands-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

/* BRAND TAG */

.brand-tag{
  padding:8px 16px;
  background:#f1f5ff;
  border:1px solid #dbe6ff;
  border-radius:30px;
  font-size:14px;
  font-weight:500;
  color:#0d6efd;
  transition:.3s;
}

.brand-tag:hover{
  background:#0d6efd;
  color:#fff;
  transform:translateY(-2px);
}














.efficiency-section {
  padding: 70px 80px;
  background: #ffffff;
}

.efficiency-header {
  text-align: center;
  margin-bottom: 70px;
}

.efficiency-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f1b2d;
  margin-bottom: 15px;
}

.efficiency-header p {
  font-size: 16px;
  color: #6c757d;
  max-width: 750px;
  margin: auto;
}

/* FLEX GRID */
.efficiency-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* BOX */
.efficiency-box {
  width: 23%;
  min-width: 250px;
  padding: 40px 30px;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
  background: #fff;
  border-radius: 0px 20px 0px 20px;
  border-bottom: 3px solid #0d6efd;
  box-shadow: 0 15px 15px rgba(0,0,0,0.07);


}

.efficiency-box i {
  font-size: 28px;
  color: #0d6efd;
  margin-bottom: 20px;
}

.efficiency-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #0f1b2d;
}

.efficiency-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #6c757d;
}

/* PROFESSIONAL HOVER */
.efficiency-box:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transform: translateY(-6px);
  border-top: 4px solid #0d6efd;
  border-right: 2px solid #0d6efd;
  border-radius: 20px 0px 20px 0px;
  border-bottom: hidden;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .efficiency-box {
    width: 48%;
  }
}

@media (max-width: 600px) {
  .efficiency-section {
    padding: 80px 30px;
  }

  .efficiency-box {
    width: 100%;
  }
}




.strategic-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;

}


.cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}

.strategic-cta h2 {
  font-size: 36px;
  font-weight: 700;
  /* color: #0f1b2d; */
  margin-bottom: 20px;
}

.strategic-cta p {
  font-size: 16px;
  /* color: #6c757d; */
  line-height: 1.8;
  margin-bottom: 45px;
}

/* Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-primary {
  padding: 14px 34px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.cta-primary:hover {
  background: #0b5ed7;
  transform: translateY(-3px);
}

.cta-secondary {
  padding: 14px 34px;
  border: 2px solid #0d6efd;
  color: #0d6efd;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.cta-secondary:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .strategic-cta {
              height: 90vh;
    padding: 80px 30px;
  }
  .cta-secondary {
    padding: 8px 17px;
    font-size: 13px;
}
.cta-primary{
    padding: 6px 15px;
    font-size: 13px;
}

  .strategic-cta h2 {
    font-size: 28px;
  }
}









.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;
  }
}