 :root {
      --primary-color: #2f2483;
      --secondary-color: #e2010f;
    }
    body {
      scroll-behavior: smooth;
    }
    .navbar {
      background-color: white;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .navbar-brand img {
      height: 80px;
    }
    .nav-link {
      color: var(--primary-color) !important;
      font-weight: 500;
    }
    
    .nav-link:hover,.nav-link.active,.nav-link:focus,.nav-link:active {
      color: var(--secondary-color) !important;
    }
    

    #heroCarousel{
        margin-top: 105px;
    }
    /* Fixed height for hero slides */
    .fixed-slide {
    height: 700px;
    color: white;
    }

    /* Different background colors per slide */
    .carousel-item:nth-child(1) { background: #2f2483; }
    .carousel-item:nth-child(2) { background: #e2010f; }
    .carousel-item:nth-child(3) { background: #1a1a1a; }

    /* Smooth sliding transition */
    .carousel-inner .carousel-item {
    transition: transform 1s ease-in-out;
    }

    /* White pagination indicators */
    .carousel-indicators [data-bs-target] {
    background-color: #fff;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.7;
    }
    .carousel-indicators .active {
    opacity: 1;
    background-color: #f8f9fa;
    }
    .slide1-img {
        width: 64%;
    }
    .slide2-img{
        width: 82%;
        object-position: 0 120px;
    }
     .slide3-img{
        object-fit: cover;
        height: 100%;
    }
    .carousel-item li{
        margin-bottom: 12px;
        font-size: 18px;
        font-weight: 500;
    }
    .btn-custom {
      background-color: var(--secondary-color);
      color: white;
      border-radius: 50px;
      padding: 10px 25px;
      transition: all 0.3s ease;
    }
    .btn-custom:hover {
      background-color: var(--primary-color);
    }
    .section-title {
      color: var(--primary-color);
      font-weight: bold;
      margin-bottom: 40px;
      text-align: center;
      font-size: 40px;
    }
    .carousel-item .lead{
      color: #fff;
    }
    .lead{
      color: #1a1a1a;
      text-align: justify;
    }
    .py-70{
        padding: 80px 0;
    }

  #latest-products .product-card img {
    height: 200px;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
  }
   #latest-products .product-card {
     border: 2px solid #302584;
     border-radius: 8px;
  }
  #latest-products .product-card:hover img {
    transform: scale(1.05);
  }
  #latest-products .card-body h6 {
    font-size: 0.95rem;
  }
  #latest-products .swiper-button-next,
  #latest-products .swiper-button-prev {
    color: #000;
    width: 40px;
    height: 40px;
  }
  #latest-products a{
    text-decoration: none;
  }
/* Latest Products Card Body */
#latest-products .card-body {
  padding: 0.75rem 0.5rem; 
}
#latest-products .card-body {
    background-color: #302584;
}
#latest-products .card-body h6 {
  font-size: 1rem;         
  font-weight: 600;        
  color: #ffffff;           
  margin-bottom: 0.3rem;
  text-align: center;
  transition: color 0.3s ease-in-out;
}

#latest-products .card-body p {
  font-size: 1.4rem;        
  color: #000000;          
  margin-bottom: 0;
  font-weight: 600;
  text-align: center;
  transition: color 0.3s ease-in-out;
}
#latest-products span.badge.category-badge {
    background-color:#e2010f;
    z-index:1
}
/* Hover effect on card link */
#latest-products .product-link:hover h6 {
  color: #dbdbdb;          
}

#latest-products .product-link:hover p {
  color: #2f2483;           
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 25px;
}


/* Product Item */
  .product-item {
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  .product-item:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transform: translateY(-5px);
  }
  .product-img {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
  }

  /* Highlighted Product */
  .highlighted-product {
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  .highlighted-product img {
    max-width: 74%;
    border-radius: 10px;
  }
  /* Services CSS */
   /* Card hover effect */
  .service-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 15px;
    background: #fff;
  }
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  /* Icon wrapper */
  .service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-color, #2f2483); /* theme blue */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }
  .service-card .icon-wrapper i {
    font-size: 2rem;
    color: #fff;
  }
  .service-card:hover .icon-wrapper {
    background: var(--secondary-color, #e2010f);
  }

  /* Certificate CSS */
  #certifications ul li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    font-weight: 600;
  }
  #certificationSlider img {
    object-fit: cover;
    background: #fff;
    border-radius: 15px;
    height: 600px;
  }
  .logo-trust{
    object-fit: contain;
  }

  /* Contact css */
    .map-wrapper iframe {
    border-radius: 12px;
    max-width: 100%;
  }
  .contact-form .form-control {
    border-radius: 10px;
    padding: 12px 15px;
  }
  .contact-form button {
    border-radius: 10px;
    font-weight: 600;
  }

  /* Footer CSS */
    footer {
      background-color: var(--primary-color);
      color: white;
      padding: 40px 0;
    }
    .footer-logo{
        height: 80px;
    }
    footer li{
        margin-bottom: 12px;
    }
    footer a{
        color: #fff !important;
        text-decoration: none;
    }
    footer .social-icon {
    color: #f7f7f7; 
    transition: color 0.3s ease;
    }

    footer .social-icon:hover {
    color: #e2010f !important;
    }
    
    @media(max-width:992px){
    .fixed-slide {
      height: 100%;
     }
     .navbar-brand img {
    height: 50px;
}
     .carousel-item.fixed-slide {
      padding-bottom: 30px;
    }
     .slide1-img,.slide2-img,.slide3-img {
        object-position: 0;
        margin-bottom: 30px;
    }
    .py-70{
        padding:40px 0;
    }
    .section-title {
      margin-bottom: 20px;
      font-size: 30px;
    }
    #certificationSlider{
        margin-right:-20px;
    }
    #certificationSlider img {
      height: 400px;
     }
    }
    
/***********24-9-25 ****************/

.pdf-download{
    position: fixed;
    z-index: 999999;
    right: 10px;
    top: 50%;    
}
.pdf-download img{
    height:auto;
    width:50px;
}

#myModal{
    display: flex;
    width: 100%;
    margin: 0px auto;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
} 
#myModal .modal-content{
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    height:250px;
    top:20%;
    text-align: center;
}
span.close1{
     position: relative;
    left: 50%;   
}

.fvcon, .mobile-view, .hero-mobile-view{
  display:none;
}

@media only screen and (max-width: 767px) {

#myModal .modal-content {
    width: 75%;
    margin: 0 auto;
    padding: 20px;
    height: 250px;
    top: 20%;
    text-align: center;
}    
    
    #heroCarousel{
         display:none;
    }
.hero-mobile-view{
  display: block;  
}    
.mobile-view{
        display: block;
        padding: 20px;
        text-align: center;
        color: #fff;
        background:#2f2483;
        border-radius: 20px;
        width: 75%;
        margin: auto;
  
}    
	.fvcon {
  position: fixed;
  background: #234aae;
  height: 45px !important;
  width: 100%;
  display: block;
  left: 0px;
  bottom: 0px;
  z-index:9999;
}
	.fvcon .ftcontf{
	    width: 50%;
  float: left;
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 500;
  line-height: 35px;
  height: 45px !important;
  text-decoration:none;
	    
	}
	.fvcon .ftcontf.i{
	    background: #00afef;
	    
	}
	    .fvcon .ftcontf.what {
        background: #25d366;
    }
    .bubble {
   
    display: none;

}
.custom-caption {
    left: 5%;
    right: auto;
    top: 100px;
    text-align: left;
    max-width: 100% !important;
}
.banner-title {
        font-size: 25px !important;
        font-weight: bold;
        color: #fff !important;
}
.banner-text
 {
        font-size: 20px !important;
        margin: 15px 0 !important;
        color: #fff !important;
}
.mobile-view .bg-overlay {
    background: rgba(0, 0, 0, 0.75);
    z-index: 99;
}
.carousel-item {
  position: relative;
}

.carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* Black overlay, 50% opacity */
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  z-index: 2; /* Keep text above overlay */
}
.w-100 {
    width: 100% !important;
  
}


}