/* Base Styles */
.hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.whatsapp-float:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.swiper {
  height: calc(50vh - 10vh);
  margin-top: -200px;
  position: relative; /* Add this for absolute positioning context */
}
.swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents image distortion */
}

.slide-text {
  position: absolute;
  padding: 10vh 5vw; /* Adjust padding as needed */
  top: 50%; /* Vertically center */
  left: 20px; /* Start from the left with some spacing */
  transform: translateY(-50%); /* Fine-tune vertical centering */
  color: white; /* Adjust as needed */
  z-index: 10; /* Ensure text is above the image */
  opacity: 0; /* Initially hidden */
  transition: opacity 0.6s ease-in, transform 0.5s ease-in; /* Smooth animation */
}
.slide-text h3 {
  color: white;
  font-weight: 900;
  margin-bottom: 10vh;
}
.slide-text p {
  color: white;
  font-weight: 500;
  margin-bottom: 5vh;
  font-size: 1.2rem; /* Adjust as needed */
}
.swiper-slide-active .slide-text {
  opacity: 1;
  transform: translateY(-50%) translateX(0); /* Animate in from the left */
}

@media (max-width: 720px) {
  .swiper-slide-active .slide-text {
    transform: translateY(-40%) translateX(0); /* Animate in from the left */
  }
  /* Adjust breakpoint as needed */
  .slide-text {
    margin: 10vh 3vw;
    font-size: 0.7rem;
  }
  .slide-text h3 {
    font-size: 1.2rem; /* Adjust for smaller screens */
  }
  .slide-text p {
    font-size: 0.8rem; /* Adjust for smaller screens */
  }
  .swiper {
    height: calc(10vh - 5vh); /* Adjust height for smaller screens */
  }
}
/* Gradient overlay */
.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(130deg, #00008e -90%, #017280 112%);
  opacity: 0.6; /* Adjust opacity as needed */
}
.post {
  width: 80%;
  max-width: 800px;
  margin: 5vh auto;
  background-color: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-image {
  display: flex; /* Enables flexbox */
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.post-image img {
  width: 100%; /* Let the flexbox handle centering */
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

@keyframes pulse-shadow {
  0%,
  100% {
    box-shadow: 0 4px 10px rgba(1, 114, 128, 0.3);
  }
  50% {
    box-shadow: 0 6px 20px rgba(1, 114, 128, 0.6);
  }
}

.post-title {
  font-size: 1.8rem;
  color: #19456b;
  margin: 0;
  font-weight: 700;
  position: relative;
}

.post-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #017280;
  border-radius: 2px;
}

.post-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* Animations */
.animate-title {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideIn 0.8s ease-out forwards;
}

.animate-text {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideIn 0.8s ease-out 0.3s forwards;
}

.animate-image {
  opacity: 0;
  transform: translateX(30px);
  animation: slideIn 0.8s ease-out 0.1s forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse-scale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
/* Responsive */
@media (max-width: 600px) {
  .post {
    width: 95%;
    padding: 1.5rem 1.5rem;
  }

  .post-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .post-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .post-description {
    font-size: 1rem;
  }
}
.Who-We-Are-Section {
  width: 80%;
  margin: 0px auto;
  display: flex;
  justify-content: start;
  align-items: center;
  height: 70vh;

  opacity: 0; /* Start hidden */
  transform: translateY(20px); /* Start slightly lower */
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.Who-We-Are-Section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-Image {
  width: 50%;
  height: 100%;
  aspect-ratio: 1/1;
}

.section-Image img {
  width: 100%;
  min-width: 50%;
  height: 100%;
  object-fit: cover;
}

.Who-We-Are-Section-Text {
  width: 40%;
  margin: 0px auto;
  text-align: start;
}
.Who-We-Are-Section-Text h3 {
  margin-bottom: 5vh;
  color: #19456b;
  text-align: start;
  font-size: 2rem;
}
.Solution-Section-Text-Tags {
  display: flex;
  justify-content: space-between; /* Better spacing between items */
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 20px; /* Consistent gap between items */
  margin: 5vh 0;
  width: 90%;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .Who-We-Are-Section {
    flex-direction: column; /* Stack on small screens */
    height: auto; /* Adjust height */
    width: 90%;
    margin-bottom: 10vh;
  }

  .section-Image,
  .Who-We-Are-Section-Text {
    width: 100%; /* Full width on small screens */
    height: auto; /* Reset height */
  }
  .Who-We-Are-Section-Text h3 {
    margin-top: 2vh;
  }
  .section-Image {
    aspect-ratio: 1/1; /* Maintain aspect ratio */
  }
}
/* Solution Section*/
.Solution-Section {
  width: 80%;
  margin: 0px auto;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;
  height: 70vh;
  opacity: 0; /* Start hidden */
  transform: translateY(20px); /* Start slightly lower */
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.Solution-Section.visible {
  opacity: 1;
  transform: translateY(0);
}

.Soltuion-Section-Text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center vertically */
  align-items: flex-start; /* Align items to the start (left) */
  margin-left: auto; /* Push container to the right */
}

.Solution-title,
.Soltuion-Section-Text span,
.Soltuion-Section-Text p {
  text-align: start; /* Align text to the left */
}

.Soltuion-Section-Text span {
  font-weight: 600;
  margin: 2vh 0px;
  text-align: start;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .Solution-Section {
    flex-direction: column; /* Stack elements vertically */
    height: auto; /* Adjust height automatically */
    width: 90%; /* Full width on small screens */
  }

  .Soltuion-Section-Text {
    width: 100%; /* Take full width */
    margin-left: 0; /* Remove left margin */
    margin-right: 0; /* Remove right margin */
    align-items: start; /* Center items on small screens */
    text-align: start; /* Center text on small screens */
  }

  .Solution-title,
  .Soltuion-Section-Text span,
  .Soltuion-Section-Text p {
    text-align: start; /* Center text on smaller screens */
  }

  .Solution-Section-Text-Tags {
    justify-content: center; /* Center tags on smaller screens */
  }
}
.Solution-Section-Text-Tags svg {
  width: 20vw; /* Default width */
  max-width: 100%; /* Ensure it doesn't exceed the container width */
  height: auto; /* Maintain aspect ratio */
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
  .Solution-Section-Text-Tags svg {
    width: 50vw; /* Adjust width for smaller screens */
  }
  .Solution-Section-Text-Tags {
    margin-top: 5vh;
  }
  .Hero-Container {
    gap: 10vh;
  }
}

@media screen and (max-width: 380px) {
  .Solution-Section-Text-Tags svg {
    width: 80vw; /* Even larger on very small screens */
  }
  .Hero-Container {
    gap: 10vh;
  }
  .Solution-Section-Text-Tags {
    margin-top: 5vh;
  }
}
.Hero-Container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.section-Clients {
  overflow: hidden;
  width: 80%;
  margin: 2vh auto;
}

.Clients-Content {
  text-align: start;
  padding: 2vh 0;
}
.Clients-Content h3 {
  font-weight: bold;
  margin-bottom: 1rem;
}
.logo-carousel-container {
  width: 100%;
  margin: 5vh auto;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content; /* Allow track to expand beyond container */
  animation: scroll 10s linear infinite;
  padding: 2vh;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track img {
  height: 60px;
  width: auto;
  margin: 0 30px;
  transition: all 0.1s ease;
  user-select: none;
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move by half of the track width */
  }
}

@keyframes scroll-reverse {
  0% {
    transform: translateX(-50%); /* Start from the middle */
  }
  100% {
    transform: translateX(0); /* Move back to start */
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 10vh;
  right: 2vw;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 2px 3px #0f8a50;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.section-Products {
  width: 100%;
  padding: 10vh 0;
  background: #f9f9f9;
}

.Products-Content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.Products-Header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.Products-Title {
  border-left: 4px solid #b62348;
  font-size: 29px;
  padding: 5px 10px;
  text-transform: uppercase;
  margin: 0;
}

.products-Container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.products-Container::-webkit-scrollbar {
  display: none; /* hide scrollbar on WebKit */
}
.products-Container {
  scrollbar-width: none; /* hide scrollbar on Firefox */
}

.Product-Item {
  flex: 0 0 auto;
  width: 250px;
  background-color: #fff;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 8px;
}

.Product-Item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.Product-Image {
  width: 100%;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.Product-Image img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  display: block;
}

.Product-Name {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  color: #222;
  margin: 0;
  margin-top: auto;
}

/* Responsive grid for small devices */
@media (max-width: 768px) {
  .products-Container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    overflow-x: hidden;
  }

  .Product-Item {
    width: 80%;
    margin: 0 auto;
  }
  .Product-Name {
    font-size: 0.6rem;
  }
}

.header-Container {
  height: 10vh;
  background-color: #1a97c8;
}
.header-Container.logo {
  width: 10vw;
  height: auto;
}
.founder-quote {
  background-color: #f8f9fa;
  padding: 4rem 2rem;
  margin: 3rem 0;
  overflow: hidden;
}

.quote-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.quote-container.animated {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.4s ease 0.2s;
}

.section-title.animated {
  opacity: 1;
  transform: translateX(0);
}

.quote-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease 0.3s;
  display: none;
  /* QOUTE IMAGE VISABLITY */
}

.quote-image img.animated {
  opacity: 1;
  transform: scale(1);
}

.quote-content {
  text-align: center;
  max-width: 600px;
}

.quote-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #34495e;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.4s;
}

.quote-text.animated {
  opacity: 1;
  transform: translateY(0);
}

.quote-text::before,
.quote-text::after {
  color: #3498db;
  font-size: 3rem;
  line-height: 1;
  position: absolute;
}

.quote-text::before {
  content: "“";
  left: -15px;
  top: -15px;
}

.quote-text::after {
  content: "”";
  right: -15px;
  bottom: -30px;
}

.quote-author {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.6s;
}

.quote-author.animated {
  opacity: 1;
  transform: translateY(0);
}

.author-name {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 0.3rem;
}

.author-title {
  color: #7f8c8d;
  font-size: 1rem;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .quote-container {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
  }

  .quote-content {
    text-align: left;
  }

  .quote-image img {
    max-width: 350px;
  }
}
/* SVGs Icons*/
.tag-item {
  display: flex;
  align-items: center;
  width: calc(50% - 20px); /* Two items per row with gap */
  min-height: 100px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tag-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 100%;
  padding: 20px;
}
.Section-desc {
  color: #b62348;
}
.icon-1 {
  background: #b62348; /* Unique background color for this icon */
}
.icon-2 {
  background: #1a97c8; /* Unique background color for this icon */
}

.item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.item-content {
  padding: 5px;
  text-align: left;
  flex-grow: 1;
}
.item-content p {
  margin: 5px 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.item-content p:first-child {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.hero-text {
  font-size: 0.8rem;
}
.text-2 {
  color: #1a97c8;
}
.text-1 {
  color: #b62348;
}
@media screen and (max-width: 768px) {
  .tag-item {
    width: 100%; /* Full width on mobile */
  }

  .Solution-Section-Text-Tags {
    gap: 15px;
    margin: 3vh 0;
  }
}

/* Specific icon colors */
.icon-1 {
  background: #b62348;
}

.icon-2 {
  background: #1a97c8;
}

/* Specific text colors */
.text-1 {
  color: #b62348;
}

.text-2 {
  color: #1a97c8;
}

.text-2 span {
  font-size: 1.5rem;
  font-weight: 700;
}
.form {
  display: flex;
  gap: 0.5rem;
}

.field {
  flex-grow: 1;
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  color: black;
  font-size: 0.9em;
}

.btn {
  padding: 0.5rem 1rem;
  background: #b62348;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #9e1f3e;
  transform: scale(1.05);
}
.slide-2 h3 {
  margin-top: 40vh;
  text-transform: capitalize;
  width: 70%;
}
.slide-3 h3 {
  margin-top: 30vh;
  text-transform: capitalize;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .slide-2 h3,
  .slide-3 h3 {
    margin-top: 0px;
    width: 100%;
    font-size: 1.5rem; /* Adjust font size for smaller screens */
  }
}
