
    .top-bar {
      background: #020024;
      background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgb(63, 61, 213) 100%);

      color: #fff;
      font-size: 14px;
      padding: 8px 0;
    }

    .top-bar a {
      color: #fff;
      text-decoration: none;
    }

    .top-bar .social-icons a {
      display: inline-block;
      width: 32px;
      height: 32px;
      line-height: 32px;
      text-align: center;
      color: #fff;
      background: #2f84c0;
      border-radius: 50%;
      margin-right: 8px;
    }

    .top-bar .social-icons a:hover {
      background: #2f84c0;
    }

    /* Contact info section */
    .contact-info i {
      color: #2f84c0;
      margin-right: 8px;
    }

    /* Middle info bar */
    .middle-bar {
      padding: 0px 0;
      background: linear-gradient(90deg, #081b57 0%, #081b57 35%, #081b57 100%);

    }

    .contact-box {
      padding: 55px;
      display: flex;
      align-items: center;
      border-left: 3px solid #2f84c0;
      padding-left: 15px;
      margin-left: 25px;
    }

    .contact-box h6, small{
        color: #fff;
    }
    .contact-box i {
      font-size: 28px;
      color: #2f84c0;
      margin-right: 15px;
    }

    /* Navbar */
    .navbar {
      background: #fff;
      /* background: #020024;
      background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgb(13, 12, 100) 100%); */

    }

    .navbar-nav .nav-link {
      color: #081b57 !important;
      font-weight: 600;
      text-transform: uppercase;
      margin-right: 20px;
    }

    .navbar-nav .nav-link:hover {
      color: #000 !important;
    }

    .appointment-btn {
      background: #0a1b52;
      color: #fff !important;
      font-weight: 700;
      padding: 15px 25px;
      border: none;
      border-radius: 10px;
      text-transform: capitalize;
    }

    .appointment-btn:hover {
      background: #2f84c0;
    }

  .hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 20, 0.6), rgba(0, 0, 30, 0.9));
  }

  .glass-content {
    backdrop-filter: blur(10px);
    background: rgba(7, 4, 49, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
    animation: fadeInUp 1.3s ease both;
  }

  .shadow-glow {
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.6), 0 0 20px rgba(0, 150, 255, 0.3);
    transition: all 0.3s ease;
  }

  .shadow-glow:hover {
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.8), 0 0 40px rgba(0, 180, 255, 0.5);
    transform: translateY(-3px);
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(1);
  }

  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
  }

  .carousel-indicators .active {
    background-color: #00bfff;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .progress-circle {
    width: 80px;
    height: 80px;
    border: 6px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
  }

  .progress-circle::before {
    content: "";
    position: absolute;
    top: -6px; left: -6px;
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 6px solid rgba(0, 0, 0, 0.1);
    z-index: -1;
  }

  .progress-circle.text-danger {
    color: #2f84c0;
  }

  .progress-circle.text-dark {
    color: #333;
  }

  .btn-danger:hover {
    background-color: #2f84c0;
  }

  #about ul li {
    margin-bottom: 8px;
  }

  #services {
    background-color: #fff;
  }

  .service-card {
    border-top: 5px solid #2f84c0;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-top-color: #2f84c0;
  }

  .service-icon img {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
  }

  @media (max-width: 768px) {
    .service-card {
      margin-bottom: 20px;
    }
  }

   section {
    animation: fadeIn 1s ease-in-out;
  }
  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
  }

  /* Project Cards */
  .project-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .project-card img {
    transition: transform 0.6s ease;
    height: 260px;
    width: 100%;
    object-fit: cover;
  }
  .project-card:hover img {
    transform: scale(1.1);
  }
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  /* Overlay Effect */
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .project-card:hover .overlay {
    opacity: 1;
  }

  /* Safety Section Background */
  #safety {
    position: relative;
      background: #020024;
      background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgb(19 19 98) 35%, rgb(22 21 91) 100%);

  }
  #projects{
    background: #020024;
      background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgb(19 19 98) 35%, rgb(22 21 91) 100%);

  }
  #safety .bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0,255,255,0.1), transparent),
                radial-gradient(circle at bottom right, rgba(255,255,255,0.1), transparent);
  }

  /* Safety Card */
  .safety-card {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.4s ease;
  }
  .safety-card:hover {
    transform: scale(1.02);
  }

  /* Text enhancements */
  h2 {
    letter-spacing: 1px;
  }
.text-primary{
    color: #fff !important;
}
  .footer-section {
  background: url('https://images.unsplash.com/photo-1558981001-5864a5f6a8d9?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.footer-overlay {
  position: absolute;
  inset: 0;
    background: linear-gradient(90deg, #081b57 0%, #081b57 35%, #081b57 100%)
}
.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: #2f84c0;
  padding-left: 5px;
}
.footer-section input::placeholder {
  color: #aaa;
}
.footer-section .form-control:focus {
  box-shadow: none;
}
.social-icons a {
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}

.page-header {
  position: relative;
  height: 60vh;
  background: url('../images/banner1.jpg') center/cover no-repeat;
}

.page-header .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}

.page-header h2 {
  font-size: 2.8rem;
  letter-spacing: 1px;
  color: #fff;
}

.breadcrumb {
  background: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item a:hover {
  color: #fff !important;
}

@media (max-width: 768px) {
  .page-header {
    height: 45vh;
  }
  .page-header h2 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .top-bar .contact-info {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .top-bar .social-icons {
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
  }

  .middle-bar .container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .middle-bar .contact-box {
    border: none;
    padding-left: 0;
    padding: 5px;
  }
  .top-bar .social-icons a {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 19px;
    text-align: center;
    color: #fff;
    background: #2f84c0;
    border-radius: 50%;
    margin-right: 8px;
}
.social-icons a {
    font-size: .8rem;
    transition: transform 0.3s
ease, color 0.3s
ease;
}
}

.mission-vision-section {
  background-color: #0a1b52; /* dark navy blue */
  color: white;
  padding: 60px 0;
  
}

.mission-vision-section .title {
  font-size: 30px;
  
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.mission-vision-section .intro {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.mission-vision-section ul {
  list-style: none;
  padding-left: 0;
}

.mission-vision-section ul li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .mission-vision-section {
    text-align: center;
  }
  .mission-vision-section .title {
    font-size: 25px;
  }
}

/* === Common Section Styling === */
.underwater-section,
.steel-section,
.mechanical-section {
  background-color: #0a1b52; /* dark navy blue */
  color: white;
 
}

.underwater-section .title,
.steel-section .title,
.mechanical-section .title {
  font-size: 20px;
  
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.underwater-section p,
.steel-section p,
.mechanical-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.underwater-section ul,
.steel-section ul,
.mechanical-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

.underwater-section ul li,
.steel-section ul li,
.mechanical-section ul li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* === Section-specific adjustments === */
.underwater-section {
  padding: 80px 0;
}

.underwater-section .underwater-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.steel-section .steel-content,
.mechanical-section .mechanical-content {
  padding: 70px 60px;
}

.steel-section .steel-image img,
.mechanical-section .mechanical-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Responsive Styles === */
@media (max-width: 767px) {
  .underwater-section,
  .steel-section,
  .mechanical-section {
    text-align: center;
    padding: 50px 0;
  }

  .underwater-section .title,
  .steel-section .title,
  .mechanical-section .title {
    font-size: 25px;
  }

  .underwater-section p,
  .steel-section p,
  .mechanical-section p {
    text-align: left;
  }

  .underwater-section .underwater-image,
  .steel-section .steel-image,
  .mechanical-section .mechanical-image {
    margin-top: 30px;
  }

  .steel-section .steel-content,
  .mechanical-section .mechanical-content {
    padding: 40px 20px;
  }

  .underwater-section ul,
  .steel-section ul,
  .mechanical-section ul {
    text-align: left;
  }
}
