@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:wght@300..800&display=swap");

@font-face {
  font-family: "Font Awesome 6 Free";
  src: url("fa-solid-900.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

.fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal; /* Use the font you defined */
}
.fa-message:before {
  content: "\f27a"; /* Unicode for the message icon */
}

.fa-envelope:before {
  content: "\f0e0"; /* Unicode for the envelope icon */
}
.fa-xmark:before {
  content: "\f00d";
}
.fa-tty:before {
  content: "\f1e4";
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans";
  background-color: #f0f0f0;
}
/*-- header style ---- */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #101f38;
}
::-webkit-scrollbar-thumb {
  background: #101f38;
}
header {
  position: relative;
  margin-bottom: 75px;
}
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: fixed;
  border: 1px transparent solid;
  background-color: white;
  top: 0;
  height: 75px;
  z-index: 100;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 50px;
  max-width: 1320px;
  width: 100%;
}
nav > div {
  display: flex;
  align-items: center;
}

header a {
  text-decoration: none;
  color: #101f38;
}

#logo {
  font-weight: bold;
  font-size: 20px;
  align-items: center;
}

.nav-links {
  display: flex;
  flex: 1 1 1;
  justify-content: space-around;
  transition: all 0.5s ease;
}

img,
svg {
  vertical-align: middle;
  max-width: 100%;
}

.logo-img {
  height: 70px;
  width: auto;
}

.nav-links a {
  letter-spacing: 0.4px;
  transition: all ease 0.5s;
}
.nav-links .nav-link {
  margin: 0 35px 0 15px;
}

.nav-links .contact-btn {
  padding: 0 18px;
  border-radius: 25px;
  display: inline-block;
  margin-left: 24px;
  color: white;
  background-color: #1d95d3;
  line-height: 40px;
  position: relative;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.xicon {
  color: white;
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 40px;
}

.bar {
  width: 25px;
  height: 1px;
  background-color: black;
  margin: 3px 0;
  transition: 0.4s;
}
.bar.lighter {
  height: 0.5px;
}

.scaleAnimation {
  transition: transform 0.3s ease;
}
.scaleAnimation:hover {
  color: #1d95d3;
  transform: scale(1.2);
}
/* carsoul style */
.carousel-section {
  background-color: #fff;
}

.carousel-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  max-width: 1320px;
  margin: auto;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 60px;
  margin: 10px 0px 20px 0px;
}

.carousel-item {
  display: flex;
  justify-content: space-between;
  min-width: 100%;
  align-items: center;
  background-color: white;
  color: #333;
  padding: 50px 100px;
}

.carousel-content {
  width: 50%;
  color: #000;
}

.carousel-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #000;
}

.carousel-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.carousel-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.carousel-image img:hover {
  transform: scale(1.1);
}

/* Navigation Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev {
  left: 20px;
  background: rgb(29, 149, 211);
}

.next {
  right: 20px;
  background: rgb(29, 149, 211);
}

/* Section styles */
#services {
  padding: 20px 50px 50px;
  text-align: center;
  background-color: rgb(243, 243, 243);
}

#services h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  margin: 10px 0px 20px 0px;
}

.services-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 0 20px;
  max-width: 1320px;
  margin: auto;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

.service-image {
  width: auto;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  font-weight: bold;
  color: #1d95d3;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  margin-left: 5px;
  white-space: nowrap;
}

.read-more:hover {
  /* color: #0056b3; */
  text-decoration: underline;
}

/* client-brands style */
.client-brands {
  padding: 20px 50px;
  background-color: #fff;
}
.client-brands h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  margin: 10px 0px 20px 0px;
  text-align: center;
}
.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.client-brands img {
  width: 200px;
}
.idea-section {
  padding: 20px 50px;
  background-color: rgb(243, 243, 243);
}

.idea-section h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  margin: 10px 0px 20px 0px;
  text-align: center;
}

.idea-content-container {
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: auto;
}

.idea-content-container div {
  width: 48%;
}
.idea-content-container img {
  width: 100%;
}

/* CSS */
.primary-btn {
  padding: 0 18px;
  border-radius: 25px;
  align-items: center;
  background-color: #1d95d3;
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* border-radius: 0.25rem; */
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  justify-content: center;
  letter-spacing: 0.4px;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.primary-btn:hover,
.primary-btn:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: #fff;
}

.primary-btn:hover {
  transform: translateY(-1px);
}

.primary-btn:active {
  background-color: #f0f0f1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}
.primary-btn a {
  text-decoration: none;
  color: #fff;
}

.idea-btn {
  margin: 20px 0 20px;
}

/* Animation for service cards */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*------------------------------------------------------------footersection-------------------------------*/

.footer-section {
  background-color: #0d2252;
}
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  color: white;
  padding: 20px 30px;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: auto;
}
.footer h4,
h3 {
  font-weight: 400;
}
.footer h2 {
  font-weight: bolder;
}
.about h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  margin: 10px 0px 20px 0px;
  /* text-align: center; */
  width: 100%;
}
.about h4 {
  font-size: 16px;
  line-height: 2;
}
.special-footer {
  color: orange;
}
.services h2 {
  font-size: 24px;
  line-height: 2;
}
.footer .services h4 {
  font-size: 16px;
}
.contact h2 {
  font-size: 24px;
  line-height: 2;
}
.contact h4 {
  font-size: 14px;
  line-height: 2;
  margin-top: 0px;
}
.signup h2 {
  font-size: 24px;
  line-height: 2;
}
.signup h4 {
  font-size: 14px;
  line-height: 2;
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-top: 10px;
}
.social-media img {
  width: 25px;
  height: 25px;
}
.footericon {
  padding-top: 5px;
  color: #1d95d3;
}
.services h4 {
  font-size: 20px;
  line-height: 2;
  color: #dde8e8;
}
.location {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
}
.mobile {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
}
.mail {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
}
.bottom-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background-color: black;
  color: white;
  padding: 20px 0px;
}
.bottom-left {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.special {
  color: yellow;
}
.footericon {
  display: inline-block;
  margin-right: 15px;
  color: orange;
  height: 14x;
  width: 10.5px;
  margin-top: 10px;
}

/*------------------media quires--------------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .section1 {
    display: grid;
    grid-template-columns: 1fr;
  }
  .section2 {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 426px) {
  .section1 {
    padding: 10px;
  }
  .section2 {
    padding: 10px;
    padding-bottom: 60px;
  }
  .section3TEAM {
    padding: 1px 10px 30px 10px;
  }
  .othersIMG {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer {
    grid-template-columns: 1fr !important;
  }
  .bottom-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .idea-content-container div {
    width: 100%;
  }
  .client-brands img {
    width: 100px;
  }
  .carousel-content {
    padding: 10px;
    width: 100%;
  }
  .carousel-content h2 {
    line-height: 20px;
  }
  .carousel-item {
    padding: 10px;
    flex-direction: column-reverse;
    justify-content: center;
  }
  .carousel-content h2 {
    font-size: 20px;
  }
  .carousel-content p {
    font-size: 14px;
  }
  #services,
  .idea-section,
  .client-brands,
  .idea-content-container {
    padding: 20px 10px;
  }
  .services-container {
    grid-template-columns: 1fr;
  }
}
/*** header responsive***/
@media (max-width: 1200px) {
  nav {
    max-width: 960px;
  }
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 0;
    right: -500px;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: white;
    height: 100vh;
    width: 85%;
    max-width: 380px;
  }

  .nav-link {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .nav-links .nav-link:first-child {
    background-color: #1d95d3;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    font-size: 20px;
  }

  .hamburger-menu,
  .xicon {
    display: flex;
  }

  .nav-links .contact-btn {
    margin: 0;
    position: relative;
    right: 10px;
  }
  .scaleAnimation:hover {
    transform: scale(1);
  }
}
@media (max-width: 992px) {
  nav {
    max-width: 720px;
  }
}
@media (max-width: 768px) {
  nav {
    max-width: 540px;
  }
}
@media (max-width: 450px) {
  .logo-img {
    height: 50px;
  }
  #logo {
    font-size: 15px;
  }
  .bar {
    width: 20px;
  }
}

/* ----- technologies -----*/

.header-img img {
  width: 100%;
}
.about-tech {
  padding: 20px 100px 20px 100px;
  background-color: #fff;
}
.about-tech,
.technologies-logo h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 60px;
  margin: 10px 0px 20px 0px;
}

.bold {
  font-weight: bold;
  color: black;
}
.technologies-logo {
  padding: 0px 100px 40px 100px;
}
.technologies-logo h3 {
  font-size: 26px;
}
.front-end {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.front-end img {
  width: 200px;
  height: 150px;
  object-fit: contain;
}
.back-end {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.back-end img {
  width: 200px;
  height: 150px;
  object-fit: contain;
}
.databases {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.databases img {
  width: 200px;
  height: 150px;
  object-fit: contain;
}
.cloud-devops {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.cloud-devops img {
  width: 200px;
  height: 150px;
  object-fit: contain;
}
.Data-Engineering {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.Data-Engineering img {
  width: 200px;
  height: 150px;
  object-fit: contain;
}
.ios-android {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.ios-android img {
  width: 200px;
  height: 150px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .about-tech {
    padding: 0px 50px 0px 50px;
  }
  .technologies-logo {
    padding: 0px 50px 0px 50px;
  }
  .technologies-logo img {
    width: 180px;
  }
  .back-end {
    gap: 40px;
  }
}
@media screen and (max-width: 430px) {
  .about-tech {
    padding: 0px 0px 0px 0px;
  }
  .technologies-logo {
    padding: 0px;
  }
  h3 {
    text-align: center;
  }
  .ios-android,
  .Data-Engineering,
  .cloud-devops,
  .databases,
  .front-end,
  .back-end {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* ----- services page ------*/

.heading {
  text-align: center;
  /* font-size: 60px; */
  font-size: 35px;
  font-weight: 700;
  line-height: 58px;
}
.productdevolpment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding: 50px 80px 70px 80px;
  background-color: #fff;
}
.productdevolpmentleftcontainer img {
  width: 100%;
  object-fit: cover;
}
.productdevolpmentrightcontainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.productdevolpmentrightcontainer h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
}
.productdevolpmentrightcontainer p {
  color: #566278;
}
.bottomsection {
  display: flex;
  gap: 10px;
}
.icon {
  width: 10px;
  height: 10px;
}

/*-----------------------------------------------------------------section2----------------------------------------*/
.webmobileappdevolpment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 50px 80px 70px 80px;
}
.webmobileappdevolpmentleft {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.webmobileappdevolpmentleft h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
}
.webmobileappdevolpmentleft p {
  color: #566278;
}
.list1 p {
  font-size: 18px;
  line-height: 10px;
  text-align: justify;
  color: #566278;
}

.webmobileappdevolpmentright img {
  width: 100%;
  object-fit: cover;
}
/*--------------------------------------------------------section3-----------------------------------------*/
.Datatransimission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding: 50px 80px 70px 80px;
  background-color: #fff;
}
.Datatransimissionleftcontainer img {
  width: 100%;
  object-fit: cover;
}
.Datatransimissionrightcontainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.Datatransimissionrightcontainer p {
  color: #566278;
}
.Datatransimissionrightcontainer h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
}
/*----------------------------------------------------section 3 styles-------------------------------------------*/
.Cloudsolutionsdevolps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 50px 80px 70px 80px;
}
.Cloudsolutionsdevolpsleftcontainer h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
}
.Cloudsolutionsdevolpsleftcontainer p {
  color: #566278;
}
.Cloudsolutionsdevolpsleftcontainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.Cloudsolutionsdevolpsrightcontainer img {
  width: 100%;
  object-fit: cover;
}
/*------------------------------------------------------section5 styles----------------------------------------*/
.Dataengineering {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding: 50px 80px 70px 80px;
  background-color: #fff;
}
.Dataengineeringrightcontainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.Dataengineeringrightcontainer h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
}
.Dataengineeringrightcontainer p {
  color: #566278;
}
.Dataengineeringleftcontainer img {
  width: 100%;
  object-fit: cover;
}
/*--------------------------------------------section6 styles--enterprises---------------------------------------*/
.enterprisesapplicationsdevolpment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 50px 80px 70px 80px;
}
.enterprisesapplicationsdevolpmentleftcontainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.enterprisesapplicationsdevolpmentleftcontainer h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
}
.enterprisesapplicationsdevolpmentleftcontainer p {
  color: #566278;
}
.enterprisesapplicationsdevolpmentrightcontainer img {
  width: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------mediaquires tablet version---------------------------------------------*/
@media screen and (max-width: 768px) {
  .productdevolpment {
    display: grid;
    grid-template-columns: 1fr;
  }
  .webmobileappdevolpment {
    display: flex;
    flex-direction: column-reverse;
  }
  .Datatransimission {
    display: grid;
    grid-template-columns: 1fr;
  }
  .Cloudsolutionsdevolps {
    display: flex;
    flex-direction: column-reverse;
  }
  .Dataengineering {
    display: grid;
    grid-template-columns: 1fr;
  }
  .enterprisesapplicationsdevolpment {
    display: flex;
    flex-direction: column-reverse;
  }
}

/*-------------------------------------------------------------mediaquiers MOBILE VERSION-------------------------*/
@media screen and (max-width: 426px) {
  .productdevolpment {
    padding: 50px 10px 15px 10px;
  }
  .productdevolpmentrightcontainer h3 {
    font-size: 26px;
  }
  .webmobileappdevolpment {
    margin: 50px 10px 15px 10px;
  }
  .webmobileappdevolpmentleft h3 {
    font-size: 26px;
  }
  .Datatransimission {
    padding: 50px 10px 15px 10px;
  }
  .Datatransimissionrightcontainer h3 {
    font-size: 26px;
  }
  .Cloudsolutionsdevolps {
    margin: 50px 10px 15px 10px;
  }
  .Cloudsolutionsdevolpsleftcontainer h3 {
    font-size: 26px;
  }
  .Dataengineering {
    padding: 50px 10px 15px 10px;
  }
  .Dataengineering h3 {
    font-size: 26px;
  }
  .enterprisesapplicationsdevolpment {
    margin: 50px 10px 15px 10px;
  }
  .enterprisesapplicationsdevolpment h3 {
    font-size: 26px;
  }
}

/* --- about page styles ----*/

.section1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin: 10px 0px 25px 0px;
  padding: 70px 85px 0px 85px;
  background-color: #fff;
}
.leftcontainer h3 {
  font-size: 45px;
  font-weight: 700;
  line-height: 60px;
  margin: 10px 0px 20px 0px;
}
p {
  font-size: 18px;
  line-height: 28px;
  text-align: justify;
  font-weight: 400;
}
.rightcontainer img {
  width: 100%;
  object-fit: cover;
}
/*-------------------------------------------second section----------------------------------------------*/
.section2 {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 5%;
  background-color: rgb(243, 243, 243);
  padding: 70px 85px 70px 85px;
}
.leftcontainer2 img {
  width: 100%;
  object-fit: cover;
}
.leftcontainer2 h3 {
  font-size: 35px;
  font-weight: 700;
  line-height: 50px;
  margin: 0px 0px 25px 0px;
}
.rightcontainer2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0px 0px 0px;
}
.missionvisionvalues h4 {
  font-size: 25px;
  line-height: 32px;
  font-weight: 800;
}

/*----------------------------------------------------------teams section 3--------------------------------------*/
.section3TEAM {
  background-color: #fff;
  padding: 1px 70px 30px 70px;
}

.ceo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin: 10px 0px 20px 0px;
}
.ceo h3 {
  font-size: 50px;
  margin: 10px 0px 50px 0px;
}
.ceo p {
  text-align: center;
  padding: 0;
  color: #666;
  font-size: 21px;
  margin-bottom: 9px;
}
.ceo a {
  text-decoration: none;
  text-align: center;
  padding: 6px 0;
  color: #223749;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 0;
}
.ceo a:hover {
  text-decoration: underline;
  transition: 0.3s;
}

.ceoimage {
  width: 150px;
  height: 160px;
  /* object-fit: cover; */
  border-radius: 50%;
  object-fit: fill;
}
.othersIMG {
  display: flex;
  gap: 45px;
  justify-content: center;
}
.IMGS {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.IMGS a {
  text-decoration: none;
  text-align: center;
  padding: 6px 0;
  color: #223749;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 0;
}
.IMGS p {
  text-align: center;
  padding: 0;
  color: #666;
  font-size: 21px;
  margin-bottom: 9px;
}

.IMGS img {
  width: 130px;
  height: 130px;
  /* object-fit: cover; */
  border-radius: 50%;
  object-fit: scale-down;
}
.IMGS a:hover {
  text-decoration: underline;
}
/*------------------------------------------------------------footersection-------------------------------*/

.footer-section {
  background-color: #0d2252;
}
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  color: white;
  padding: 20px 30px;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: auto;
}
.footer h4,
h3 {
  font-weight: 400;
}
.footer h2 {
  font-weight: bolder;
  letter-spacing: 1.5px;
}
.about h2 {
  font-size: 24px;
  line-height: 2;
}
.about h4 {
  font-size: 16px;
  line-height: 2;
}
.special-footer {
  color: orange;
}
.services h2 {
  font-size: 24px;
  line-height: 2;
}
.footer .services h4 {
  font-size: 16px;
}
.contact h2 {
  font-size: 24px;
  line-height: 2;
}
.contact h4 {
  font-size: 14px;
  line-height: 2;
  margin-top: 0px;
}
.signup h2 {
  font-size: 24px;
  line-height: 2;
}
.signup h4 {
  font-size: 14px;
  line-height: 2;
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-top: 10px;
}
.social-media img {
  width: 25px;
  height: 25px;
}
.footericon {
  padding-top: 5px;
  color: #1d95d3;
}
.services h4 {
  font-size: 20px;
  line-height: 2;
  color: #dde8e8;
}
.location {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
}
.mobile {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
}
.mail {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
}
.bottom-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background-color: black;
  color: white;
  padding: 20px 0px;
}
.bottom-left {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.special {
  color: yellow;
}
.footericon {
  display: inline-block;
  margin-right: 15px;
  color: orange;
  height: 14x;
  width: 10.5px;
  margin-top: 10px;
}

/*------------------media quires--------------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .section1 {
    display: grid;
    grid-template-columns: 1fr;
  }
  .section2 {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 426px) {
  .section1 {
    padding: 10px;
  }
  .section2 {
    padding: 10px;
    padding-bottom: 60px;
  }
  .section3TEAM {
    padding: 1px 10px 30px 10px;
  }
  .othersIMG {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer {
    flex-direction: column;
  }
  .bottom-footer {
    flex-direction: column;
    text-align: center;
  }
}
/*****contact page*****/
/**************contact us*****************/
.contactUsPage {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: white;
}
.container {
  margin: 0 auto;
  max-width: 1320px;
  display: flex;
}

.wrapper {
  display: flex;
  justify-content: space-between !important;
  margin-top: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0 50px;
}
.col-lg-5 {
  padding: 0 12px;
  width: 50%;
  flex: 0 0 auto;
  font-size: 1rem;
  line-height: 27px;
  display: flex;
  color: #101f38;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.col-lg-5 p {
  text-align: justify;
  font-size: 17px;
  line-height: 1.6;
  position: relative;
  bottom: 65px;
  margin-bottom: 2rem;
}
h2 {
  font-size: 45px;
  line-height: 58px;
}

.col-lg-5 h2 {
  font-size: 45px;
  font-family: "Inter", sans-serif;
  line-height: 58px;
  font-weight: 700;
  position: relative;
  bottom: 65px;
}
.col-lg-6 {
  width: 41.6%;
}
.wrapper .img {
  text-align: right;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: rgb(23, 43, 67);
  font-size: 18px;
  width: 100%;
  margin: 0px 0px 15px;
  background: rgb(255, 255, 255);
  outline: 0px;
}
/*********** conatct us************/
.contact-block {
  background-color: rgb(243, 243, 243);
  padding-top: 60px;
}

.contact-block .wrapper {
  margin: 0;
}
.contact-block .container {
  margin: 0 auto;
}

.pd70 {
  padding: 0 12px 0 70px;
  background-color: #fff;
  width: 100%;
}
.pd30r50t {
  padding: 50px 30px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb20 {
  margin-bottom: 20px;
}
.pt50 {
  padding-top: 50px;
}
.col-lg-7 {
  width: 58.3%;
  padding: 0 12px;
  flex: 0 0 auto;
  background-color: rgb(243, 243, 243);
}
.mt50 {
  margin-top: 50px;
}
.mt5 {
  margin-top: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mr10 {
  margin-right: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt30 {
  margin-top: 30px;
}

.flexed {
  display: flex;
  gap: 1rem;
}
.col-lg-6.flexed {
  align-items: center;
}
h4 {
  font-size: 30px;
  font-weight: 600;
  line-height: 42px;
}
.contact-form {
  background-color: rgb(255, 255, 255);
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.14) 0px 5px 15px 0px;
}

.mt40 {
  margin-top: 40px;
}
.mt20 {
  margin-top: 20px;
}

.col-lg-6 a {
  color: black;
  text-decoration: none;
}

.contact-block-sw {
  padding: 50px 30px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 15px 0px rgb(0 0 0 / 14%);
}
.rows {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.floating-label {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.floating-label:focus-within label {
  font-size: 10px;
  top: -1px;
}
.rows > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.col-md-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-md-12 {
  flex: 0 0 auto;
  width: 100%;
}
.formicon {
  position: absolute;
  top: 12px;
  left: 20px;
}
.iconin .form-block input,
.iconin .form-block select {
  padding: 0px 25px 0px 35px;
}
.form-block input,
.form-block select,
.form-block textarea {
  color: rgb(23, 43, 67);
  font-size: 18px;
  width: 100%;
  margin: 0px 0px 15px;
  background: rgb(255, 255, 255);
  outline: 0px;
}

.form-block input,
.form-block select {
  height: 50px;
  padding: 0px 15px;
  border-width: 0px 0px 2px;
  border-image: initial;
  border-bottom: 2px solid rgb(230, 230, 230);
  border-radius: 0px;
}
.floating-input,
.floating-select {
  font-size: 14px;
  padding: 4px 4px;
  display: block;
  width: 100%;
  height: 45px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #c5c5c5;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.iconin .floating-label label {
  left: 48px;
}
.floating-label label {
  color: #110a32;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 30px;
  top: 12px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin-bottom: 0;
}
.focused {
  font-size: 10px !important;
  top: -1px !important;
}
label {
  display: inline-block;
}
.customcheck {
  display: flex;
  grid-gap: 10px;
}

.custom-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #1d95d3;
}

.w20 {
  width: 20px;
  height: 20px;
}
.custom-control label {
  text-indent: 0;
  padding: 0;
}
.ctmlabl {
  font-size: 15px;
  line-height: 20px;
}
.buttonclass {
  justify-self: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.buttonclass button {
  padding: 10px 30px;
  border: none;
  border-radius: 30px;
  background: #1d95d3;
  color: #fff;
  font-weight: 600;
}

.porkai-btn {
  text-transform: uppercase;
  color: #fff;
  background: var(--blue-color);
  border-radius: 50px;
  display: inline-flex;
  font-size: 18px;
  padding: 0 32px;
  overflow: hidden;
  border: 1px solid #0057ff;
  align-items: center;
  justify-content: center;
  position: relative;
}
.iconin .form-block input,
.iconin .form-block select {
  padding: 0px 25px 0px 35px;
}
.form-block input,
.form-block select {
  height: 50px;
  padding: 0px 15px;
  border-width: 0px 0px 2px;
  border-image: initial;
  border-bottom: 2px solid rgb(230, 230, 230);
  border-radius: 0px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide spinner controls for Firefox */
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}
.floating-input:focus {
  border-bottom: 1px solid rgb(9, 75, 162);
}
.form-block input,
.form-block select,
.form-block textarea {
  color: rgb(23, 43, 67);
  font-size: 18px;
  width: 100%;
  margin: 0px 0px 15px;
  background: rgb(255, 255, 255);
  outline: 0px;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.blueketform input.valid,
.blueketform textarea.valid {
  background-image: url(assets/download.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px;
}
.form-block textarea {
  height: 120px;
  padding: 15px 15px 15px 35px;
  border-width: 0px 0px 2px;
  border-image: initial;
  border-bottom: 2px solid rgb(230, 230, 230);
  border-radius: 0px;
}

.iconin .form-block input,
.iconin .form-block select {
  padding: 0px 25px 0px 35px;
}
.blueketform input.valid,
.blueketform select.valid,
.blueketform textarea.valid {
  border-bottom: 1px solid #00a759;
}
.blueketform textarea.error,
.blueketform textarea.valid {
  background-position-x: 98%;
  background-position-y: 10px;
}
.blueketform input.error,
.blueketform textarea.error {
  background-image: url(assets/error.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px;
}
.blueketform input.error,
.blueketform select.error,
.blueketform textarea.error {
  border-bottom: 1px solid red;
}

.bglight {
  background-color: #f5f5f5;
}
.bgwhite {
  background-color: white;
}
.bgnone {
  background: none;
}
.flexr {
  flex-direction: row-reverse;
  gap: 1rem;
}
.br14 {
  border: 1px solid transparent;
  border-radius: 14px;
}
.w52 {
  width: 52%;
}
.bs {
  box-shadow: rgba(0, 0, 0, 0.14) 0px 5px 15px 0px;
}
.pd20 {
  padding: 20px;
}
.w52 input {
  border: 1px solid transparent;
  border-radius: 14px;
}
@media (max-width: 1450px) {
  nav,
  .container {
    max-width: 1140px;
  }
  h2 {
    font-size: 35px;
    line-height: 45px;
  }
  .col-lg-5 h2 {
    font-size: 35px;
    line-height: 45px;
  }
  body,
  p {
    font-size: 16px;
    line-height: 27px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .col-lg-5 p,
  .col-lg-5 h2 {
    bottom: 30px;
  }
  .scaleAnimation:hover {
    transform: scale(1);
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .col-lg-5 {
    width: 100%;
    position: relative;
    bottom: 0;
  }
  .col-lg-5 p {
    bottom: 0;
  }
  .col-lg-5 h2 {
    bottom: 0;
    font-size: 30px;
    line-height: 40px;
  }
  .col-lg-6 {
    width: 100%;
  }
  .col-lg-7 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .olontainer {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .col-lg-5 h2 {
    font-size: 26px;
    line-height: 36px;
  }
  h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media (max-width: 450px) {
  .col-lg-5 p {
    font-size: 10px;
  }
  .conatiner {
    max-width: 320px;
  }
}
