@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  padding: 40px 0;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* NAVBAR START */
.navbar {
  width: 1240px;
  height: 80px;
  padding: 0px 30px;
  margin: auto;
  background: #fff;
  color: #1c222b;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 1;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.logo {
  font-weight: 700;
  width: 162px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.nav-links a:hover {
  color: #0fb9e2;
}

.navbar button {
  background: #111;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar button:hover {
  background: #0fb9e2;
  font-size: 13.5px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1000;
  list-style: none;
  text-align: left;
  transition: all 0.3s ease-in;
}

.dropdown-content li a {
  color: #333;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease-in;
  white-space: nowrap;
}

.dropdown-content li a:hover {
  background-color: #f0f6fa;
  color: #0da8d1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* NAVBAR END */

/* ABOUT START */
.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  margin-bottom: 60px;
}

.about-text {
  text-align: left;
}

.main-content {
  font-size: 18px;
  color: #2d3643;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 400;
  text-align: justify;
}

.about-quote {
  background: #f5f7f9;
  padding: 20px 24px;
  font-size: 17px;
  border-radius: 21px;
  color: #333;
  text-align: center;
  line-height: 30px;
  font-weight: 400;
  margin-top: 20px;
}

.about-right {
  position: relative;
  width: fit-content;
  justify-self: end;
}

.about-right::after {
  content: "";
  position: absolute;
  top: -17px;
  right: -22px;
  width: 96%;
  height: 95%;
  background: linear-gradient(130.92deg, #1e3361 19.04%, #101b33 100.79%);
  border-radius: 19px;
  z-index: 0;
}

.about-right img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.section-heading {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  color: #0c0c0c;
  margin-bottom: 80px;
  margin-top: 45px;
}

/* ABOUT END */

/* EXPERIENCE START */

/* .experience-banner {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.exp-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(to right, rgba(6, 14, 31, 0.2) 0%, #060e1f 118%),
    url("../images/experience.svg");
  background-size: cover;
  background-position: center;
  padding: 0 60px;
}

.exp-content {
  max-width: 550px;
  color: #ffffff;
}

.exp-content h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.exp-content h2 span {
  color: #49c5e0;
}

.exp-content p {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
} */

/* EXPERIENCE END */

/* TEAM SECTION */

.team-section {
  padding: 40px 6px;
  background: radial-gradient(
    68.68% 144.64% at 22.57% 15.78%,
    rgba(231, 238, 253, 0) 0%,
    #e7eefd 100%
  );
}

.team-section h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* ===== IMAGE ===== */
.team-card img {
  width: 30%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* ===== CONTENT ===== */
.team-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-content h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 0;
  color: #000;
}

.team-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  max-width: 420px;
}

.team-content .linkedin {
  color: #0077b5;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.team-content .linkedin span {
  font-size: 18px;
  line-height: 1;
}

.brand-logos {
  margin-top: 10px;
}

.brand-logos img {
  width: 70%;
  height: auto;
  object-fit: contain;
}

/* Slider Container */
.team-slider {
  max-width: 1240px;
  margin: auto;
  overflow: hidden;
  padding: 20px 15px;
  position: relative;
}

.team-wrapper {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.team-card {
  flex: 0 0 550px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 17px;
  border-radius: 12px;
  gap: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-prev-btn,
.team-next-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  color: #000;
  font-size: 18px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}


.team-prev-btn { 
  left: 0px; 
}
.team-next-btn { 
  right: 0px; 
}

.team-prev-btn:hover,
.team-next-btn:hover {
  background: #1e3361;
  color: #fff;
}

/* TEAM SECTION END */

/* CLIENT BASE START */
#client-base {
  overflow: hidden;
  padding: 0px 8%;
  background-color: #fff;
  margin: 65px auto;
  text-align: center;
}
.clientBase-heading {
  margin-top: 0;
  font-size: 48px;
  font-weight: 600;
}
.client-map {
  width: 90%;
  height: auto;
  margin: 70px auto;
  display: block;
}

/* work  */
.work-culture {
  background: #fff;
  padding: 80px 20px 100px;
  text-align: center;
}

.work-culture h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 30px;
}

.work-culture p {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.9;
  color: #222;
}

/* TECHNOLOGY SECTION */

.technology-section {
  background: radial-gradient(
    68.68% 144.64% at 22.57% 15.78%,
    rgba(231, 238, 253, 0) 0%,
    #e7eefd 100%
  );
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.tech-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
}

.tech-title {
  font-size: 48px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 50px;
  line-height: 112%;
}

.scroller-container {
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  padding: 10px 0;
}

.scroller-track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.tech-img {
  width: 160px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 8px;
  object-fit: contain;
  padding: 6px;
  flex-shrink: 0;

  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

@keyframes scrollRtoL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollLtoR {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.animate-r-to-l {
  animation: scrollRtoL 30s linear infinite;
}

.animate-l-to-r {
  animation: scrollLtoR 30s linear infinite;
}

/* JOIN US SECTION */

.join-us {
  background: #f7f7f7;
  padding: 90px 20px 30px 20px;
  text-align: center;
}

.join-us h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 25px;
}

.join-us h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.join-us p {
  font-size: 17px;
  color: #333;
  margin-bottom: 35px;
}

.apply-btn {
  display: inline-block;
  background: #1e3361;
  color: #fff;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #0073b5;
}

/*Employee Testimonials Section  */
.employee-section {
  padding: 60px 20px;
  background: #f7f8fc;
  background: radial-gradient(
    68.68% 144.64% at 22.57% 15.78%,
    rgba(231, 238, 253, 0) 0%,
    #e7eefd 100%
  );
}

.employee-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 35px;
  font-weight: 600;
}

.employee-slider-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  position: relative;
  padding:0 10px;
}

.slider-viewport {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  padding: 2px 60px
}

.employee-card {
  flex: 0 0 500px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin: 0 10px;
}

.employee-card .testimonial {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  background: #f8f9fa;
  height: 198px;
  padding: 20px 30px;
}

.emp-details {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0px 18px 18px 18px;
}

.emp-details img {
  width: 15%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

.emp-details h4 {
  font-size: 18px;
}

.emp-details span {
  font-size: 14px;
  color: #777;
}

/* Buttons */
.slider-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  color: #000;
  font-size: 18px;
  cursor: pointer;
}
/* 
.slider-btn:hover {
  background: #1e3361;
  color: #fff;
} */

/* FOOTER START */

#main-footer {
  background: #f9fbfd;
  padding:70px 9% 30px;
  color: #111;
  /*margin-top: 98px;*/
  margin-bottom: -34px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col li:hover {
  color: #0fb9e2;
}

.footer-col p,
.footer-col li {
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
  cursor: pointer;
}

.footer-logo {
  width: 160px;
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item p:hover {
  color: #0fb9e2;
}

.social-links img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.social-links img:hover {
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #252525;
}

.flag-img {
  width: 16px;
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
}

.contact-block strong {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-links a {
  color: #070707;
  font-size: 18px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #555;
}

/* FOOTER END */
