@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0px;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #ffffff;
}
.bg-blue {
  background-color: #f7fbfc;
}

.bg-none {
  background-color: #ffffff;
}

.card {
  background-color: white;

  box-shadow: 0px 4px 6px #a2daf9;
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.card img {
  width: 60px;
  height: 60px;
  display: flex;
  justify-self: center;
  margin-bottom: 30px;
}
.card.hoverable:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.primarybtn {
  background-color: #001f8f;
  padding: 13px 25px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  justify-content: start;
  align-items: flex-end;
  color: white !important ;
}

.secondarybtn {
  background-color: white;
  color: black;
  padding: 15px 45px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  justify-content: start;
  align-items: flex-end;
}
.secondarybtn:hover {
  transform: scale(1.1);
}

h2 {
  font-size: 34px !important;
  color: #002147;
  text-align: left;
}
h3 {
  color: #313a41;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: bold;
  color: #313a41;
}
h5 {
  font-weight: 500;
}
p {
  font-size: 16px;
  margin-top: 10px;
}
.header-background {
  position: relative;
  background-image: url("../images/banner2.jpg");
  background-size: contain;
  background-position: center;
  height: 250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;

  background-color: #ddd;
}

.header-background h1 {
  color: white;
  font-size: 3em;
  z-index: 2;
  position: relative;
  padding-left: 80px;
  /* animation: fadeIn 0.5s ease-in-out; */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 80px;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 80px;
}
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon div {
  width: 30px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: 0.3s;
}
/* Navigation Menu */
ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding: 0;
  margin: 0;
  text-align: left;
}

ul li {
  position: relative;
}

ul li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  padding: 10px 15px;
  transition: color 0.3s ease-in-out;
}

ul li a:hover {
  color: #000066;
}

li.active::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  background-color: #000066;
  left: 0;
  bottom: -20px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  animation: appear 0.2s linear;
}
li.no-underline::after {
  display: none !important;
}
.nav li:last-child a:hover {
  background-color: #a2daf9;
  color: black !important;
  transition: background-color 0.3s, color 0.3s;
}

@keyframes appear {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

header {
  position: relative;
  background-image: url("../images/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: auto;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
}

header .content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px 80px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.header-paragraph {
  font-size: 1.3rem;
  color: white;
}
.content h1,
.header-paragraph,
.get_started {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 1s ease-in forwards;
}

.header-paragraph {
  animation-delay: 0.5s;
}
.get_started {
  animation-delay: 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header p {
  margin-bottom: 20px;
  font-weight: 100;
}
.about-us-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
  gap: 30px;
}
.content h2 {
  margin-bottom: 15px;
}
section {
  background-color: #ffffff;
  padding: 60px 80px;
}
.homeservices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 30px;
  gap: 20px;
  text-align: center;
}

.sliders {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  overflow: hidden;
}

.row {
  display: flex;
  animation: scroll 40s linear infinite;
  flex-wrap: nowrap;
}

.column {
  flex: 0 0 auto;
  width: clamp(120px, 15vw, 200px); /* Responsive column width */
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.column img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.menu-icon {
  display: none;
}

.collaboration {
  padding: 60px 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(../images/banner2.jpg);
  background-size: contain;
  /* background-color: #262674; */
  height: 150px;
  gap: 120px;
}

.collabcontent h1,
.collabcontent p {
  color: white;
}

.rightcontent {
  align-self: center;
}
footer {
  padding: 20px 80px;
}
.footercontent {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  color: #2e3192;
}

.footercontent h5 {
  font-size: 18px;
  padding-left: 15px;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  list-style: none;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px !important;
}

footer li {
  text-align: left;
  width: 100%;
  list-style: none;
}

footer li a {
  text-decoration: none;
  color: #595aa3;
  font-size: 16px;
  transition: color 0.3s ease;
}

footer li a:hover {
  color: #1d3b6e;
  text-decoration: underline;
}

.footer-links-contact {
  display: flex;
  flex-direction: column;
}

.location,
.Phone,
.Email {
  display: flex;
  /* align-items: center; */
  gap: 10px;
}

.copyright {
  text-align: center;
  padding: 10px 0;
  border-top: 3px solid #f1f1f1;
  font-size: 14px;
  /* color: #666;          */
}

/* About us page */

.company-overview {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.company-images {
  flex: 1;
  /* display: flex;
  justify-content: center; */
}

.company-images img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.about-company-text {
  flex: 1;
  text-align: justify;
  align-content: center;
  justify-content: center;
}
.team-photo-column {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.team-photo-column:nth-child(2) {
  padding-top: 50px;
}

.team-photo-column img {
  height: 100px;
  width: 150px;
  border-radius: 20px;
  object-fit: contain;
}
.mission-vision-section {
  display: flex;
  gap: 6%;
  /* display: grid;
  grid-template-columns: 1fr 1fr;  */
  align-items: center;
}

.vision-mission-image {
  display: flex;
  justify-content: flex-start;
}

.vision-mission-image img {
  height: 100%;
  width: 100%;
  max-width: fit-content;
  object-fit: cover;
}

.grid-container-mission-vision {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.grid-card-mission-vision {
  width: 100%;
  max-width: 400px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 0px 15px #a2daf9;
  text-align: justify;
  padding: 20px 40px;
}
.grid-card-mission-vision h1 {
  text-align: center;
}
h2 {
  font-size: 26px;
  color: #1d3b6e;
  font-weight: bold;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* Right Side: Image */
.mission-vision-image {
  width: 50%;
  display: flex;
  justify-content: flex-start;
}

.vision-mission-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

h2 {
  font-size: 24px;
  color: #1d3b6e;
  font-weight: bold;
}

p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
}

hr {
  border: 0.5px solid #e0e0e0;
  margin: 20px 0;
}

.hidden {
  display: none;
}
.assabetimage {
  height: auto;
  width: 100%;
}
.assabetimage img {
  width: 100%;
  object-fit: cover;
}
.assabet-quote {
  font-size: 20px;
  line-height: 35px;
}
.assabet-section h3 {
  flex: 1;
  text-align: justify;
}

.team-grid {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: auto;
  gap: 50px;
}
.team-member-image {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  padding: 30px 0;
}
.team-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 230px;
  width: 100%;
}

.team-card img {
  width: 100%;
  border-radius: 10px;
  height: 220px;
  object-fit: cover;
}

.team-card h3,
.team-card p {
  margin: 8px 0;
}

.service-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 60px;
}

.service-content {
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  height: 100%;
  text-wrap: balance;
}

.services {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Service Items */
.service-items {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.service-items img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

/* .serviceimage {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
} */
.area-section-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.homeservicescontainer {
  display: flex;
  justify-content: center;
  width: auto;
  height: auto;
  gap: 20px;

  /* transition: transform 0.3s ease-in-out; */
}

/* Careers */
.careers-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* margin-top: 50px; */
}

.content {
  flex: 1;
}

.career-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.career-image img {
  width: 100%;
  max-width: 400px;
  height: 300px;
}
/* .card {
  background-color: white;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
} */

.career-div {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.career-container {
  text-align: left;
}

/* Contact us Page */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  /* gap: 40px; */
}
label {
  /* font-weight: bold; */
  font-weight: 500;
  display: block;
  margin-top: 10px;
}
input {
  width: 500px;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
textarea {
  width: 500px;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 150px;
}

.contact-details {
  margin-top: 30px;
}
.icon {
  /* background-color: #3f2e97; */
  /* color: white; */
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}
.icon-image {
  /* background-color: #3f2e97; */
  /* color: white; */
  width: 50px;
  height: 50px;
  display: flex;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  margin-bottom: 12px;
}
.area-icon-image {
  width: 170px;
  height: 100px;
  display: flex;
  align-self: center;
  justify-content: center;
}

.area-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contacticon {
  background-color: #3f2e97;
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}
.info h3 {
  /* margin-left: 30px; */
  font-size: 18px;
  color: #3f2e97;
}

.info p {
  margin: 5px 0 0;
  color: #333;
  font-size: 14px;
}

.contactgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.social-container {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

h2 {
  font-size: 24px;
  color: #000;
  font-weight: bold;
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 5px;
  line-height: 3;
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.facebook {
  background-color: #1877f2;
}

.linkedin {
  background-color: #0077b5;
}

.instagram {
  background: linear-gradient(45deg, #fccc63, #bc1888, #e1306c);
}

.social-icon-footer {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

/* Responsiveness */
@media (max-width: 768px) {
  section {
    padding: 20px 40px !important;
  }
  .menu-icon {
    display: flex;
    position: fixed;
    /* top: 15px; */
    right: 50px;
    z-index: 1100;
    cursor: pointer;
    margin-bottom: 20px;
    margin-left: 20px;
  }

  .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    background: white;
    width: 200px;
    height: 100vh;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    z-index: 1000;
    overflow-y: auto;
    padding: 70px 0; /* Adding some padding at the top */
    align-items: flex-start;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .nav ul {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav li {
    text-align: center;
    padding: 15px 0;
    width: 100%;
    list-style: none;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav li:first-child {
    margin-top: 20px;
  }

  header {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
  }

  header .content {
    max-width: 100%;
    text-align: center;
  }
  /* About us Page responsiveness */

  .header-background {
    width: 100%;
    background-size: cover;
  }
  .about-us-mission-vision-class {
    flex-direction: column;
  }

  .mission-vision-content,
  .mission-vision-image {
    width: 100%;
  }

  .mission-vision-image img {
    height: 300px;
    object-fit: cover;
  }
  /* Services Section */
  .homeservices {
    grid-template-columns: repeat(2, auto);
  }

  .service-card {
    padding: 20px;
    /* width: 100px; */
  }
  .service-card h3 {
    font-size: 1rem;
  }

  /* Client Slider */
  .sliders {
    height: 120px;
  }

  .sliders .row {
    gap: 15px;
  }

  .sliders .column img {
    height: 150px;
    width: auto;
  }
  .header-background img {
    background-size: cover;
    /* Light gray fallback color */
  }

  .service-container {
    flex-direction: column;
    text-align: left;
  }

  .service-container {
    grid-template-columns: 1fr !important;
    text-align: left;
  }

  .services {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .area-section-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .homeservicescontainer {
    max-width: 100%;
  }
  .card {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .card:hover {
    box-shadow: 0px 10px 15px rgba(5, 77, 150, 0.2);
  }
  /* Career Page Responsiveness */
  .careers-section {
    display: flex;
    /* align-items: ; */
    /* gap: 30px; */
  }

  .content {
    max-width: 100%;
    text-align: left;
  }

  .career-div {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;

    /* width: 100px; */
  }

  .career-container {
    /* padding: 15px; */
    /* width: 100%; */
  }

  .career-container h4 {
    font-size: 18px;
  }

  .career-container p {
    font-size: 13px;
  }
  /* Contact Page Responsiveness */
  /* .contact-container {
    flex-direction: column; 
    align-items: center;
  } */

  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  input,
  textarea {
    width: 95%;
    max-width: 100%;
  }

  .contact-form,
  .contact-details {
    width: 100%;
  }

  .contactgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .info h3 {
    font-size: 16px;
  }

  .info p {
    font-size: 14px;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icon {
    font-size: 20px;
  }
  /* Footer Responsiveness */
  .footercontent {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .company,
  .Areas,
  .footer-links,
  .logo {
    flex: 1 1 100%;
    text-align: left;
    margin-bottom: 10px;
    padding: 5px;
  }
  .footer-links-contact {
    align-items: left;
  }

  .location,
  .Phone,
  .Email {
    justify-content: left;
    text-align: left;
  }

  .copyright {
    font-size: 14px;
    padding-top: 10px;
  }
  .about-company-text {
    font-size: 14px;
  }

  .team-photo-column {
    flex-direction: column;
    align-items: center;
  }

  /* Collaboration Section Responsiveness */
  .collaboration {
    flex-direction: column;
    text-align: left;
    gap: 5px;
    height: 200px;
    width: fit-content;
  }

  .rightcontent {
    width: 100%;
    justify-content: center;
  }

  .secondarybtn {
    align-self: center;
    padding: 12px 30px;
  }
}
@media (max-width: 600px) {
  section,
  .collaboration,
  footer,
  .navbar {
    padding: 20px 40px !important;
  }

  .secondarybtn__get_started {
    padding: 6px 3vw;
    font-size: 0.85rem;
  }
  h2 {
    text-align: center !important;
    font-size: 32px !important;
    color: #002147;
    padding: 0 !important;
    margin-bottom: 15px !important;
  }
  .header-background h1 {
    padding: 0px !important;
    text-align: center !important;
  }
  .menu-icon {
    display: flex;
    position: fixed;
    right: 20px;
    z-index: 1100;
    cursor: pointer;
    margin-bottom: 15px;
    /* margin-left: 10px; */
  }

  .nav {
    width: 180px;
    padding: 100px 0;
  }

  .nav li {
    padding: 10px;
    text-align: right;
    /* padding: 12px 0; */
  }

  .homeservices {
    display: flex;
    flex-direction: column;
  }
  .grid-container-mission-vision {
    width: 100%;
    padding: 0;
  }

  .grid-card-mission-vision {
    width: 100%;
    max-width: 100% !important;
    padding: 15px 20px !important;
    box-sizing: border-box;
  }

  .vision-mission-image img {
    margin-top: 20px;
    width: 100%;
    object-fit: contain;
  }

  .homeservices {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card {
    background-color: white;
    padding: 15px;
    gap: 24px !important;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .card:hover {
    box-shadow: 0px 10px 15px rgba(5, 77, 150, 0.2);
  }
  .h3 {
    font-size: 0.6rem !important;
  }

  .sliders {
    height: 150px;
  }

  .column img {
    height: 150px;
    width: 150px;
    padding: 15px;
    align-items: center;
  }

  .company-overview,
  .mission-vision-section,
  .careers-section,
  .footercontent {
    flex-direction: column;
    gap: 10px;
  }

  .team-grid {
    gap: 20px;
  }

  .team-member-image {
    gap: 40px;
    padding: 20px 0;
  }

  .team-card {
    max-width: 280px;
    /* padding: 10px; */
  }

  .team-card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
  }

  .service-content {
    order: -1;
    text-align: center;
  }

  .service-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* padding: 0 15px; */
  }

  .service-content {
    order: -1;
    text-align: center;
  }

  .services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .area-section-container,
  .career-div,
  .contactgrid {
    grid-template-columns: 1fr !important;
  }
  .collaboration {
    height: auto;
  }
  .rightcontent {
    margin-top: 20px;
  }
  /* {
    grid-template-columns: 1fr;
  } */

  .contacticon {
    font-size: 20px;
  }

  .social-icon {
    font-size: 18px;
  }

  .footer-links-contact {
    text-align: left;
  }

  .copyright,
  .about-company-text {
    font-size: 12px;
  }
}
