* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Raleway", sans-serif;
}

body {
  background: linear-gradient(white, 55%, #9ae19a, transparent);
  overflow-x: hidden;
}
i:hover {
  cursor: pointer;
}
nav {
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.navbar {
  background: linear-gradient(150deg, #fff 50%, #006600);
  font-weight: 600;
  box-shadow: 1px 1px 20px rgb(0, 0, 0);
  padding: 0.8em;
}

.navbar-brand {
  margin-right: auto;
}

.navbar-brand .logo-img {
  border-radius: 8px;
  mix-blend-mode: multiply;
  height: 4.8em;
  width: 6em;
}

.navbar-nav .nav-item {
  margin-left: 2em;
}

.navbar-dark .navbar-nav .nav-link {
  color: white; 
}
.navbar-nav .nav-link {
  font-size: 1.3em;
  font-family: "Teko", sans-serif;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease-in-out;
  font-weight:normal;
}

.nav-link:focus {
  color: #000;
}

.nav-link:hover {
  font-weight: 500;
  color: #000;
}

.collapse.show {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
}






/* why-dal-is-important */
.tabcontent {
  display: none;
  padding: 20px;
  transition: opacity 0.3s ease-in-out;
}

/* Active tab content */
.tabcontent.active {
  display: block;
  opacity: 1;
}


/* Style for the tabs */

#why-dal-is-important {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 2px 4px 6px rgb(0, 0, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  height: auto;
}

.language-toggle {
  text-align: center;
  margin-bottom: 20px;
}

.language-toggle button {
  font-size: 16px;
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  border: none;
  background-color: #f0f0f0;
  color: #2b2b2b;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.language-toggle button:hover {
  background-color: #333;
  color: #fff;
}

.language-toggle button.active {
  background-color: #333;
  color: #fff;
}

/* Tabs styling */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tablinks {
  background-color: #ae0101;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out;
  font-size: 16px;
  outline: none;
}

.tablinks:hover {
  background-color: #45a049;
}

.tablinks.active {
  background-color: #45a049;
}

/* .main{
  width: 100vw;
  overflow-x: hidden;
} */

/* Tab content styling */
.tabcontent {
  display: none;
  padding: 20px;
  font-size: 1.2em;
  border-top: 2px solid #4caf50;
}

.tabcontent.active {
  display: block;
}

.tabcontent h3 {
  font-size: 1.2;
  font-weight: normal;
  margin-bottom: 10px;
  color: #333;
}

.tabcontent p {
  font-size: 1.1em;
  line-height: 1.6;
}

/* Image styling */

.fade-in-up {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.tabcontent.active .fade-in-up {
  opacity: 1;
} 
 
/* route */
.routeContainer {
  position: relative;
  background-color: #f9f9f9;
  height: 100vh;
}

/* background images */
.bowls {
  width: 20em;
  position: absolute;
  right: 7em;
  top: 115em;
  z-index: 0;
  opacity: 0.9;
  mix-blend-mode: multiply;
  animation: rotate360 infinite 8s linear;
}

.bowls img {
  filter: drop-shadow(10px 10px 10px black);
}

.center-box {
  padding: 20px 40px;
  background-color: #fff; 
  border: 2px solid #000; 
  text-align: center;
  margin-top: 10%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  border-radius: 8px;
}

h2 {
  margin: 0;
  font-size: 0.5em;
  color: #333; /* Text color */
}
/* scrollbar */
/* WebKit (Chrome, Safari, Opera) */

/* Width and height of the scrollbar */
/* ::-webkit-scrollbar {
  width: 16px; 
  height: 12px; 
}

::-webkit-scrollbar-track {
  background: #e0ffdf;
}

::-webkit-scrollbar-thumb {
  background: #4CAF50; 
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #45a049; 
} */

/* background images */
.triangles {
  position: absolute;
  left: 3em;
}

.right-pulses {
  display: none;
  height: 20em;
  transform: rotate(180deg);
}

.welcome-image {
  mix-blend-mode: multiply;
}

.pulses {
  position: absolute;
  left: -9em;
  width: 500px;
  padding-bottom: 10em;
  height: auto;
  margin: auto;
  filter: drop-shadow(5px 5px 5px rgb(0, 0, 0.5));
  display: none;
  /* animation: rotate360 infinite 8s linear; */
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

 

@media (max-width: 576px) {
  .slide .slider-text h1{
    font-size: 27px;
    text-align: center;
    padding-left: 15px;
}

  .slide img {
    height: 60vh;
  }

  .routeContainer {
    height: 60vh;
  }

  .bowls {
    width: 8em;
    right: 2em;
    top: 95em;
  }

  .pulses {
     display: none;
  }
}


/* facts and figures */
.fnf {
  position: relative;
  min-height: 100vh;
  padding: 15em 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.fnf .fact-card {
  background: linear-gradient(
    50deg,
    #1cc11c,
    5%,
    white,
    90%,
    #1cc11c,
    transparent
  );
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.705);
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 13em;
}

.fact-card h2 {
  font-weight: 500;
  font-size: 2em;
  color: #008c00;
}
.fact-card p {
  font-weight: 500;
  font-size: 1.7em;
  color: #000;
}

.facts-figures {
  position: relative;
  top: 8em;   display: flex;
  flex-wrap: wrap;
  justify-content: center; 
}


.fact-card i {
  margin-top: 1em;
  color: #000;
}

.fact-card:hover {
  transform: translateY(-8%);
  color: #006600;
  box-shadow: 0 6px 8px #2c2c2c;
  cursor: pointer;
}

@media (max-width: 576px) {

    .fnf{
      padding: 2em 0;
    }
  
    
}



/* Products */

#products {
  position: relative;
  margin: 0 auto;
  height: 100%;
  padding: 9em 0;
  text-align: center;
}
.productsCards .card {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  border-radius: 1em;
}


.products-header {
  font-size: 2.5em;
  font-weight: 800;
  color: #006600;
  margin-bottom: 2em;
}

/* Flexbox styling for the cards container */
.productsCards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Individual card styling */
.productsCards .card {
  margin: 1.5em; 
  max-width: 18em;
  height: 100%;
  border-radius: 1em;
  overflow: hidden;
  box-shadow: 0 4px 6px #919191;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.productsCards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Styling for the card image */
.productsCards .card img {
  width: 100%;
  height: auto;
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  transition: transform 0.3s ease-in-out;
}

.productsCards .card:hover img {
  transform: scale(1.1); /* Enlarge image on hover */
}

/* Card body styles */
.productsCards .card-body {
  padding: 1.5em;
  background-color: #fff;
}

.productsCards .card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 0.5em; /* Added margin bottom for spacing */
}

.productsCards .card-text {
  font-size: 1em;
  color: #555;
}

/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(1rem);
  }
  to {
    transform: translateY(0);
  }
}


/* home */

.homeContainer {
  height: 100%;
  position: relative;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.active-slide {
  opacity: 1;
  z-index: 1;
}

.slider-img {
  width: 100vw;
  height: 100vh;
  filter: brightness(0.8);
  border-bottom: 5px solid #2c2c2c;
}

.slider-container {
  position: absolute;
  width: 100%;
  height: 100vh;
}

.slider-text {
  position: absolute;
  top: 32%;
  text-align: center;
  z-index: 1;
  padding: 20px;
  color: black;
  font-weight: bold;
  font-size: 20px;
  filter: brightness(2);
}

.slider-text h1 {
  font-size: 5rem;
  margin-bottom: 10px;
  font-weight: bolder;
  color: #f4ba4e;
  text-align: center;
  text-shadow: 2px 4px 8px black;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out;
}

@keyframes slideUpHeader {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(6rem);
  }
}

/* about us */
.aboutUsContainer {
  position: relative;
  height: 48em;
  width: 100%;
}

#about-us {
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-bottom: 6em;
}

.about-start {
  display: flex;
  justify-content: space-evenly;
  align-items: row;
}

.company-profile {
  height: auto;
}
.company-profile-header {
  font-size: 2.2em;
  position: relative;
  left: 1.6em;
}
.about-start img {
  width: 20em;
  border-radius: 0.6em;
}
.about-start-text {
  font-size: 1.3em;
  text-align: left;
  padding: 2em;
}

.about-us-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 12em 0;
}
.header-text {
  position: relative;
  top: 1em;
  font-size: 2.6em;
  font-weight: 800;
  margin: 2em 0;
  color: #006600;
}

.header-content i {
  color: black;
}

.header-content h3 {
  color: black;
  font-size: 1.6em;
  font-weight: 500;
}
.header-content .expertise {
  font-size: 1.3em;
  font-weight: normal;
}

/* process */

.process {
  height:100%;
  padding: 10em 0;
}
.process-header-text {
  font-size: 2.5em;
  color: #006600;
  font-weight: 800;
  margin-bottom: 2em;
  text-align: center;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.process-card {
  width: 300px;
  height: 200px;
  margin: 20px;
  perspective: 1000px;
  position: relative;
  background: linear-gradient(1200deg, #ffffff, 5%, #ddbbbb);
  border-radius: 10px;
}

.card-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

.process-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  background-color: #f3f3f3;
  border-radius: 10px;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
}

.card-back {
  transform: rotateY(180deg);
}

h3 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 10px;
}

p {
  font-size: 1.1em;
  line-height: 1.5;
  text-align: center;
}

/* why choose us */

#about {
  padding: 80px 0;
  background-color: #f8f9fa;
}

#about .text {
  text-align: justify;
  padding: 0 15px;
}

#about .text h3 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

#about .text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

#about .row {
  align-items: center;
}

#about .col-md-4 {
  margin-bottom: 30px;
}

#about .col-md-4 .fa {
  font-size: 3rem;
  color: #ab1414;
  margin-bottom: 15px;
}

.header-content {
  margin-bottom: 15em;
}

.header-content i:hover {
  color: #ab1414;
  transition: all 0.2s ease-in-out;
}

#why-choose-us {
  height: 100%;
  padding: 9em 0;
}

#why-choose-us .col-md-4 {
  position: relative;
  top: 8em;
}

#why-choose-us i:hover {
  color: #ab1414;
  transition: all 0.2s ease-in-out;
}

#why-choose-us p {
  font-size: 1.5em;
  font-weight: normal;
}






/* contact us */
.contact-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  top: 5em;
  border-radius: 1em;
  padding-top: 1em;
  padding-bottom: 8em;
}

.contact-header-text {
  position: relative;
  top: 2.8em;
  text-align: center;
}
.map-container {
  flex: 1;
  height: 450px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-details {
  flex: 1;
  padding: 20px;
}

.contact-details h2 {
  margin-bottom: 20px;
  font-size: 2.5em;
  color: #003c00;
  text-align: center;
}

.contact-details p {
  margin-bottom: 10px;
}

.contact-details form {
  margin-top: 20px;
}

.contact-details label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4em;
  font-weight: bold;
  color: #003c00;
}

.contact-details input,
.contact-details textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-details textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-details button {
  background-color: #d72727;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.4em;
  transition: all 0.2s ease-out;
}

.contact-details button:hover {
  background-color: #006600;
}

.contact-details i {
  text-align: left;
}

/* Contact us end */

/* navigate to top button */
.nav-to-top button:hover {
  background: transparent;
  border-radius: 125px;
  border: 5px double #f4ba4e;
  height: 4em;
  width: 4em;
  opacity: 0.9;
}


/* back to top start */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #003c00;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 50px;
  box-shadow: inset 0px 4px 6px #001600;
  transition: background-color 0.3s ease;
  cursor: pointer;
  z-index: 1000;
}

.back-to-top:hover {
  background: #6a0000;
  box-shadow: inset 0px 4px 6px #8a0303;
  color: #ffff;
  animation: travelup 0.3s infinite ease-in-out linear;
}


/* back to top end*/


/* footer */

.footerContainer {
  background-color: #111;
  color: #bbb;
  padding: 2em 0;
}

.footerContainer .footer-box p{
  text-align: left;
}
.footerContainer h2,
.footerContainer h3 {
  color: #fff;
}

.footerContainer .row {
  margin: auto;
}

.footerContainer .col {
  padding: 1em;
}

.footerContainer .social-icons a {
  color: #bbb;
  font-size: 1.5em;
  margin: 0 0.5em;
  transition: color 0.3s;
}

.footerContainer .social-icons a:hover {
  color: #008c00;
}

.footerContainer a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footerContainer a:hover {
  color: #008c00;
}

.footerContainer .footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2em;
  padding-top: 1em;
}

/* footer css end */

/* fade-in-up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}
/* responsive */

.nav-ul .bars {
  display: none;
}

@media (min-width: 0px) and (max-width: 576px) {
  nav {
    position: fixed;
  }
  .right-pulses {
    display: none;
  }
  #why-choose-us h2 {
    font-size: 1.5em;
  }
  

  .language-toggle button {
    font-size: 12px;
    padding: 6px 12px;
    margin: 0 4px;
  }

  .tabs {
    flex-direction: column;
    align-items: center;
  }

  .tablinks {
    margin: 5px 0;
    width: 80%;
  }
  
  .process {
    padding: 1em 0;
  }

  .company-profile {
    height: 100%;
    flex-direction: column;
    align-items: center;
  }
  .slider-text p {
    font-size: 2em;
  }

  #why-choose-us {
    padding: 1em 0;
    padding-bottom: 10em;
  }

  #why-choose-us .col-md-4 {
    margin-bottom: 1.5em;
  }

  #why-choose-us p {
    font-size: 0.9em;
  }

  #why-choose-us i {
    font-size: 2.3em;
  }

  .col-12 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #products .card {
    width: 100%;
    margin: 1em 0;
  }

  .contact-us form {
    flex-direction: column;
    align-items: center;
  }

  .about-start {
    height: auto;
    flex-direction: column;
    align-items: center;
    padding: 3em 0;
  }

  .about-us-icons {
    height: 100%;
  }

  .process {
    height: auto;
    flex-direction: column;
    align-items: center;
  }
  .process .card {
    margin: 1em 0;
  }

  .process .cards-container {
    align-items: center;
    flex-direction: column;
  }
  .contact-container {
    flex-direction: column;
    align-items: center;
}

.contact-details,
.map-container {
    max-width: 100%;
    margin: 0 10px;
}

iframe {
    width: 100%; 
    height: 200px; 
}

iframe {
    height: 200px; 
}
}

@media (min-width: 577px) and (max-width: 786px) {
  nav {
    position: fixed;
  }
  
  .logo{
    height: 4.0em;
    width: 2.8em;
  }

  .language-toggle {
    margin-bottom: 10px;
  }

  .language-toggle button {
    font-size: 14px;
    padding: 8px 16px;
    margin: 0 8px;
  }

  .tabs {
    flex-wrap: wrap;
  }

  .tablinks {
    margin: 5px;
  }


  .contact-details,
  .map-container {
      max-width: 45%;
  }

  .navbar-toggler-icon{
    height: 25px;
    width: 25px;
   }
  
  .slider-text p {
    font-size: 2em;
  }

  #why-choose-us h2 {
    font-size: 2em; 
  }

  #why-choose-us {
    padding: 2em 0;
  }

  #why-choose-us .col-md-4 {
    top: 0;
    margin-bottom: 2em;
  }

  #why-choose-us p {
    font-size: 1.2em;
  }

  .right-pulses {
    display: none;
  }


  .company-profile {
    height: auto;
    flex-direction: column;
    align-items: center;
  }

  .pulses {
    display: none;
  }
  .benefit h3 {
    font-size: 1.5em;
  }

  .benefit p {
    font-size: 1.2em;
  }

  .facts-figures {
    flex-direction: column;
    align-items: center;
  }

  #products .card {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 1em;
  }

  

  .welcome-image  {
    mix-blend-mode: multiply;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .process {
    height: auto;
    flex-direction: column;
    align-items: center;
  }

  .process .card {
    margin: 1em 0;
  }


  .aboutUsContainer {
    height: auto;
    flex-direction: column;
    align-items: center;
  }

  .header-content {
    height: auto;
    flex-direction: column;
    align-items: center;
  }

  .process .cards-container {
    align-items: center;
    flex-direction: column;
  }
  .contact-container {
    flex-direction: column;
}

.contact-details,
.map-container {
    max-width: 45%;
}
}

@media (min-width: 993px) {
.contact-details {
    margin-right: 20px;
}

.map-container {
    margin-left: 20px;
}

  .contact-header-text {
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .benefitContainer {
    width: 85%;
  }

  .benefit {
    width: 30%;
  }

  .process .card {
    width: 30%;
    margin: 1em 1.5%;
  }

  #products .card {
    width: 30%;
    margin: 1em 1.5%;
  }
}
img {
  max-width: 100%;
  height: auto;
}

/* brand start */
.outer-div {
  
  height: 50vh;
  width: 100vw;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,"Helvetica Neue", Arial, sans-serif;

  h3 {
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 300;
    margin: 0px;
  }

  p {
    font-size: 0.75rem;
    margin: 5px 0px;
  }
}

.inner-div {
  position: absolute;
  top: 230%;
  left: 25%;
  transform: translate(-50%, -50%);
}

.team-card-1 {
  position: relative;

  .expand-btn-1 {
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 25px;
    background: black;
    top: 185px;
    right: 0;
    transform: translateX(50%);
    transition: transform 2s ease-out, background 2s ease-out;
    z-index: 3;

    .left-bar {
      position: absolute;
      background-color: transparent;
      top: 17.5px;
      left: 16px;
      width: 20px;
      height: 2px;
      display: block;
      float: right;
      border-radius: 10px 10px 10px 10px;

      &:after {
        content: "";
        background-color: white;
        width: 20px;
        height: 2px;
        display: block;
        transform: rotate(35deg);
        float: right;
        border-radius: 10px 10px 10px 10px;
        transition: all 1.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
        z-index: -1;
      }
    }

    .right-bar {
      position: absolute;
      background-color: transparent;
      top: 28.5px;
      left: 16px;
      width: 20px;
      height: 2px;
      display: block;

      float: right;
      border-radius: 10px 10px 10px 10px;

      &:after {
        content: "";
        background-color: white;
        width: 20px;
        height: 2px;
        display: block;
        transform: rotate(-35deg);
        float: right;
        border-radius: 10px 10px 10px 10px;
        transition: all 1.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
        z-index: -1;
      }
    }
  }

  .open {
    .left-bar:after {
      transform-origin: center center;
      transform: rotate(-150deg);
    }

    .right-bar:after {
      transform-origin: center center;
      transform: rotate(-150deg);
    }
  }

  .image-card-1 {
    /* -webkit-filter: grayscale(100%); */
    /* Safari 6.0 - 9.0 */
    /* filter: grayscale(100%); */
    border-radius: 15px;
    background-color: #f29f39;
    width: 400px;
    height: 700px;
    position: relative;
    /* -webkit-box-shadow: 22px 23px 35px -11px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 22px 23px 35px -11px rgba(0, 0, 0, 0.26);
    box-shadow: 22px 23px 35px -11px rgba(0, 0, 0, 0.26); */
    z-index: 2;
    transition: filter 2s ease-out;

    .team-info {
      color: #fff;
      min-height: 50px;
      position: absolute;
      width: 100%;
      bottom: 0;
      padding: 0px 25px 25px 25px;
      line-height: 1.4;
      transition: opacity 2s ease-out, transform 2s ease-out;
      opacity: 1;
    }

    .text-reduce {
      opacity: 0;
      transform: translateX(-10px);
    }
  }

  

  .role-description {
    border-radius: 0px 15px 15px 0px;
    position: relative;
    margin-top: -250px;
    height: 200px;
    width: 200px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 35px -2px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0px 0px 35px -2px rgba(0, 0, 0, 0.21);
    box-shadow: 0px 0px 35px -2px rgba(0, 0, 0, 0.21);
    transition: transform 2s ease-out;

    .team-info-des {
      padding: 25px 25px 0px 25px;
      transition: opacity 2s ease-out, transform 2s ease-out;
      opacity: 0;
      transform: translateX(5px);
    }

    .line {
      width: 0px;
      border: 1px solid black;
      margin: 8px 0px 0px 18px;
      background: #4ea6ea;

      transition: width 2s ease-out;
    }

    .body-text-1 {
      font-size: 0.75rem;
      line-height: 1.2;
      padding: 5px 25px 25px 23px;
      transition: opacity 2s ease-out, transform 2s ease-out;
      opacity: 0;
      transform: translateX(5px);
    }
  }

  .expand {
    transform: translateX(100%);

    .team-info-des {
      transition-delay: 0.5s;
      opacity: 1;
      transform: translateX(-5px);
    }

    .line {
      transition-delay: 1.5s;
      width: 25px;
    }

    .body-text-1 {
      transition-delay: 0.5s;
      opacity: 1;
      transform: translateX(-5px);
    }
  }

  .color-reveal {
    filter: grayscale(0%);
    transition: filter 2s ease-out;
  }

  .move-button {
    transition: transform 2s ease-out, background 2s ease-ou;
    transform: translateX(225px) !important;
    background: #ae81ff;

    .left-bar:after {
      transform-origin: center center;
      transform: rotate(-35deg);
    }

    .right-bar:after {
      transform-origin: center center;
      transform: rotate(35deg);
    }
  }
}

/* brand end2 */
.outer-div1 {
  height: 50vh;
  width: 100vw;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,"Helvetica Neue", Arial, sans-serif;

  h3 {
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 300;
    margin: 0px;
  }

  p {
    font-size: 0.75rem;
    margin: 5px 0px;
  }
}

.inner-div1 {
  position: absolute;
  top: 230%;
  left: 73%;

  transform: translate(-50%, -50%);
}

.team-card-2 {
  position: relative;

  .expand-btn-2 {
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 25px;
    background: black;
    top: 185px;
    right: 0;
    transform: translateX(50%);
    transition: transform 2s ease-out, background 2s ease-out;
    z-index: 3;

    .left-bar1 {
      position: absolute;
      background-color: transparent;
      top: 17.5px;
      left: 16px;
      width: 20px;
      height: 2px;
      display: block;
      float: right;
      border-radius: 10px 10px 10px 10px;

      &:after {
        content: "";
        background-color: white;
        width: 20px;
        height: 2px;
        display: block;
        transform: rotate(35deg);
        float: right;
        border-radius: 10px 10px 10px 10px;
        transition: all 1.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
        z-index: -1;
      }
    }

    .right-bar1 {
      position: absolute;
      background-color: transparent;
      top: 28.5px;
      left: 16px;
      width: 20px;
      height: 2px;
      display: block;

      float: right;
      border-radius: 10px 10px 10px 10px;

      &:after {
        content: "";
        background-color: white;
        width: 20px;
        height: 2px;
        display: block;
        transform: rotate(-35deg);
        float: right;
        border-radius: 10px 10px 10px 10px;
        transition: all 1.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
        z-index: -1;
      }
    }
  }

  .open1 {
    .left-bar:after {
      transform-origin: center center;
      transform: rotate(-150deg);
    }

    .right-bar1:after {
      transform-origin: center center;
      transform: rotate(-150deg);
    }
  }

  .image-card-2 {
    /* -webkit-filter: grayscale(100%); */
    /* Safari 6.0 - 9.0 */
    /* filter: grayscale(100%); */
    border-radius: 15px;
    background-color: #f29f39;
    width: 400px;
    height: 700px;
    position: relative;
    /* -webkit-box-shadow: 22px 23px 35px -11px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 22px 23px 35px -11px rgba(0, 0, 0, 0.26);
    box-shadow: 22px 23px 35px -11px rgba(0, 0, 0, 0.26); */
    z-index: 2;
    transition: filter 2s ease-out;

    .team1-info {
      color: #fff;
      min-height: 50px;
      position: absolute;
      width: 100%;
      bottom: 0;
      padding: 0px 25px 25px 25px;
      line-height: 1.4;
      transition: opacity 2s ease-out, transform 2s ease-out;
      opacity: 1;
    }

    .text-reduce1 {
      opacity: 0;
      transform: translateX(-10px);
    }
  }

  .role-description1 {
    border-radius: 0px 15px 15px 0px;
    position: relative;
    margin-top: -250px;
    height: 200px;
    width: 200px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 35px -2px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0px 0px 35px -2px rgba(0, 0, 0, 0.21);
    box-shadow: 0px 0px 35px -2px rgba(0, 0, 0, 0.21);
    transition: transform 2s ease-out;

    .team-info-des1 {
      padding: 25px 25px 0px 25px;
      transition: opacity 2s ease-out, transform 2s ease-out;
      opacity: 0;
      transform: translateX(5px);
    }

    .line1 {
      width: 0px;
      border: 1px solid black;
      margin: 8px 0px 0px 18px;
      background: #4ea6ea;

      transition: width 2s ease-out;
    }

    .body-text-2 {
      font-size: 0.75rem;
      line-height: 1.2;
      padding: 5px 25px 25px 23px;
      transition: opacity 2s ease-out, transform 2s ease-out;
      opacity: 0;
      transform: translateX(5px);
    }
  }

  .expand1 {
    transform: translateX(100%);

    .team-info-des {
      transition-delay: 0.5s;
      opacity: 1;
      transform: translateX(-5px);
    }

    .line1 {
      transition-delay: 1.5s;
      width: 25px;
    }

    .body-text-2 {
      transition-delay: 0.5s;
      opacity: 1;
      transform: translateX(-5px);
    }
  }

  .color-reveal1{
    filter: grayscale(0%);
    transition: filter 2s ease-out;
  }

  .move-button1 {
    transition: transform 2s ease-out, background 2s ease-ou;
    transform: translateX(225px) !important;
    background: #ae81ff;

    .left-bar1:after {
      transform-origin: center center;
      transform: rotate(-35deg);
    }

    .right-bar1:after {
      transform-origin: center center;
      transform: rotate(35deg);
    }
  }
}

/* brand end2 */
/* responsive card start */
/* For all screen sizes - One column layout */
@media (max-width: 768px) {
  .main-brand {
    margin-top: -20%;
      flex-direction: column;
      align-items: center;
     
  }
  .outer-div, .outer-div1 {
    display: flex; /* Ensure it's a flex container */
    flex-direction: column; /* Set the direction for mobile */
    width: 100%;
    margin-bottom: 20px;
    gap: 20px; /* This should now apply between flex items */
}
.outer-div1
{
  margin-top: 80%;
}
  .inner-div, .inner-div1 {
      top: auto;
      left: auto;
      transform: none;
  }
  .image-card-1  .image-card-2  {
    width: 60%; /* Set the image container width */
    height: auto; /* Adjust height to maintain aspect ratio */
    background-size: contain; /* Contain will scale the image */
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto; /* Centers the image on smaller screens */
  
  
  }
}



/* responsive card end */

/* additional product-desgin start */
/* @import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans:300,400,600,600i|IBM+Plex+Serif:400,700');

$headings-font-family: 'IBM Plex Sans', sans-serif; 
$font-family-base: 'IBM Plex Serif', serif;  */

.card-img {
 margin-top: -10%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100%;
  padding: 3em 0 8em 0;
}

.card-info {
  height: 30em;
  width: 40em;
  background: #71c258a4;
  padding: 3em;
  text-align: center;
  border-radius: 5px;
  gap: 2em  ;
  border-left: 2px solid;
  border-right: 2px solid;
}

.card-title {
  font-size: 32px;
  font-weight: 600;
  text-shadow: 1px 1px 1px #ffff;
}
.card-info-desc {
  font-size: 18px;
  position: relative;
  top: 2.5em;
  font-weight: 350;
  line-height: 1.5;
}

.img-sec {
  width: 40em;
  /* box-shadow: 2px 4px 6px black; */
}

.card-info button {
  background: #8e0c0c;
  border: none;
  margin-top: 3%;
  /* box-shadow:  0 2px 4px black; */
  color: white;
  font-size: 18px;
  padding: 1em 5em;
  border-radius: 5px;
  position: relative;
  top: 4em;
}
.card-info button:hover{
  background: #151414;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .card-img {
    margin-top: -50%;
    flex-direction: column;
    padding: 2em 0;
  }

  .card-info, .img-sec {
    width: 90%; /* Adjust the width for smaller screens */
    height: 100%;
  }

  .img-sec {
    margin: 0 auto; /* Center the image */
  }

  .card-title {
    font-size: 24px; /* Reduce title size */
  }

  .card-info-desc {
    margin-top: -10%;
    font-size: 16px; /* Reduce text size */
  }

  .card-info button {
    font-size: 16px;
    padding: 1em 3em;
  }
  .img-sec
  {
    margin-top: 10%;
  margin-right: 10%;
  }
}

/* additional product-desgin end */

/* our-team section start */
.card {
  margin: 0 auto;
  border: none;
}

.card .carousel-item {
  min-height: 190px;
}

.card .carousel-caption {
  padding: 0;
  right: 15px;
  left: 15px;
  top: 15px;
  color: #3d3d3d;
  border: 1px solid #ccc;
  min-height: 175px;
  padding: 15px;
}

.card .carousel-caption .col-sm-3 {
  display: flex;
  align-items: center;
}

.card .carousel-caption .col-sm-9 {
  text-align: left;
}

.card .carousel-control-prev,
.card .carousel-control-next {
  color: #3d3d3d !important;
  opacity: 1 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  color: #fff;
  font-size: 14px;
  background-color: #cd3a54;
  height: 32px;
  line-height: 32px;
  width: 32px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  opacity: 0.85;
}

.carousel-control-prev {
  left: 40%;
  top: 110%;
}

.carousel-control-next {
  right: 40%;
  top: 110%;
}

.midline {
  width: 86px;
  border-top: 4px solid #35c212;
display: flex;
    justify-content: center;
    margin-left: 47%;
}

.carousel-caption h2 {
  font-size: 14px;
}

.carousel-caption h2 span {
  color: #cd3a54;
}

@media (min-width: 320px) and (max-width: 575px) {
  .carousel-caption {
    position: relative;
  }

  .card .carousel-caption {
    left: 0;
    top: 0;
    margin-bottom: 15px;
  }

  .card .carousel-caption img {
    margin: 0 auto;
  }

  .carousel-control-prev {
    left: 35%;
    top: 105%;
  }

  .carousel-control-next {
    right: 35%;
    top: 105%;
  }

  .card .carousel-caption h3 {
    margin-top: 0;
    font-size: 16px;
    font-weight: 700;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .carousel-caption {
    position: relative;
  }

  .card .carousel-caption {
    left: 0;
    top: 0;
    margin-bottom: 15px;
  }

  .card .carousel-caption img {
    margin: 0 auto;
  }

  .card .carousel-caption h3,
  .card .carousel-caption small {
    text-align: center;
  }

  .carousel-control-prev {
    left: 35%;
    top: 105%;
  }

  .carousel-control-next {
    right: 35%;
    top: 105%;
  }
}

@media (min-width: 767px) and (max-width: 991px) {
  .card .carousel-caption h3 {
    margin-top: 0;
    font-size: 16px;
    font-weight: 700;
  }
}
/* our team section end */