/* style.css */

/* style.css */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5faff;
  color: #333;
  scroll-behavior: smooth;
   padding-top: 80px; 
}

.fixed-bootstrap-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  font-size: 36px;
  color: #003A63; /* Bootstrap red */

}



.logo {
  height: 70px;       /* Adjust size as needed */
  width: auto;
  object-fit: contain;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: bold;
  color: #003A63;
}

.navbar-nav .nav-link {
  color: #003A63;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #000000;
}


.hero h1 {
  font-size: 2.3rem;
  font-weight: bold;
  color: white;
}

.hero h1 span {
  color: #0a58ca;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.2rem;
  color:whitesmoke;
}

section {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}


#contactALt,
#about {
  background-color: #ffffff;
}


#products,
#careers,
#contact {
  background-color: #f0f4f8;
}


#about h2,

#services h2,
#products h2,
#careers h2,
#contact h2 {
  color: #003A63;
}

h2 {
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.list-group-item {
  background: transparent;
  border: none;
  padding-left: 0;
  font-size: 1.05rem;
  color: #333;
}

.img-fluid {
  border-radius: 12px;
}

.service-card,
.card {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 12px;
}

.service-card:hover,
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0d6efd;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  padding: 4rem 0;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
  z-index: 1;
}

.hero .container {
  z-index: 2;
  position: relative;
}










/* About US */
#about h2{
  text-align: center;
}


#about img.icon {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  margin-top: 2px;
}

/* Services Section Styling */


  #services {
    position: relative;
    overflow: hidden;
    color: #fff; /* Text default */
  }

   #services h2{
color: white;
  }

  #services .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  #services .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for contrast */
    z-index: 1;
  }

  #services .container {
    position: relative;
    z-index: 2;
  }

  /* Flip Card Styling */
  #services .flip-card {
    background: transparent;
    perspective: 1000px;
  }

  #services .flip-card-inner {
    position: relative;
    width: 100%;
    height: 250px;
    text-align: center;
    transition: transform 2s;
    transform-style: preserve-3d;
  }

  #services .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

  #services .flip-card-front,
  #services .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  #services .flip-card-front {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
  }

  #services .flip-card-back {
    background: rgba(0, 0, 0, 0.7);
    transform: rotateY(180deg);
    color: white;
  }

 #services .card-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  #services .card-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  #services .card-custom h5 {
    margin-bottom: 10px;
    font-weight: 600;
  }

  #services .card-custom p {
    font-size: 14px;
  }

   #services  .card-icon {
      font-size: 28px;
      margin-bottom: 12px;
      color: #007bff;
    }

    

    #services .know-more {
      font-weight: 500;
      font-size: 0.95rem;
      color: #007bff;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    #services .know-more:hover {
      text-decoration: underline;
      margin-left: 2px;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 3;
        transform: translateY(0);
      }
    }



    /* Target all product cards inside #products */
#products .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

#products .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
#products .product-img {
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#products .card:hover .product-img {
  transform: scale(1.05);
}

/* Title Styling */
#products .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
}

/* Text Styling */
#products .card-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Section Background (optional) */
#products {
  
  padding-top: 60px;
  padding-bottom: 60px;
}







/* Contact styles*/

 #contact {
      padding: 80px 0;
      background-color: #f0f4f8;
    }

    #contact h2, #contact h4 {
      color: #003A63;
    }

    #contact form {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    }

    #contact .ratio iframe {
      border-radius: 12px;
    }

    @media (min-width: 992px) {
      #contact .row.justify-content-center {
        justify-content: space-between !important;
      }

      #contact .col-md-6 {
        max-width: 48%;
      }
    }

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 60px 20px;
  }

  .card-title {
    font-size: 1.05rem;
  }

  .card-text {
    font-size: 0.9rem;
  }

  #contact p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  #contact p {
    font-size: 0.9rem;
  }
}

/* Contact Alt*/

#contactAlt {
  height: 80vh; /* Increased from 50vh */
  min-height: 500px; /* Increased from 400px */
  background-color: white;
  display: flex;
  align-items: center;
}

#contactAlt .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#contactAlt h2,
#contactAlt h4 {
  color: #003A63;
}

#contactAlt form {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  height: 100%;
  
}

#contactAlt .ratio iframe {
  border-radius: 12px;
  height: 100%;
}

#contactAlt .row {
  height: 100%;
}

#contactAlt .col-lg-6 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
  #contactAlt {
    height: auto;
    padding: 60px 0;
  }

  #contactAlt .row {
    flex-direction: column;
  }

  #contactAlt .col-lg-6 {
    height: auto;
    margin-bottom: 20px;
  }
}


/* Footer styles*/

   body.footer-page {
  background-color: #f8fbff;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.footer {
  background-color: #ffffff;
  padding: 60px 0;
  border-top: 1px solid #dce3ea;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.05);
}

.footer h5 {
  color: #003A63;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.footer a {
  display: block;
  color: #333;
  margin-bottom: 8px;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer a:hover {
  color: #0d6efd;
}

.footer .social-icons {
  display: flex;
  align-items: center;
  gap: 10px; /* Optional: adds space between icons */
}

.footer .social-icons a {
  font-size: 2.0rem;
  margin-right: 10px;
  color: #003A63;
  transition: color 0.3s ease;
}

.footer .social-icons a:hover {
  color: #084298;
}

.footer-bottom {
  border-top: 1px solid #dce3ea;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 30px;
}



/* Career */

#careers .img-fluid {
  width: 100%; /* Ensures responsiveness */
  height: auto; /* Maintain aspect ratio */
  object-fit:fill; /* Proper fit within container */
  border-radius: 12px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#careers .img-fluid:hover {
  transform: scale(1.03);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}



#careers h2,
#careers h4 {
  color: #003A63;
  font-weight: 700;
}

#careers {
  background-color: #f8f9fa;
}

@media (max-width: 768px) {
  #careers img {
    max-height: 300px;
    object-fit: cover;
  }
}
