:root {
  --primary-color: white;
  --secondary-color: #22c55e;
  --bg-color: #f8fafc;
  --button-hover-background: #c4ac57;
  --text-color: rgb(57, 53, 54);
  --icon-bg: #0b1444;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  /* overflow-x: hidden; */
}

body {
  background-color: var(--primary-color);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-color);
  margin: 0;
  overflow-x: hidden;
}

/* NAVBAR */
/* .navbar-container{
  position: relative;
  position: sticky;
  top: 0;

} */
.topdiv {
  width: 100%;
  max-width: 1500px;
  margin: auto;
  background-color: var(--button-hover-background);
  min-width: 20px;
  text-align: center;
  color: white;
  padding: 10px;
  position: relative;
}
.topdiv1 {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-self: center;
  width: 70%;
  align-self: center;
  margin: auto;
}
.topdiv1 a {
  text-decoration: none;
  color: white;
}
.topdiv1-2{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.topdiv1-1, .topdiv1-2 div{
  margin: 5px;
}
.phoneimg {
  height: 1.2rem;
  margin-right: 0px;
}
.emailimg {
  height: 1rem;
}



/* //////////////////nav bar/////////////// */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 80px;
  /* margin: 15px 3.5%; */
  padding: 15px 3.5%;
  flex-wrap: wrap;
  position: relative;
  /* top: 0; */
  background-color: white;
  opacity: 0.9;
  z-index: 1000;
  border-bottom: 1px solid var(--button-hover-background);
  max-width: 1500px;
  margin: auto;
  position: sticky;
  top: 0;
}

.navbarlink {
  display: flex;
  flex-wrap: wrap;
  z-index: 1005;
}

.navbarlink a {
  font-size: 1.3rem;
  padding: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.navbarlink a:hover {
  background-color: var(--button-hover-background);
  border-radius: 5px;
  color: white;
  opacity: 1;
}
.hamburger {
  color: white;
  background-color: var(--button-hover-background);
  font-size: 2rem;
  margin-right: 10px;
  vertical-align: middle;
  padding: 5px;
  line-height: 1;
  display: none;
}

/* MID SECTION */
.box1 {
  margin: 10px 3.5%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.2rem;
  max-width: 1500px;
  margin: auto;
}

#lottie-icon {
  max-height: 600px;
  max-width: 600px;
}

/* SHADOW / GRADIENT */
.shadow-box {
  position: relative;
  /* transform: translateY(-100px); */
  margin-top: -100px;
  pointer-events: none;
  height: 200px;
  max-width: 1500px;
  margin: auto;
}

.shadow-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(196, 172, 87, 0.7));
  pointer-events: none;
  z-index: 1;
}

/* SERVICES SECTION */
.services {
  position: relative;
  padding: 20px 40px;
  margin-top: -100px;
}

.on-top {
  position: relative;
  z-index: 10;
}

.services-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* SERVICE CARD */
.service-card {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

/* ICON */
.icon {
  width: 64px;
  height: 64px;
  background: var(--icon-bg);
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.25s ease;
}

/* TEXT */
.service-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  transition: transform 0.25s ease;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
  transition: transform 0.25s ease;
}

/* LINK */
.service-card a {
  margin-top: 20px;
  color: var(--icon-bg);
  text-decoration: none;
  font-weight: 500;
}

/* HOVER EFFECT (NO CARD MOVE) */
.service-card:hover .icon,
.service-card:hover h3,
.service-card:hover p {
  transform: translateY(-6px);
}

/* ===== BOX3 LAYOUT ===== */
.box3 {
  display: flex;
  align-items: center; /* vertical center */
  /* justify-content: space-between; */
  gap: 60px;
  padding: 40px 40px;
  max-width: 1200px;
  margin: auto;
  /* background-color: rgb(245, 246, 248); */
  background-color: #2b2b2b;
  border-radius: 20px;
  text-align: center;
  color: #c4ac57;
}

/* LEFT ILLUSTRATION */
.box3-1 {
  flex: 1;
  max-width: 500px;
}

.box3-2 {
  flex: 1;
}
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
  .box3 {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .box3-1,
  .faq-section {
    max-width: 100%;
  }
}

/* ////////////TECH WE USE SECTION/////////////// */

/* SECTION */
.technologies {
  padding: 40px 20px;
  background: #fff;
}
.technologies h2 {
  margin-top: 0px;
}

.tech-title {
  text-align: center;
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

/* FLEX WRAPPER */
.tech-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: auto;
  justify-content: center;
}

/* CARD */
.tech-card {
  flex: 1 1 260px; /* 🔥 responsive cards */
  max-width: 280px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* ICON */
.tech-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* TEXT */
.tech-card h3 {
  font-size: 16px;
  margin: 0 0 6px;
}

.tech-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* MOBILE */
@media (max-width: 480px) {
  .tech-card {
    max-width: 100%;
  }
}

.footer {
  position: relative;
  background-color: var(--button-hover-background);
  padding: 50px 40px 50px 40px;
  /* overflow: hidden; */
  color: white;
  max-width: 1500px;
  margin: auto;
}
.footer a {
  text-decoration: none;
  color: white;
}
.footer-3 span {
  font-size: 1.2em;
  color: white;
}
.footer a:hover {
  color: #555;
}
/* Bird layer (decoration only) */
.footer-bird {
  position: absolute;
  /* inset: 0; */
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  pointer-events: none; /* 🔥 VERY IMPORTANT */
  /* display: flex;
  justify-content: center; */
  /* align-items: flex-end; */
  width: 100%;
}

/* Content layer */
.footer-content {
  position: relative;
  z-index: 2; /* above bird */
  display: flex;
  justify-content: space-between; /* 🔥 FLEXBOX */
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Footer columns */
.footer-1,
.footer-2,
.footer-3 {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.footer-1 p {
  margin-top: 0px;
}
.footer-2,
.footer-3 {
  align-items: center;
}

.footer h2,
.footer h3 {
  margin-top: 0;
}

/* Simple list styling */
.footer-2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-2 li {
  margin-bottom: 8px;
}
.address2 {
  margin-left: 125px;
}
.copyright {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  text-align: center;
  font-size: 0.5rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  /* .footer-bird{
    top:0;
  } */
}


/* ///////////MEDia Query Section ///////////////////// */

@media (max-width: 950px) {
  .backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    background-color: black;
    width: 100%;
    height: 100vh;
    opacity: 0.8;
    display: none;
  }
  .backdrop.active {
    display: block;
  }
  .navbar {
    margin: 15px 0px;
  }
  .navbarlink {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding-top: 80px;
    transition: left 0.8s ease;
    z-index: 1005;
    text-align: center;
    display: flex;
    min-height: 400px;
  }
  .navbarlink.active {
    left: 0;
  }
  .navbarlink a {
    font-size: 1.5rem;
    padding: 0.5rem;
    margin: 20px;
  }
  .hamburger {
    display: block;
  }
  .hamburger:active {
    color: black;
  }

  .box1 {
    flex-direction: column;
    margin: 10px 16px;
    text-align: center;
  }
  .box1-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .box1-1 li {
    text-align: center;
  }

  .box1-1 li::before {
    content: "- ";
  }

  #lottie-icon {
    max-width: 100%;
    height: auto;
  }

  .services {
    padding: 20px 16px;
  }

  .services-row {
    gap: 16px;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .shadow-gradient {
    width: 100%;
    left: 0;
    right: 0;
  }
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
  }

  .pricing-card.custom {
  border-style: dashed;
  background: #fafafa;
}

.custom-price {
  font-size: 18px;
  font-weight: 500;
  color: #666;
}

.actions.single {
  justify-content: center;
}

.actions.single .enquire {
  width: 100%;
}
