@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 {
  background: #f8faff;
  color: #111;
}

/* --- 1. The Grid Pattern --- */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -2;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
body::after {
  content: "";
  position: fixed;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 86, 179, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.navbar {
  width: 1240px;
  height: 80px;
  padding: 0px 30px;
  margin: auto;
  background: #ffffff;
  color: #1c222b;
  border-radius: 16px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 1;
}

.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: #222;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.nav-links a:hover {
  color: #0fb9e2;
}

.navbar button {
  background: #111;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar button:hover {
  background: #0fb9e2;
  font-size: 13.5px;
}

/* Navbar Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  display: flex;
  align-items: center;
  /* gap: 6px;  */
}

.dropbtn .arrow {
  font-size: 25px;
  transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.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 {
  width: 100%;
  margin: 0;
}

.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;
}

.container {
  width: 1200px;
  margin: 60px auto 0;
}

.hero {
  height: 560px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 100px;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 52px;
  margin-bottom: 18px;
}

.hero-overlay p {
  font-size: 18px;
  max-width: 720px;
  line-height: 1.7;
}

.section {
  margin-top: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.section img {
  width: 90%;
  /* height: 70%; */
  height: auto;
  object-fit: contain;
  border-radius: 26px;
  /* display: block; */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.section h2 {
  font-size: 36px;
  color: #004a99;
  margin-bottom: 22px;
}

.section p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #333;
}

.section ul {
  padding-left: 20px;
}

.section li {
  font-size: 17px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.stats {
  margin-top: 120px;
  background: #fff;
  border-radius: 30px;
  padding: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 38px;
  color: #0fb9e2;
  margin-bottom: 4px;
}

.stat p {
  font-size: 16px;
  color: #555;
}

.cta {
  width: 1240px;
  margin: 120px auto 0;
  background: #004a99;
  border-radius: 26px;
  padding: 70px 80px;
  text-align: center;
  color: #fff;
  box-shadow: 0 14px 32px rgba(15, 185, 226, 0.22);
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.cta p {
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.cta button {
  background: #fff;
  color: #0056b3;
  border: none;
  padding: 14px 34px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
/* Clients Section */
#clients {
  padding: 40px 9%;
  background: white;
  text-align: center;
  margin-top: 90px;
}

#clients h2 {
  font-size: 48px;
  margin-bottom: 50px;
  line-height: 58px;
  font-weight: 600;
  margin-top: 41px;
}

.clients-wrapper {
  display: flex;
  gap: 40px;
  overflow-x: hidden;
  scroll-behavior: auto;
  padding-bottom: 10px;
}

.testimonial-card {
  /* background: var(--gradient-primary); */
  background: #f5f7f9;

  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  color: #1e3361;
  min-width: 838px;
  margin: 10px;
  user-select: none;
  -webkit-user-select: none;
  /* cursor: grab;   */
}

.testimonial-left img {
  width: 247px;
  height: 210px;
  border-radius: 11px;
  object-fit: cover;
  margin-bottom: 8px;
  gap: 20px;
  pointer-events: none;
  user-select: none;
}

.testimonial-card:active {
  cursor: grabbing;
}

.testimonial-left h4 {
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  color: black;
}

.testimonial-left span {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #1e3361;
}

.testimonial-content {
  text-align: left;
}

.testimonial-content p {
  font-size: 18px;
  color: #1e3361;
  line-height: 28px;
}

.testimonial-content {
  position: relative;
  padding: 40px;
  z-index: 1;
  overflow: hidden;
}

.testimonial-content::before,
.testimonial-content::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 146px;
  background-image: url(../images/quote.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
}

.testimonial-content::before {
  top: 10px;
  left: 10px;
}
.testimonial-content::after {
  bottom: 10px;
  right: 10px;
  transform: rotate(180deg);
}

.client-controls {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.client-controls button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid black;
  background: white;
  color: #1e3361;
  font-size: 18px;
  cursor: pointer;
}

.client-controls .next {
  background: #1e3361;
  color: white;
}

.clients-track,
.serve-track {
  display: flex;
  will-change: transform;
}

#main-footer {
  background: #f9fbfd;
  padding: 70px 9% 30px;
  color: #111;
  /*margin-top: 160px;*/
  margin-bottom: 0;
}

.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 {
  width: 36px;
  height: 36px;
}

.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;
}

.content-wrap {
  max-width: 520px;
}

.hero-overlay {
  padding: 0 120px;
}

.hero-overlay h1,
.hero-overlay p {
  max-width: 520px;
}

.section {
  gap: 80px;
}


