@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body{
  background-image: url("./img/1234.png") ;
  background-size: cover;
  backdrop-filter: contrast(0.9);
  background-position: center;
  transition: background-size 3s ease;
}
.product-card{
  /* width: 100px; */
}

.grow {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.grow:hover {
  transform: scale(1.1);
}
.social-btn {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  color:#98c1d9
}
.social-btn:hover {
  transform: scale(1.1);
  color:#e0fbfc ;
}
.social-btnnav {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  color:#ffffff;
  text-decoration: none;
}
.social-btnnav:hover {
  transform: scale(1.1);
  color:#e0fbfc;
}

/* Default link styles */


.hover-linknav {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  color: #fff; /* Default text color */
  text-decoration: none; /* Remove underline */
  position: relative; /* Position relative for pseudo-element */
}
.hover-linknav::before {
  content: ">"; /* Arrow character */
  position: absolute; /* Position absolutely within the link */
  left: -20px; /* Adjust the distance from the link text */
  opacity: 0; /* Initially hidden */
  transform: translateX(-10px); /* Initial translation for animation */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Transition animation */
}
.hover-linknav:hover {
  color: #e0fbfc/* Change the text color on hover */
}

.hover-linknav:hover::before {
  opacity: 1; /* Show the arrow icon on hover */
  transform: translateX(0); /* Slide in the arrow icon */
}


.hover-link {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  color: #98c1d9; /* Default text color */
  text-decoration: none; /* Remove underline */
  position: relative; /* Position relative for pseudo-element */
}
/* Add an arrow icon before the link text */
.hover-link::before {
  content: ">"; /* Arrow character */
  position: absolute; /* Position absolutely within the link */
  left: -20px; /* Adjust the distance from the link text */
  opacity: 0; /* Initially hidden */
  transform: translateX(-10px); /* Initial translation for animation */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Transition animation */
}

/* Change text color and reveal the arrow on hover */
.hover-link:hover {
  color: #e0fbfc/* Change the text color on hover */
}




.hover-link:hover::before {
  opacity: 1; /* Show the arrow icon on hover */
  transform: translateX(0); /* Slide in the arrow icon */
}


.up-down {
  animation: moveUpDown 1500ms ease-in-out infinite;
}
@keyframes moveUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Adjust the distance as needed */
  }
}
.up-down:hover {
  animation-play-state: paused;
}

.ex-con {
  animation: exCon 1s ease-in-out infinite;
}
@keyframes exCon {
  0%,
  100% {
    transform: scale(0.96);
  }
  50% {
    transform: scale(1); /* Adjust the distance as needed */
  }
  100% {
    transform: scale(0.96);
  }
}
.ex-con:hover {
  animation-play-state: paused;
}

.typing-text {
  font-size: 24px;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 2s steps(30) forwards;
}



.underline-text {
  color: #3d5a80;
  cursor: pointer;
  transition: color 0.3s; /* Smooth color transition */
}

.underline-text:hover {
  color: 3d5a80; /* Change text color on hover */
}

.underline-text::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #3d5a80; /* Underline color */
  transform: scaleX(0); /* Initially hidden */
  transform-origin: bottom right;
  transition: transform 0.3s ease-out; /* Underline animation */
}

.underline-text:hover::before {
  transform: scaleX(1); /* Expand underline on hover */
  transform-origin: bottom left;
}

.product-btn {
  text-decoration: none;
  color: #000000;
  padding: 0.5em;
  display: block;
  margin: 0 auto;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #000000;
}
.product-btn:hover {
  color: white;
  background-color: #ffffff; /* New background color on hover */
  transition: background-color 0.5s ease; /* Smooth background color transition */
}

@import url("https://fonts.googleapis.com/css2?family=Outfit&display=swap");

.Haccordion {
  display: flex;
  margin-block: 50px;
  width: min(100% - 175px, 950px);
}
.accordion__item {
  position: relative;
  isolation: isolate;
  cursor: pointer;
  flex: 1;
  transition: flex 250ms;
  overflow: hidden;
}
.accordion__item:first-child {
  border-radius: 20px 0 0 20px;
}
.accordion__item:last-child {
  border-radius: 0 20px 20px 0;
}
.Haccordion .accordion__item:hover {
  flex: 3;
}
.accordion__item:hover .accordion__overlay {
  opacity: 1;
  padding: 50px;
}
.accordion__image {
  display: block;
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.accordion__overlay {
  transition: opacity 250ms, padding 250ms;
  position: absolute;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.64) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}
.accordion__overlay h2 {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .Haccordion {
    flex-direction: column;
    max-height: 500px;
  }
  .accordion__item:first-child {
    border-radius: 20px 20px 0 0;
  }
  .accordion__item:last-child {
    border-radius: 0 0 20px 20px;
  }
  .accordion__image {
    height: 100%;
  }
  .accordion__overlay {
    justify-content: center;
  }
  .accordion__overlay h2 {
    white-space: normal;
    text-wrap: balance;
    text-align: center;
    margin-block-end: 25px;
  }
  .accordion__item:hover .accordion__overlay {
    opacity: 1;
    padding: 25px;
  }
}

#oo {
  width: 359px;
  height: fit-content !important;
  padding: 35px 35px 35px 35px;
  background-color: #ffffff;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px 6px 61px 6px rgba(22, 22, 22, 0.1);
  transition: transform ease 300ms;
 
  overflow: hidden;
}
#card1-info {
  margin-top: 20px;
  width: 550px;
  height: fit-content !important;
  padding: 35px 35px 35px 35px;
  background-color:  #98c1d9;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px 6px 61px 6px rgba(22, 22, 22, 0.1);
  transition: transform ease 300ms;
 
  overflow: hidden;
}
#card-info:hover , #card1-info:hover {
  box-shadow: 0px 2px 6px 6px rgba(75, 118, 198, 0.5);
  background: #3d5a80
  transform: translate(0, -10px);
  
}



#my-icon {
  color: rgb(51, 75, 232);
  font-size: 56px;
  line-height: 56px;
 
}

#icon-2 {
  display: none;
}
#card-info:hover #icon-2 , #card1-info:hover #icon-2 {
  display: block;
}
#card-info:hover #my-icon, #card1-info:hover #my-icon {
  display: none;
  content: "\f117";
}
#sub-title{
  height: 359px;

}
#sub-title:hover {
  height: auto !important;
   transition: transform 3s ease;
}
#card-info:hover #sub-title,#card1-info:hover #sub-title {
  height: auto!important; 
  
  color: rgb(0, 0, 0);
}
#card-info:hover #main-title,
#sub-title,#card1-info:hover #main-title,
#sub-title {
  color: rgba(33, 50, 110, 0.812);
}

#main-title {
  margin: 30px 0px;
  font-family: "Nunito", Sans-serif;
  font-weight: bold;
  line-height: 28px;
  font-weight: 700;
  font-style: normal;
  color: #293241;
  font-size: 20px;
}
#sub-title {
  line-height: 26px;
  font-style: normal;
  color: #293241;
  font-size: 16px;
  height: 160px !important;
}

/* For Tablet View */
@media screen and (max-width: 768px) {

  #card1-info {
    width: 100%;
  }

  .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 30px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom:0rem!important;
    margin-left: 15%;
    list-style: none;
}

  iframe {
    width: 65%;
    height: 10em!important;
    margin-left: -120px;
    border-radius: 0;
  }
  
  .height40{
    height: 10em !important;
  }
  

  #card-info {
    padding: 15px 20px 20px 20px !important;
    height: 310px;
    overflow: hidden;
  }
}
.border-nav{
    color: #a1aad7;
    border: none;
}
.border-nav :hover {
    color: #cee1e7;
    border: 1px solid #4a5cc3;
    border-radius: 10px;
} 
.header-strip {
  background-color: #161515;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease; /* Add transition for smooth disappearance */
}

.header-strip.hidden {
  opacity: 0; /* Hide the header strip by reducing opacity */
  transform: translateY(-100%); /* Move it above the viewport */
}

/* Navbar styles */
.NAVBAR {
 /* Stick it to the top of the viewport */
 position: sticky !important;;
 top: 0!important;
  z-index: 100 !important;
  height: 90px; /* Ensure it appears above other content */
}

.navbar-logo {
  position: absolute;
  left: 6%;
  margin-top: -18px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 100;
}

/* for contact page */
.container1 {
  width:80%;
  margin: 30px auto;
  padding: 20px;
}

h4 {
  color: #3d5a80 ;
}
h2 {
  color: #3d5a80 ;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

th {
  
  width: 150px; /* Set the fixed width here */
}

tbody tr:hover {
  background-color: #f9f9f9;
}

@media (max-width: 600px) {
  .container1 {
    padding: 10px;
  }
  table {
    font-size: 12px;
  }
}

.whatsapp-container {
  position: sticky;
  bottom:0;
  right:0;
  margin-top:-55px; 
  margin-left:15px;/* Adjust as needed */
  z-index: 99999; /* Ensure it's above other content */
 
}

.whatsapp-icon a {
  color: #25d366;

   /* WhatsApp green color */
  

}
.whatsapp-icon a:hover {
  color: #25d366;
  
   /* WhatsApp green color */
  

}

.whatsapp-icon i {
  font-size: 2rem; /* Adjust icon size as needed */  
}


.bg-purple {
  background-color: #293241 !important;
}

   .container-sm {
   padding: 0 !important;
}
.height40{
  height: 40em;
}

@media (min-width: 768px) {
  .bg-md-transparent {
    background-color: transparent !important;
  }


}

.carousel-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
iframe {
  max-width: 100%;
  height: 25em;
}

