/* GLOBAL */
* {
  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;
  }
}








/* CONTAINER */
/* .container {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;


} */

/* ============================= */
/* 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;
  }
}





/* HERO SECTION */
/* .hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('/images/hero-img3.webp') center center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 80px;
} */


/* .hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../images/hero-img1.webp') center center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  padding-left: 80px;
} */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../images/home.webp') center center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  padding: 0 80px;
}


/* BLACK OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  top: 0;
  left: 0;
}

/* CONTENT */
/* .hero-content {
  position: relative;
  color: #ffffff;
  max-width: 650px;
} */

.hero-content {
  position: relative;
  color: #ffffff;
  max-width: 650px;
  width: 100%;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* BUTTONS */
/* .hero-buttons a {
  text-decoration: none;
  padding: 12px 28px;
  margin-right: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
} */
 .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-buttons a {
  text-decoration: none;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #0d6efd;
  color: #ffffff;
}

.btn-primary:hover {
  background: #084298;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: #000;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .hero {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 25px;
    min-height: 90vh;
    background-attachment: scroll; /* important for mobile */
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
            align-items: center;
        justify-content: center;
  }

  .hero-buttons a {
    width: 70%;
    text-align: center;
  }
}





/* @media (max-width: 768px) {
  .hero {
    padding-left: 30px;
    height: 90vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }
} */





/* ABOUT SECTION */
.about-section {
  width: 100%;
  padding: 100px 80px;
  background: #ffffff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-text {
  width: 50%;
}

.about-text h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #555;
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #084298;
}

/* IMAGE SIDE */
.about-image {
  width: 50%;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    width: 100%;
  }

  .about-section {
    padding: 80px 30px;
  }
}





















/* SERVICES SECTION */
.services-section {
  padding: 100px 80px;
  background: #f8faff;
  text-align: center;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.services-header p {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

/* FLEX CONTAINER */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* CARD DESIGN */
.service-card {
  background: #ffffff;
  /*width: 300px;*/
  width: calc(33.33% - 20px);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-align: left;
  border-top: 4px solid #0d6efd;
  opacity: 0;
  transform: translateY(40px);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #111;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ACTIVE ANIMATION CLASS */
.service-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

@media (max-width: 992px) {
  .service-card {
    width: calc(50% - 15px);
  }
}
@media (max-width: 600px) {
  .service-card {
    width: 100%;
  }
}

/* RESPONSIVE */
/*@media (max-width: 900px) {*/
/*  .services-section {*/
/*    padding: 80px 30px;*/
/*  }*/

/*  .service-card {*/
/*    width: 100%;*/
/*  }*/
/*}*/












/* INDUSTRIES SECTION */
/* .industries-section {
  padding: 100px 80px;
  background: #ffffff;
  text-align: center;
}

.industries-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.industries-header p {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

.industries-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}


.industry-box {
  padding: 18px 35px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-weight: 500;
  background: #f9fbff;
  transition: all 0.3s ease;
  cursor: default;
}


.industry-box:hover {
  background: #0d6efd;
  color: #ffffff;
  border-color: #0d6efd;
  transform: translateY(-5px);
}


@media (max-width: 900px) {
  .industries-section {
    padding: 80px 30px;
  }

  .industry-box {
    width: 100%;
  }
} */






.industries-section {
  padding: 100px 80px;
  text-align: center;
}

.industries-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.industries-header p {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

/* FLEX GRID */
.industries-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* CARD DESIGN */
.industry-card {
  /*width: 280px;*/
  width: calc(33.33% - 20px);
  padding: 30px 25px;
  border-radius: 12px;
  /* background: rgba(255, 255, 255, 0.7); */
  background: #f7f9fc;
  backdrop-filter: blur(10px);
  /* border: 1px solid #0d6efd; */
  border-left: 2px solid #0d6efd;
  border-bottom: 2px solid #0d6efd;
  transition: all 0.4s ease;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.industry-card i {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 15px;
  transition: 0.3s;
}

.industry-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
  transition: 0.3s;
}

.industry-details {
  font-size: 14px;
  color: #555;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease;
}

/* PROFESSIONAL HOVER */
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.industry-card:hover .industry-details {
  opacity: 1;
  transform: translateY(0);
}

.industry-card:hover i {
  color: #084298;
}

/* RESPONSIVE */
/*@media (max-width: 900px) {*/
/*  .industries-section {*/
/*    padding: 80px 30px;*/
/*  }*/

/*  .industry-card {*/
/*    width: 100%;*/
/*  }*/
/*}*/

/* Tablet */
@media (max-width: 992px) {
  .industry-card {
    width: calc(50% - 15px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .industry-card {
    width: 100%;
  }
}


















/* WHY SECTION */
.why-section {
  padding: 120px 80px;
  background: #0f1b2d;
  color: #fff;
}

.why-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* LEFT SIDE */
.why-left {
  width: 40%;
}

.why-left h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* RIGHT SIDE */
.why-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* BOX DESIGN */
.why-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  border-left: 4px solid #0d6efd;
  background: rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

.why-box i {
  font-size: 28px;
  color: #0d6efd;
  margin-top: 5px;
}

.why-box h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-box p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* PROFESSIONAL HOVER */
.why-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-container {
    flex-direction: column;
  }

  .why-left,
  .why-right {
    width: 100%;
  }

  .why-section {
    padding: 80px 30px;
  }
}









.stats-section {
  position: relative;
  /* background: url("/images/hero-img2.webp") center/cover no-repeat fixed; */
  /* background: #0f1b2d; */
  background: linear-gradient(90deg,rgba(15, 27, 45, 1) 0%, rgba(49, 49, 92, 1) 50%, rgba(84, 121, 158, 1) 100%);
  padding: 120px 80px;
  color: #fff;
  text-align: center;
  border-radius: 0px 0px 15px 15px;
  border-bottom: 2px solid #ffffff;

}

/* .stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.85);
} */

.stats-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}


.stat-box {
  flex: 1;
  min-width: 200px;
}

.stat-box h2 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
  letter-spacing: 1px;
  color: #cbd5e1;
}


@media (max-width: 900px) {
  .stats-container {
    flex-direction: column;
    gap: 50px;
  }

  .stats-section {
    padding: 80px 30px;
  }
}




.cta-section {
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(10, 20, 40, 0.8); */
  background: rgba(0, 0, 0, 0.65);
  border-radius: 0px 0px 15px 15px;

}

.cta-container {
  /* max-width: 900px;
  margin: auto; */
  position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 32px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #0b5ed7;
  transform: translateY(-3px);
}

.btn-outline {
  padding: 14px 32px;
  border: 2px solid #0d6efd;
  color:  #0d6efd;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #0d6efd;
  transform: translateY(-3px);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-section {
    padding: 80px 30px;
  }

  .cta-section 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;
  }
}
