* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 375px;
}


/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
  padding: 10px;
}

.nav-menu a.active {
  color: #3B4094;
  /* Change to your primary color */
  border-bottom: 2px solid #3B4094;
  font-weight: 600;
}

.nav-container {
  width: 100%;
  padding: 5px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu {
  display: flex;
  gap: 35px;
  transition: max-height 0.7s ease-in-out;
}

.nav-menu a {
  color: #3C3C3C;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 14px;
  transition: max-height 0.7s ease-in-out;
}

.nav-menu a:hover {
  color: #3B4094;
}

.nav-btn {
  background: #67b1ee;
  padding: 8px 30px;
  border-radius: 20px;
  text-transform: uppercase;
  color: #3B4094;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #3B4094;
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #3C3C3C;

  margin: 4px 0;
}

@media (max-width: 930px) {

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #ffffff;
    width: 100%;

    flex-direction: column;
    align-items: center;

    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
  }

  .nav-menu.active {
    max-height: 300px;
    padding: 20px 0;
  }

  .nav-btn {
    display: none;
  }

  .hamburger {
    display: flex;
    color: #3C3C3C !important;
  }

  .logo img {
    height: 50px;
  }

}

/* ===== HERO BANNER ===== */

.hero-wrapper {
  padding: 10px 2%;
  position: relative;
}


.hero-banner {
  position: relative;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;

  background:
    linear-gradient(to right,
      rgba(217, 217, 217, 1),
      rgba(166, 166, 166, 0.31),
      rgba(115, 115, 115, 0)),
    url("./Images/hero_image.jpg") center/cover no-repeat;
  /* url("./Images/Hero Image.jfif") center/cover no-repeat; */

  display: flex;
  align-items: center;
  padding: 60px;
  animation: heroFade 1.2s ease forwards;
}

.hero-content {
  max-width: 520px;
  animation: slideLeft 1s ease forwards;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3B4094;
}

.hero-content p {
  font-size: 15px;
  color: #4C4C4C;
  line-height: 1.6;
  margin-bottom: 25px;

}

.hero-btn {
  background: #67b1ee;
  padding: 8px 30px;
  border-radius: 20px;
  text-transform: uppercase;
  color: #3B4094;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-2px);
  background: #3B4094;
  color: white;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;

  max-width: 1100px;
  margin: -60px auto 0;
  padding: 0 20px;

  animation: slideUp 1.2s ease forwards;
}

.hero-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}

.hero-card:hover {
  transform: translateY(-6px);
}

.hero-card h4 {
  font-size: 18px;
  margin-left: 25px;
  margin-top: 9px;
}

.hero-card p {
  font-size: 14px;
  color: #666;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #3B4094;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.icon-circle i {
  color: aqua;
  font-size: 20px;

}



@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 992px) {

  .hero-banner {
    padding: 40px;
    height: auto;

    background:
    linear-gradient(to right,
      rgba(217, 217, 217, 1),
      rgba(217, 217, 217, 1),
      rgba(255, 255, 255, 0.31)),
    url("./Images/hero_image.jpg") left/cover no-repeat;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    /* font-weight: 700; */
  }

  .hero-cards {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {

  .hero-wrapper {
    padding: 20px 15px;
  }

  .hero-banner {
    border-radius: 14px;
    padding: 30px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

/* About Us Section */

.about-section {
  padding: 30px 3%;
}

.about-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}


.about-title {
  font-size: 36px;
  font-weight: 700;
  color: #3B4094;
  margin-bottom: 20px;
}


.about-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #7E97DC;
}

.primary-text {
  color: #7E97DC;
}

.secondary-text {
  color: #4C4C4C;
}


.about-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease;
  opacity: 0;
  color: #4C4C4C;
}

.about-more-content.show {
  max-height: 500px;
  opacity: 1;
}

/* Button */

.about-btn-wrapper {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.about-btn {
  background: #67b1ee;
  padding: 8px 30px;
  border-radius: 20px;
  text-transform: uppercase;
  color: #3B4094;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
  border: none;
}

.about-btn:hover {
  transform: translateY(-2px);
  background: #3B4094;
  color: white;
}



@media (max-width: 768px) {

  .about-section {
    padding: 0px 20px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 14px;
  }
}

/* Why you choose us section */

.image-card-section {
  padding: 50px 2%;
}

.image-card {
  transition: all 0.3s ease;
}

.image-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

.image-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #000;
}

.image-card p {
  font-size: 16px;
  color: #737373;
  line-height: 1.5;
}

.image-card:hover {
  transform: translateY(-6px);
}

@media (max-width: 992px) {
  .image-card-section {
    padding: 0px 2%;
  }
}

@media (max-width: 768px) {
  .image-card img {
    height: 200px;
  }
}

.reveal-img {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.reveal-img.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

.image-card {
  padding: 10px;
}

.image-card img {
  width: 100%;
  border-radius: 16px;
}

.card-content {
  margin-top: 12px;
}

/* Stat section */

.stats-section {
  width: 100%;
  background: #3B4094;
  padding: 50px 0;
}

.spec-title {
  font-size: 36px;
  font-weight: 700;
  color: #3B4094;
  margin-top: 50px;
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center;
}

.stats-container {
  max-width: 1500px;
  margin: auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box {
  color: #ffffff;
}

.stat-number {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-number::after {
  content: "+";
  margin-left: 4px;
  font-size: 0.9em;
  font-weight: 600;
}

.stat-label {
  font-size: 22px;
  font-weight: 400;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 40px;
    gap: 20px;
    align-items: center;
  }

  .spec-title {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;

  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .stat-number {
    font-size: 38px;
  }
}


/* product card */

.carousel-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  margin-top: 100px;
}

.carousel-title {
  font-size: 36px;
  font-weight: 700;
  color: #3B4094;
  margin-bottom: 30px;
  margin-top: 40px;
  text-align: center;
}

.carousel-track {
  display: flex;
  gap: 21px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin-bottom: 20px;
  /* Space between cards and the button line */
  padding: 15px 5px;
  /* background: red; */
}

/* Responsive Card Widths */
.card {
  flex: 0 0 calc(32.333% - 3px);
  /* Desktop: 3 cards */
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 7px #3B4094;
  overflow: hidden;
}

.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content-new {
  padding: 20px;
  background-color: #F5F5F5;
  margin-top: 0px !important;
}

.product-heading {
  font-size: 19px;
  color: #000000;
}

.product-text {
  font-size: 17px;
  color: #737373;
}

/* The Bottom Line Alignment */
.bottom-controls {
  display: flex;
  justify-content: flex-end;
  /* This pushes the button to the END of the line */
  width: 100%;
}

.arrow-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* Rounded circle */
  border: none;
  background: #67b1ee;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.arrow-btn:hover {
  background: #3B4094;
  color: white;
}

@media (max-width: 1024px) {
  .card {
    flex: 0 0 calc(50% - 5px);
  }

  .carousel-track {
    overflow-x: auto;
  }

}

@media (max-width: 600px) {
  .card {
    flex: 0 0 100%;
  }
}


/* ===== LOCATIONS ===== */

.location-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #3B4094;
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 990px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;

  }

  .carousel-title {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: center;
  }
}

.location-text {
  color: #737373;
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  /* Vertical spacing */
  column-gap: 70px;
}

.location-card {
  position: relative;
  padding: 25px;
  border-radius: 12px;
  border-top: 1px solid #7E97DC;
  border-right: 1px solid #7E97DC;
  border-bottom: 1px solid #7E97DC;
  border-left: 7px solid #7E97DC;
  background: #fff;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.location-card.show {
  opacity: 1;
  transform: translateY(0);
}

.location-card h4 {
  margin-bottom: 8px;
  font-size: 18px;
  color: #000000;
  font-weight: 600;
}

.location-card p {
  font-size: 16px;
  color: #737373;
  margin-bottom: 0px !important;
}

.location-card span {
  font-size: 16px;
  color: #737373;

}

.map-icon {
  position: absolute;
  top: 21px;
  right: 21px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #67b1ee;
  color: #3B4094;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.map-icon:hover {
  transform: scale(1.1);
  background: #3B4094;
  color: #fff;
}


@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== LOCATIONS ===== */

.agency-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  margin-top: 100px;
}

.agency-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.agency-left {
  padding-left: 10px;
  padding-right: 10px;
}

/* LEFT SIDE */
.agency-left p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.agency-left img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* RIGHT SIDE */
.agency-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* BLOCK */
.agency-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 50px;
}

/* ICON */
.icon-circle {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #3B4094;
  color: #67b1ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* CONTENT */
.block-content h4 {
  margin-bottom: 8px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.block-content ul {
  list-style: none;
  padding-left: 18px;
  margin: 0;
}

.block-content li {
  font-size: 15px;
  color: #737373;
  margin-bottom: 6px;
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 990px) {

  .agency-grid {
    grid-template-columns: 1fr;
  }

  .agency-left {
    padding-left: 0px;
    padding-right: 0px;
  }

  .agency-left img {
    margin-top: 15px;

  }

  .agency-block {
    margin-bottom: 10px;
  }

  .agency-section {
    margin-top: 50px;
  }

}


/* ===== Footer ===== */

.site-footer {
  background: #3B4094;
  color: #fff;
  padding: 60px clamp(20px, 6vw, 100px);
  padding-bottom: 1px !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-logo {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-tagline {
  font-size: 22px;
  font-weight: 600;
  color: #cbd5e1;
}


.footer-col h4 {
  margin-bottom: 14px;
  font-size: 18px;
  letter-spacing: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 8px;
  cursor: pointer;
}

.footer-col p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.social-icons {
  margin-top: 17px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #6b70c5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
}

/* Horizontal Line */
.footer-bottom hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.866);
  margin-bottom: 20px;
}

/* Copyright Text */
.footer-bottom p {
  font-size: 13px;
  color: #cbd5e1;
}

.footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 400;
}

.footer-col a:hover {
  color: #ffffff;
}


@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}