
   html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  height: auto;
  overflow-x: hidden;
}
    

.text-blue{
    color: #003f72;
}
.text-orange{
    color: #ff5e14;
}
.bg-blue{
    background: #003f72;
}
.bg-orange{
    background: #ff5e14;
}
.text-white{
    color: #fff;
}
.pointer {
  cursor: pointer;
}
/*loader button*/
    #loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff5e14; 
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .loader {
    width: 30px;
    height: 30px;
    border: 4px solid rgba(255, 255, 255, 0.5);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  /*Wp btn*/
  #whatsappBtn {
  position: fixed;
  bottom: 80px; /* Adjust to sit above the scrollPie */
  right: 20px;
  width: 40px;
  height: 40px;
   display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: white;
  padding: 10px;
  border-radius: 50%;
  z-index: 1000;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

#whatsappBtn:hover {
  background-color: #128C7E;
}
  /*Scroller circle*/
#scrollPie {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #003f72;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

#scrollPie:hover {
  transform: scale(1.1);
}

.pie {
  width: 36px;
  height: 36px;
  transform: rotate(-90deg);
  position: absolute;
}

.pie path {
  fill: none;
  stroke-width: 2.8;
}

.pie .bg {
  stroke: #eee;
}

.pie .fill {
  stroke: #ff5e14;
  transition: stroke-dasharray 0.3s ease;
}

.percent-text {
  color: white;
  font-size: 10px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

  /*Navbar*/
  .nav-link{
    color: #003f72;
  }
  .nav-link:hover{
    color: #ff5e14;
  }

    .navbar {
      background-color: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .navbar-brand img {
      height: 80px;
    }

    .hero-carousel {
      position: relative;
      height: 100vh;
    }

.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.img-cover {
  object-fit: cover;
  height: 100%;
}

.hero-overlay {
  z-index: 10;
  background: rgba(0, 0, 0, 0.349); /* Optional: darkens bg for readability */
  padding: 2rem;
}

  .send-inquiry-btn {
    background-color: #003f72;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
  }

  .send-inquiry-btn:hover {
    background-color: #ff5e14;
    color: white;
  }

    .hero-content {
      max-width: 600px;
    }

    .cta-form {
      background: #fff;
      border-radius: 30px;
      display: flex;
      max-width: 500px;
      margin-top: 20px;
    }

    .cta-form input {
      border: none;
      border-radius: 30px 0 0 30px;
      padding: 12px 20px;
      flex-grow: 1;
    }

    .cta-form button {
      border-radius: 0 30px 30px 0;
      border: none;
      padding: 12px 25px;
    }

    .btn-inquiry {
      border-radius: 20px;
      padding: 6px 16px;
      background: #003f72;
      color: white;
      transition: background-color 0.3s ease;
    }
    .btn-inquiry:hover{
      background: #ff5e14;
      color: white;
      transition: background-color 0.3s ease;
    }
    /* overlay cards section*/
    .circle-number {
  width: 60px;
  height: 60px;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #333;
  font-size: 18px;
}
.overlay-cards{
        position: relative;
    top: -60px;
    z-index: 11;
}
 .overlay-cards .card {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
  }

  .overlay-cards .card:hover {
    transform: translateY(-10px);
    transition: transform 0.5s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }
  .overlay-cards .card {
    transition: background-color 0.5s, color 0.5s;
  }

  .overlay-cards .card:hover {
    background-color: #003f72;
    color: #ffffff !important;
  }

  .overlay-cards .card:hover h5,
  .overlay-cards .card:hover p,
  .overlay-cards .card:hover .text-blue,
  .overlay-cards .card:hover .circle-number {
    color: #ffffff !important;
  }

  .circle-number :hover{
    background-color: #003f72;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
.about-section p {
  font-size: 0.95rem;
  color: #555;
}
/*Service Section*/
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 400px;
  cursor: pointer;
  transition: transform 1.5s ease;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.service-card:hover img {
  transform: scale(1.3);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 1.5s ease;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover .service-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.service-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s ease;
}

.service-card:hover .service-text {
  opacity: 1;
  transform: translateY(0);
}

/*process*/
.step-box {
      position: relative;
      text-align: center;
      padding: 30px 0px;
    }

    .step-image-wrapper {
      position: relative;
      display: inline-block;
    }

    .step-image {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 50%;
      transition: transform 0.4s ease;
    }

    .step-number {
      position: absolute;
      top: 0px;
      left: 10px;
      background-color: #ff5e14;
      color: white;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-weight: bold;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2;
    }

    .step-title {
      margin-top: 15px;
      font-weight: bold;
      cursor: pointer;
    }
    .step-title:hover {
      color: #ff5e14;
       transition: all 0.5s ease;
    }

    .step-desc {
      font-size: 0.9rem;
      color: #555;}

/*inquiry form*/
.inquiry-section {
  background: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 15px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
   flex-direction: row;
  max-width: 1200px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.144);
}

/* Left side (image and title) */
.left-side {
  flex: 1 1 300px;
  background: url('assets/images/form-left.png') center/cover no-repeat;
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 100%; /* Let it stretch */
}

.left-side h2 {
  font-size: 45px;
  margin-bottom: 20px;
  text-shadow: 3px 2px 4px #0e0d0d;
}

.left-side p {
  font-size: 23px;
  font-weight: bold;
  text-shadow:  3px 2px 4px #000;
}

/* Right side (form) */
.right-side {
  flex: 2 1 500px;
  background: white;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
 justify-content: flex-start;
}

.form-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);

}

.form-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
}

/* Form grid layout */
form {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  grid-column: span 1;
  padding-bottom: 25px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 15px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
  background: #fff;
  color: #333;
  border-radius: 5px;
}

.form-group textarea {
  resize: vertical;
  height: 80px;
}

.form-group label {
  margin-bottom: 5px;
  font-size: 14px;
  color: #474747;
}

/* Checkboxes and radios */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns */
  gap: 10px 20px; /* row and column gap */
  font-size: 14px;
  color: #333;
}
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  color: #333;
}


.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Button */
.btn-form {
  background: #003f72;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  grid-column: span 2;
}

.btn-form:hover {
  background: #ff5e14;
  color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column; /* stack image on top, form below */
  }

  .left-side,
  .right-side {
    flex: 1 1 100%;
    order: unset !important;
  }

  .left-side {
    min-height: 250px; /* adjust height for mobile */
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  .left-side h2 {
  font-size: 30px;
  margin-bottom: 20px;
  text-shadow: 3px 2px 4px #0e0d0d;
}

.left-side p {
  font-size: 20px;
  font-weight: bold;
  text-shadow:  3px 2px 4px #000;
}

  .left-side,
  .right-side {
    width: 100%;
  }
}

@media (max-width: 768px) {
  form {
    grid-template-columns: 1fr;
  }
  .contact-container {
    flex-direction: column;
  }
 
  .form-group.full-width,
  .btn-form {
    grid-column: span 1;
  }
}

/*Register section*/

 .register-section {
      position: relative;
      background: url('assets/images/register_bg.jpg') center center / cover no-repeat;
      height: 400px;
      color: #fff;
    }

    .register-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 44, 63, 0.6);
      z-index: 1;
    }

    .register-content {
      position: relative;
      z-index: 2;
    }

    .register-button {
      background-color: #003f72;
      border: none;
      color: white;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 6px;
      transition: background-color 0.3s ease;
    }

    .register-button:hover {
      background-color: #ff5e14;
      color: white;
    }

    /*Testimonial section*/
    .testimonial-section{
      max-width: 1000px;
    }
   .testimonial-img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
    }

    .testimonial-text {
      font-size: 0.95rem;
      color: #555;
    }

    .client-info {
      font-weight: bold;
      margin-bottom: 0;
    }

    .client-role {
      font-size: 0.8rem;
      color: #777;
    }
    /* Fix shifting testimonial height */
  #testimonialCarousel .carousel-inner {
    min-height: 150px; /* Adjust height as needed */
  }

  /* Optional: Consistent image sizing */
  .testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
  }

  /* Optional: Smoother transition between slides */
  #testimonialCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
  }
  .bg-gray{
    background: #f0f0f0c2;
  }
  /*Footer*/
  .social-icon {
  background-color: #003f72;
  color: white;
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background 0.3s ease;
  text-decoration: none;
  font-size: 15px;
}

.social-icon:hover {
  background-color: #ff5e14;
  color: white;
}
.responsive-logo {
  height: 80px;
}

@media (max-width: 991px) {
  .responsive-logo {
    height: 60px;
  }
}
@media (max-width: 767px) {
  .responsive-logo {
    height: 80px;
  }
}