/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Genova', sans-serif;
    background-color: #f0f7fc;
  }

html {
    scroll-behavior: smooth;
}

@font-face {
  font-family: 'Genova';
  src: url('fonts/genova-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Genova';
  src: url('fonts/genova-bold.woff') format('woff');
      
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Genova';
  src: url('fonts/genova-italic.woff') format('woff');
       
  font-weight: normal;
  font-style: italic;
}

/* .glass-bg {
  background-color: rgba(72, 61, 139, 0.75) ; 
  backdrop-filter: blur(10px) brightness(95%);  
  -webkit-backdrop-filter: blur(10px) brightness(95%); 
  border: 1px solid rgba(72, 61, 139, 0.5); 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); 
} */
/* .glass-bg {
  background-color: rgba(72, 61, 139, 0.75); 
  backdrop-filter: blur(10px) brightness(95%); 
  -webkit-backdrop-filter: blur(10px) brightness(95%); 
  border: 1px solid rgba(72, 61, 139, 0.5); 
}

.shadow {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); 
} */
nav {
  background-color: transparent; /* Default transparent background */
  /* transition: background-color 0.05s ease, box-shadow 0.05s ease;  */
  transition: none;
}

.glass-bg {
  background-color: rgba(72, 61, 139, 0.75); /* Deep Violet with 75% opacity */
  backdrop-filter: blur(10px) brightness(95%);
  -webkit-backdrop-filter: blur(10px) brightness(95%);
  border: 1px solid rgba(72, 61, 139, 0.5);
}

.shadow {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}



/* .footer-bg {
  background: linear-gradient(135deg, #8A2BE2, #008080);
  color: #FFFFFF; 
} */
.footer-bg {
  background-color: #8A2BE2;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
  color: #FFFFFF; /* White text for readability */
}










/* Nav */
.navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  
 
  /* position: fixed;
  top: 0;
  width: 100%;
  z-index: 999; 
  transition: opacity 0.5s ease;
  background-color: rgba(72, 61, 139, 0.75) !important; 
  backdrop-filter: blur(10px) brightness(95%);
  -webkit-backdrop-filter: blur(10px) brightness(95%);
  border-bottom: 1px solid rgba(72, 61, 139, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); */
}

.navbar-brand img {
  max-height: 85px;
}

.navbar-nav .nav-link {
  font-size: 17px; /* Default font size */
  text-decoration: none;
  position: relative;
  display: inline-block; 
  padding: 5px 0; /* Padding for hover effect */
  color: #fff; 
  transition: color 0.3s ease; 
  letter-spacing: 1.2px;
}

/* Hover underline effect */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%; 
  height: 2px;
  background-color: #fff; 
  transform: scaleX(0); 
  transform-origin: bottom right;
  transition: transform 0.3s ease; 
}

/* Show underline on hover */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1); 
  transform-origin: bottom left; 
}

/* Change link color on hover and when active */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #39A3FC !important; /* Change the color to sky blue */
}

/* Always apply sky blue color and underline to Home link */
.navbar-nav .nav-link[href="#home"] {
  color: skyblue; /* Sky blue color for Home link */
}

.navbar-nav .nav-link[href="#home"]::after {
  transform: scaleX(1); /* Always show underline for Home link */
  transform-origin: bottom left;
}

.navbar-hidden {
  opacity: 0;
}

.navbar-visible {
  opacity: 1;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-light .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.bg {
  background-color: #101010;
  padding: 0;
  
}



/* Responsive adjustments */
@media(max-width: 768px) {
  .navbar {
    /* padding-top: 0.5rem;
    padding-bottom: 0.5rem; */
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999; /* Make sure it's above other elements */
    transition: opacity 0.5s ease;
    background-color: rgba(72, 61, 139, 0.75) !important; /* Deep Violet with 75% opacity */
    backdrop-filter: blur(10px) brightness(95%);
    -webkit-backdrop-filter: blur(10px) brightness(95%);
    border-bottom: 1px solid rgba(72, 61, 139, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }
  
  

  .bg {
    background-color: #0f0f0f;
    margin: 0;
    
    
  }

  
  .navbar-nav li:last-child {
    margin-bottom: 30px;
  }

  .navbar-nav .nav-link {
    font-size: 8px; /* Adjust text size for smaller screens */
    padding: 8px 12px;
    
  }
}



@media (max-width: 992px) {
  /* .navbar-collapse {
    background-color: rgba(72, 61, 139, 0.75) !important; 
  } */.navbar {
  /* padding-top: 0.5rem;
  padding-bottom: 0.5rem; */
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999; /* Make sure it's above other elements */
  transition: opacity 0.5s ease;
  background-color: rgba(72, 61, 139, 0.75) !important; /* Deep Violet with 75% opacity */
  backdrop-filter: blur(10px) brightness(95%);
  -webkit-backdrop-filter: blur(10px) brightness(95%);
  border-bottom: 1px solid rgba(72, 61, 139, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}



  .navbar-brand img{
    max-height: 62;
  }
  .navbar-nav li:last-child {
    margin-bottom: 40px;
  }

  .navbar-nav .nav-link {
    font-size: 16px; /* Adjust text size for smaller screens */
    padding: 10px 0;
  }
}

.burger {
  color:#fff !important;
}

.navbar {
  min-height: 80px;
}

.navbar-brand {
  padding: 0 15px;
  height: 80px;
  line-height: 80px;
}

.navbar-toggle {
  /* (80px - button height 34px) / 2 = 23px */
  margin-top: 23px;
  padding: 9px 10px !important;
}

@media (max-width: 768px) {
  .navbar-nav > li > a {
    /* (80px - line-height of 27px) / 2 = 26.5px */
    padding-top: 26.5px;
    padding-bottom: 26.5px;
    line-height: 27px;
   
  }
  .navbar-brand {
    padding: 0 15px;
    height: 80px;
    line-height: 80px;
    margin-top:-10px;
  }
  
  .navbar-toggler {
    /* (80px - button height 34px) / 2 = 23px */
    margin-top: 23px;
    
  }

  .navbar-nav .nav-link {
    font-size: 16px; /* Adjust text size for smaller screens */
    padding: 10px 0;
  }
  
}



/* Carousel  */
.carousel-item {
  position: relative;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #45474b;
  opacity: 0.5;
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  
}

/* .carousel-caption h2 {
  font-size: 68px;
  font-weight: bold;
  width: 85%;
  color: #f3f0f0;
}

.carousel-caption p {
  margin-top: 25px;
  color:#d3d3d3;
  font-size: 19px;
 
} */

.carousel-caption h2 {
  font-size: 3.9vw; /* Adjust font size based on viewport width */
  font-weight: bold;
  width: 75%;
  color: #f3f0f0;
  line-height: 1.2;
}

.carousel-caption p {
  margin-top: 8px;
  color: #d3d3d3;
  font-size: 1.1vw; /* Adjust font size based on viewport width */
}

/* Media queries for additional control */
@media (max-width: 1200px) {
  

  .carousel-caption h2 {
    font-size: 4vw; /* Slightly smaller font size */
  }

  .carousel-caption p {
    font-size: 2.5vw; /* Slightly smaller font size */
  }
}

@media (max-width: 992px) {

 
  .carousel-caption h2 {
    font-size: 4.2vw; /* Smaller font size for medium screens */
    display: none;
  }

  .carousel-caption p {
    font-size: 2.5vw; /* Smaller font size for medium screens */
    display: none;
  }
}

@media (max-width: 768px) {
  

  .carousel-caption h2 {
    font-size: 5vw; /* Smaller font size for small screens */
  }

  .carousel-caption p {
    font-size: 3vw; /* Smaller font size for small screens */
  }

  .navbar-brand img{
    width: 90px;
    margin-top:12px;
  }
}

@media (max-width: 576px) {
  .carousel-caption h2 {
    font-size: 3vw; /* Smaller font size for extra small screens */
  }

  .carousel-caption p {
    font-size: 2vw; /* Smaller font size for extra small screens */
  }
}



/* Position caption at the top-left */
.carousel-caption.top-left {
  top: 55%;   
  left: 20%;  
  bottom: auto;
  right: auto;
  transform: translateY(-60%) translateX(-12%);
  z-index: 2;
  text-align: left;
}


/* wavy  */


.carousel-item:nth-child(3) .wavy-effect {
  animation-delay: 10s;
}

/* product  */

/* Services */
#service {
  height: 100vh;
  background-color: #F0F8FF;
}
/* .badge-container {
   max-width: 350px;
}
.pbadge a {
  color:indigo !important;
  margin-top: auto;
  
} */

.badge-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.badge-container h4 {
  margin-top: 15px; /* Add some spacing between the badge icon and heading */
}

.badge-container p {
  flex-grow: 1; /* This allows the paragraph to take up any extra space */
}

.learn-more {
  margin-top: auto; /* Push the link to the bottom of the container */
  color: indigo !important;
}

.card {
  min-height: 100%; /* Ensure the card takes full height of the container */
  display: flex;
  flex-direction: column; /* Align items vertically */
}
.card-body {
  flex-grow: 1; /* Make the body fill the remaining space */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensure spacing between content */
}
.card img {
  align-self: center; /* Center the icon image */
}
.card h4 {
  margin-top: auto; /* Push the heading towards the bottom */
  font-weight: 500;
}
.card-body img {
  margin-bottom: 10px; /* Adjust this value to control the space between the image and text */
}

.card-body h4 {
  margin-top: 0; /* Remove excess top margin */
  margin-bottom: 8px; /* Adjust the bottom margin to control spacing */
}

.card p {
  margin-bottom: auto; /* Keep the paragraph aligned properly */
}
.custom-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  border-bottom: 2px solid indigo !important;
}

.custom-card::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: indigo;
  transition: height 0.3s ease-in;
  z-index: 0;
}

.custom-card:hover::before {
  height: 100%;
}

.custom-card .card-body {
  position: relative;
  z-index: 1;
  /* background: transparent; */
}

.custom-card:hover {
  transform: translateY(-5px);
  color:#fff;
}


.card-img {
  width: 60px;
  height: 60px;
}
.custom-card:hover .card-img {
  filter: brightness(0) invert(1); /* Change image color to white */
}

.custom-card:hover .custom-text {
  color: white !important; /* Change text color to white */
}


.reveal-text {
  animation: textReveal 1s ease-out;
}





/* Product  */

.badge-container {
  display: inline-block;
  flex-direction: column;
  height: 100%; 
}

.badge-container p {
  text-align: justify;
  hyphens: auto;

}


.badge-container a {
  font-weight: bold;
  text-decoration: none;
  display: block; 
  margin-top: auto; 
  padding: 0.3rem 0;
 
  overflow: hidden;
}






/* Footer */
.footer {
  background-color: #212529;
  color: white;
}

.footer a {
  color: white;
}

.bg-img {
  background-image: url(./images/content-banner.png);
  background-repeat: no-repeat;
  
}

/* Product  */
/* Base styles for text */
.product-bage-reveal2 h4, 
.product-bage-reveal1 h4 {
  font-size: 24px; /* Default font size */
  margin-bottom: 1rem;
}

.product-bage-reveal2 p, 
.product-bage-reveal1 p {
  font-size: 16px; /* Default font size */
  margin-bottom: 1rem;
}

/* Responsive text sizes for smaller screens */
@media (max-width: 768px) {
  .product-bage-reveal2 h4, 
  .product-bage-reveal1 h4 {
    font-size: 20px; /* Adjusted font size for medium screens */
  }

  .product-bage-reveal2 p, 
  .product-bage-reveal1 p {
    font-size: 14px; /* Adjusted font size for medium screens */
  }
}

@media (max-width: 576px) {
  .product-bage-reveal2 h4, 
  .product-bage-reveal1 h4 {
    font-size: 18px; /* Adjusted font size for small screens */
  }

  .product-bage-reveal2 p, 
  .product-bage-reveal1 p {
    font-size: 16px; /* Adjusted font size for small screens */
  }
}






.partner-card:hover, .special:hover {
  transform: scale(1.05);
}


#aboutus {
  height: 90vh;
  display: flex;
  align-items: center;
}
#ourclients {
  padding-top: 80px; /* Adjust this value based on your needs */
  margin-top: -80px; /* Negative margin compensates for extra padding */
}


      .marquee-wrapper {
        position: relative;
        overflow: hidden;
        white-space: nowrap;
      }
      
      .marquee-content {
        display: inline-block;
        padding-left: 10%;
        animation: marquee 50s linear infinite;
        margin:0 -10px;
      }
      
      .marquee-content img {
        display: inline-block;
        margin: 0 55px; 
        transition: box-shadow 0.3s ease-in-out;
      }

      /* .marquee-content:hover {
        animation-play-state: paused;
      } */

      /* .marquee-content img:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        padding:12px 14px;
       
      } */
      
      @keyframes marquee {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-100%);
        }
      }

      
      .aligntext {
        text-align: justify;
        text-align-last: left; /* or center */
        text-justify: inter-word; /* Adjust spacing between words */
      }
    
      .aligntext-container {
        display: flex;
        justify-content: space-evenly; /* Center horizontally */
        text-align: justify; /* Center text within the container */
    }
    

    #contact h2, #contact h4 {
      margin-top: 1.5rem; /* Adjust this value for desired margin */
  }
  
  #contact h2 {
      margin-bottom: 2rem; /* Adjust as necessary */
  }
  
  #contact h4 {
      margin-bottom: 1.5rem; /* Adjust as necessary */
  }
  