* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  list-style: none;
}

/* <!----------------------------- HEADER ------------------------------------------> */

nav {
  background: #adcd15;
  height: 110px;
  width: 100%;
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}

nav img {
  max-width: 100px; /* Adjust width for smaller screens */
}

.nav-links {
  flex: 1;
  text-align: right;
  margin-top: 5%;
  margin-bottom: 5%;
}

.nav-links ul {
  padding: 0;
  margin: 0;
}

.nav-links ul li {
  display: inline-block;
  padding: 5px 10px;
  position: relative;
}

.nav-links ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links ul li::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #ef7b4a;
  display: block;
  margin: auto;
  transition: width 0.5s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

nav .fa {
  display: none;
}

@media (max-width: 768px) {
  nav {
    height: 100px;
  }

  nav img {
    max-width: 80px;
  }

  .nav-links ul li {
    display: block;
    padding: 10px 0;
  }

  .nav-links {
    position: fixed;
    background: #eac70b;
    height: 100vh;
    width: 200px;
    top: -19px;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: right 1s;
  }

  nav .fa {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }

  .nav-links ul {
    padding: 30px;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links #navLinks {
    right: -200px;
  }
}
.home {
  display: flex;
  justify-content: space-between;
  align-content: baseline;
  padding: 20px;
  background: #f4f4f4;
  /* height: calc(100vh - 110px); */
  background-color: whitesmoke;
  flex-wrap: wrap; /* Allow wrapping for responsive layout */
}

.text-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; /* This will vertically align the content in the center */
}

.text-box {
  flex: 1; /* Allow text box to take available space */
  padding: 20px; /* Add some padding for better spacing */
  max-width: 100%;
  margin: auto;
  text-align: center; /* Center-align text box contents */
}

.text-box h1 {
  font-size: 3rem;
  color: #333;
}

.text-box span {
  display: inline-block;
  font-size: 1.2rem;
  color: #555;
  margin: 10px;
  /* font-family: "Bebas Neue", cursive; */
  font-family: "Poppins", sans-serif;
  position: relative;
}

/* .text-box p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
} */

.hero-btn-wrapper {
  padding: 40px;
}

.hero-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background: #4ac0d7;
  text-decoration: none;
  border-radius: 5px;
}

.hero-btn:hover {
  background: #555;
}

.image-box {
  flex: 1; /* Allow image box to take available space */
  max-width: 100%;
  text-align: center; /* Center-align image box contents */
  margin: auto;
}

.image-box img {
  max-width: 70%;
  height: auto;
  border-radius: 10px;
}

.btn-shine {
  position: relative;
  display: inline-block;
  padding: 12px 48px;
  color: #ef7b4a;
  /* background: linear-gradient(to right, #ADCD15 0%, #EF7B4A 80%, #ADCD15 100%); */
  background-position: 0;
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* animation: shine 3s infinite linear; */
  animation-fill-mode: both;
  font-weight: 700;
  font-size: 10vw; /* Use vw for responsive font size */
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
}

@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 500px;
  }
  100% {
    background-position: 700px;
  }
}

@media screen and (max-width: 991px) {
  .btn-shine {
    font-size: 8vw;
    padding: 10px 40px;
  }
  .text-box {
    font-size: 20px;
  }
  .image-box {
    text-align: center; /* Center-align image box on smaller screens */
  }
  .image-box img {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .home {
    flex-direction: column;
    justify-content: center;
    height: auto; /* Adjust height for smaller screens */
  }
  .btn-shine {
    font-size: 6vw;
    padding: 8px 32px;
  }
  .text-box {
    font-size: 18px;
    padding: 10px; /* Adjust padding for smaller screens */
  }
  .image-box {
    text-align: center; /* Center-align image box on smaller screens */
  }
  .image-box img {
    max-width: 80%;
  }
}

/* responsive design for home page */
@media screen and (max-width: 576px) {
  .home {
    padding: 10px;
  }
  .btn-shine {
    font-size: 12vw; /* Adjusted for smaller screens */
    text-align: center;
    padding: 6px 24px;
  }
  .text-box {
    text-align: center; /* Center-align text box contents */
    font-size: 16px;
    padding: 5px; /* Adjust padding for smaller screens */
    display: block;
  }
  .image-box {
    margin-top: 10%;
    margin-left: 4%;
    text-align: center; /* Center-align image box on smaller screens */
  }
  .image-box img {
    align-items: center;
    max-width: 100%; /* Allow full width for images */
  }
}

@media (max-width: 768px) {
  .about {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .about {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
  }
}

h1 {
  font-size: 36px;
  font-weight: 600;
}

p {
  color: #777;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  padding: 10px;
}

.row {
  margin-top: 5%;
  display: flex;
  justify-content: center; /* Center the cards horizontally */
}

@media (max-width: 768px) {
  .row {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}

.bx {
  color: black;
}

.visimg {
  font-size: 35px;
}

h3 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}

.container {
  width: 300px; /* Adjust as needed */
  height: 450px; /* Adjust as needed */
  margin: 20px; /* Add space between cards */
  perspective: 800px;
  overflow: hidden;
}

.container:hover > .card {
  cursor: pointer;
  transform: rotateY(180deg);
}

.card {
  height: 100%;
  width: 100%;
  position: relative;
  transition: transform 1500ms;
  transform-style: preserve-3d;
}

/* .container1 {
  width: 400px ; 
  height: 700px; 
  margin: 20px;
  perspective: 800px;
  overflow: hidden;
  border-radius: 20px;
} */

/* .container1:hover > .card1 {
  cursor: pointer;
  transform: rotateY(180deg);
} */

/* .card1 {
  height: 100%;
  width: 100%;
  position: relative;
  transition: transform 1500ms;
  transform-style: preserve-3d;
} */

.front1,
.front2,
.front3,
.back {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
  /* box-shadow: 2px 2px 5px 2px rgba(50, 50, 50, 0.25);  */

  position: absolute;
  backface-visibility: hidden;
}
/* .front4, 
.back1{
   max-height: 700px;
  width: 400px;
  border-radius : 2rem;
   backface-visibility:hidden;
} */
.front1 {
  width: 400; /* Set your desired width */
  height: 500; /* Set your desired height */
  background-image: url("img/mobile-farmer.png");

  background-size: 100% 100%; /* Or use cover, depending on your needs */
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ef7b4a;
}

.front2 {
  width: 400; /* Set your desired width */
  height: 500; /* Set your desired height */
  /* background-image: url("img/vi1.jpg"); */
  background-image: url("img/many-mobile-farmers-2.png");

  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: #ef7b4a;
}

.front3 {
  width: 400; /* Set your desired width */
  height: 500; /* Set your desired height */
  background-image: url("img/many-lady-farmers.png");
  background-size: cover; /* Or use cover, depending on your needs */
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ef7b4a;
}
/* .front4{
  width: 100%;
  height: 100%; 
  background-image:  url('img/feature.png');
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  background-color: #EF7B4A;
} */
.back {
  /* background-color: #e0f7fa; */
  background-color: #eac70b;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

/* 
.back1 {
  background-image: url(img/poster.png);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
} */

.inbx {
  font-weight: bold;
  color: black;
  font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    width: calc(50% - 40px); /* 2 cards per row, accounting for margin */
  }
}

@media (max-width: 576px) {
  .container {
    width: calc(100% - 40px); /* 1 card per row, accounting for margin */
  }
}

/* <!--------------------------------- Products --------------------------------------> */
.products {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}

.row_c {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10%;
}

.products-col,
.products-col1 {
  flex: 1;
  /* height: 110vh; */
  border-radius: 10px;
  border-color: #222;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  max-width: 45%; /* Ensure columns don't exceed half the width */
}

.products-col img,
.products-col1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.products-col img {
  /* margin-top: 16%; */
  border-radius: 25px;
}

.layer {
  background: transparent;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .layer:hover {
  background: rgba(187, 227, 102, 0.7);
}

.layer-shg:hover {
  background: rgba(247, 147, 207, 0.7);
} */

.layer h3 {
  width: 100%;
  font-weight: 500;
  color: #fff;
  font-size: 26px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  opacity: 0;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.layer:hover h3 {
  bottom: 49%;
  opacity: 1;
}

.box-link {
  color: white;
  text-decoration: none;
}

.box-link img {
  max-width: 300px; /* Adjust size as needed */
  height: auto;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .row_c {
    gap: 30px;
    align-items: center;
    flex-direction: column;
  }
  .products-col,
  .products-col1 {
    width: 75%;
    height: auto;
    max-width: 100%;
    margin: auto;
    padding: 0 0 50px 0;
  }
  .products-col img,
  .products-col1 img {
    height: auto;
  }
  .layer h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .products {
    width: 90%;
    padding-top: 30px;
  }
  .products-col,
  .products-col1 {
    margin-bottom: 20px;
    position: relative;
  }
  .layer h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 576px) {
  .products {
    width: 95%;
    padding-top: 20px;
    position: relative;
  }
  .products-col,
  .products-col1 {
    margin-bottom: 15px;
  }
  .layer h3 {
    font-size: 16px;
  }
}

/* <!--------------------------------- what we offer ? --------------------------------------> */
.offer {
  width: 80%;
  margin: auto;
  text-align: center;
  padding: 50px 0;
}
.offer .offer h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.offer-point {
  flex: 1 1 calc(30% - 20px);
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, background-color 0.3s;
}

.offer-point:hover {
  transform: translateY(-10px);
  background-color: #e0f7fa;
}

.offer-point .icon {
  font-size: 2em;
  margin-bottom: 10px;
}

.offer-point h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.offer-point p {
  font-size: 1em;
  color: #555;
}

@media (max-width: 768px) {
  .offer-point {
    flex: 1 1 calc(45% - 20px);
  }
}

@media (max-width: 480px) {
  .offer-point {
    flex: 1 1 100%;
  }
}
/* ----------------------------------------------analytics------------------------------------------------------> */
.analytics-section {
  padding: 20px;
  /* background-color: #f9f9f9; */
  /* border: 1px solid #ddd; */
  margin: 20px auto;
  max-width: 1200px;
  text-align: center;
}

.analytics-section h1 {
  font-size: 2.5em;
  color: black;
  margin-bottom: 10px;
}

.analytics-section p {
  font-size: 1em;
  color: black;
  margin-bottom: 20px;
}

.video-container {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  height: auto;
}
.shg {
  margin-bottom: 40px;
}
/* <!------------------------------------------Featuress--------------------------------------------------------> */
.features {
  width: 80%;
  margin: auto;
  text-align: center;
  padding: 50px 0;
}
.feautures h1 {
  font-size: 2.5em;
}

.features-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .change {
  width: 50px;
  height: auto;
  display: inline-block;
  font-size: 1.2em;
  text-align: center;
  position: relative;
  margin-bottom: -12.5px;
}
.features-image {
  flex: 1;
  padding-right: 20px;
}

.features-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.features-points {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 30px;
}

.feature-point {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, background-color 0.3s;
}

.feature-point:hover {
  transform: translateY(-10px);
  background-color: #e0f7fa;
}

.feature-point h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.feature-point p {
  font-size: 1em;
  color: #555;
}

.flip-card {
  width: 380px;
  height: 700px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 2rem;
}

.front4 {
  background-image: url("img/feature.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ef7b4a;
}

.back1 {
  background-color: #fff;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
}

.back1 img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 2rem;
}

@media (max-width: 768px) {
  .features-content {
    flex-direction: column;
  }
}
@media (max-width: 400px) {
  .features-content {
    flex-direction: column;
  }
  .container1 {
    max-width: 360px;
    align-items: center;
  }
  .flip-card {
    max-width: 350px;
  }
}
/* <------------------------------------------------------------FPO-----------------------------------------------------> */
.manage-fpo {
  width: 80%;
  margin: auto;
  text-align: center;
  padding: 50px 0;
  position: relative;
}
.manage-fpo img {
  width: 50px;
  height: auto;
  display: inline-block;
  font-size: 1.2em;
  text-align: center;
  position: relative;
  margin-bottom: -12.5px;
}
.manage-fpo h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.manage-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.manage-point {
  flex: 1 1 calc(45% - 20px);
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, background-color 0.3s;
}

.manage-point:hover {
  transform: translateY(-10px);
  background-color: #e0f7fa;
}

.manage-point h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.manage-point p {
  font-size: 1em;
  color: #555;
}

@media (max-width: 768px) {
  .manage-point {
    flex: 1 1 100%;
  }
}

/* <!--------------------------------- TESTIMONIALS --------------------------------------> */
.testimonials {
  width: 95%;
  margin: auto;
  padding-top: 100px;
  text-align: center;
}

.testimonials .row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonials-col {
  flex-basis: 30%;
  border-radius: 10px;
  margin-right: 1.5%;
  margin-bottom: 3%;
  text-align: left;
  background: #fff3f3;
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.testimonials-col img {
  height: 60px;
  margin-left: 5px;
  margin-right: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-col p {
  padding: 0;
  margin: 0;
}

.testimonials-col h3 {
  margin: 0 0 10px 0;
  text-align: left;
  font-size: 16px;
}

.testimonials-col .stars {
  display: flex;
  justify-content: flex-start;
  gap: 2px;
}

.testimonials-col .fa {
  color: #f44336;
}

.testimonials-col:hover {
  box-shadow: 0 0 22px 0 rgba(4, 12, 233, 0.09);
}

.testimonials-col img:hover {
  box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.2);
}

/*<!----------------------------------------------- OUR WORK ------------------------------------------------------>*/

.our-work {
  width: 95%;
  margin: auto;
  padding: 50px;
  text-align: center;
}

.our-work h1 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.work-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  padding: 10px;
  border-radius: 10px;
}

.work-item:hover img {
  transform: scale(1.1);
}

/* <!--------------------------------- CALL TO ACTION --------------------------------------> */
.cta {
  margin: auto;
  /* background-image: url(img/Lady-Writing.jpg); */
  /* background-image: url(img/contact-us-image.png);  
  background-position: left;
  background-size: contain; */
  border-radius: 10px;
  text-align: center;
  padding: 50px 0;
  /* box-shadow: 0 0 22px 0 #ef7b4a; */
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  width: 30%;
}

.cta h1 {
  color: black;
  padding: 0;
  margin-right: 15px;
}
.hero-btn1 {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background: #4ac0d7;
  text-decoration: none;
  border-radius: 5px;
}

.hero-btn1 :hover {
  background: #555;
}

.hero-btn1 {
  margin: 20px 0;
}

@media (max-width: 700px) {
  .cta h1 {
    font-size: 24px;
  }
}

/* <!--------------------------------- FOOTER --------------------------------------> */
.footer {
  background-color: #777;
  background-image: url(img/logofooter.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; /* Ensure the background image scales correctly */
  width: 100%;
  min-height: 100px; /* Ensure there is a minimum height for the footer */
  text-align: center;
  padding: 25px 0;
  overflow: hidden;
  box-sizing: border-box; /* Include padding in the element's total width and height */
}

.icons {
  display: flex;
  justify-content: flex-end;
  margin-right: 100px;
  gap: 20px; /* Space between icons */
  flex-wrap: wrap; /* Allow icons to wrap to the next line on smaller screens */
}
/* .txt-pp {
  margin-top: 18px;
  font-size: medium;
}
.txt-pp a{
  text-decoration: none;
  color: #000000;
} */
.icon a {
  font-size: 35px; /* Adjust icon size as needed */
  color: #000000;
  text-decoration: none;
}

.icon a:hover {
  color: #0077b5; /* LinkedIn blue or any other hover color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .icons {
    justify-content: center; /* Center icons on medium screens */
    margin-right: 0; /* Remove right margin on smaller screens */
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 15px 0; /* Reduce padding on smaller screens */
    min-height: 80px; /* Adjust minimum height for smaller screens */
  }

  .icon a {
    font-size: 20px; /* Adjust icon size for smaller screens */
  }
}

/* <!--------------------------------- Contact Us Page --------------------------------------> */

.sub-header-1 {
  height: 25vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  text-align: center;
  color: black;
  overflow: hidden;
}

.sub-header-1 h1 {
  margin-top: 0.25vh;
}

.about-us {
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
}

.about-col {
  flex-basis: 48%;
  padding: 30px 2px;
}

.about-col img {
  width: 100%;
  border-radius: 5px;
}

.about-col h1 {
  padding-top: 0;
}

.about-col p {
  padding: 15px 0 25px;
}

.red-btn {
  border: 1px solid #f44336;
  background: transparent;
  color: #f44336;
}

.red-btn:hover {
  color: #fff;
}

.about-col img:hover {
  box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.2);
}

.contact-us {
  width: 100%;
  margin: auto;
  background-color: white;
  overflow: hidden;
}

.contact-col {
  flex-basis: 48%;
  margin-bottom: 30px;
  overflow: auto;
}

.contact-col div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.contact-col div .fa {
  font-size: 28px;
  color: #f44336;
  margin: 10px;
  margin-right: 10px;
}

.contact-col div p {
  padding: 0%;
}

.contact-col div h5 {
  font-size: 10px;
  margin-bottom: 5px;
  color: #555;
  font-weight: 400;
}
.contact-col div h2 {
  text-wrap: wrap;
  word-wrap: anywhere;
}
.contact-col input,
.contact-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .contact-col div h5 {
    font-size: 15px;
    flex-basis: 30%;
  }
  .contact-col div h2 {
    font-size: 15px;
    flex-basis: 30%;
  }
}

/*<------------------------------------------------------------- Supporterssss----------------------------------------> */
.our-supp {
  width: 95%;
  margin: auto;
  padding-top: 50px;
  text-align: center;
}

.our-supp h1 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.supp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.supp-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  /* box-shadow: 4px 4px 8px #ef7b4a; */
  box-shadow: 4px 4px 8px #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px; /* Add padding for margin */
}

.supp-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.supp-item:hover img {
  transform: scale(1.1);
}

/* <!-----------------------------------------------------PARTNERS------------------------------------------------------->  */
/* .our-partner {
  width: 95%;
  margin: auto;
  padding-top: 50px;
  text-align: center;
}

.our-partner h1 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.partner-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.partner-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 4px 4px 8px #ef7b4a;
}

.partner-item img {
  width: auto;
  height: auto;
  transition: transform 0.3s ease;
  align-items: center;
  position: relative;
  top: 10px;
}


.partner-gallery1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.partner-item1 {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 4px 4px 8px #ef7b4a;
}

.partner-item1 img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  align-items: center;
  position: relative;
  top: 10px;
}

.partner-item1 :hover img {
  transform: scale(1.5);
} */

/*    OUR TEAM */
.team-section {
  background-color: white;
  padding: 40px 20px;
  text-align: center;
}

.team-header {
  font-size: 36px;
  color: #ef7b4a;
  margin-bottom: 40px;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.advisor {
  grid-column: span 3;
  background-color: #c2e6f1;
  border: 3px solid black;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, background-color 0.3s;
  margin-inline: auto;
}

.advisor:hover {
  transform: scale(1.05);
  background-color: gray;
}

.team-member {
  background-color: #f9f9f9;

  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, background-color 0.3s;
}

.team-member:hover {
  transform: scale(1.05);
  background-color: #e0f7fa;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;

  object-fit: cover;
}

.team-info {
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 10px;
  color: black;
}

.team-name {
  font-size: 20px;
  margin: 0;
  text-decoration: none;
}

.linkedin {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.team-role {
  font-size: 16px;
  color: #061bd7;
  margin: 5px 0 0;
}

@media (max-width: 768px) {
  .advisor {
    grid-column: span 2;
  }

  .team-member {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .advisor,
  .team-member {
    grid-column: span 1;
  }
}

/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.top-section {
  background-color: white;
  padding: 40px 20px;
  text-align: center;
}

.top-header {
  font-size: 36px;
  color: #ef7b4a;
  margin-bottom: 40px;
}

.top-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.top-member {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, background-color 0.3s;
  flex: 1 1 400px; /* Allows flex items to shrink and grow, min width 400px */
  max-width: 400px;
}

.top-member:hover {
  transform: scale(1.05);
  background-color: #e0f7fa;
}

.top-photo {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
  max-width: 200px; /* Increase the maximum size of the photo */
}

.top-info {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  color: black;
}

.top-name {
  font-size: 20px;
  margin: 0;
  text-decoration: none;
}

.linkedin {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.top-role {
  font-size: 16px;
  color: #061bd7;
  margin: 5px 0 0;
}

/* Media Queries */
@media (max-width: 768px) {
  .top-container {
    flex-direction: column;
    align-items: center;
  }

  .top-member {
    flex: 1 1 100%; /* Full width on smaller screens */
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .top-header {
    font-size: 28px;
  }

  .top-name {
    font-size: 18px;
  }

  .top-role {
    font-size: 14px;
  }

  .top-photo {
    max-width: 150px; /* Slightly smaller on very small screens */
  }
}

#progress {
  /* background-color: #4AC0D7; */
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

#progress-value {
  display: block;
  height: calc(100%-15px);
  width: calc(100%-15px);
  /* background-color: rgb(255, 255, 255); */
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 35px;
  /* color: #6615cd; */
  color: #eac70b;
}

html {
  scroll-behavior: smooth;
}

.privacy-policy {
  max-width: 1300px;
  margin: 20px auto;
  padding: 20px;
  /* background: #fff; */
  position: relative;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px; */
}

.privacy-policy h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #333;
}

.privacy-policy h2 {
  font-size: 1.5em;
  margin-top: 1em;
  color: #555;
}

.privacy-policy p {
  margin: 0.5em 0;
  color: #666;
}

.privacy-policy ul {
  list-style-type: circle;
  padding-left: 20px;
  color: #666;
}

.privacy-policy ul li {
  list-style-type: disc;
  padding-left: 0px;
  color: #666;
  position: relative;
  font-family: "Poppins", sans-serif;
}
.privacy-policy a {
  color: #007bff;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}
.sub-header-2 {
  width: 100%;
  background-position: center;
  background-size: cover;
  text-align: center;
  color: black;
  overflow: hidden;
  background-position: 0 3vh;
}

.banner-pp {
  margin-top: 7px;
  height: 75vh;
  width: 100%;
  background-image: url("img/Hero%20Illustration.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white; /* Ensure the text color contrasts well with the background image */
  text-align: center;
  position: relative;
}

.banner-pp h1 {
  font-size: 2.5em;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Optional: add background for better readability */
  padding: 10px 20px;
  border-radius: 5px;
}
.privacy-policy h3 {
  text-align: left;
  color: #555;
}

/* "Our Supporters" moving carousel */
.supp-gallery {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  /* gap: 20px; */
  padding: 10px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.supp-item {
  flex: 0 0 auto;
  width: 250px;
  height: 250px;
}

.supp-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.supp-gallery::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}

.styleless-links {
  text-decoration: none;
  color: inherit;
}
