/* Animation for logo */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 20px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInLogo 2s forwards; /* Fade in effect */
}

@keyframes fadeInLogo {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for navbar items */
.nav-item {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInNavItem 0.8s ease-out forwards;
}

@keyframes fadeInNavItem {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-item:nth-child(1) {
  animation-delay: 0.2s;
}
.nav-item:nth-child(2) {
  animation-delay: 0.4s;
}
.nav-item:nth-child(3) {
  animation-delay: 0.6s;
}
.nav-item:nth-child(4) {
  animation-delay: 0.8s;
}

/* General Font Styles */
body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
}

h2, h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #222; /* Darker color for headings */
}

p, ul li {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #555; /* Softer color for body text */
}

/* Button Styling */
.btn-demo {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px; /* Slight spacing for elegance */
  background-color: #0066cc;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-demo:hover {
  background-color: #004c99;
  transform: scale(1.05);
}

/* Navbar Styling */
.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: white !important;
}

.nav-link {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

/* Footer Styling */
footer {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

/* Styles for the "Our Services" Section */

/* Animation for fade-in effect */
@keyframes fadeInCard {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#our-services .card {
  opacity: 0;
  animation: fadeInCard 1s ease-out forwards;
}

#our-services .card:nth-child(1) {
  animation-delay: 0.2s;
}

#our-services .card:nth-child(2) {
  animation-delay: 0.4s;
}

#our-services .card:nth-child(3) {
  animation-delay: 0.6s;
}

/* Animation for Clients Section */
#our-clients img {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInCard 1s ease-out forwards;
}

#our-clients img:nth-child(1) {
  animation-delay: 0.2s;
}

#our-clients img:nth-child(2) {
  animation-delay: 0.4s;
}

#our-clients img:nth-child(3) {
  animation-delay: 0.6s;
}

#our-clients img:nth-child(4) {
  animation-delay: 0.8s;
}

/* Animation for Contact Section */
.contact-us {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInCard 1s ease-out forwards;
  animation-delay: 1s; /* Delay the Contact Us section */
}

#our-services .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#our-services .card-img-top {
  height: 180px;
  object-fit: cover;
}

#our-services .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#our-services .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

#our-services .card-text {
  font-size: 0.95rem;
  color: #555;
}

#our-services .btn {
  display: none;
}

#our-services .btn-lg {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
}

#our-services .btn-lg:hover {
  background-color: #0056b3;
  color: #fff;
}

.fixed-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  padding: 16px 24px;
  font-size: 24px;
  border-radius: 30px;
  background-color: #007bff;
  color: white;
  text-align: center;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.fixed-btn:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.fixed-btn i {
  font-size: 24px;
}

.view-all-btn {
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 30px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-family: "Roboto", sans-serif;
}

.view-all-btn:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.view-all-btn:focus {
  outline: none;
  border: 2px solid #0056b3;
}

/* Card layout for clients */
.client-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.client-card img {
  width: 100%;
  height: auto;
}

.client-card-body {
  text-align: center;
  padding: 20px;
}

.clients {
  overflow: hidden;
}

.clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideIn 9s linear infinite;
}

.client-item {
  margin: 0 30px;
  opacity: 0;
  transform: translateX(-100%);
  animation: fadeInSlideIn 2s ease-in-out forwards;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.client-item img {
  max-height: 100%;
  object-fit: contain;
  height: 100px;
}

@keyframes slideIn {
  0% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes fadeInSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Main content section with Flexbox */
.content-section .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-section .col-md-6 {
  padding: 15px;
}

.content-section img {
  max-width: 100%;
  height: auto;
}

.content-section h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #222;
}

.content-section {
  margin-top: 0;
}

.navbar {
  z-index: 100;
}

h2 {
  font-family: "Poppins", sans-serif; /* Use Poppins for modern look */
  font-weight: 700; /* Make the text bold */
  font-size: 3.5rem; /* Large text size */
  line-height: 1.3; /* Adjust line height for readability */
  color: #2c3e50; /* Rich dark blue color, provides contrast without being harsh */
  text-transform: capitalize; /* Make each word's first letter uppercase */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow to make the text pop */
}

color_17{
  color: rgb((var(--color_17)), green, blue);
}

.hero-section .btn {
  border-radius: 25px;
  padding: 10px 20px;
}

.hero-section {
  /* background-color: #f9f9f9; Light background for contrast */
  padding: 60px 0;
}
.hero-section h1 {
  color: #009966; /* Green color from the image */
  font-weight: bold;
}
.hero-section p {
  font-size: 1.1rem;
  color: #333; /* Text color for readability */
}
/* Button Styles */
.btn-custom {
  background-color: #00254d; /* Navy color for solid button */
  color: white; /* White text */
  border: none; /* No border */
  border-radius: 50px; /* Rounded corners */
  padding: 10px 20px; /* Spacing */
  font-size: 1rem; /* Font size */
  text-align: center; /* Center text */
  text-decoration: none; /* Remove underline */
  display: inline-block; /* Inline display */
  transition: all 0.3s ease; /* Smooth hover transition */
}

.btn-custom:hover {
  background-color: #f1f1f2; /* Slightly darker navy on hover */
}

.btn-outline-custom {
  background-color: transparent; /* Transparent background */
  color: #00254d; /* Navy text */
  border: 2px solid #00254d; /* Navy border */
  border-radius: 50px; /* Rounded corners */
  padding: 10px 20px; /* Spacing */
  font-size: 1rem; /* Font size */
  text-align: center; /* Center text */
  text-decoration: none; /* Remove underline */
  display: inline-block; /* Inline display */
  transition: all 0.3s ease; /* Smooth hover transition */
}

.btn-outline-custom:hover {
  background-color: #00254d; /* Navy background on hover */
  color: white; /* White text on hover */
}

.clients {
  background-color: #f8f9fa; /* Light gray background */
}

.clients h4 {
  color: #00254d; /* Navy blue text */
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.client-item img {
  max-height: 80px; /* Restrict logo height */
  margin: 20px 0;
  transition: transform 0.3s ease; /* Smooth hover effect */
}

.client-item img:hover {
  transform: scale(1.1); /* Slight zoom-in on hover */
}

/* Trusted by the Greatest Section */
.trusted-clients {
  background-color: #ffffff; /* White background */
  padding: 50px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #00254d; /* Dark navy blue */
}

.client-item img {
  max-height: 60px; /* Ensure consistent logo height */
  margin: 10px 0;
  filter: grayscale(100%); /* Default grayscale */
  transition: all 0.3s ease-in-out;
}

.client-item img:hover {
  filter: grayscale(0); /* Remove grayscale on hover */
  transform: scale(1.1); /* Slight zoom effect */
}

/* Testimonials Section */
.testimonials {
  background-color: grey; /* Green background */
  padding: 50px 0;
  color: #ffffff; /* White text */
}

.testimonial-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 30px;
  max-width: 600px;
  margin: auto;
  color: #000000; /* Black text inside card */
}

.testimonial-profile img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: bold;
}

/* Responsiveness */
@media (max-width: 768px) {
  .client-item img {
    max-height: 50px;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Trusted by the Greatest Section */
.trusted-clients {
  background-color: #ffffff; /* White background */
  padding: 50px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #00254d; /* Dark navy blue */
}

.client-item img {
  max-height: 60px; /* Ensure consistent logo height */
  margin: 10px 0;
  filter: grayscale(100%); /* Default grayscale */
  transition: all 0.3s ease-in-out;
}

.client-item img:hover {
  filter: grayscale(0); /* Remove grayscale on hover */
  transform: scale(1.1); /* Slight zoom effect */
}

/* Testimonials Section */
.testimonials {
  position: relative;
  background-color: grey; /* Green background */
  padding: 100px 0 50px;
  color: #ffffff; /* White text */
  z-index: 1;
  overflow: hidden;
}

/* Curved SVG */
.testimonials .curve {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

/* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 30px;
  max-width: 600px;
  margin: auto;
  color: #000000; /* Black text inside card */
  z-index: 1;
  position: relative;
}

.testimonial-profile img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: bold;
}

/* Responsiveness */
@media (max-width: 768px) {
  .client-item img {
    max-height: 50px;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

.trusted-clients .client-item {
  max-width: 150px;
}

.testimonials {
  background-color: grey;
  color: white;
}

.testimonials .testimonial-card {
  max-width: 500px;
}

/* Curve background */
.curve {
  margin-bottom: -5px;
}

.testimonials {
  background-color: #333333;
  color: white;
  padding: 50px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
}

/* Swiper Slider */
.swiper-container {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-author {
  font-weight: bold;
}

.testimonials {
  position: relative;
  overflow: hidden; /* Ensures the SVG does not overflow */
}

.curve {
  position: absolute;
  top: -1px; /* Adjust as needed */
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1; /* Places the SVG behind the content */
}

/* Custom styles for the testimonials section */
.testimonials {
  position: relative;
  overflow: hidden; /* Ensures the SVG does not overflow */
}

.curve {
  position: absolute;
  top: -1px; /* Adjust as needed */
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1; /* Places the SVG behind the content */
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.testimonial-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  color: white;
}

 /* Custom styles for the testimonials section */
 .testimonials {
  position: relative;
  overflow: hidden; /* Ensures the SVG does not overflow */
}

.curve {
  position: absolute;
  top: -1px; /* Adjust as needed */
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1; /* Places the SVG behind the content */
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.testimonial-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  color: black;
}

.testimonials-section-title {
  font-size: 2rem;
  color: white;
}

body {
  background-color: #FCE8F3;
  font-family: 'Arial', sans-serif;
}

.card {
  background-color: #FFFFFF;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 20px;
  text-align: center;
}
.card-title {
  font-weight: bold;
  color: #3498DB;
}
.card-text {
  color: #555;
}
h4 {
  color: #3498DB;
}

body {
  background-color: #FCE8F3;
  font-family: 'Arial', sans-serif;
}

.card {
  background-color: #f9f9f9;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 20px;
  text-align: center;
}

.card-title {
  font-weight: bold;
  color: black;
}

.card-text {
  color: #555;
}

h4 {
  color: black;
}

.services-container {
  background-color: white;

}

        /* Card and Image Animation */
        .service-card {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: space-between;
          text-align: center;
          padding: 20px;
          background-color: #f9f9f9;
          border-radius: 10px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          height: 100%;
          transition: transform 0.3s, box-shadow 0.3s;
          opacity: 0;
          transform: translateY(20px);
          animation: fadeInCard 1s ease forwards;
          margin: 10px;
        }
  
        .service-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
  
        .service-card img {
          max-height: 150px;
          object-fit: contain;
          margin-bottom: 15px;
        }
  
        .service-card h4 {
          margin-bottom: 10px;
          font-size: 1.25rem;
        }
  
        .service-card p {
          flex-grow: 1;
        }

        /* Target the section container */
.your-section-class {
  background-color: #ffffff; /* Set to white */
}

/* General resets */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.main-section {
  width: 100%;
  background-color: white; /* Set background to white */
}

.top-section {
  text-align: center;
  padding: 40px 20px;
}

.top-section h1 {
  font-size: 2rem;
  color: #002855;
  margin-bottom: 20px;
}

.try-btn {
  background-color: #002855;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.bottom-section {
  display: flex;
  flex-wrap: wrap;
}

.left-column, .right-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.left-column {
  background-color: #FFC6D3; /* Light pink */
}

.left-column img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.right-column {
  background-color: #045D56; /* Dark green */
  color: white;
  text-align: center;
}

.right-column h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.right-column p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.watch-demo-btn {
  background-color: white;
  color: #045D56;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}


.left-column img {
  width: 100%; /* Ensures the image scales to fit the container */
  height: auto; /* Maintains aspect ratio */
  max-width: 526px; /* Optional, to restrict maximum width */
  border-radius: 5px;
  object-fit: cover; /* Ensures the image fills the space while maintaining aspect ratio */
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.main-section {
  width: 100%;
  background-color: white;
}

.top-section {
  text-align: center;
  padding: 40px 20px;
}

.top-section h1 {
  font-size: 2rem;
  color: #002855;
  margin-bottom: 20px;
}

.try-btn {
  background-color: #002855;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.bottom-section {
  display: flex;
  flex-wrap: wrap;
}

.left-column {
  flex: 1;
  background-color: #FFC6D3; /* Matches the pink background */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.left-column img {
  width: 100%; /* Ensures the image scales responsively */
  max-width: 500px; /* Restricts maximum width */
  height: auto; /* Maintains aspect ratio */
}

.right-column {
  flex: 1;
  background-color: #045D56; /* Matches the green background */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.right-column h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.right-column p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.watch-demo-btn {
  background-color: white;
  color: #045D56;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.watch-demo-btn:hover {
  background-color: #e0e0e0; /* Slight hover effect */
}

.testimonials {
  background-color: #333333;
  color: white;
  position: relative;
}

.curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.section-title {
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: bold;
}
.testimonials-wrapper {
  display: flex;
  justify-content: center; /* Center the wrapper horizontally */
  align-items: center; /* Center the wrapper vertically */
  height: 100vh; /* Set wrapper height to 100% of viewport */
}


.testimonial-card {
  background: white;
  color: #333333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.testimonial-card h5 {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: bold;
}



.testimonials .testimonial-card {
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonials .carousel-indicators button {
  background-color: #000;
}

.testimonials .carousel-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials .testimonial-card {
  max-width: 500px; /* Limit the card width for better design */
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
  filter: invert(1);
}