.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  /* background-color: #0b2545; */
  background-color: var(--primary-color);
  scroll-behavior: smooth;
}
:root{
  --primary-color: #fff;
  --secondary-color: #212121;
}
.dark-them{
  --primary-color: #212121;
  --secondary-color: #fff;
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
  color: #353535;
}

.loader {
  background-color: #353535;
  width: 100%;
  height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: 0.5s all ease;
  z-index: 10;
}

.heading h1 {
  opacity: 0.3;
  font-size: 10vw;
  color: #fff;
}

.hidden {
  position: absolute;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  left: 2%;
  bottom: 10%;
}

.loader .hidden h1 {
  font-size: 8vw;
  transform: translateY(50px);
}

#highlightText {
  color: #4787e8;
  font-weight: 700;
}

.heading {
  font-size: 9vw;
  margin: 2rem 0rem;
}
@media only screen and (min-width: 768px) {
  .heading {
    font-size: 7vw;
  }
}
@media only screen and (min-width: 1024px) {
  .heading {
    font-size: 4vw;
  }
}

main {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}
/* main .swiper {
  width: 600px;
  height: 300px;
} */
main .button {
  background-color: #4787e8;
  cursor: pointer;
  color: white;
  margin-top: 2rem;
  position: relative;
  border-radius: 5px;
  width: -moz-max-content;
  width: max-content;
}
main .button :hover img {
  transform: rotate(360deg);
  transition: 0.3s all ease-in-out;
}
main .button .btnContent {
  width: 100%;
  padding: 0.5rem;
  gap: 5px;
}
main .button .btnContent a {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  line-height: 30px;
}
main .button .btnContent img {
  width: 20px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  main .button .btnContent {
    padding: 1rem 2rem;
    gap: 10px;
  }
  main .button .btnContent a {
    font-size: 20px;
  }
  main .button .btnContent img {
    width: 30px;
  }
}
main .navbar {
  position: relative;
  display: flex;
  padding: 10px;
  background-color: var(--primary-color);
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  padding: 1rem 1rem;
  top: 0;
  left: 0;
  height: 90px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  @media only screen and (max-width: 768px) {
  main .navbar {
    padding: 0.5rem 1rem; 
    height: 60px; 
  }
}

/* 
////////////////////// */
/* main .navbar {
  transition: height 0.3s ease; 
}

main .navbar.scroll-down {
  height: 60px; 
  line-height: 50px; 
}

main .navbar.scroll-up {
  height: 80px;
  line-height: 80px; 
}

main .nav-button {
  transition: all 0.3s ease; 
  text-align: center;
}

main .nav-button.scroll-down {
  height: 30px; 
  line-height: 10px; 
}

main .nav-button.scroll-up {
  height: 50px; 
  line-height: 25px;
} */


.nav-items > ul > li.active > a {
  /* Define styles for active navigation item */
  color: #4787e8; /* Example: Change text color */
  font-weight: bold; /* Example: Make font bold */
}
main .nav-items > ul > li {
  position: relative;
  display: inline;
  list-style: none;
  margin: 10px;
  padding: 10px 20px;
  cursor: pointer;
}
main .nav-items > ul > li > a {
  color: #353535;
  font-weight: 500;
  font-size: 19px;
  text-decoration: none;
  color: var(--secondary-color);
}
main .nav-items > ul > li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.17rem;
  background-color: #4787e8;
  left: 0;
  bottom: 0;
  transform-origin: 0% 100%;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
main .nav-items > ul > li:hover::after {
  transform: scaleX(1);
}
main .nav-logo a,
main .nav-button a {
  color: white;
  list-style: none;
  text-decoration: none;
  display: flex;
}
main .nav-logo a img {
  width: 100%;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  main .nav-logo a img {
    height: 60px;
  }
}
main .nav-button {
  background-color: #4787e8;
  border-radius: 10px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
main .anim-layer {
  position: absolute;
  top: 0;
  left: 0%;
  width: 0;
  height: 100%;
  background-color: white;
  border-radius: 10px;
  border: 2px solid #4787e8;
  transition: width 0.3s ease, left 0.3s ease;
}
main .nav-button:hover .anim-layer {
  width: 100%;
  left: 0;
}
main .nav-button:hover a {
  color: #141214;
}
main .nav-button a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  position: relative;
  z-index: 1;
  font-weight: 500;
}





/* Dropdown Button */
.dropbtn {
  color: #353535;
  font-weight: 500;
  font-size: 19px;
  text-decoration: none;
  position: relative; /* Added */
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  left: 0; /* Added */
  top: calc(100% - 0px); /* Added */
  width: 160%;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


/* Small arrow for About menu */
.nav-items ul li:nth-child(2) .dropbtn:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--secondary-color);
  top: 50%;
  left: 60px; /* Adjusted */
  /* transform: translateY(-50%) rotate(-90deg); Adjusted */
}
.nav-items ul li:nth-child(3) .dropbtn:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--secondary-color);
  top: 50%;
  left: 85px; /* Adjusted */
  /* transform: translateY(-50%) rotate(-90deg); Adjusted */
}

/* Style the arrow */
.arrow {
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease; 
  transform: rotate(120deg);
}
/* Style the submenu */
.sub-dropdown {
  position: relative;
  display: inline-block;
}

/* Style the arrow */
.sub-dropdown .arrow {
  margin-left: 5px;
}

/* Position the submenu to the right */
.sub-dropdown-content {
  display: none;
  position: absolute;
  top: 0;
  left: 100%; /* Position the submenu to the right */
  background-color: #f9f9f9;
  min-width: 200px;
  z-index: 1;
}

/* Show the submenu when hovering over the parent item */
.sub-dropdown:hover .sub-dropdown-content {
  display: block;
}


@media only screen and (max-width: 768px) {

  /* Adjust dropdown content width */
  .dropdown-content {
    width: 100%;
    left: 0;
    top: calc(100% - 0px);
  }

  /* Adjust arrow position */
  .nav-items ul li:nth-child(2) .dropbtn:after {
    left: 90%; /* Adjust as needed */
  }

  .nav-items ul li:nth-child(3) .dropbtn:after {
    left: 90%; /* Adjust as needed */
  }

  /* Adjust submenu position */
  .sub-dropdown-content {
    top: 0;
    left: 0; /* Change to display below the parent item */
    width: 100%; /* Adjust width as needed */
  }
}

main #hamburger-menu,
main #mobile-menu {
  display: none;
}
@media only screen and (max-width: 1000px) {
  main #mobile-menu {
    background-color: #0b2545;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    z-index: 10;
  }
  main .mobile-nav-items > ul {
    padding: 0px;
  }
  main .mobile-nav-items > ul > li {
    text-align: center;
    position: relative;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
  }
  main .mobile-nav-items > ul > li > a {
    color: white;
    text-decoration: none;
  }
  main .mobile-nav-items > ul > li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: white;
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  main .mobile-nav-items > ul > li:hover::after {
    transform: scaleX(1);
  }
  main .mobile-nav-button {
    background-color: #4787e8;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
  }
  main .mobile-nav-button .anim-layer {
    position: absolute;
    top: 0;
    left: 0%;
    width: 0;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    transition: width 0.3s ease, left 0.3s ease;
  }
  main .mobile-nav-button:hover .anim-layer {
    width: 100%;
    left: 0;
  }
  main .mobile-nav-button:hover a {
    color: #141214;
  }
  main .mobile-nav-button a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
  }
  main .nav-items > ul,
  main .nav-button {
    display: none;
  }

 


  
  main #hamburger-cross {
    display: block;
    color: white;
    cursor: pointer;
    font-size: 40px;
    position: absolute;
    top: 20px;
    right: 26px;
  }
  main #hamburger-menu {
    display: block;
    color: #4787e8;
    cursor: pointer;
    font-size: 30px;
    font-weight: 700;
  }
}

#icon1{
  width: 20px;
  cursor: pointer;
  margin-top: 0px;
}


/* Main Container Styling */
main .home {
  width: 100%;
  min-height: 50vh;
  justify-content: space-between; /* Aligns left and right sections side-by-side */
  padding: 2rem 2rem;
  border-radius: 0px 0px 30px 30px;
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
  flex-direction: row; /* Set row for desktop */
  margin-top: 4.5rem;
  margin-bottom: 3rem;
}

/* Background Bubble Effect */
main .home #bubble {
  position: absolute;
  width: 30vw;
  right: 0;
  bottom: 20%;
  z-index: -1;
  transform: translate(20%, 30%);
}

/* Background Effect */
.background-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1); /* Semi-transparent black */
  z-index: -1;
  animation: pulsate 2s infinite alternate; /* Pulsating effect */
}

@keyframes pulsate {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 0.8;
  }
}

/* Responsive Bubble for Larger Screens */
@media only screen and (min-width: 768px) {
  main .home {
    min-height: 80vh;
  }
}
@media only screen and (min-width: 1024px) {
  main .home {
    min-height: 90vh;
    flex-direction: row;
  }
  main .home #bubble {
    width: 30vw;
    transform: translate(30%, 60%);
  }
}
@media only screen and (min-width: 1280px) {
  main .home {
    min-height: 90vh;
    flex-direction: row;
  }
  main .home #bubble {
    width: 20vw;
    transform: translate(30%, 60%);
  }
}

/* Left Section Styling */
main .home .homeLeft {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 45%; /* Reduced width to fit side-by-side */
  margin: 2rem 0;
}

/* Right Section Styling (Mirrored Text) */
main .home .homeRight {
  width: 45%; /* Reduced width to fit side-by-side */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

/* Heading and Text Styling */
main .home .homeLeft h3,
main .home .homeRight h3 {
  font-size: 6vw;
  font-weight: 400;
  color: var(--secondary-color);
}

main .home .homeLeft h1,
main .home .homeRight h1 {
  font-size: 9vw;
  color: var(--secondary-color);
}

main .home .homeLeft h1 #highlight,
main .home .homeRight h1 #highlight {
  color: #4787e8;
  font-size: 10vw;
}

main .home .homeLeft h4,
main .home .homeRight h4 {
  font-size: 4vw;
  font-weight: 400;
  color: var(--secondary-color);
}

main .home .homeLeft p,
main .home .homeRight p {
  text-align: justify;
  line-height: 1.8rem;
  color: var(--secondary-color);
}

/* Button Styling */
main .home .homeLeft .button,
main .home .homeRight .button {
  margin-top: 1rem;
}

.main .home .button .btnContent {
  display: flex;
  align-items: center;
}

.main .home .button .btnContent a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: bold;
  padding-right: 0.5rem;
}

/* Responsive Text Sizes */
@media only screen and (min-width: 768px) {
  main .home .homeLeft h3,
  main .home .homeRight h3 {
    font-size: 4vw;
  }
  main .home .homeLeft h1,
  main .home .homeRight h1 {
    font-size: 6vw;
  }
  main .home .homeLeft h1 #highlight,
  main .home .homeRight h1 #highlight {
    font-size: 6vw;
  }
  main .home .homeLeft h4,
  main .home .homeRight h4 {
    font-size: 3vw;
  }
}

@media only screen and (min-width: 1024px) {
  main .home .homeLeft h3,
  main .home .homeRight h3 {
    font-size: 3vw;
  }
  main .home .homeLeft h1,
  main .home .homeRight h1 {
    font-size: 5vw;
  }
  main .home .homeLeft h1 #highlight,
  main .home .homeRight h1 #highlight {
    font-size: 6vw;
  }
  main .home .homeLeft h4,
  main .home .homeRight h4 {
    font-size: 2vw;
  }
}

@media only screen and (min-width: 1280px) {
  main .home .homeLeft h3,
  main .home .homeRight h3 {
    font-size: 2vw;
  }
  main .home .homeLeft h1,
  main .home .homeRight h1 {
    font-size: 4vw;
  }
  main .home .homeLeft h1 #highlight,
  main .home .homeRight h1 #highlight {
    font-size: 5vw;
  }
  main .home .homeLeft h4,
  main .home .homeRight h4 {
    font-size: 2vw;
  }
}

/* Responsive Layout for Smaller Screens */
@media only screen and (max-width: 1024px) {
  main .home {
    flex-direction: column; /* Stack on smaller screens */
  }
  main .home .homeLeft,
  main .home .homeRight {
    width: 100%; /* Full width on smaller screens */
    margin: 1rem 0;
  }
}

main .about {
  background: linear-gradient(90deg,hsl(231, 68%, 21%) 0,hsl(275, 54%, 33%) 51%,hsl(231, 68%, 21%));;
  width: 100%;
  min-height: 70vh;
  color: var(--primary-color);
  position: relative;
  padding: 7rem 0rem;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -3rem;
}
main .aboutContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  padding: 0rem 1rem;
  margin-bottom: 5rem;
}

@media only screen and (min-width: 1024px) {
  main .aboutContainer {
    flex-direction: row;
  }
}
main .aboutContainer .leftAbout {
  width: 100%;
  margin: 2rem 0rem;
}
@media only screen and (min-width: 1024px) {
  main .aboutContainer .leftAbout {
    width: 40%;
  }
}
main .aboutContainer .leftAbout h1 {
  font-size: 2rem;
}
main .aboutContainer .leftAbout p {
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  main .aboutContainer .leftAbout h1 {
    font-size: 2.5rem;
  }
  
  main .aboutContainer .leftAbout p {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 600px) {
  main .aboutContainer .leftAbout p{
    text-align: justify;
  }
  main .aboutContainer .leftAbout h1{
    color: #baea42;
    text-align: center;
  }
  
}
@media only screen and (min-width: 1024px) {
  main .aboutContainer .leftAbout {
    margin-left: 5rem;
  }
}
main .aboutContainer .rightAbout {
  width: 100%;
  margin-top: 4rem;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  main .aboutContainer .rightAbout {
    width: 40%;
  }
}
main .aboutContainer .rightAbout img {
  width: 40vw;
  border-radius: 80px;
  height: 60vw;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 7;
}
@media only screen and (min-width: 768px) {
  main .aboutContainer .rightAbout img {
    height: 40vw;
    width: 30vw;
  }
}
@media only screen and (min-width: 1024px) {
  main .aboutContainer .rightAbout img {
    height: 25vw;
    width: 15vw;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(60deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(60deg);
  }
}
main .aboutContainer .rightAbout span {
  width: 40vw;
  height: 60vw;
  position: absolute;
  border-radius: 80px;
  border: 1px solid var(--primary-color);
  animation: rotate 7s infinite ease-in;
}
@media only screen and (min-width: 768px) {
  main .aboutContainer .rightAbout span {
    height: 40vw;
    width: 30vw;
  }
}
@media only screen and (min-width: 1024px) {
  main .aboutContainer .rightAbout span {
    height: 25vw;
    width: 15vw;
  }
}
main .about .mission {
  background-color: #4787e8;
  width: 100%;
  height: auto;
  padding: 1rem;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  main .about .mission {
    flex-direction: row;
  }
}
main .about .mission .leftMission {
  width: 100%;
  justify-content: center;
  margin: 2rem 0rem;
}
@media only screen and (min-width: 1024px) {
  main .about .mission .leftMission {
    width: 20%;
    justify-content: flex-start;
  }
}
main .about .mission .rightMission {
  width: 100%;
  padding: 1rem;
  text-align: justify;
}
main .about .mission .rightMission p {
  font-size: 18px;
}
@media only screen and (min-width: 1024px) {
  main .about .mission .rightMission {
    width: 60%;
    justify-content: flex-start;
  }
}
main .about :nth-child(4) {
  background-color: #666;
}


main .services {
  width: 100%;
  min-height: 70vh;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  flex-direction: column;
  padding: 2rem;
}
main .services .servicesContainer {
  width: 100%;
  flex-wrap: wrap;
}
main .services .servicesContainer .cards {
  padding: 2rem;
  margin: 1.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-shrink: none;
  text-align: center;
  width: 180px;
  height: 250px;
  border: 1px solid #0b2545;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
main .services .servicesContainer .cards:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
main .services .servicesContainer .cards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(11, 37, 69, 0.8), rgba(255, 255, 255, 0));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

main .services .servicesContainer .cards:hover::before {
  opacity: 1;
}

/* Add more depth to the card */
main .services .servicesContainer .cards img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media only screen and (min-width: 1024px) {
  main .services .servicesContainer .cards img {
    width: 150px;
    height: 150px;
  }
}
@media only screen and (min-width: 1280px) {
  main .services .servicesContainer .cards img {
    width: 100px;
    height: 100px;
  }
}
main .services .servicesContainer .cards h1 {
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  main .services .servicesContainer .cards h1 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  main .services .servicesContainer .cards h1 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1024px) {
  main .services .servicesContainer .cards h1 {
    font-size: 24px;
  }
}

/* about page our team */
#team .team-heading {
  text-align: center;
  margin-top: 40px;
  margin-bottom: -20px;
  color: white;
}

#team .slide-container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}

#team .slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

#team .card {
  border-radius: 25px;
  background-color: #fff;
}

#team .image-content,
#team .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}

#team .image-content {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}

#team .overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #4070F4;
  border-radius: 25px 25px 0 25px;
}

#team .overlay::before,
#team .overlay::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #4070F4;
  border-radius: 0 0 0 70px;
}

#team .overlay::after {
  border-radius: 0 25px 0 25px;
  background-color: white;
}

#team .card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background-color: #efefef;
  padding: 3px;
}

#team .card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #084b9e;
}

#team .name {
  font-size: 18px;
  font-weight: 500;
  color: black;
  margin-bottom: 5px;
  font: bold;
}

#team .designation {
  font-size: 14px;
  color: #888;
  font-weight: bold;
  margin-bottom: 10px;
}
#team .designation::after {
  content: " ";
  color: #130e0e;
  font-weight: normal;
  margin-bottom: 8px;
}

#team .description1 {
  font-size: 14px;
  color: #32320c;
  text-align: center;
}

#team .button {
  border: none;
  font-size: 16px;
  color: #fff;
  padding: 8px 16px;
  background-color: #4070F4;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#team .button:hover {
  background-color: #154dea;
}

#team .swiper-navBtn {
  color: #4070F4;
  transition: color 0.3s ease;
}

#team .swiper-navBtn:hover {
  color: #0d48e8;
}

#team .swiper-navBtn::before,
#team .swiper-navBtn::after {
  font-size: 40px;
}

#team .swiper-button-next {
  right: 0;
}

#team .swiper-button-prev {
  left: 0;
}

#team .swiper-pagination-bullet {
  background-color: #6E93f7;
  opacity: 1;
}

#team .swiper-pagination-bullet-active {
  background-color: #4070F4;
}

#team .social-media-icons {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

#team .social-media-icons a {
  margin: 0 10px;
}

#team .social-media-icons i {
  width: 20px;
  height: auto;
}

#team .social-media-icons a:hover {
  transform: scale(1.5);
}

#team .social-media-icons a:hover i {
  color: #4070F4;
}

@media (hover: none) {
  #team .social-media-icons a:active {
      transform: scale(1.5);
  }
}

/* Media query for mobile devices */
@media screen and (max-width: 786px) {
  #team .social-media-icons {
      justify-content: space-around;
      margin-top: 10px;
  }

  #team .social-media-icons a {
      margin: 15;
  }

  #team .slide-content {
      margin: 0 10px;
  }

  #team .swiper-navBtn {
      display: none;
  }
}




main .servicesPage {
  flex-direction: column;
  width: 100;
  min-height: 80vh;
  background-color: #fff;
  padding: 7rem 2rem;
}
main .servicesPage .servicesDetails {
  flex-direction: column;
}
main .servicesPage .servicesDetails .servicesCards {
  flex-direction: column;
  background-color: #ece9e6;
  width: 100%;
  padding: 2rem 1rem;
  margin: 1rem 0rem;
  border-radius: 10px;
}
main .servicesPage .servicesDetails .servicesCards .leftServicesCard {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  main .servicesPage .servicesDetails .servicesCards {
    flex-direction: row;
    width: 70%;
  }
  main .servicesPage .servicesDetails .servicesCards .leftServicesCard {
    width: 20%;
    margin-right: 2rem;
  }
  main .servicesPage .servicesDetails .servicesCards .rightServicesCard {
    margin-left: 2rem;
    width: 60%;
  }
}
main .servicesPage .servicesDetails .servicesCards .leftServicesCard img {
  width: 40%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1024px) {
  main .servicesPage .servicesDetails .servicesCards .leftServicesCard img {
    width: 200px;
  }
}
main .servicesPage .servicesDetails .servicesCards .rightServicesCard {
  margin-top: 2rem;
}
@media only screen and (min-width: 1024px) {
  main .servicesPage .servicesDetails .servicesCards .rightServicesCard {
    margin-top: 0rem;
  }
}
main .servicesPage .servicesDetails .servicesCards .rightServicesCard h3 {
  font-size: 25px;
  margin: 1rem 0rem;
}
main .servicesPage .servicesDetails .servicesCards .rightServicesCard h5 {
  font-size: 22px;
  margin: 1rem 0rem;
}
main .servicesPage .servicesDetails .servicesCards .rightServicesCard ul {
  padding-left: 2rem;
}
main .parallax {
  width: 100%;
  height: 30vh;
  background: url(./images/parallax.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media only screen and (min-width: 1024px) {
  main .parallax {
    height: 50vh;
  }
}
main .projects {
  width: 100%;
  min-height: 100vh;
  flex-direction: column;
  background-color: var(--primary-color);
  border-radius: 0px 0px 50px 50px;
  padding: 7rem 1rem;
}
main .projects .heading{
  color: var(--secondary-color);
}
@media only screen and (min-width: 1024px) {
  main .projects .project-container:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: 3rem;
  }
}
main .projects .project-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(236, 235, 245);
  border-radius: 10px;
  margin: 1rem 0rem;
}
@media only screen and (min-width: 1024px) {
  main .projects .project-container {
    flex-direction: row;
    margin: 2rem 0rem;
  }
}
main .projects .project-image {
  padding: 2rem;
  justify-content: center;
  width: 40%;
}
main .projects .project-image img {
  width: 300px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media only screen and (min-width: 1024px) {
  main .projects .project-image img {
    width: 350px;
  }
}
@media only screen and (min-width: 1280px) {
  main .projects .project-image img {
    width: 400px;
  }
}
main .projects .project-info {
  padding: 20px;
  width: 100%;
}
main .projects .project-info h1 {
  font-size: 24px;
  margin-bottom: 10px;
  /* color: var(--secondary-color); */
}
main .projects .project-info p {
  font-size: 16px;
  margin-bottom: 15px;
  /* color: var(--secondary-color); */
}

/* service-page-reviews-swiper */
.container1 .section {
  padding: 0rem 0;
  
}
.container1 {
  max-width: 100rem;
  margin: 0 auto;
  margin-top: -8rem;
}

.container1 p {
  color: var(--para);
  line-height: 1.6;
  font-size: 1.8rem;
  font-size: 12px;
  font-family: "Work Sans", sans-serif;

  /* word-spacing: 0.1rem; */
}

.container1 .grid {
  display: grid;
  gap: 9rem;
}

.container1 .grid-two-col {
  grid-template-columns: repeat(2, 1fr);
}

.container1 .grid-three-col {
  grid-template-columns: repeat(3, 1fr);
}

.container1 .grid-four-col {
  grid-template-columns: repeat(4, 1fr);
}

.container1 .swiper {
  width: 100%;
  height: 100%;
  margin-top: 0rem;
}

.container1 .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #fff; */

  /* Center slide text vertically */
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 5rem;
}

.container1 .swiper-client-msg {
  padding: 5rem 8rem;
  background-color: var(--third);
  border-radius: 10px;
  text-align: left;
  box-shadow: var(--shadpw);
  position: relative;
}

.container1 .swiper-client-msg::before {
  content: "";
  position: absolute;
  bottom: -10rem;
  left: 50%;
  transform: translateX(-50%);
  /* width: 5rem;
  height: 5rem; */
  border: 5rem solid var(--third);
  border-color: transparent;

  border-top-color: rgb(250, 252, 253)
}

.container1 .swiper-client-msg p::before {
  content: "\f10d";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 2rem;
  font-size: 5rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ced3ff;
}

.container1 .swiper-client-msg p::after {
  /* display: inline-block */
  content: "\f10e";
  position: absolute;
  bottom: 0%;
  right: 5%;

  font-size: 5rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ced3ff;
}


.container1 .swiper-client-data {
  align-items: center;
  justify-items: start;
  justify-content: start;
  gap: 1.4rem;
  margin-top: 3.2rem;
}

.container1 .swiper-client-data img {
  max-width: 7rem;
  height: 7rem;
  border-radius: 40%;
  border: 0.5rem solid #757fd3;
}

.container1 .swiper-client-data p:first-child {
  font-weight: bold;
  color: var(--heading);
}


/* for widht below 1200px  */
@media (max-width: 75em) {
  .container1 {
    max-width: 110rem;
  }
  
}

/* media queries less then 980px */
@media (max-width: 980px) {
  /* to make all the container1 with same padding  */
  .container1 {
    padding: 0 3.2rem;
  }

  html {
    font-size: 56.25%;
  }
}

/* Below 780px  */
@media (max-width: 780px) {
  .container1 {
    max-width: 720px;
  }
}



/* main .blog {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 7rem 1rem;
}
main .blog .heading {
  color: #fff;
}
main .blog .blogContainer {
  margin: 2rem 0rem;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}
main .blog .blogContainer img {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1024px) {
  main .blog .blogContainer {
    width: 70%;
  }
}
main .blog .blogContainer .slider {
  position: relative;
  width: 100%;
}
main .blog .blogContainer .slider .slides {
  display: flex;
  transition: transform 0.5s ease;
}
main .blog .blogContainer .slider .slides .card {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, 20rem + 2vw, 22rem);
  overflow: hidden;
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  margin: 1rem;
  background: #ece9e6;
  min-width: 350px;
  background: linear-gradient(to right, #ffffff, #ece9e6);
}
main .blog .blogContainer .slider .slides .card .cardBody {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main .blog .blogContainer .slider .slides .card .cardBody .tag {
  align-self: flex-start;
  padding: 0.25em 0.75em;
  border-radius: 1em;
  font-size: 0.75rem;
}
main .blog .blogContainer .slider .slides .card .cardBody .tag + .tag {
  margin-left: 0.5em;
}
main .blog .blogContainer .slider .slides .card .cardBody .tag-blue {
  background: #56ccf2;
  background: linear-gradient(to bottom, #2f80ed, #1081a6);
  color: #fafafa;
}
main .blog .blogContainer .slider .slides .card .cardBody .cardBody h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
}
main .blog .blogContainer .slider .slides .card .cardFooter {
  display: flex;
  padding: 1rem;
  margin-top: auto;
}
main .blog .blogContainer .slider .slides .card .cardFooter .user {
  display: flex;
  gap: 0.5rem;
}
main .blog .blogContainer .slider .slides .card .cardFooter .userImage {
  border-radius: 50%;
}
main .blog .blogContainer .slider .slides .card .cardFooter .userInfo > small {
  color: #666;
}
main .blog .blogContainer .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
main .blog .blogContainer .button button {
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #333;
  transition: color 0.3s ease;
}
main .blog .blogContainer .button button i {
  font-size: 20px;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: #4787e8;
  color: #fff;
  z-index: 10;
}
@media only screen and (min-width: 1024px) {
  main .blog .blogContainer .button button i {
    font-size: 40px;
    padding: 0.5rem;
  }
}
main .blog .blogContainer .button button:hover {
  color: #000;
}
main .blog .blogContainer .button button.prev {
  left: 0;
}
main .blog .blogContainer .button button.next {
  right: 0;
} */
main .blogPageContainer {
  display: grid;
  place-items: center;
  min-height: 80vh;
  padding: 7rem 2rem 2rem 2rem;
}
main .blogPageContainer .heading {
  color: var(--primary-color);
}
main .blogPageContainer .blogContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin-block: 2rem;
  gap: 2rem;
}
main .blogPageContainer .blogContainer img {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
main .blogPageContainer .blogContainer .card {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, 20rem + 2vw, 22rem);
  overflow: hidden;
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  background: #ece9e6;
  background: linear-gradient(to right, #ffffff, #ece9e6);
}
main .blogPageContainer .blogContainer .card .cardBody {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main .blogPageContainer .blogContainer .card .cardBody .tag {
  align-self: flex-start;
  padding: 0.25em 0.75em;
  border-radius: 1em;
  font-size: 0.75rem;
}
main .blogPageContainer .blogContainer .card .cardBody .tag + .tag {
  margin-left: 0.5em;
}
main .blogPageContainer .blogContainer .card .cardBody .tag-blue {
  background: #56ccf2;
  background: linear-gradient(to bottom, #2f80ed, #1081a6);
  color: #fafafa;
}
main .blogPageContainer .blogContainer .card .cardBody .cardBody h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
}
main .blogPageContainer .blogContainer .card .cardFooter {
  display: flex;
  padding: 1rem;
  margin-top: auto;
}
main .blogPageContainer .blogContainer .card .cardFooter .user {
  display: flex;
  gap: 0.5rem;
}
main .blogPageContainer .blogContainer .card .cardFooter .userImage {
  border-radius: 50%;
}
main .blogPageContainer .blogContainer .card .cardFooter .userInfo > small {
  color: #666;
} 


.blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.blog .heading {
  color: var(--secondary-color);
}

.blog .blogContainer {
  width: 100%;
            max-width: 1200px;
            margin-top: 2rem;
            overflow: hidden;
            position: relative;
}

.blog .blogContainer img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.blog .blogContainer .slider {
  position: relative;
  width: 90%;
  align-items: center;
}

.blog .blogContainer .slider .slides {
  display: flex;
  transition: transform 0.5s ease;
}

.blog .blogContainer .slider .slides .card {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, calc(20rem + 2vw), 22rem);
  overflow: hidden;
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  margin: 1rem;
  background: #ece9e6;
  min-width: 350px;
  background: linear-gradient(to right, #ffffff, #ece9e6);
  align-items: center;
}

.blog .blogContainer .slider .slides .card .cardBody {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog .blogContainer .slider .slides .card .cardBody .tag {
  align-self: flex-start;
  padding: 0.25em 0.75em;
  border-radius: 1rem;
  font-size: 0.75rem;
}

.blog .blogContainer .slider .slides .card .cardBody .tag + .tag {
  margin-left: 0.5em;
}

.blog .blogContainer .slider .slides .card .cardBody .tag-blue {
  background: #56ccf2;
  background: linear-gradient(to bottom, #2f80ed, #1081a6);
  color: #fafafa;
}

.blog .blogContainer .slider .slides .card .cardBody h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
}

.blog .blogContainer .slider .slides .card .cardFooter {
  display: flex;
  padding: 1rem;
  margin-top: 2px;
}

.blog .blogContainer .slider .slides .card .cardFooter .user {
  display: flex;
  gap: 0.5rem;
}

.blog .blogContainer .slider .slides .card .cardFooter .user .userImage {
  border-radius: 50%;
}

.blog .blogContainer .slider .slides .card .cardFooter .userInfo > small {
  color: #666;
}

.blog .blogContainer .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.blog .blogContainer .button button {
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #333;
  transition: color 0.3s ease;
}

.blog .blogContainer .button button i {
  font-size: 20px;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: primary;
  color: white;
  z-index: 10;
}

.blog .blogContainer .button button:hover {
  color: #000;
}

.blog .blogContainer .button button.prev {
  left: 0;
}

.blog .blogContainer .button button.next {
  right: 0;
}

.blogPageContainer {
  display: grid;
  place-items: center;
  min-height: 80vh;
  padding: 7rem 2rem 2rem 2rem;
}

.blogPageContainer .heading {
  color: var(--primary-color);
}

.blogPageContainer .blogContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin-block: 2rem;
  gap: 2rem;
}

.blogPageContainer .blogContainer img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.blogPageContainer .blogContainer .card {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, calc(20rem + 2vw), 22rem);
  overflow: hidden;
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  background: #ece9e6;
  background: linear-gradient(to right, #ffffff, #ece9e6);
}

.blogPageContainer .blogContainer .card .cardBody {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blogPageContainer .blogContainer .card .cardBody .tag {
  align-self: flex-start;
  padding: 0.25em 0.75em;
  border-radius: 1em;
  font-size: 0.75rem;
}

.blogPageContainer .blogContainer .card .cardBody .tag + .tag {
  margin-left: 0.5em;
}

.blogPageContainer .blogContainer .card .cardBody .tag-blue {
  background: #56ccf2;
  background: linear-gradient(to bottom, #2f80ed, #1081a6);
  color: #fafafa;
}

.blogPageContainer .blogContainer .card .cardBody h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
}

.blogPageContainer .blogContainer .card .cardFooter {
  display: flex;
  padding: 1rem;
  margin-top: auto;
}

.blogPageContainer .blogContainer .card .cardFooter .user {
  display: flex;
  gap: 0.5rem;
}

.blogPageContainer .blogContainer .card .cardFooter .user .userImage {
  border-radius: 50%;
}

.blogPageContainer .blogContainer .card .cardFooter .userInfo > small {
  color: #666;
}


.swiper-slide {
  flex-shrink: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #333;
  font-size: 24px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #000;
}



/* contact */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  background-color: #4569ea;; /* White background for the container */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.con-box {
  flex: 1;
  padding: 20px;
}

.con {
  color: #333; /* Dark blue text */
}

h2 {
  color: #333; /* Dark blue text */
  margin-bottom: 15px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
}

.icon img {
  width: 24px; 
  height: 24px; 
  margin-right: 10px;
}

.text {
  color: #fff; 
  font-size: 20px; 
  font-weight: bold; 
}

.form input[type="email"],
.form input[type="text"],
.form input[type="tel"],
.form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  resize: none; 
}

#sbmt-btn {
  width: 100%;
  background-color: #005a8d; 
  color: #fff; 
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}

#sbmt-btn:hover {
  background-color: #00395e; 

}

.error {
  color: #ff0000; 
  font-size: 14px; 
  margin-top: 5px; 
}


@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
}



   /* scrollUpIco  */

#scrollup-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#scrollup-icon.show {
  opacity: 1;
  visibility: visible;
}

.scrollup-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #4787e8;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  text-decoration: none;
}

    /* service css */

    /* for card */
    .card1 {
   
      background: linear-gradient(#ffffff 50%, #7ea3df 50%);
      background-size: 100% 200%;
      background-position: 0 2.5%;
      border-radius: 5px;
      box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
      cursor: pointer;
      transition: 0.5s;
  }
  .card1:hover {
      background-position: 0 100%;
    }
  
   
    .card1:hover h2 {
      color: #ffffff;
    }
    .card1:hover p {
      color: #f0f0f0;
    }
    @media screen and (min-width: 768px) {
      section {
        padding: 0 2em;
      }
      .column {
        flex: 0 50%;
        max-width: 50%;
      }
    }
    @media screen and (min-width: 992px) {
      section {
        padding: 1em 3em;
      }
      .column {
        flex: 0 0 33.33%;
        max-width: 33.33%;
      }
    }

@media only screen and (max-width: 768px) {
  .service {
    width: calc(50% - 20px);
  }
}

.service:hover {
  transform: translateY(-5px) scale(1.05);
}



.solutions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  gap: 20px;
  background-color: var(--primary-color);
}

.service {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}


/* .service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
} */

.service:hover h2 {
  font-size: 20px; 
  margin-bottom: 0; 
  transform: translateY(-20px); 
}
.service:hover p {
  display: none; /* Hide paragraph text */
}


.service:hover img {
  width: 80px; 
  margin-bottom: 10px; 
  transform: translateY(-20px); 
}


.service p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #666;
  transition: display 0.3s; /* Add transition */
}

.service img {
  width: 100px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  transition: width 0.3s, margin-bottom 0.3s, transform 0.3s; /* Add transition */
}
.service-list {
  display: none; /* Initially hide the list */
  margin-top: 10px; /* Add some top margin */
  font-size: 14px; /* Adjust the text size of list items */
  text-align: justify; /* Justify the list items */
}

.service-list li {
  margin-bottom: 5px; /* Add some bottom margin between list items */
}

.service:hover .service-list {
  display: block; /* Show the list when hovering over the card */
}
@media screen and (min-width: 768px) {
  /* Styles applied when the screen width is 768px or larger */
  section {
    padding: 0 2em;
  }
  .column {
    flex: 0 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 992px) {
  /* Styles applied when the screen width is 992px or larger */
  section {
    padding: 1em 3em;
  }
  .column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media only screen and (max-width: 768px) {
  /* Styles applied when the screen width is 768px or smaller */
  .service {
    width: 300px;}
    .service h2 {
  font-size: 20px; 
 

  }
}



@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateY(-50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}




.what-we-do {
  text-align: center;
  margin-top: 4rem;
  padding: 0;
}

.what-we-do h4 {
  font-size: 24px;
  margin-bottom: 0px;
  color: #333;
}

.what-we-do h3 {
  font-size: 20px;
  color: black;
  
  
}

/* social-media-icons  */
   
.social-media-icons {
  display: flex;
  justify-content: center;
  margin-top: 5px; 
}

.social-media-icons a{
  margin: 0 10px;
}

.social-media-icons i{
  width: 20px; 
  height: auto;
}

.social-media-icons a:hover {
  transform: scale(1.5); 
}

.social-media-icons a:hover i {
  color: #4070F4; 
}

@media (hover: none) {
  .social-media-icons a:active {
      transform: scale(1.5); 
  }
}

/* Media query for mobile devices */
@media screen and (max-width: 786px) {
  .social-media-icons {
      justify-content: space-around; 
      margin-top: 10px; 
  }

  .social-media-icons a {
      margin: 15; 
  }
}




@media screen and (max-width: 786px) {
  .slide-content {
      margin: 0 10px;
  }
  .swiper-navBtn {
      display: none;
  }
}


/* cloud effect */
.clouds {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.cloud {
  position: absolute;
  top: 20%;
  width: 300px;
  right: 0;
  opacity: 1;
}

.cloud.front {
  z-index: 9;
}

.cloud.distant {
  z-index: 1;
}

.cloud.background {
  z-index: 1;
}

/*Cloud Sizing*/
.cloud.smaller {
  margin-right: 400px;
  width: 100px;
  margin-top: 50px;
}

.cloud.small {
  margin-right: 200px;
  width: 150px;
}

.cloud.big {
  width: 500px;
  margin-top: 50px;
  margin-right: 150px;
}

.cloud.massive {
  width: 600px;
  margin-top: 20px;
  margin-right: 0px;
}


/*Plane Cloud: Animation*/
.plane-container {
  width: 200px;
  margin: 0px auto;
  z-index: 3;
}
 /*Paper Plane: Image*/
.plane {
  width: 100%;
  height: 60px;
}

/*Paper Plane: Animation*/
.plane-container {
  -webkit-animation: paper-plane-scoping 2s alternate infinite;
  -moz-animation: paper-plane-scoping 2s alternate infinite;
  animation: paper-plane-scoping 2s alternate infinite;

  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes paper-plane-scoping {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    transform: translateY(100px);
  }
}

.plane {
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;

  -webkit-animation: paper-plane-soaring 4s forwards infinite;
  -moz-animation: paper-plane-soaring 4s forwards infinite;
  animation: paper-plane-soaring 4s forwards infinite;
}
@-webkit-keyframes paper-plane-soaring {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  60% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

/**
 * Clouds
 */
.clouds {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.cloud {
  position: absolute;
  top: 20%;
  width: 300px;
  right: 0;
  opacity: 1;
}

.cloud.front {
  z-index: 9;
}

.cloud.distant {
  z-index: 1;
}

.cloud.background {
  z-index: 1;
}

/*Cloud Sizing*/
.cloud.smaller {
  margin-right: 400px;
  width: 100px;
  margin-top: 50px;
}

.cloud.small {
  margin-right: 200px;
  width: 150px;
}

.cloud.big {
  width: 500px;
  margin-top: 50px;
  margin-right: 150px;
}

.cloud.massive {
  width: 600px;
  margin-top: 20px;
  margin-right: 0px;
}


/*Cloud: Animation*/
.cloud {
  -webkit-animation-name: cloud-movement;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 8s;

  -moz-animation-name: cloud-movement;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: forwards;
  -moz-animation-iteration-count: infinite;
  -moz-animation-duration: 8s;

  animation-name: cloud-movement;
  animation-timing-function: linear;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-duration: 8s;
}

.slow {
  -webkit-animation-duration: 9.2s;
  -moz-animation-duration: 9.2s;
  animation-duration: 9.2s;
}

.slower {
  -webkit-animation-duration: 11.2s;
  -moz-animation-duration: 11.2s;
  animation-duration: 11.2s;
}

.slowest {
  -webkit-animation-duration: 13.5s;
  -moz-animation-duration: 13.5s;
  animation-duration: 13.5s;
}

.super-slow {
  -webkit-animation-duration: 20.5s;
  -moz-animation-duration: 20.5s;
  animation-duration: 20.5s;
}

@-webkit-keyframes cloud-movement {
  0% {
    opacity: 0.1;
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    transform: translateX(300px);
  }
  10% {

    opacity: 0.7;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-1000px);
    -moz-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}


/* contact-page-css */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

.contact-page body{
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}
.contactus-heading {
  text-align: center;
  margin-top: 20px; /* Adjust margin as needed */
  margin-bottom: 10px; /* Adjust margin as needed */
}

.contactus-heading h2 {
  font-size: 24px;
  font-weight: bold;
}

.info-box-container {
  display: flex;
  flex-wrap: wrap; /* Allows boxes to wrap to the next line on smaller screens */
  justify-content: center; /* Center the boxes */
  margin: 0 auto 30px; /* Center and adjust bottom margin */
  max-width: 1000px; /* Adjust max-width as needed */
  padding: 0 10px; /* Add some padding to the sides */
}

.info-box {
  width: calc(25% - 20px); /* Adjust width for three boxes in a row with some spacing */
  min-width: 220px; /* Set minimum width */
  max-width: 350px; /* Set maximum width */
  height: 150px; /* Adjust height as needed */
  background-color: #e5f1fc; /* Light blue background */
  padding: 20px;
  border-radius: 10px;
  margin:10px 10px 0px; /* Adjust margin for spacing */
  box-sizing: border-box;
  cursor: pointer;
}

.info-box:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add shadow effect on hover */
}

.info-box .icon {
  color: #007bff;
  font-size: 28px;
  margin-bottom: 5px;
  text-align: center;
}

.info-box .title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 2px;
  text-align: center;
}

.info-box .content {
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .info-box {
      width: calc(50% - 20px); /* Adjust width for two boxes in a row with some spacing */
  }
}


.contact-page .contact-box {
    width: 85%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease; 
  }
  
  /* .contact-page .contact-box:hover {
    transform: translateY(-5px); 
  } */
  
  .contact-page .contact-box h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: left;
  }
  
  .contact-page .contact-content {
    display: flex;
    justify-content: space-between;
  }
  
  .contact-page .contact-form {
    flex: 1;
    padding-right: 20px; 
  }
  
  .contact-page .contact-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .contact-page .contact-image img {
    max-width: 100%;
  }
  
  .contact-page .form-control {
    width: 203%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .contact-page .form-control:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  }
  
  
  .contact-page textarea.form-control {
    height: 100px;
  }
  
  .contact-page .send-btn {
    width: 100%;
    background-color: #f7327a;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-page .send-btn:hover {
    background-color: #e0245e;
  }
  
 

.contact-page .contact-info{
    margin: 1rem 0;
    text-align: left;
    padding: 1rem 0;
}

.contact-page .contact-info span .fas{
    font-size: 2rem;
    padding-bottom: 0.9rem;
    color: #3034be;
}

.contact-page .contact-info div span:nth-child(2){
    font-weight: 500;
    font-size: 1.2rem;
}
.contact-page .contact-box h2{
    border-bottom: 1px soild black;
}
.contact-page .contact-info .text{
    padding-top: 0.4rem;
    color: #000;
    font-size: .8rem;
}

/* Keyframes for the shimmer animation */
/* @keyframes shimmerAnimation {
    0% {
      background-position: 200% 0; 
    }
    50% {
      background-position: 150% 0; 
    }
    100% {
      background-position: 0 0; 
    }
  }
   */
  /* Apply the shimmer animation to the line */
  /* .contact-page .contact-box h2::after {
    content: "";
    display: block;
    position: absolute;
    left: 0; 
    bottom: -5px; 
    width: 50%; 
    height: 5px; 
    background: linear-gradient(90deg, transparent, #6f8aea, transparent); 
    background-size: 300% 100%; 
    animation: shimmerAnimation 2.5s ease infinite; 
  }
  

   .contact-page .contact-box h2 {
    position: relative; 
  }
  
  @media screen and (max-width: 768px) {
    .contact-page .contact-box h2::after {
      width: 1000%; 
    }
  } */
.contact-page .contact-form{
    padding: 2rem 0;
    border-top: 1px solid #c7c7c7;
    
}


.contact-page .form-control:focus{
    box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
}

.contact-page .contact-form form div{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.6rem;
}



.contact-page .contact-form > div img{
    width: 85%;
}

.contact-page .contact-form > div{
    margin: 0 auto;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .contact-page .contact-bg .text{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
     .contact-page .contact-info{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .contact-page .contact-box {
      width: 90%; 
    }
  
    .contact-page .contact-content {
      flex-direction: column; 
    }
  
    .contact-page .contact-form {
      padding-right: 0; 
      margin-bottom: 20px; 
    }
  
    .contact-page .contact-image {
      justify-content: center; 
    }
  
    .contact-page .form-control {
      width: 200%; 
    }
  
    .contact-page .send-btn {
      width: 100%; 
    }
  }


  /* footer-css */

  footer{
    width: 100%;
    background: rgb(209, 209, 232);
    color: black;
    padding: 50px 0 30px;
    font-size: 13px;
    line-height: 20px;
}
.footer-section .row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-section .col{
    flex-basis: 25%;
    padding: 10px;
}
.footer-section .col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}
.footer-section .footer_logo{
    width: 120px;
    position: relative;
    top: -23px;
    left: px;
}
.footer-section .footer_about{
    position: relative;
    top: -20px;
}
.footer-section .col h3{
    width: fit-content;
    margin-bottom: 20px;
    position: relative;
}
.footer-section .footer_email{
    width: fit-content;
    margin: 10px 0;
}
.footer-section .col ul li{
    list-style: none;
    margin-bottom: 8px;
}
.footer-section .col ul li a{
    text-decoration: none;
    color: black;
}
/* .footer-section .col form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid darkblue;
    margin-bottom: 50px;
}
.footer-section .col form .icon{
    font-size: 18px;
    margin-right: 10px;
} */
.footer-section .col form input{
    width: 100%;
    background: transparent;
    color: black;
    border: 0;
    outline: none;
}

/* .footer-section hr.new1 {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgb(148, 53, 53);
    margin: auto;
    box-shadow: #fff;
} */
footer .copyright{
    text-align: center;
    
}

@keyframes moveline{
    0%{
        left:-20px;
    }
    100%{
        left:100%;
    }
}

.footer-section .content {
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 0 2em;
  margin-bottom: 1.8em;
}

.footer-section .content form .mail {
  background-color: #fff;
  padding: 0.5em 0 0.5em 1.5em;
  line-height: 2;
  width: 120%;
  border: 1px solid #0e0808;
  border-radius: 0.5em;
  margin-bottom: 1em;
  margin-left: -20px;
}


.footer-section .content form .subscribe {
  color: #fff;
  font-size: .8rem;
  font-weight: 400;
  background-color: #f7327a;
  padding: 0.9em 0;
  display: inline-block;
  border: none;
  border-radius: 0.5em;
  width: 120%;
  cursor: pointer;
  margin-left: -20px;
  /* margin-bottom: 1.3em; */
}
.footer-section .content form .subscribe:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add shadow effect on hover */
  background-color: #e0245e;
}
.footer-section .text {
  font-size: 0.9rem;
  width: 90%;
  text-align: center;
}
.footer-section .content span {
  display: block;
  text-align: center;
  margin-top: 1em;
  color: green;
}

  @media screen and (max-width: 768px) {
    .footer-section .content {
      padding: 0 1em; /* Adjust padding for smaller screens */
    }
    .footer-section .text {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }
    .footer-section .content form .mail {
      width: 300%; /* Adjust width for smaller screens */
      flex: 1; /* Equal width for both inputs */
      margin: 1.5em; /* Adjust margin between inputs */
      margin-left: 3.5rem;
    }
  
    .footer-section .content form .subscribe {
      width: 300%; /* Adjust width for smaller screens */
      flex: 1; /* Equal width for both inputs */
      margin: 0.5em; /* Adjust margin between inputs */
      margin-left: 3.5rem;
      
    
    }
  
    .footer-section .text {
      width: 100%; /* Adjust width for smaller screens */
      
    }
  
    .footer-section .icons {
      width: 100%; /* Adjust width for smaller screens */
      justify-content: center; /* Center icons on smaller screens */
    }
  }

  .footer-section .icons {
    width: 80%;
    display: flex;
    align-items: center;
  }

.footer-section .icons a i {
    font-size: 32px;
    text-decoration: none;
    color: #353535;
    margin: 0rem 0.3rem;
  }
  @media only screen and (min-width: 1024px) {
    .footer-section .icons a i {
      margin: 0rem 0.7rem;
    }
  }

  .footer-section .social-media-icons {
    display: flex;
    justify-content: center;
    margin-top: 5px; 
  }
  
  .footer-section .social-media-icons i {
    margin: 0 10px;
  }
  
  .footer-section .social-media-icons i {
    width: 20px; 
    height: auto;
  }
  
  .footer-section .social-media-icons a:hover {
    transform: scale(1.5); 
  }
  
  .footer-section .social-media-icons a:hover .lab.la-facebook-f {
    color: #3b5998; 
  }
  
  .footer-section .social-media-icons a:hover .lab.la-linkedin-in {
    color: #0077b5; 
  }
  
  .footer-section .social-media-icons a:hover .bi.bi-twitter-x {
    color:  black;
  }
  
  .footer-section .social-media-icons a:hover .lab.la-instagram {
    color: #e4406c; /* Instagram pink */
  }
  
  .footer-section .social-media-icons a:hover .lab.la-whatsapp {
    color: #0ea847; /* WhatsApp green */
  }
  
  
  @media (hover: none) {
    .footer-section .social-media-icons a:active {
        transform: scale(1.5); 
    }
  }
  
  /* Media query for mobile devices */
  @media screen and (max-width: 786px) {
    .footer-section .social-media-icons {
        justify-content: space-around; 
        margin-top: 10px; 
    }
  
    .footer-section .social-media-icons a {
        margin: 15px; 
    }
  }
  
  /* services-dropdown-pages */

  .containerSR { padding-inline: 15px; }

.hero-title, .section-title,
.title { font-family: 'Source Sans Pro', sans-serif; }

.containerbutton {
  display: flex;
  justify-content: center;
  margin-top: 15px;

}
.btn {
  /* display: flex; */
background-image: linear-gradient(90deg,hsl(231, 68%, 21%) 0,hsl(275, 54%, 33%) 51%,hsl(231, 68%, 21%));
background-size: 200%;
color: hsl(0, 0%, 100%);
padding: 12px 35px;
font-size: 1.2rem;
font-weight: 500;
border-radius: 0 25px;
transition: 0.35s ease;
}

.btn:is(:hover, :focus) { background-position: right; }

.w-100 { width: 100%; }

.banner-animation { animation: waveAnim 1.5s linear infinite alternate; }

@keyframes waveAnim {
0% { transform: translate(0, 0) rotate(0); }
100% { transform: translate(2px, 2px) rotate(2deg); }
}

.section { padding-block: 60px; }

.section-title {
color: hsl(236, 57%, 28%);
font-size: 3.2rem;
margin-block-end: 60px;
max-width: max-content;
margin-inline: auto;
}

.underline { position: relative; }

.underline::before {
content: "";
position: absolute;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
width: 70%;
height: 6px;
background-image: linear-gradient(90deg,hsl(335, 87%, 51%) ,hsl(29, 99%, 67%));
border-radius: 10px;
}

:is(.serviceSR-card, .features-card) .title {
color: hsl(236, 57%, 28%);
font-size: 2.5rem;
font-weight: 700;
}

:is(.serviceSR-card, .features-card) .text { font-size: 1.5rem; }

.img-cover {
width: 100%;
height: 100%;
object-fit: cover;
}



.hero {
  display: flex;
background-repeat: no-repeat, no-repeat, no-repeat;
background-position: -280px bottom, center, center;
background-size: auto, cover, auto;
padding-block-start: 0px;
padding-block-end: 60px;

}

.hero-content { margin-block-end: 50px; }

.hero-subtitle {
color: rgb(216, 216, 86);
font-family: 'Source Sans Pro', sans-serif;
font-size: 2.4rem;
margin-block-end: 15px;
text-align: center;
margin-top: -3rem;
}
@media only screen and (max-width: 768px) {
  .hero-subtitle {
    margin-top: 100px;
    font-size: 1.8rem;
    margin-block-end: 15px;
    text-align: center;
  }
}
.hero-title {
color: hsl(0, 0%, 100%);
font-size: 4.8rem;
margin-block-end: 20px;
}
@media only screen and (max-width: 768px) {
.hero-title {
  font-size: 3.2rem;
  margin-block-end: 20px;
  }
}

.hero-text {
color: hsl(0, 0%, 100%);
font-size: 1.5rem;
margin-block-end: 30px;
}

.aboutSR-banner { margin-block-end: 30px; }

.aboutSR .section-title { margin-inline: 0; }

.aboutSR .underline::before {
left: 0;
transform: translateX(0);
}

.aboutSR-text {
font-size: 1.5rem;
margin-block-end: 20px;
}

.stats-list {
display: grid;
gap: 30px;
}

.stats-card {
text-align: center;
padding: 15px;
box-shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);
border-radius: 12px;
}

.stats-title {
color: hsl(236, 57%, 28%);
font-size: 3.8rem;
font-weight: 700;
}

.stats-text { font-size: 1.5rem; }


.serviceSR-list {
display: grid;
gap: 30px;
}

.serviceSR-card {
  padding: 30px;
  box-shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);
  border-radius: 12px;
  width: 370px; 
      height: 430px; 
      object-fit: cover;
  }
  
  .serviceSR-card .card-icon {
    max-width: 165px;
    display: grid;
    place-content: center;
    margin-inline: auto;
    transition: 0.50s ease;
    width: 200px; 
      height: 150px; 
      object-fit: cover;
  }
  
  .serviceSR-card .card-icon img {
    max-width: 100%;
    height: auto;
    border-radius: 50%; /* Ensure the image is circular */
  }
  
  .serviceSR-card:hover .card-icon {
    background-color: hsl(197, 41%, 88%);
    border-radius: 40%;
  }
  


.serviceSR-card .title {
text-align: center;
margin-block-end: 15px;
}

.serviceSR-card .text {
text-align: center;
margin-block-end: 20px;
}

.serviceSR-card .card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; /* Adjust width as needed */
  height: 60px; /* Adjust height as needed */
  margin: 0 auto; /* Center the button horizontally */
  padding: 10px; /* Increase padding for larger size */
  border: none;
  border-radius: 50%;
  background-color: #4a7dc9;
  color: hsl(0, 0%, 100%);
  font-size: 1.2rem; /* Increase font size for larger size */
  transition: background-color 0.3s ease; /* Smooth transition for background color */
}

.serviceSR-card .card-btn:hover,
.serviceSR-card .card-btn:focus {
  background-color: #145dcb; /* Darker shade for hover/focus */
  outline: none; /* Remove default focus outline */
}

.serviceSR-card .card-btn ion-icon {
  font-size: 2rem; /* Increase icon size for larger button */
  margin-top: 2px; /* Adjust icon alignment */
}


.features-list > li:first-child { margin-block-end: 30px; }

.features-card {
display: flex;
align-items: flex-start;
gap: 20px;
}

.features-card .icon {
background-image: linear-gradient(90deg,hsl(231, 68%, 21%) 0,hsl(275, 54%, 33%) 51%,hsl(231, 68%, 21%));
background-size: 200%;
color: hsl(0, 0%, 100%);
min-width: max-content;
max-width: max-content;
font-size: 36px;
padding: 22px;
border-radius: 50%;
}

.features-card .icon ion-icon { --ionicon-stroke-width: 20px; }

.features-card .title { margin-block-end: 10px; }

.features-banner { margin-block: 40px; }

.features-banner > img {
max-width: max-content;
margin-inline: auto;
}

/*responsive*/
@media only screen and (max-width: 768px) {
  .hero {
    margin-top: 0px;
  }
}

@media (min-width: 550px) {
.containerSR {
  max-width: 550px;
  margin-inline: auto;
}
.section-title { font-size: 3.6rem; }
.stats-list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
.containerSR { max-width: 720px; }

.hero {
  min-height: 600px;
  display: grid;
  place-items: center;
  margin-top: 0px;
}

.hero-content { margin-block-end: 0; }

.hero .containerSR {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.serviceSR-list { grid-template-columns: 1fr 1fr; }
.features-list > li:first-child { margin-block-end: 0; }

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
}

@media (min-width: 992px) {


:root {
  --fs-1: 5.4rem;
}
.containerSR { max-width: 950px; }

.hero { min-height: 700px; }

.aboutSR .containerSR {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.serviceSR-list { grid-template-columns: repeat(3, 1fr); }

.features-list { grid-template-columns: 1fr; }

.features .containerSR {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.features .section-title { grid-column: 1 / 4; }

.features-banner {
  margin-block: 0;
  display: grid;
  place-items: center;
}

}
@media (min-width: 1200px) {

.containerSR { max-width: 1200px; }
.section-title { font-size: 4.6rem; }
.hero { min-height: 800px; }
}

/* whatsapp */
@keyframes slideIn {
  0% { opacity: 0; transform: translateX(-100%); }
  100% { opacity: 1; transform: translateX(0); }
}

.whatsapp-link {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 9999; /* Ensure it's above other content */
  transition: transform 0.3s ease;
  
}

.whatsapp-link .tooltip {
  visibility: hidden;
  width: 120px;
  background-color: rgb(90, 251, 87);
  border-color: black;
  color: #2880f3;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  position: absolute;
  z-index: 9;
  left: calc(100% + 10px);
  left: 100%;
  transform: translateY(+50%);
  opacity: 0;
  animation: slideIn 2s forwards infinite; 
}

.whatsapp-link:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.whatsapp-link:hover {
  transform: scale(1.1); /* Scale up slightly on hover */
}

.whatsapp-logo {
  width: 50px; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
}



/* AIIIIIIIII */
.containerAI {
  background-color: var(--primary-color);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.containerAI .top-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
  padding: 20px;

}

.containerAI .left-side {
  /* position: relative; */
  flex: 1;
  margin-left: 40px;
}

.containerAI .left-side h1 {
  margin-top: 100px;
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--secondary-color);
}
.containerAI .left-side h1 #highlight {
  color: #4787e8;
  
}

.containerAI .left-side p {
  font-size: 1.4em;
  line-height: 1.6;
  text-align: justify;
  color: var(--secondary-color);
}

.containerAI .right-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}

.containerAI .right-side img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  max-height: 400px;

}

.containerAI .cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.containerAI .card {
  background-color: rgb(236, 235, 235);
  border: 1px solid #007bff;
  border-radius: 40px;
  padding: 20px;

  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.containerAI .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.containerAI .card img {
  max-width: 100%;
  height: 140px;
  border-radius: 30px;
  margin-bottom: 1px;
  background-color: rgb(210, 227, 233);
}

.containerAI .card h3 {
  margin: 5px 0;
  font-size: 1.5em;
  color: black;
}

.containerAI .card p {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 15px;
}

.containerAI .card button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s;
}

.containerAI .card button:hover {
  background-color: #0056b3;
}

/* ARRRRRRRRRRR */
.containerAR {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.containerAR .heading {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 50px;
  padding: 10px;
  border-bottom: 3px solid #007BFF;
  width: fit-content;
  
}
.containerAR .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.containerAR .card {
  background-color: rgb(237, 237, 240);
  /* border: 1px solid blue; */
  border-radius: 40px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  width: auto;
  height: auto;
  max-width: 550px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
}
.containerAR .card:hover {
  background-color: rgb(173, 184, 230);
}
.containerAR .card-header {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  margin-top: 20px;
}

.containerAR .card-header i {
  font-size: 2.2em;
  margin-right: 20px;
 
}
.containerAR .card:hover i {
  
  color: #fff;
}
.containerAR .card h2 {
  font-size: 2.4em;
  margin: 0;
  transition: color 0.3s;
}
.containerAR .card:hover h2 {
  color: darkblue;
}
.containerAR .card p {
  font-size: 1.4em;
  color: #727171;
  line-height: 1.8rem;
  padding-left: 20px;
  padding-right: 20px;
 
}