* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* overflow-x: hidden; */
}

body {
  /* font-family: 'Segoe UI', sans-serif; */
  font-family: 'Libre Baskerville', sans-serif !important;
}
.navbar{
  font-family: 'Libre Baskerville', sans-serif !important;
  font-size: 15px;
}

.navbar-brand img{
    height: 50px;
}
/* top header */
.top-head {
  background-color: #c72828;
  padding: 10px;
  color: white;

}

.top-head .location {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social a i {
  font-size: 20px;
  margin: 0 6px;
  color: white;
  transition: color 0.3s ease;
}

.social a i:hover {
  color: #163E61;
}


/* slider */
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
}
.item img{
  object-fit:cover;
}
.carousel-caption {
 
background: rgba(0, 0, 0, 0.6);
  width: fit-content;
  padding: 10px;
      display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 70px;
}

/* boxes */
.card-body p{
  margin-bottom: 0px;
}
.card-body{
  padding: 1rem;
}
.card-img-top{
  height: 400px;
}
.grey{
      background-color: #f3f3f3;
}
.heading{
  font-size: 32px;
    font-weight: 700;
    text-align: center;
       
}
.heading2{
  font-size: 24px;
    /* font-weight: 700; */
    text-align: center;
       
}

.product-box {
  border: 2px solid #163E61;
  /* border-radius: 10px; */
  overflow: hidden;
  position: relative;
  margin: 20px;
  /* width: 350px; */
}
.product-box img{
    height: 250px;
    object-fit: contain;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.product-details{
  font-size: smaller;
}
hr{
  border: 1px solid #163E61;
}
.product-title{
  font-size: 18px;
}
.product-actions a{
  color: white;
}
.product-title,
.product-line,
.product-details,
.product-actions {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.product-box:hover .product-overlay {
  opacity: 1;
  pointer-events: auto;
}

.product-box:hover .product-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.product-box:hover .product-line {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.product-box:hover .product-details {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.product-box:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.btn-blue{
  background-color: #163E61;
}
.btn-red{
  background-color: #c72828;
}
.view-btn{
   display: flex;
    justify-content: center;
    
     color: white;

}
.view-btn button {
    padding: 10px 20px;
       
    margin-top: 20px;
     color: white;
}
.view-btn button a{
  color: #f3f3f3;
  font-size: 20px;
}
.view-btn button i{
  font-size: 16px;
}
.view-btn button .btn i:hover{
  color: #f3f3f3 !important;
  /* font-size: 20px; */
}
/* .btn:hover{
  color: #f3f3f3;
} */

/* for toogle */
.img-toggle-section{
  background-color: #163E61;
  color: white;
}
.togg img{
object-fit: cover;
    height: 270px;
}
.toggle .card-header {
border-bottom: 1px solid white;
  color: white;
}
.toggle .card-header .btn-link{
  color: white;
  text-decoration: none;
}

.toggle .card{
  background-color: transparent;
  border: none;
  border-radius: 0px;
}

/* featured products */
.image-wrap{
  border:2px solid #163E61;
}
.feature-prd img {
  height: 200px;
  object-fit: contain;
}
.feature-prd{
  /* width: 300px; */
  /* margin: 20px; */
    transition: box-shadow 0.3s ease;
    background: white;
}
.feature-prd:hover{
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.feature-heading a{
  font-size: 16px;
  color: #163E61;
  text-decoration: none;
}
.btn-outline-blue{
  border: 1px solid #163E61;
}
.btn-outline-blue:hover{
background-color: #163E61;
color: #f3f3f3;
}
.feature-btn .btn-blue{
  color: white;
}
.feature-btn .btn-blue:hover{
  background-color: #c72828;
  /* color: white; */
}
.red{
  color: #c72828;
}
.blue{
  color: #163E61;
}

.image-wrap .bg-blur {
 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(2px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.image-wrap img {
  z-index: 1;
  position: relative;
  max-height: 100%;
  object-fit: contain;
}
.feature-prd{
  padding-bottom: 10px;
}
/* videos */
.video-box {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}

.video-box:hover {
  transform: scale(1.05);
}

.video-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
 
  transition: opacity 0.3s ease;
  z-index: 10;
}

.play-icon:hover {
  opacity: 1;
}

.play-icon img {
  width: 100%;
  height: 100%;
  pointer-events: none; 
  user-select: none;
}
.video-head{
  color: #163E61;
      font-size: 18px;
    margin-top: 10px;
    text-align: center;
}
.video-btn{
  display: flex;
  justify-content: center;
  align-items: center;

}
.video-btn button{
  padding: 4px 10px;
      transition: transform 0.3s ease, background-color 0.3s ease;
}
.video-btn button a{
  color: #163E61;
}
.video-btn button:hover {
  transform: scale(1.1);

}

/* testimonial */
.testimonial-section {
 
padding-top: 30px;
}

.testimonial-carousel .testimonial-box {
  background: #fff;

  padding: 30px;
  text-align: center;
  /* border-radius: 10px; */
  max-width: 800px;
  margin: auto;
}
.testimonial-carousel .testimonial-box .testi{
  border: 4px solid #426181;
   padding: 10px;
}

.testimonial-title {
  background: #123c6d;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.testimonial-text {
  font-style: italic;
  font-size: 20px;
  color: #333;
  margin-bottom: 25px;
}

.testimonial-author {
  color: #2a5f9e;
  font-weight: bold;
  font-size: 18px;
}

/* about  */
.webs{
  padding: 30px;
}



    .abt-img-wrapper {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.abt-img-wrapper::after {
    content: '';
    position: absolute;
    border: 3px solid black;
    top: -25px;
    right: 20px;
    bottom: 33px;
    left: 70px;
    z-index: -1;
    /* height: 420px; */
}
.spare img {
  /* width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block; */
  box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
}
.pt-50{
  padding-top: 80px;
  padding-bottom: 40px;
}
.we{
  padding-top: 20px;
  font-weight: 700;
}
.abt{
  padding: 6px 10px;
}
.abt-p{
  color: #333;
      font-size: 14px;
}

/* glimpse */
.glim{color:#8D8D8D;
margin-bottom: 0px;
}
.glime{
  color: #333;
}
.glim-img img{
  height: 70px;
  
}
.pt-100{
padding-top: 300px;
    padding-bottom: 200px;
}
 .centered-image-wrapper {
    position: relative;
    text-align: center;
    margin: 60px 0;
  }

  .centered-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
  }

  .overlay-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
.glimpse{
  border-radius: 10px;
 
}
  .glimpse, .contact-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
  
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 60px;
    color: #000;
  }

  .glimpse i {
    color: #002147;
  }

  .contact-box a {
    color: #000;
    text-decoration: underline;
  }
.bg-blue{
  background-color: #123c6d;
}
.contact-box{
  height: 380px;
 text-align: left;
}
.contact-box i{
  font-size: 20px;
}
/* footer */
.bg-red{
  background-color: #c72828;
  padding-top: 50px;
  
}
.foot li{
  margin-bottom: 10px;
  list-style:circle;
}
.ft-head{
      border-bottom: 2px solid white;
    width: fit-content;
}
  .clay img{
    height: 100px;
    width: 150px;
    margin: 10px;
  }
.amc img {
  width: 100%;
  height: 500px;
      background: white;
 object-fit: contain;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.contact-page{
  /* background: #002147; */
   box-shadow: 4px 5px 25px rgba(0,0,0,0.1);
}
.cc1{
  background: #F1F1F1;
}
   .contact-us {
      /* background: #fff; */
      padding: 30px;
      /* border-radius: 10px; */
     
    }
    .contact-in i {
      font-size: 24px;
      color:#002147;
      margin-right: 10px;
    }
    .contact-in h5 {
      font-weight: 600;
    }
    .contact-in p {
      margin-bottom: 15px;
      color: #333;
    }
      .contact-in p a{
      margin-bottom: 15px;
      color: #333;
      text-decoration: none;
    }
    .mobile{
      display: none;
    }

/* whatsapp btn and top to scroll */
  .bg-red{
    position: relative;
    z-index: 3;
  }
.whatsapp_btn {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 2;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    overflow: hidden;
    transition: width 0.4s ease, padding 0.4s ease, border-radius 0.3s ease;
    width: 48px;
    height: 48px;
}
.whatsapp_btn a{
    color: white;
}

.whatsapp_btn.expanded {
    width: 170px;
    border-radius: 30px;
    padding: 10px 16px;
}

.whatsapp_btn .wa_icon img {
    width: 24px;
    height: 24px;
    display: block;
}
.whatsapp_btn:hover {
    color: white;
}
.wa_text {
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.whatsapp_btn.expanded .wa_text {
    opacity: 1;
}
.top_to_scroll {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 8px 18px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background 0.3s, transform 0.3s;
}
.top_to_scroll:hover {
    background-color: #555;
    transform: scale(1.1);
}


/* preloader */
/* Preloader container */
/* Preloader Container */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* You can change to match your theme */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s;
}

/* Image Styling */
.preloader-img {
  width: 200px;
  height: auto;
  animation: bounce 1.2s infinite ease-in-out;
}

/* Hide on load */
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}


.swal2-popup .swal2-title {
    font-size: 1.2em !important;
}

/* Optional bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}




    @media (max-width: 767px) {
      .contact-us {
        margin-bottom: 20px;
      }
      .mobile{
        display: block;
      }
      .desktop{
        display: none;
      }
    }