@import "variables.css";
@import "utilities.css";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -weblit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--dark);
  overflow-x: hidden;
  position: relative;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
}

/* Navbar Container */

.navbar {
  display: flex;
  width: 100%;
  position: fixed;
  z-index: 2;
  padding-top: 0px;
  /* background-color: white; */
  margin-top: 0px;
}

/* 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: -44px;
}

.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%;
}


  
  

.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: 992px) {
   
   
  .logo-container {
    padding: 0px;
    width: 20%;
  }


  .nav-links-container {
    background-color: #1a2a5c;
    width: 80%;
  }
 
}

@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;
   
  }
  
  }

 


/* 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;
  }
}





.card-container {
  /* gap: 20px;
    flex-wrap: wrap; */
  justify-content: center;
  background-color: #436db6;

  /* padding: 10px 0px; */
}

.Products {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #436db6;
  padding: 23px 0px;
}

.card {
  background-color: white;
  width: 250px;
  border-radius: 15px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  height: auto;
}



.card-header {
  position: relative;
  height: 120px;
  /* overflow: hidden; */
}

.card-header img {
  width: 100%;
  height: 80%;
  border-radius: 0 0 50% 50%;
  object-fit: cover;
}

.icon {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
 
  background: white;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  width: 60px;
}











.card-content {
  padding: 20px;
}

.card-content h3 {
  color: #2f4f9a;
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 0%;
  font-weight: bold;
}

.card-content p {
  font-size: 14px;
  color: #555;
  height: 130px;
  text-align: justify;
}

.card-content a {
  display: block;
  margin-top: 10px;
  color: #2f4f9a;
  font-weight: bold;
  text-decoration: none;
}

@media screen and (max-width: 2800px) {
  .Products {
    max-width: 100%;
    width: 96%;
    margin-left: 16px;
  }
  .card {
    width: 265px;
  }
}

/* Medium-Large screens (1500px max-width) */
@media screen and (max-width: 1400px) {
  .Products {
    max-width: 100%;
    width: 96%;
    margin-left: 16px;
  }
  .card {
    width: 18%;
  }
}

@media screen and (max-width: 1200px) {
  .Products {
    max-width: 100%;
    width: 100%;
    margin-left: 0px;

  }
  .card {
    width: 18%;
  }
  .card-content {
    padding: 10px;
}
  .card-content a {
  
    margin-top: 32px;
  }

  .card-content h3 {
    color: #2f4f9a;
    font-size: 17px;
  }
}
@media screen and (max-width: 1024px) {
  .Products {
    max-width: 100%;
    width: 100%;
    margin-left: 0px;

  }
  .card {
    width: 18%;
  }
  .card-content {
    padding: 10px;
}
  .card-content a {
  
    margin-top: 32px;
  }

  .card-content h3 {
    color: #2f4f9a;
    font-size: 17px;
  }
}

@media screen and (max-width: 992px) {
  .Products {
    max-width: 100%;
    width: 100%;
    margin-left: 0px;

  }
  .card {
    width: 18%;
  }
  .card-content {
    padding: 10px;
}
  .card-content a {
  
    margin-top: 32px;
  }

  .card-content h3 {
    color: #2f4f9a;
    font-size: 17px;
  }
}

/* Tablets (780px max-width) */
@media  screen and (max-width: 950px) {
  .Products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 768px;
    width: 100%;
    margin: 0 auto; /* Center align */
  }

  .card {
    flex-basis: 30%; /* 3 cards in the first row */
    height: auto; /* Adjust height as needed */
    text-align: center;
  }

  .card:nth-child(n+4) {
    flex-basis: 30%; /* 2 cards in the second row */
  }

  .card-content {
    padding: 5px;
  }
  .card-content a {
  
    margin-top: -20px;
  }
  }

  @media only screen and (max-width: 576px) {
    .Products {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      max-width: 768px;
      width: 100%;
      margin: 0 auto; /* Center align */
    }
  
    .card {
      flex-basis: 30%; /* 3 cards in the first row */
      height: auto; /* Adjust height as needed */
      text-align: center;
    }
  
    .card:nth-child(n+4) {
      flex-basis: 30%; /* 2 cards in the second row */
    }
  
    .card-content {
      padding: 5px;
    }
    .card-content a {
    
      margin-top: 30px;
    }
    }

/* Mobile (480px max-width) */
@media screen and (max-width: 552px) {
  .Products {
    padding: 15px 0;
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 48%;
  }
  .card-content p {
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  .Products {
    padding: 15px 0;
    flex-direction: column;
    align-items: center;
  
  }
  .card {
    width: 66%;
  }
  .card-content p {
    height: auto;
  }
  .card-content a {
    margin-top: 14px;
}
}


/* main page */

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  color: rgb(58, 67, 196);
  flex-wrap: wrap; /* Allows wrapping for smaller screens */
}

/* Hero Text Section */
.hero-text {
  max-width: 550px;
  flex: 1;
 
}

.hero-text h1 {
  font-size: 38px;
  font-weight: 600;
  padding-bottom: 24px;
  color: #23257d;
  margin-left: -55px;
}

.hero-text h3 {
  font-size: 22px;
  font-weight: bold;
  color: #17125a;
}

.btn-container {
  width: 100%;
  text-align: start;
  margin-top: 20px;
}
.btn-container .btn a {
  color: rgb(30, 25, 92);
  text-decoration: none;
  padding: 12px 24px;
}
.btn-container .btn a:hover {
  color: white;
}

.btn {
  background: #f2f3f4;
  color: rgb(30, 25, 92);
  /* padding: 12px 24px; */
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 15px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-top:20px;
}

.btn:hover {
  background: #0f3f72;
  color: white;
}

.card-header {
  padding: 0rem;
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 0px;
}
/* Hero Image Section */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  height: auto;
  margin-top: -12px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .hero-section {
    flex-direction: row;
   
    padding: 0rem;
    margin-top: 8px;
  }

  .hero-text {
    max-width: 40%;
  }

  .hero-text h1 {
    font-size: 29px;
    margin-left: 10px;
  }

  .hero-text h3 {
    font-size: 20px;
    margin-left: 43px;

  }
  .hero-image img{
   
    /* margin-top: 20px; */
    width: 100%;
    max-width: 586px;
  }

  .btn-container {
    text-align: center;
  }
}



@media screen and (max-width: 992px) {
  .hero-section {
    flex-direction: row;
   
    padding: 0rem;
    margin-top: 8px;
  }

  .hero-text {
    max-width: 40%;
  }

  .hero-text h1 {
 
      font-size: 21px;
      margin-left: 10px;
      margin-top: 51px;
  
  }

  .hero-text h3 {
    font-size: 17px;

  }
  .hero-image img{
   
    margin-top: 30px;
    width: 100%;
    max-width: 586px;
  }


}

@media screen and (max-width: 768px) {
  .hero-text h1 {
    font-size: 21px;
    margin-top: 80px;
    margin-bottom: -15px;
  }

  .hero-text h3 {
    font-size: 14px;
    margin-left: 12px;
  }
  .hero-image img{
   
    /* margin-top: 20px; */
    width: 100%;
    max-width: 586px;
    margin-top: 34px;
  }
 
  .btn {
    font-size: 14px;
    padding: 10px 20px;
    margin-left: -70px;
  }
}

@media screen and (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
    margin-top: 60px;
    margin-left: -4px;
  }

  .hero-section {
    flex-direction: column;
  
}
.hero-text {
  max-width: 100%;
}
}
  

 

@media screen and (max-width: 586px) {
  .hero-text h1 {
    font-size: 28px;
    margin-top: 60px;
    margin-left: -4px;
  }

  .hero-section {
    flex-direction: column;
  
}
.hero-text {
  max-width: 100%;
}
}

.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: 130px; */
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
h2 {
  text-align: center;
  font-weight: bold;
  margin-top: 1.3rem;
  color: #23257d;
  font-size: 41px;

  margin-bottom: 60px;
}

h3 {
  font-size: 36px;

  font-weight: 600;
}

.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 */
  }
}










.contact-section {
  padding: 40px;
  text-align: center;
  background-color: #fff;
}

.contact-title {
  font-size: 28px;
  font-weight: bold;
  color: #2e2e5d;
  margin-bottom: 20px;
}

.contact-container {
  display: flex;
  justify-content: space-evenly;
  /* align-items: flex-start; */
  flex-wrap: wrap;
  /* max-width: 1228px; */
  /* margin: 0 auto; */
  gap: 150px;
  margin: 10px 50px;
}

.contact-info {
  flex: 1;
  text-align: left;
  max-width: 50%;
}

.contact-info h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.contact-map {
  flex: 1;
  max-width: 40%;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }
  .contact-info,
  .contact-map {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }
  .contact-info,
  .contact-map {
    width: 100%;
   


  }
  .contact-info p {
    font-size: 12px;
    margin-left: -48px;

  }
  .contact-map{
    margin-top: -113px;
  }
  .hero-text h1 {
    font-size: 24px;
  }
  .contact-info h3 {
    margin-left: -30px;
  }
}
.footer {
  background-color: #2f4f9a; /* Blue Background */
  color: white; /* White Text */
  text-align: center;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
}

.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp-icon {
  margin-top: 16px;
}

/* for mobile */
@media screen and (max-width: 767px) {
  .whatsapp-icon {
    margin-top: 10px;
  }

  .whatsapp_float {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 10px;
    font-size: 22px;
  }
}



