* {
  font-family: 'Poppins', sans-serif;
}

/* Space between logo and menu */
.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Push menu to right with gap */
.navbar-nav {
  margin-left: auto;
  gap: 10px;
}

/* Capitalize all menu text */
.navbar-nav .nav-link,
.dropdown-menu .dropdown-item {
  text-transform: uppercase !important;
  font-weight: 500;
  font-size: 15px;
}

/* Better vertical alignment */
.navbar-brand img {
  height: 60px;
}

/* Mobile spacing */
@media (max-width: 991px) {
  .navbar-nav {
    gap: 10px;
    margin-top: 10px;
  }
}

.navbar-nav .nav-link:hover {
  color: #0086FF !important;
}

/* Dropdown hover */
.dropdown-menu .dropdown-item:hover {
  background-color: #ffff !important;
  color: #0086FF !important;
}

.navbar-nav .nav-link.active {
  color: #0086FF !important;   /* your active color */
  font-weight: 600;
}


.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* KEY: makes it fill like background */
  z-index: -1;
}

/* Parent section */
.video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

    .video-section video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: 0;
    }

    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(49, 111, 203, 0.643); /* blue overlay */
      z-index: 1;
    }

    .video-content {
      position: relative;
      z-index: 5;
      color: #fff;
    }

    .video-content h1 {
      font-size: 40px;
      font-weight: 600;
      line-height: 1.4;
      color: #fff;
    }

    .btn-custom {
      background: #0d2b5c;
      color: #fff;
      border-radius: 12px;
      padding: 10px 25px;
    }

    .btn-custom:hover {
      background: #061a3a;
    }
    

    /*======================================= social icon fix ===============================*/

    .social-icons {
  position: fixed;   /* changed from absolute */
  top: 40%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 9999;
}

.social-icons a {
  display: block;
  margin: 4px 0;
  padding: 10px;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: translateX(5px);
}

.whatsapp { background: #25D366; }
.youtube { background: #FF0000; }
.linkedin { background: #0077b5; }

/*=================================== our company css =============================*/

  .company-section {
    background: #ffff;
    padding: 80px 0;
  }

  .company-img img {
    width: 100%;
    border-radius: 5px;
  }

  .company-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #0d2b5c;
    margin-bottom: 10px;
  }

  .company-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
  }

  .btn-custom {
    background: #0d2b5c;
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    margin-top: 20px;
  }

  .btn-custom:hover {
    background: #081c3a;
    color: #fff;
  }


  /*===================================== instries css home ===============================*/

  .industry-section {
    background: #f3f3f7;
    padding-top: 90px;
    padding-bottom: 20px;
  }

  .industry-section2 {
    background: #f3f3f7;
    padding-bottom: 90px !important;
    padding-bottom: 20px;

  }

  .section-title {
    font-size: 40px;
    font-weight: 600;
    color: #0d2b5c;
    line-height: 1.2;
    padding-left: 20px;
  }

  .industry-card {
    position: relative;
    overflow: hidden;
    font-size: 22px;
  }

  .industry-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
  }

  .industry-card:hover img {
    transform: scale(1.08);
  }

  .industry-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #0d2b5c;
    color: #fff;
    text-align: center;
    padding: 18px;
    font-size: 22px;
    font-weight: 500;
  }

  /* spacing fix to match design */
  .industry-grid {
    margin-left: -20px;
  }

  @media(max-width:768px){
    .section-title {
      text-align: center;
      margin-bottom: 30px;
      padding-left: 0;
    }
  }

  /*========================================== counter ==========================================*/
   .counter-section {
    background: #3f6db7; /* blue background */
    padding: 60px 0;
    color: #fff;
    text-align: center;
  }

  .counter-box h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .counter-box p {
    font-size: 17px;
    margin: 0;
  }

  @media(max-width:768px){
    .counter-box h2 {
      font-size: 40px;
    }
  }


  /*================================= Straight home ==========================================*/

.strength-section {
  background: #fff;
  padding: 80px 0;
}

.strength-title {
  font-size: 40px;
  font-weight: 600;
  color: #0d2b5c;
  margin-bottom: 50px;
}

.strength-box {
  margin-bottom: 40px;
}

.icon-img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.strength-box:hover .icon-img {
  transform: scale(1.1);
}

.strength-box h5 {
  font-size: 20px;
  color: #0d2b5c;
}


/*========================================= all pages Banner ====================================*/

.about-banner {
  height: 250px;
  background: url('../image/forbackground.jpg') center center/cover no-repeat;
  position: relative;
}

/* Overlay effect */
.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 70, 120, 0.5); /* blue overlay */
}

/* Ensure text is above overlay */
.about-banner .container {
  position: relative;
  z-index: 2;
}


/*============================================ footer css =====================================*/

.footer-section {
  position: relative;
  padding: 60px 0;
  background: url('../image/istockphoto-1327475879-170667a.jpg') center center/cover no-repeat;
}

/* Overlay */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #dddce1be
}

/* Keep content above overlay */
.footer-section .container {
  position: relative;
  z-index: 2;
}

.footer-section h3,
.footer-section h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #031B4E;
}

.footer-section ul li {
  margin-bottom: 10px;
  color: #031B4E;
}

/* Bottom copyright bar */
.footer-bottom {
  background: #0a2a5a;
  padding: 15px;
  font-size: 16px;
}

.footer-section 
  p {
    color: #031B4E;
}

.service-list a {
  text-decoration: none;
  color: inherit; /* keeps same color */
}

.service-list li {
  margin-bottom: 10px;
}

/*========================================= Vission Misson css ======================================*/

.mission-vision {
  background: #ffff;
}

.icon-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.mission-box {
  border-right: 2px solid #000;
  padding-right: 20px;
}

.vision-box {
  padding-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-box {
    border-right: none;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .vision-box {
    padding-left: 0;
  }
}

.mission-vision p {
  text-align: center;
  line-height: 1.8;
}





/* Section spacing */
.accordion-section {
  background: #ffffff;
  margin-bottom: 10px !important;
}

/* Box */
.accordion-box {
  border: 1px solid #000;
  padding: 15px;
  background: #ffff;
}

/* Items */
.acc-item {
  border-bottom: 1px solid #ddd;
}

/* Button */
.acc-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 10px;
  font-size: 17px;
  font-weight: 600;
  color: #0b2a5b;
  cursor: pointer;
}

/* + icon */
.acc-btn::before {
  content: "+";
  font-size: 16px;
  margin-right: 12px;
  font-weight: bold;
}

/* Active state */
.acc-btn.active::before {
  content: "−";
}

/* Content */
.acc-content {
  display: none;
  padding: 10px 10px 20px;
  font-size: 15px;
  color: #333;
}


/*================================================ research page css ======================================*/
.rnd-section {
  background-color: #fff;
}

.rnd-title {
  font-size: 26px;
  font-weight: 700;
  color: #0d2b5c;
}

.rnd-subtitle {
  font-size: 17px;
  font-weight: 600;
}

.rnd-list {
  list-style-type: disc;
  padding-left: 20px;
}

.rnd-list li {
  font-size: 16px;
  margin-bottom: 8px;
}