/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: var(--dark);
  overflow-x: hidden;
  background-color: #f8f9fa;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

.img-fluid {
  width: 500px;
  height: auto;
  /* margin-top: 19px; */
  margin-left: 13px;
} 

.card-body {
 
    padding-top: 100px;
    width: 100%;
padding: 0px;
margin-top: 93px;

}


.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 130px;
  text-align: center;
}

h2 {
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  margin-top: 2rem;
  color: #0056b3;
}

.services-section {
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  margin-top: -40px;
  padding: 20px;
}

.section-title {
  font-size: 40px;
  color: #0044cc;
  margin-bottom: 15px;
  margin-top: -33px;
}

.services-list {
  list-style: none;
  text-align: left;
  padding: 0;
}

.service-item {
  font-size: 16px;
  color: #333;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  opacity: 0;
  transform: translateX(-50px); /* Initially moves left */
}

/* Reveal Animation */
.service-item.reveal {
  opacity: 1;
  transform: translateX(0);
}

/* Hover Effect */
.service-item:hover {
  background: #e6f0ff;
}

/* Responsive Design */

/* Small screens (up to 480px) */
@media (max-width: 480px) {
  .services-section {
    padding: 15px;
  }

  .section-title {
    font-size: 22px;
  }

  .service-item {
    font-size: 14px;
    padding: 8px;
  }
}

/* Tablets (481px - 786px) */
@media (max-width: 786px) {
  .services-section {
    padding: 18px;
  }

  .section-title {
    font-size: 24px;
  }

  .service-item {
    font-size: 15px;
    padding: 9px;
  }

  
}

/* Laptops (787px - 1024px) */
@media (max-width: 1024px) {
  .services-section {
    padding: 20px;
  }

  .section-title {
    font-size: 26px;
  }

  .service-item {
    font-size: 16px;
    padding: 10px;
  }
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Main Container */
.containersection {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 30px;
  gap: 240px;
  animation: fadeInRight 1.5s ease-in-out;
  max-width: 1500px;
  margin: auto;
}

/* Left Image */
.image-content {
  width: 40%;
  text-align: center;
  animation: fadeInLeft 1.5s ease-in-out;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Right Content */
.text-content {
  width: 55%;
}

.text-content p {
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 18px;
}

/* List Styling */
.text-content ul {
  list-style: none;
  padding-left: 0;
}

.text-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 18px;
  color: #333;
  transition: transform 0.3s ease, color 0.3s ease;
}

.text-content ul li i {
  font-size: 22px;
  color: #007bff;
  margin-right: 12px;
  transition: color 0.3s ease;
}

/* Hover Effects */
.text-content ul li:hover {
  transform: translateX(8px);
  color: #007bff;
}

.text-content ul li:hover i {
  color: #0056b3;
}

@media (max-width: 1024px) {
  .containersection {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 12px;
  }

  .image-content {
    width: 70%;
    margin-bottom: 20px;
  }

  .text-content {
    width: 100%;
  }

  .text-content h2 {
    font-size: 24px;
  }

  .text-content p {
    font-size: 16px;
  }

  .text-content ul li {
    font-size: 16px;
  }

  .text-content ul li i {
    font-size: 20px;
  }
}

/* For Small Screens (Mobile) */
@media (max-width: 768px) {
  .containersection {
    flex-direction: column;
    padding: 15px;
  }

  .image-content {
    width: 100%;
    margin-bottom: 15px;
  }

  .text-content {
    width: 100%;
  }

  .text-content h2 {
    font-size: 22px;
  }

  .text-content p {
    font-size: 14px;
  }

  .text-content ul li {
    font-size: 14px;
  }

  .text-content ul li i {
    font-size: 18px;
  }
}

/* Extra Small Screens (Small Mobile) */
@media (max-width: 480px) {
  .containersection {
    padding: 10px;
    flex-direction: column;
  }

  .text-content h2 {
    font-size: 20px;
  }

  .text-content p {
    font-size: 12px;
  }

  .text-content ul li {
    font-size: 10px;
  }

  .text-content ul li i {
    font-size: 16px;
  }
}

/* footer */

.footer {
  background-color: #2f4f9a; /* Blue Background */
  color: white; /* White Text */
  text-align: center;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
}

.container-client {
  display: flex;
  gap: 49px;
  /* padding: 150px 100px; */
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 118px;
}
.card-client {
  width: 15%;
  height: 150px;
  border-radius: 15px;
  background: linear-gradient(135deg, #6a8ef6, #436db6);
  border: none;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 20px;
  color: white;
  font-weight: bold;
  transition: transform 0.3sease, box-shadow 0.3sease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-client h3 {
  font-size: 29px;
  font-weight: inherit;
}
.card-client:hover {
  transform: translateY(-6px);
  box-shadow: 6px 12px 24px rgba(0, 0, 0, 0.2);
  color: #9bed84;
}

span {
  font-size: 45px;
  font-weight: bold;
}


@media (max-width: 992px) {
  .card-client {
    padding: 15px;
    height: 125px;
  }
  .container-client {
    gap: 12px;
  }
  .card-client h3 {
    font-size: 20px;
  }
  span {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .container-client {
    gap: 20px;
  }
  .card-client {
    width: 45%; /* Two cards per row */
    height: 140px;
  }
  .card-client h3 {
    font-size: 22px;
  }
  span {
    font-size: 35px;
  }
}


@media (max-width: 576px) {
  .container-client {
      gap: 5px;
  }
  .card-client {
    width: 45%; /* Two cards per row */
    height: 100px;
  }
  .card-client h3 {
    font-size: 22px;
  }
  span {
    font-size: 35px;
  }
}




@media (max-width: 480px) {
  .container-client {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  .card-client {
    flex-basis: 30%; /* Consistent width */
    height: 80px;
    padding: 5px;
    text-align: center;
  }

  .card-client:nth-child(n+4) { 
    flex-basis: 30%; /* Keeping all same size in the second row */
  }

  .card-client h3 {
    font-size: 15px;
  }

  span {
    font-size: 26px;
  }
}


.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.scroll-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  padding: 10px 0;
  background: #fff;
}

.scroll-container {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 30s linear infinite; /* Continuous scrolling */
}

.scroll-container img {
  height: 134px;
  max-width: 1188px;
  object-fit: contain;
  border-radius: 5px;
}

/* Keyframes for infinite scrolling */
@keyframes scroll {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-50%); /* Move images left */
  }
}





.navbar {
  display: flex;
  width: 100%;
  position: fixed;
  z-index: 2;
  padding-top: 0px;
  /* background-color: white; */
  /* margin-top: -55px; */
}

/* Logo Section */
.logo-container {
  background-color: white;
  width: 15%;
  padding: 0px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 46px;
  width: 100%;
  margin-top: 10px;
}


a.logo {
  width: 100%;
}


.nav-links-container {
  background-color: #1a2a5c;
  width: 85%;
  /* padding: 42px 0px; */
  padding: 15px;
  margin-top: -3px;
}
.nav-links-container ul {
  display: flex;
  justify-content: space-between;
}
/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: space-between;
  /* gap: 122px; */
}


.nav-links li::before {
  content: none !important;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  position: relative;
}

/* Dot before menu items */

/* Hover Effect */
.nav-links a:hover {
  color: #30d330;
}
.menu-btn {
  font-size: 24px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  display: none; 
}

 
 .mobile-menu {
  display: none;
  background-color: #1a2a5c;
  padding: 15px;
  position: absolute;
  top: 100px;
  width: 72%;
  left: 126px;
  z-index: 2;
  transition: left 0.3s ease-in-out;
} 

.mobile-menu.active {
  display: block;
  position: fixed;
  margin-top: -49px;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-menu li {
  padding: 10px;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}


@media (max-width: 480px) {
.logo-container {
  background-color: white;
  width: 26%;

}

.nav-links-container {
  background-color: #1a2a5c;
  width: 65%;
}

.card-body {

  margin-top: -18px;
}
  
.section-title{
  margin-top: -108px;
}

.menu-btn {
  display: block;

}

  .nav-links {
    display: none; 
  }
  .nav-links-container .nav-links {
    display: none; 
  }
  .logo-container {
    padding: 0px;
    width: 20%;
  }

  .hero-text h1 {
    font-size: 15px;
   
}
.navbar {

  margin-top: -12px;
}

  .mobile-menu {
    display: none;
  }
  
}



@media (max-width: 576px) {
  .logo-container {
    background-color: white;
    width: 35%;
  
  }
  
  .nav-links-container {
    background-color: #1a2a5c;
    width: 65%;
  }
  
  
  .logo img {
    height: 52px;
    
  }
  .menu-btn {
    display: block;
   
  }
  
  }


  @media (max-width: 992px) {
   
   
    .logo-container {
      padding: 0px;
      width: 20%;
    }
  

    .nav-links-container {
      background-color: #1a2a5c;
      width: 80%;
    }
   
  }
 


/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hide menu items on small screens */
  }
  .nav-links-container .nav-links {
    display: none; /* Hide menu items on small screens */
  }
  .logo-container {
    padding: 0px;
    width: 35%;
  }

  .menu-btn {
    display: block; /* Show hamburger menu */
    /* margin-left: 250px; */
  }
  
  .mobile-menu {
    display: none;
  }
  .nav-links-container {
    background-color: #1a2a5c;
    width: 65%;
  }
  .hero-image img {
    margin-top: 40px;
}
}

@media (max-width: 2800px) {
  .nav-links {
    /* gap: 118px; */
    justify-content: space-between;
  }
}

@media (max-width: 1500px) {
  .navbar{
    border: none;
  }
}
