.footer {
  background-color: #fff;
  padding: 60px 40px;
  font-family: "Segoe UI", sans-serif;
  color: #000;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 101px;
  /* max-width: 1200px; */
  margin: 0 auto 50px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #0755e9;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  color: #000;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.nav-links a {
  background-color: transparent !important;
  outline: none !important;
}

.nav-links a:focus {
  background-color: transparent !important;
  outline: none !important;
}

.nav-links a:active {
  background-color: transparent !important;
}
.nav-links a {
  all: unset;
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 16px;
  display: inline-block;
}


.footer-column ul li:hover {
  color: #0755e9;
  cursor: pointer;
}

.footer-subscribe {
  text-align: center;
  margin-bottom: 40px;
}

.footer-subscribe p {
  font-size: 1rem;
  margin-bottom: 16px;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.subscribe-form input[type="email"] {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  min-width: 260px;
}

.subscribe-form button {
  padding: 12px 24px;
  background-color: #0755e9;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #000;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.footer-left,
.footer-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-left a {
  color: #000;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-left a:hover {
  color: #0755e9;
}

.footer-right a {
  color: #000;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #0755e9;
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .footer-left,
  .footer-right {
    justify-content: center;
  }

  .subscribe-form {
    flex-direction: column;
    align-items: center;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: white;
  overflow-x: hidden;
}
/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: left;
  text-align: left;
  padding: 10rem 40px;
  position: relative;
}
.hero-content {
  max-width: 600px;
  z-index: 10;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.15;
  font-weight: 300;
  margin-bottom: 20px;
}

.hero p {
  margin: 20px 0;
  font-size: 20px;
  line-height: 1.5;
}

.hero button {
  padding: 12px 30px;
  background-color: #0755e9;
  color: white;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.5s ease;
}

.hero button:hover {
  background-color: #000;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: black;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    padding: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero h1 {
    font-size: 36px;
  }
}
.services-section {
  background: #f9f9f9;
  padding: 60px 40px;
  position: relative;
  overflow: visible;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.services-title {
  font-size: 32px;
  font-weight: 700;
  color: #1c1c1c;
}

.services-all-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #0755e9;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 14px;
  color: white;
  text-decoration: none;
  transition: background-color 1s ease; /* only this */
}

.services-all-btn:hover {
  background-color: #000;
  color: #fff;
}

.services-all-btn .arrow {
  font-size: 18px;
}

/* Slider */
.services-slider {
  position: relative;
  padding-bottom: 40px;
}

.swiper-slide.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  max-width: 340px;
  min-width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.swiper-slide.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* Hover image */
.swiper-slide.service-card.bg-hover {
  background-color: #0b0b0b;
  color: white;
}

.swiper-slide.service-card.bg-hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://tkxel.com/wp-content/uploads/2023/12/engineering-card-bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.swiper-slide.service-card.bg-hover:hover::after {
  opacity: 1;
}

.service-icon {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.service-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
}

.service-link {
  z-index: 2;
  position: relative;
  padding: 12px 18px;
  background-color: #0755e9;
  color: #fff;

  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: background 0.3s ease;
}
.arow {
  margin-left: 10rem;
  font-size: 1rem;
}

.service-link .arow {
  display: inline-block; /* Required for transform to work */
  transition: transform 0.3s ease;
}

.service-link:hover .arow {
  transform: translateX(5px);
}

.service-link {
  transition: background-color 1s ease, transform 1s ease;
}

.service-link:hover {
  background-color: #000;
}

/* Icon bar & dot */
.dot-group {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bar {
  width: 30px;
  height: 10px;
  border-radius: 3px;
  background-color: #0755e9;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #0755e9;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  /* background: #151515; */
  /* color: black; */
  border-radius: 50%;
  width: 84px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.swiper-button-prev {
  left: -60px;
}

.swiper-button-next {
  right: -60px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  font-size: 20px;
  font-weight: bold;
  display: block;
  width: 20px;
  height: 20px;
  border-top: 2px solid black;
  border-right: 2px solid black;
  transform: rotate(224deg);
}

.swiper-button-next::after {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
html,
body {
  overflow-x: hidden;
}

.services-slider {
  max-width: 100%;
  overflow: hidden;
}

.services-slider .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.service-icon {
  position: relative;
  height: 30px;
  margin-bottom: 20px;
}

/* Dot & Bar */
.dot-group {
  display: flex;
  align-items: center;
  gap: 1px;
  transition: opacity 0.3s ease;
}

.bar {
  width: 40px;
  height: 8px;
  background-color: #0755e9;
  border-radius: 3px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 3px;
}
.hover-heading-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  overflow: hidden;
}

.hover-heading {
  font-size: 20px;
  font-weight: 600;
  color: #0755e9;
  position: relative;
  display: inline-block;
  background-image: linear-gradient(90deg, #000 0%, #000 100%);
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: background-image 0.6s ease, background-size 0.6s ease;
}

.service-card:hover .hover-heading {
  background-image: linear-gradient(90deg, #0755e9 0%, black 50%, #0755e9 100%);
  background-size: 200% 100%;
  background-position: right center;
}
.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
}

.services {
  background-color: #fff;
  /* max-width: 1200px; */
  margin: 0px auto;
  padding: 40px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 4px; */
  gap: 50px;
}

.text-column {
  flex: 1;
  padding-top: 30px;
}

.text-column h2 {
  font-size: 30px;
  color: black;
  margin-bottom: 16px;
}

.text-column p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.action-btn {
  margin-top: 25px;
  padding: 12px 22px;
  background: #0755e9;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  transition: background-color 1s ease, transform 1s ease;
}

.action-btn:hover {
  background: #000;
}

.cards-column {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 24px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  border-left: 4px solid transparent;
  position: relative;
}

.service-cards:hover {
  border-left: 4px solid #0755e9;
  background: #fbfaff;
}

.card-content {
  flex: 1;
}

.card-title {
  font-size: 17px;
  color: black;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-desc {
  font-size: 14px;
  color: #555;
}

.card-arrow {
  width: 32px;
  height: 32px;
  border: 1.5px solid #0755e9;
  background-color: #0755e9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-cards:hover .card-arrow {
  transform: translateX(6px);
}

.card-arrow::after {
  content: "→";
  font-size: 16px;
  color: white;
}

@media (max-width: 960px) {
  .services {
    flex-direction: column;
    gap: 30px;
  }
}



.impact-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  color: #000;
  align-items: stretch;
  /* max-width: 1300px; */
  /* margin: 0 auto; */
  padding: 60px 40px;
  /* margin-top: 1rem; */
  gap: 50px;
  position: relative;
}

.impact-left,
.impact-right {
  flex: 1 1 400px;
  /* padding: 0 20px; */
}

.impact-left {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px 60px;
}

.impact-stat {
  font-size: 42px;
  font-weight: 800;
  color: #111;
}

.impact-label {
  font-size: 15px;
  color: #000;
  margin-top: 6px;
}

.impact-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-heading {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 25px;
}

.impact-paragraph {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 550px;
}

.learn-link {
  font-size: 14px;
  color: #0755e9;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.learn-link:hover {
  border-bottom: 1px solid #0755e9;
}

.impact-section::before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  background-color: #ccc;
  transform: translateX(-50%);
}

@media (max-width: 945px) {
  .impact-section {
    /* flex-direction: column; */
    padding: 40px 40px;
  }

  .impact-section::before {
    display: none;
  }

  .impact-left {
    grid-template-columns: 1fr 1fr;
    /* gap: 30px 40px; */
  }

  .impact-heading {
    font-size: 28px;
  }

  .impact-paragraph {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .impact-left {
    /* grid-template-columns: 1fr; */
    text-align: center;
  }

  .impact-stat {
    font-size: 36px;
  }

  .impact-heading {
    text-align: center;
  }

  .impact-right {
    align-items: center;
  }
}

/* Partners Section */
.partners-section {
  text-align: center;
  background: #f9f9f9;
  color: #000;
  padding: 60px 20px;
}

.partners-heading {
  font-size: 26px;
  font-weight: 600;
  max-width: 860px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 60px;
}

.partners-logos img {
  height: 48px;
  max-width: 120px;
  object-fit: contain;
  /* opacity: 0.75; */
  /* filter: grayscale(100%); */
  transition: all 0.4s ease;
}

.partners-logos img:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: grayscale(20%);
}

/* Mobile & Tablet Responsive */
@media (max-width: 768px) {
  .partners-heading {
    font-size: 20px;
    padding: 0 10px;
  }

  .partners-logos {
    gap: 30px 40px;
  }

  .partners-logos img {
    height: 40px;
  }
}

.container2 {
  color: #000;
  background: #fff;
  padding: 60px 40px;
}

.container2 h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}

.insight-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  color: #000;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  max-width: 100%;
}

.insight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.insight-image {
  width: 100%;
  opacity: 1;
  aspect-ratio: 13 / 10;
  /* object-fit: cover; */
  border-bottom: 1px solid #eee;
}

.insight-content {
  padding: 24px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #444;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.8px;
}

.insight-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}

.insight-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

.read-more {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .container2 h2 {
    font-size: 2rem;
  }

  .insight-content {
    padding: 16px;
  }
}

.contact-section {
  /* background-color: #f7f9fc; */
  /* padding: 40px 40px; */

  font-family: "Segoe UI", sans-serif;
}

.contact-container {
  background-color: #f9f9f9;
  /* max-width: 1200px; */
  /* margin: 0px auto; */
  padding: 40px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 4px; */
  gap: 50px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #000;
}

.contact-info p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 30px;
}

.info-box {
  margin-bottom: 20px;
}

.info-box h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #111;
}

.info-box p,
.info-box a {
  color: #000;
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  resize: none;
}

.contact-form button {
  padding: 14px 28px;
  background-color: #0755e9;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  transition: background-color 1s ease, transform 1s ease;
}

.contact-form button:hover {
  background-color: #000;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: stretch; /* ✅ This disables center alignment */
  }
  .contact-form {
    padding: 30px 40px;
  }
}

.arows {
  font-size: 1rem;
  margin-left: 1rem;
}
.cta-section {
  background-color: #f9f9f9;
  padding: 100px 40px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-container p {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 40px;
}

.cta-button {
  background-color: #0755e9;
  color: #fff;
  padding: 14px 30px;
  font-size: 0.95rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  transition: background-color 1s ease, transform 1s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: #000;
}

@media (max-width: 600px) {
  .cta-container h2 {
    font-size: 2rem;
  }
  .cta-container p {
    font-size: 1rem;
  }
}

.reviews-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.reviews-section h2 {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 10px;
}

.reviews-section p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 40px;
}

.swiper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.swiper-slide {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.stars {
  color: #f9b017;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.reviewer {
  display: flex;
  align-items: center;
}

.reviewer img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
}

.reviewer-name {
  font-weight: bold;
  color: #222;
}

.review-meta {
  font-size: 0.85rem;
  color: #777;
}

.g-logo img {
  width: 24px;
  height: 24px;
}
.icon-google-review::before {
  content: "G"; /* Placeholder until real icon loads */
  font-weight: bold;
  color: orange;
  font-size: 24px;
  font-family: Arial, sans-serif;
}
.g-logo {
  font-size: 24px;
  color: orange;
}
