 body {
      font-family: 'Segoe UI', sans-serif;
    }
    .hero-banner {
  min-height: 90vh;
  background: url('images/your-banner.jpg') no-repeat center center/cover;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

    
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      color: #000;
    }

    .nav-link {
  transition: color 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #ff5e14 !important;
}

    .stats-section {
  background: #0b1f3a;
  color: white;
  border-radius: 0 0 60px 60px; /* slightly smaller curve */
  padding: 20px 10px;           /* reduced padding */
  text-align: center;
}

.stats-section .col {
  padding: 10px;                /* reduced internal spacing */
}

.text-justify {
  text-align: justify;
}


.btn-orange {
  background-color: #ff5e14;
  color: white;
  border: none;
}

.btn-orange:hover {
  background-color: #f77842;
  color: white;
}


/* Section background and spacing */
.ai-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

/* Main service card box */
.service-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Icon inside card */
.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

/* Card heading */
.service-box h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 10px;
}

/* Paragraph text */
.service-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Highlight card - optional extra style */
.highlight-box {
  border: 2px solid #ff5e14;
}

/* Left title heading card (Box 1) */
.service-box1 {
  /* background-color: #fff; */
  /* border-radius: 20px; */
  padding: 25px;
  text-align: left;
  height: 100%;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); */
}

/* Main heading in left box */
.title-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b1f3a;
  margin-bottom: 20px;
}

.title-sub {
  color: #ff5e14;
  font-size: 1.8rem;
  font-weight: 800;
}

/* Button inside left box */
.view-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #ff5e14;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.view-btn:hover {
  background-color: #fb8c00;
}


    /* image shape  */
    .custom-shape {
  border-top-left-radius: 150px;
  border-bottom-left-radius: 150px;
  object-fit: cover;
  width: 100%;
  height: auto;
}
/* expert section  */
.expert-img {
      border-radius: 50%;
      width: 150px;
      height: 150px;
      object-fit: cover;
    }

    .expert-card {
      transition: transform 0.3s ease;
    }

    .expert-card:hover {
      transform: translateY(-5px);
    }
/* process */
.process-section .underline {
  width: 60px;
  height: 3px;
  background-color: #ff5e14; /* or use #f7542d for red-orange */
}

.step-number {
  font-size: 48px;
  font-weight: bold;
  color: #000;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
  display: inline-block;
}

.footer-link {
 color: #cccccc;
 text-decoration: none;
 display: block;
 margin-bottom: 6px;
 transition: all 0.3s ease;
 }
 .footer-link:hover {
 color: #ffffff;
 text-decoration: underline;
 }
 .footer-section {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ff5e14; /* applied to all footer text like Contact */
  transition: color 0.3s ease;
}
.footer-contact a {
  color: #adb5bd; /* grey color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffffff; /* white on hover */
}

/* On hover over entire footer-section text */
.footer-section:hover {
  color: #ffffff;
}

/* Bootstrap Icons hover (if any) */
.footer-section .bi {
  transition: color 0.3s;
}
.footer-section .bi:hover {
  color: #ffffff; /* Optional: same white hover for icon */
}
  .text-orange {
    color: #ff5e14 !important; /* You can adjust the orange shade here */
  }


  /* enquiry form  */
  .enquiry-form-section {
 background: url('img/bg.jpg') center center/cover no-repeat;
 min-height: 100vh;
 position: relative;
 }

 .form-wrapper {
 position: relative;
 z-index: 2;
 max-width: 750px;
 background: #05053b;
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.1);
 }
 .btn-orange-custom {
  background-color: #ff5e14;
  color: #ffffff;
  border: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-orange-custom:hover {
  background-color: #ff6a1a;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}


/* Headings color updated to #0b1f3a */
.about-title,
.title-heading,
.experts-section h2,
.process-section h2 {
  color: #0b1f3a !important;
}

.vision-mission-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: Arial, sans-serif;
}

.section-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
  color: #0b1f3a; /* Blue */
}

.box {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.box h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.box ul {
  padding-left: 20px;
}

.box ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Permanent orange line on left */
.box-left-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background-color: #0b1f3a; /* Orange */
  border-radius: 20px 0 0 20px;
}

.hiring-section {
  background: linear-gradient(to right, #f4f8fc, #ffffff);
}

.text-primary {
  color: #0b1f3a; /* Blue */
}

.btn-orange {
  background-color: #ff5e14; /* Orange */
  color: #fff;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #e56600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

 .why-choose-us {
      /* max-width: 1000px; */
      margin: 40px auto;
      padding: 20px;
      /* background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    }

    .why-choose-us h2 {
      text-align: center;
      color: #343a40;
      margin-bottom: 30px;
    }

    .reasons-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 20px;
    }

    .reason {
      flex: 1 1 calc(33.333% - 20px);
      background: #ffeee5;
      padding: 20px;
      border-radius: 10px;
      transition: transform 0.3s ease;
      min-width: 250px;
      max-width: 300px;
    }

    .reason:hover {
      transform: translateY(-5px);
      background: #fddecf;
    }

    .reason-icon {
      font-size: 24px;
      color: #007bff;
      margin-bottom: 10px;
    }

    .reason-title {
      font-weight: bold;
      font-size: 16px;
      color: #222;
      margin-bottom: 5px;
    }

    .reason-text {
      font-size: 15px;
      color: #555;
    }

    @media (max-width: 768px) {
      .reason {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }


    /* ================================================== */

        .header-section {
      background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
      padding: 80px 0;
      color: #fff;
      text-align: center;
    }

    .header-section h1 {
      font-weight: 700;
      font-size: 3rem;
    }

    .header-section .lead {
      font-size: 1.4rem;
      font-weight: 400;
    }

    .section-title {
      text-align: center;
      font-weight: 600;
      font-size: 2rem;
      margin-bottom: 40px;
      color: #e56600;
    }
/* Navbar overall height control */
.navbar {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  min-height: 70px; /* You can adjust height as needed */
}

/* Logo image styling */
.navbar-brand img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: -8px; /* adjust to reduce top space */
  margin-bottom: -15px; /* adjust to reduce bottom space */
}

/* Align navbar contents vertically */
.navbar .container,
.navbar .navbar-nav {
  align-items: center;
}

    .testimonial-section {
  background-color: #f8f9fa;
}

.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

    .card {
      transition: all 0.3s ease-in-out;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .icon-box {
      font-size: 2.5rem;
    }

    .horizontal-card .card {
      border: none;
      border-left: 5px solid #0d6efd;
    }

    @media (max-width: 768px) {
      .header-section h1 {
        font-size: 2rem;
      }
      .header-section .lead {
        font-size: 1.1rem;
      }
    }




    
    .title {
      display: flex;
      align-items: center;
      font-size: 1.8rem;
      font-weight: bold;
      color: #333;
      margin-bottom: 20px;
    }

    .title span {
      font-size: 1.6rem;
      margin-right: 10px;
    }

    .section {
      margin-bottom: 25px;
    }

    .section h3 {
      margin-bottom: 8px;
      color: #222;
    }

    .section p {
      font-size: 1rem;
      line-height: 1.6;
      color: #444;
    }

    ul.offer-list {
      padding-left: 20px;
      margin-top: 10px;
    }

    ul.offer-list li {
      margin-bottom: 10px;
      color: #333;
    }

    .cta {
      margin-top: 30px;
      text-align: center;
    }

    .cta a {
      display: inline-block;
      padding: 12px 24px;
      background-color: #007bff;
      color: white;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
      transition: background 0.3s;
    }

    .cta a:hover {
      background-color: #0056b3;
    }

    @media (max-width: 600px) {
      .title {
        font-size: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
      }

      .title span {
        margin-bottom: 5px;
      }
    }