﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/* General Styling */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #333;
  text-align: center;
  overflow-x: hidden;
}
/* Navigation Bar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 15px 30px;
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 1000;
}

.logo {
  display: flex;
  font-size: 1.5rem;
  font-weight: bold;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  padding: 10px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff7b00;
}

.mySlides {
  display: none;
}

/* Slideshow */
.slideshow-container {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin-top: 50px;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
}

/* About Section */
.about {
  padding: 60px 20px;
  background: #222;
  text-align: center;
}

  .about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
  }

/* About Container */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

/* About Text */
.about-text {
  flex: 2;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
  max-width: 600px;
  color: white;
}

/* About Images */
.about-image {
  flex: 1;
  text-align: center;
}

  .about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

/* About Highlights */
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.highlight-item {
  width: 300px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-image img {
    max-width: 300px;
  }
}


/* Features Section */
.features {
  padding: 50px 20px;
  background: #ffffff;
  text-align: center;
}

.features-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

/* Feature Columns */
.features-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

/* Individual Feature Items */
.feature-item {
  padding: 20px;
  background: #f1f1f1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Center Image */
.feature-image {
  flex: 1.5; /* Make the image area slightly bigger */
  text-align: center;
}

  .feature-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    /*border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);*/
  }

/* Responsive Design */
@media (max-width: 900px) {
  .features-container {
    flex-direction: column;
  }

  .feature-image {
    order: -1; /* Moves the image above the features on small screens */
  }
}


/* Parallax Section 1 */
.parallax {
  position: relative;
  height: 80vh;
  background: url('../Images/animal-welfare2.png') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

  /* Dark Overlay */
  .parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Keeps text readable over image */
  }

/* White Box Around Text */
.parallax-text-box {
  background: white;
  padding: 20px 40px;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
  color: black;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2; /* Ensures it appears above the overlay */
}

/* Responsive Design */
@media (max-width: 768px) {
  .parallax-text-box {
    max-width: 90%;
    padding: 15px 25px;
  }
}


/* Book a Demo Section */
.book-demo {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.book-demo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

/* Left Text */
.book-demo-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

  .book-demo-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .book-demo-text p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

/* Buttons Container */
.demo-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

/* Buttons Styling */
.demo-button,
.download-button {
  display: inline-block;
  padding: 12px 24px;
  background: #ff7b00;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: 0.3s;
}

  .demo-button:hover,
  .download-button:hover {
    background: #e06b00;
  }

/* Right Image */
.book-demo-image {
  flex: 1;
  text-align: center;
}

  .book-demo-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

/* Responsive Design */
@media (max-width: 900px) {
  .book-demo-container {
    flex-direction: column;
    text-align: center;
  }

  .book-demo-text {
    text-align: center;
  }

  .demo-buttons {
    justify-content: center;
  }

  .book-demo-image img {
    max-width: 400px;
  }
}

/* Parallax Section 2 */
.parallax2 {
  position: relative;
  height: 80vh;
  background: url('../Images/welfare2.png') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

  /* Dark Overlay */
  .parallax2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Keeps text readable over image */
  }

/* White Box Around Text */
.parallax2-text-box {
  background: white;
  padding: 20px 40px;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
  color: black;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2; /* Ensures it appears above the overlay */
}

/* Responsive Design */
@media (max-width: 768px) {
  .parallax2-text-box {
    max-width: 90%;
    padding: 15px 25px;
  }
}

/* Client Section */
.clients-heading {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
}

.client {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.client .card {
  background: #fff;
  height: 250px;
  width: 250px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.client .card .img,
.client .card .aws {
  height: 148px;
  width: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client .card .img img,
.client .card .aws img {
  max-width: 100%;
}

.client-wrapper {
  max-width: 100vw;
  width: 100%;
  margin: auto;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1A4E76;
  padding-bottom: 50px;
}

.client-wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1rem;
  position: absolute;
  text-align: center;
  line-height: 40px;
  background: #1A4E76;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}

.client-wrapper i:active {
  transform: translateY(-50%) scale(0.65);
}

.client-wrapper i:first-child {
  left: -12px;
}

.client-wrapper i:last-child {
  right: -12px;
}

.client-wrapper .client {
  display: grid;
  width: 95%;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 4) - 12px);
  overflow-x: auto;
  gap: 5px;
  border-radius: 8px;
}

.client-wrapper #left {
  background: white;
  color: black;
}

.client-wrapper #right {
  background: white;
  color: black;
}

/* Testimonials Section */
/* Single testimonial layout override */
.wrapper.single-testimonial {
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  min-height: 70vh;
  flex-direction: column;
}

.testimonial-heading {
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}

.single-testimonial .card {
  width: 100%;
  max-width: 600px;
  height: auto;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

  .single-testimonial .card .img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .single-testimonial .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .single-testimonial .card h2 {
    font-size: 1.8rem;
    margin: 10px 0 5px;
  }

  .single-testimonial .card span {
    color: #777;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .single-testimonial .card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
  }

/** .wrapper {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body .wrapper {
  display: flex;
  padding: 0 4.5em;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background: linear-gradient(to left top, #1A4E76, #1A4E76);
}

.wrapper {
  max-width: 100vw;
  width: 100%;
  position: relative;
  margin: auto;
}

.wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #1A4E76;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}

.wrapper i:active {
  transform: translateY(-50%) scale(0.85);
}

.wrapper i:first-child {
  left: -22px;
}

.wrapper i:last-child {
  right: -22px;
}

.wrapper .carousel {
  display: grid;
  width: 95%;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.wrapper #left {
  background: white;
  color: black;
  margin-left: 1.45em;
}

.wrapper #right {
  background: white;
  color: black;
  margin-right: 1.45em;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}

.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel .card {
  scroll-snap-align: start;
  height: 550px;
  width: 500px;
  list-style: none;
  background: #fff;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
}

.carousel .card .aws {
  scroll-snap-align: start;
  /*height: 342px;*
  list-style: none;
  background: #fff;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  /*border-radius: 8px;
}

.carousel .card .img {
  /*background: #1A4E76;
  height: 148px;
  width: 148px;
  border-radius: 50%;
}

.carousel .card .aws {
  /*background: #1A4E76;
  height: 40px;
  width: 150px;
  /*border-radius: 50%;
}

.card .img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}

.card .aws img {
  height: 40px;
  width: 150px;
  /*border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}

.carousel .card h2 {
  font-weight: 500;
  font-size: 1.56rem;
  margin: 30px 0 5px;
}

.carousel .card span {
  color: #6a6d78;
  font-size: 1.31rem;
}

@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}*/

/* Contact Section */
#contact {
  /*background: #333;*/
  background: linear-gradient(to left top, #1A4E76, #1A4E76);
}
.contact {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
  max-width: 70vw;
  margin: auto;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  text-align: left;
}

.form-group label {
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 97%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

/* Submit Button */
.send-button {
  background: #1A4E76;
  color: white;
  padding: 12px;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.send-button:hover {
  background: #143a57;
}

/* Response Message */
.response-message {
  margin-top: 15px;
  font-size: 1rem;
  color: #1A4E76;
  font-weight: 500;
}

/* Loading spinner*/
.loading-spinner {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  border: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Spinner Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Footer */
footer {
  padding: 20px;
  background: #111;
  color: white;
}

footer a {
  color: white;
}