* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}


body {
  font-family: Arial, sans-serif;
  /* background-color: #0a0f1c; */

  color: white;
}

header {
  background-color: #090043;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Ensure it stays on top of other elements */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: nice shadow */
}


.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 260px;
  height: 70px;
}

.title span {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a,
.dropbtn {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links a.active {
  color: #00aaff;
  border-bottom: 2px solid #00aaff;
  padding-bottom: 2px;
}

.dropdown {
  position: relative;

}

.dropdown-content {
  display: none;
  position: absolute;
  top: 20px;
  left: 0;
  background-color: white;
  color: black;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 7px 10px;
  color: black;
  text-decoration: none;
  text-align: justify;
}

.dropdown-content a:hover {
  background: #eee;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact {
  font-size: 17px;
  text-align: right;
}

.phone {
  font-weight: bold;

}

.status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: limegreen;
  border-radius: 50%;
}

.hamburger {
  font-size: 24px;
  color: white;
  display: none;
  cursor: pointer;
}

.drop-btn {
  font-size: 12px;
}

/* ✅ Responsive Fix */
@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0a0f1c;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 0;

  }



  .nav-links.show {
    display: flex;

  }

  .dropdown:hover .dropdown-content {
    display: none;
  }



  .dropdown.open .dropdown-content {
    display: block;
    position: static;
    background: white;
    color: black;
    border: 1px solid #333;
    box-shadow: none;
    width: 100%;
    text-align: center;

  }

  .dropdown-content a {
    color: black;
  }

  .hamburger {
    display: block;


  }
}



@media (max-width: 480px) {
  .logo {
    width: 120px;
    height: auto;
  }

  .title span {
    font-size: 10px;
  }

  .phone {
    font-size: 12px;
  }

  .right .contact {

    justify-content: space-around;

  }

  .status {
    font-size: 11px;
  }

  .hamburger {
    font-size: 20px;
    margin: 0 20px 0 0;
  }

  .nav-wrapper {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .left,
  .right {
    flex-shrink: 1;
  }

  .title {
    line-height: 1;
  }

  .nav-links a,
  .dropbtn {
    font-size: 14px;
    margin: 10px;
  }

  .contact {
    max-width: 110px;
  }
}



/* HERO Section STyling */



.hero {
  background-color: #191245;
  color: white;
  text-align: center;
  padding: 10px 20px;
  /* background-image: linear-gradient(to bottom, #0a0f1c, #0a0f1c), url('bg-grid.png'); */
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 30px;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background-color: white;
  color: #0a0f1c;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: bold;
  margin-bottom: 20px;

}

.main-heading {
  font-size: 60px;
  font-weight: bold;
  margin: 10px 0 20px;
}

.subtext {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-button {
  background-color: orange;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 40px;
  font-size: 28px;
  /* font-weight: bold; */
  cursor: pointer;
  margin-bottom: 50px;
  transition: background 0.3s ease;
}



.cta-button:hover {
  background-color: #ff9500;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* border-top: 1px solid #ffffff30; */
  padding-top: 30px;
  padding-bottom: 40px;
  /* gap: 20px; */
}

/* .feature {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
} */

.feature {
  flex: 1 1 50%;
  padding: 20px;
  text-align: center;
  position: relative;
}

.feature h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}

.feature p {
  font-size: 15px;
  color: #ddd;
}


@media (min-width: 768px) {
  .feature {
    flex: 1 1 25%;
  }


  .hero{
    padding: 40px;
  }

  .feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5%;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #ffffff40;
  }
}

/* 🔹 For mobile: add line only after 1st and 3rd items */
@media (max-width: 767px) {

  .hero{
    padding: 40px;
  }

  .feature:nth-child(1)::after,
  .feature:nth-child(3)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background-color: #ffffff40;
  }
}


/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .main-heading {
    font-size: 36px;
  }

  .subtext {
    font-size: 16px;
  }

  .cta-button {
    font-size: 18px;
    padding: 12px 30px;
  }

  .features-grid {
    justify-content: center;
  }

  .feature {
    flex: 1 1 calc(50% - 20px);
    text-align: center;
  }
}



/* IMage section styling */


.image-hover-section {
  /* background-color: #0a0f1c; */
  padding: 120px 20px 0px;
  position: relative;
  text-align: center;
}

.image-wrapper {
  position: relative;
  top: -160px;
  /* This floats image upward */
  display: inline-block;
}

.image-wrapper img {
  width: 800px;
  max-width: 90vw;
  /* border-radius: 12px; */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.image-wrapper img:hover {
  transform: scale(1.05);
}


@media (max-width: 767px) {

  .image-wrapper img {
    margin: 60px auto;
    border-radius: 0px;

  }
}




/* Service styliong */

#content-boxed-wrapper {
  background-color: #ffffff;
  /* light box background */
  padding: 10px 20px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0px auto 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  margin-top: -180px;
}


.services-section {
  padding: 0px 0;
  background-color: #ffffff;
  text-align: center;

}

/* ✅ Match the image section’s width alignment */
.content-container {
  width: 90vw;
  max-width: 700px;
  margin: 0 auto;
}

/* TEXT */
.services-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a0f1c;
  margin-bottom: 20px;
}

.services-content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin: 0 auto;
  text-align: justify;
}

.call-icon {
  color: #ff0066;
  font-size: 1.2rem;
  margin-right: 8px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.service-box {
  background: #ddd8d8;
  border-radius: 12px;
  overflow: hidden;
  /* padding: 12px; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-box p {
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.05rem;
  color: #0a0f1c;
}

/* ✅ Responsive */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-content h2 {
    font-size: 2rem;
  }

  .service-box {
    background: none;
  }
}

@media (max-width: 576px) {
  .services-section {
    margin-top: -160px;
  }

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

  .service-box {
    background: none;
  }

  .service-box img {
    width: 100%;
  }
}







/* ✅ Aligns with previous sections */
.content-container {
  margin-top: 5rem;
}

/* Checklist layout */
.service-lists {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 250px;
  text-align: left;
}

.checklist li {
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  color: black;
}

.check-icon {
  color: #00b2ff;
  font-weight: bold;
  margin-right: 10px;
}

/* Texts */
.note {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
  text-align: justify;
}

.note2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a0f1c;
  margin-bottom: 15px;
  text-align: justify;
}


.subtextt {
  font-size: 1.05rem;
  color: #444;
  text-align: justify;
  line-height: 1.6;
}

.highlightt {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 25px 0;
  text-align: justify;
}

/* Responsive */
@media (max-width: 576px) {
  .service-lists {
    flex-direction: column;
    gap: 20px;
  }

  .checklist {
    flex: 1 1 100%;
  }

  .service-checklist-section h3 {
    font-size: 1.4rem;
  }
}









.content-container .mission {
  font-size: 2rem;
  color: #0a0f1c;
  margin-bottom: 15px;
  text-align: left;
}

.mission-intro {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 30px;
  text-align: justify;
  line-height: 1.6;
}

/* Mission bullet points */
.mission-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: justify;
}

.mission-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: justify;
}

.icon {
  color: #00aaff;
  font-size: 1.2rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.text h4 {
  font-size: 1.1rem;
  color: #0a0f1c;
  margin-bottom: 5px;
  text-align: justify;
}

.text p {
  color: #555;
  line-height: 1.5;
  text-align: justify;
}

.mission-line {
  color: black;
  margin: 0px 0;
}


.caller-line {
  color: black;
  margin: 0px 0 80px 0;
}

/* Responsive */
@media (max-width: 576px) {
  .icon {
    font-size: 1rem;
  }

  .text h4 {
    font-size: 1rem;
  }

  .mission-intro {
    font-size: 1rem;
  }
}

.call-service-button {
  display: inline-block;
  background-color: #1bb7ff;
  color: #fff;
  font-size: 28px;
  padding: 15px 40px;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.call-service-button:hover {
  background-color: #0aa7e6;
}




/* Cntr */

.call-btn {
  display: inline-block;
  background-color: #1bb7ff;
  color: #fff;
  font-size: 28px;
  border: none;
  padding: 15px 40px;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 468px) {
  .call-btn {
    padding: 10px 30px;
    font-size: 20px;
  }
}


/* Home Service section */
.home-service {
  background: linear-gradient(to bottom, #0c1325, #121c33);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  margin-top: -90px; /* Move upwards */
  position: relative;
  z-index: -1;
  cursor: pointer;
}

/* Badge styling */
.badge {
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 10px 20px;
  /* border-radius: 10px; */
  margin: 60px 0 20px 0;
  font-size: 18px;

}


/* Heading */
.home-service h1 {
  font-size: 60px;
  font-weight: bold;
  margin: 20px 0;
}

/* Paragraph */
.home-service p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Call Button */
.home-service button {
  background-color: #1bb7ff;
  color: #fff;
  font-size: 28px;
  border: none;
  padding: 15px 40px;
  border-radius: 40px;
  cursor: pointer;

}


a{
  text-decoration: none;
  cursor: pointer;
  color: white;
}

@media (max-width: 468px) {
  .home-service button{
    padding: 10px 30px;
    font-size: 20px;
  }
}












.footer {
  background: linear-gradient(to top , #0c1325, #121c33);
  color: #fff;
  padding: 50px 20px;
  font-size: 14px;
}

.footer hr {
  border: none;
  border-top: 1px solid #ffffff;
  max-width: 1200px;
  margin: 0 auto 30px auto;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 10px;
}

.footer-top p,
.footer-top a {
  margin: 0;
  font-size: 18px;
}

.footer-links a {
  color: #fff;
  font-weight: bold;
  margin-left: 20px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 30px auto 0 auto;
  padding: 0 10px;
}

.footer-disclaimer p {
  color: #ccc;
  line-height: 1.6;
  font-size: 16px;
  text-align: justify;
}



@media (max-width: 468px){
  .footer-links{
    margin: 20px 0 0 0;
    
  }
}







    .disclaimer {
  font-size: 16px;
  color: #ffffff;
  padding: 20px;
  background-color: #ec0000;
  margin: 40px auto;
  max-width: 1200px;
  text-align: justify;
  border-radius: 8px;
  box-sizing: border-box;
}

/* Responsive improvements for smaller screens */
@media (max-width: 768px) {
  .disclaimer {
    font-size: 14px;
    padding: 15px;
    margin: 20px 10px;
  }
}

@media (max-width: 480px) {
  .disclaimer {
    font-size: 13px;
    padding: 12px;
    margin: 15px 8px;
  }
}





    







     .fixed-footer {
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: green;
      color: white;
      text-align: center;
      padding: 15px 0;
      font-size: 18px;
      z-index: 1000;
    }

    .fixed-footer a{
        color: white;
    }



    #scrollToTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background-color: #e53935;
  color: rgb(255, 255, 255);
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #c62828;
  transform: scale(1.1);
}






    .ripple-call-btn {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: #e53935;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 60px;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 0 0 10px rgba(103, 115, 186, 0.5);
  overflow: visible;
}

/* Phone icon on top */
.ripple-call-btn i {
  position: relative;
  z-index: 3;
}

/* Ripple ring */
.ripple-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: rgba(103, 115, 186, 0.5); /* outer color */
  animation: ripple 2s infinite ease-in-out;
  z-index: 1;
}

/* Second ripple with delay for wave effect */
.ripple-ring.delay {
  animation-delay: 1s;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}




