/* Services.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111827;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.logo img {
  width: 200px;
}

/* ================= NAVBAR ================= */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  /* backdrop-filter: blur(14px); */
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 30px;
  background: rgba(255, 255, 255, 0.37);
  padding: 14px 30px;
  border-radius: 50px;
  border: 1px solid #FFFFFF;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 400;
}

.nav-links .active {
  color: #ff5b2e;
}

.nav-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-btn {
  text-decoration: none;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

.contact-btn {
  background: #FFFFFF;
  text-decoration: none;
  color: #0A0A0A;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact-btn span {
  display: flex;
  align-items: center;
}

.mobile-menu {
  display: none;
}

/* ================= HERO ================= */

.hero-section {
  /* padding: 180px 0 260px; */
  overflow: hidden;
  position: relative;

  /* Background Image */
  background-image: url("asset/Bgimage.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 100vh;
  display: flex;
  align-items: center;

}


.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  /* max-width: 620px; */
  margin-top: 120px;
}

.hero-content h1 {
  font-size: 48px;
  color: rgba(41, 37, 36, 1);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-content h1 span {
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  color: rgba(79, 79, 79, 1);
  margin-bottom: 40px;

  font-weight: 500;
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn {
  background: rgba(41, 37, 36, 1);
  color: rgba(250, 250, 249, 1);
  text-decoration: none;
  padding: 6px 10px 6px 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
}

.primary-btn span {
  background: rgba(242, 85, 50, 1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondary-btn {
  background: rgba(255, 255, 255, 1);
  text-decoration: none;
  color: rgba(87, 83, 78, 1);
  border: 1px solid #ddd;
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
}




/* ================= SECTION TITLE ================= */

.section-title {
  margin-bottom: 40px;
}

.section-title span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(111, 112, 114, 1);
  display: block;
  margin-bottom: 8px;
}

.section-title h2 {
  color: rgba(16, 24, 40, 1);
  font-size: 32px;
  font-weight: 500;
}

/* ================= SERVICES ================= */

.services-section {
  padding: 80px 0 0px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  text-decoration: none;
}

.service-card {
  position: relative;
  min-height: 232px;
  padding: 28px 24px 34px;
  background: #F1F1F1;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.process-card:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

}

.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-link .service-card {
  transition: 0.3s ease;
}

.service-link:hover .service-card {
  transform: translateY(-4px);
}

.service-card img {
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  color: #101828;
  margin: 0 0 14px;
}

.service-card ul {
  padding-left: 18px;
}

.service-card ul li {
  font-size: 16px;
  line-height: 1.5;
  color: #4A5565;
  margin-bottom: 2px;
}

.arrow {
  position: absolute;
  right: 25px;
  bottom: 0px;
  color: #ff5b2e;
  font-size: 28px;
}

/* ================= WORK SECTION ================= */

.work-section {
  padding: 80px 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.work-box {
  min-height: 250px;
  padding: 16px;
  color: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work-box span {
  font-size: 20px;
  font-weight: 600;
}

.work-box p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 180px;
  width: 100%;
}

.purple {
  background: rgba(168, 141, 255, 1);
}

.blue {
  background: rgba(103, 135, 253, 1);
}

.green {
  background: rgba(63, 179, 178, 1);
}

.dark-blue {
  background: rgba(52, 135, 239, 1);
}

.gray {
  background: rgba(143, 144, 149, 1);
}

/* ================= PROCESS ================= */

.process-section {
  padding: 80px 0;
  background-image: url("asset/deliverBg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .process-section  .container
{

    background-image: url("asset/deliverBg.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

.process-section h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-card {

  padding: 24px;
  border-radius: 10px;
  /* border: 1px solid black; */

  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(245, 245, 245, 0.85) 50%,
      rgba(255, 255, 255, 0.95) 100%);

  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);

}

.process-card span {
  font-size: 64px;
  font-weight: 600;
  color: rgba(242, 85, 50, 1);
}

.process-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: rgba(26, 28, 30, 1);
}

.process-card p {
  color: rgba(64, 73, 69, 1);
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
}

/* ================= CTA ================= */

.cta-section {
  padding: 80px 0 40px 0px;
}

.cta-box {
  background-image: url("asset/orangeImage.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-content h2 {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 30px;
}

.cta-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  column-gap: 90px;
  margin-bottom: 30px;
  color: #fff;
}

.cta-list span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.white-btn {
  background: #FFFFFF;
  color: #111;
  padding: 8px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 40%;
}

/* ================= FINAL ================= */

.final-section {
  padding: 80px 0;
}

.final-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.small-text {
  color: #F25532;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.final-wrapper h2 {
  color: #292524;
  font-weight: 700;
  font-size: 48px;
  margin-top: 20px;
  line-height: 1.1;
}

.final-wrapper h2 span {
  display: block;
  color: #F25532;
  font-style: italic;
}

.final-wrapper .final-btns-test {
  margin-top: auto;
}

/* ================= FOOTER ================= */
.footer {
  background: #07142b;
  padding: 30px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top img {
  width: 180px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #b8bcc8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 20px;
}

.footer-bottom p {
  color: #8d93a1;
  font-size: 14px;
  font-weight: 400;
}


/* ================= RESPONSIVE ================= */

/* @media screen and (max-width:1200px) {

    .container {
        max-width: 960px;
    }

    .hero-wrapper,
    .cta-box,
    .final-wrapper {
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .final-wrapper h2 {
        font-size: 42px;
    }

    .cta-list {
        column-gap: 40px;
    }

    .nav-links {
        display: flex;
    }

    .nav-btns {
        display: flex;
    }

} */

/* ================= TABLET ================= */

@media screen and (max-width:992px) {

  .container {
    max-width: 720px;
  }

  .navbar {
    padding: 16px 0;
  }

  .nav-links {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 12px;

    flex-direction: column;
    gap: 18px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);

    transition: 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-btns {
    display: none;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    background: #fff;
    border-radius: 12px;

    font-size: 16px;
    cursor: pointer;
  }

  .contact-btn {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-wrapper,
  .cta-box,
  .final-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
    margin-top: 40px;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-list {
    grid-template-columns: 1fr;
    column-gap: 20px;
  }

  .cta-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .triangle img {
    max-width: 100%;
  }

  .final-wrapper h2 {
    font-size: 38px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

}

/* ================= MOBILE LARGE ================= */

@media screen and (max-width:768px) {

  .container {
    width: 92%;
  }

  .logo img {
    width: 130px;
  }

  .hero-section {
    padding: 100px 0 0px;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .services-section {
    padding: 70px 0 0px;
  }

  .cta-section {
    padding: 70px 0 0px;
  }

  .work-section,
  .process-section,

  .final-section {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    min-height: auto;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-box {
    min-height: 220px;
  }

  .work-box p {
    font-size: 18px;
  }

  .process-section h2 {
    font-size: 34px;
  }

  .process-card {
    padding: 20px;
  }

  .process-card span {
    font-size: 52px;
  }

  .cta-box {
    padding: 30px 24px;
  }

  .cta-content h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .cta-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .white-btn {
    width: 100%;
  }

  .final-wrapper {
    gap: 24px;
  }

  .final-wrapper h2 {
    font-size: 34px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-links {
    display: flex;
  }

  .nav-btns {
    display: flex;
  }

}

/* ================= MOBILE MEDIUM ================= */

@media screen and (max-width:480px) {

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .primary-btn,
  .secondary-btn,
  .white-btn {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title span {
    font-size: 11px;
    line-height: 1.6;
  }

  .service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card ul li {
    font-size: 13px;
  }

  .work-box {
    min-height: 200px;
  }

  .work-box p {
    font-size: 16px;
  }

  .process-section h2 {
    font-size: 28px;
  }

  .process-card h3 {
    font-size: 18px;
  }

  .process-card p {
    line-height: 1.7;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-list span {
    font-size: 14px;
    line-height: 1.6;
  }

  .final-wrapper h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .footer-top img {
    width: 140px;
  }

  .footer-bottom p {
    line-height: 1.6;
  }

  .nav-links {
    display: flex;
  }

  .nav-btns {
    display: flex;
  }

}

/* ================= SMALL MOBILE ================= */

@media screen and (max-width:360px) {

  .hero-content h1 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .process-section h2 {
    font-size: 24px;
  }

  .cta-content h2 {
    font-size: 22px;
  }

  .final-wrapper h2 {
    font-size: 24px;
  }

  .primary-btn,
  .secondary-btn,
  .white-btn {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-links {
    display: flex;
  }

  .nav-btns {
    display: flex;
  }

}


body.popup-open {
  overflow: hidden;
}

.contact-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.contact-popup.show {
  display: flex;
}

.popup-box {
  width: min(100%, 540px);
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 22px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f1f1f1;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.popup-box h2 {
  font-size: clamp(15px, 4vw, 20px);
  line-height: 1.15;
  color: #111;
  margin-bottom: 8px;
}

.popup-box h2 em {
  color: #ef5b2a;
  font-family: Georgia, serif;
}

.popup-box>p {
  font-size: 12px;
  color: #333;
  margin-bottom: 10px;
}

.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.popup-box label {
  font-size: 12px;
  color: #172033;
  margin-top: 4px;
}

.popup-box label span {
  color: #ef3f28;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f1f1f3;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 14px;
  color: #111;
}

.popup-box textarea {
  min-height: 70px;
  resize: none;
}

.popup-box form button {
  margin-top: 10px;
  border: none;
  background: #302824;
  color: #ffffff;
  border-radius: 999px;
  padding: 15px;
  font-size: 15px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .popup-box {
    padding: 18px;
    max-height: 92vh;
    overflow-y: auto;
  }
}



body.popup-open {
  overflow: hidden;
}

.contact-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.contact-popup.show {
  display: flex;
}

.popup-box {
  width: min(100%, 540px);
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 22px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f1f1f1;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.popup-box h2 {
  font-size: clamp(15px, 4vw, 20px);
  line-height: 1.15;
  color: #111;
  margin-bottom: 8px;
}

.popup-box h2 em {
  color: #ef5b2a;
  font-family: Georgia, serif;
}

.popup-box>p {
  font-size: 12px;
  color: #333;
  margin-bottom: 10px;
}

.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.popup-box label {
  font-size: 12px;
  color: #172033;
  margin-top: 4px;
}

.popup-box label span {
  color: #ef3f28;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f1f1f3;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 14px;
  color: #111;
}

.popup-box textarea {
  min-height: 70px;
  resize: none;
}

.popup-box form button {
  margin-top: 10px;
  border: none;
  background: #302824;
  color: #ffffff;
  border-radius: 999px;
  padding: 15px;
  font-size: 15px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .popup-box {
    padding: 18px;
    max-height: 92vh;
    overflow-y: auto;
  }
}


.success-popup {
  display: none;
}

.success-popup.active {
  display: flex;
}













.contact-btn span {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.contact-btn:hover span {
  transform: translateX(6px);
}

.contact-btn:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.contact-btn span img {
  display: block;
}

.primary-btn span {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.primary-btn:hover span {
  transform: translateX(6px);
}

.primary-btn:hover {
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.primary-btn span img {
  display: block;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ffffff;
  padding: 10px 0;
  border-radius: 50px;
  /* margin-top: 10px; */
}

.navbar.scrolled .nav-links {
  border: none;
  background: transparent;
}



















.service-card>img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 22px;
}


.service-card ul {
  margin: 0;
  padding-left: 22px;
}

.service-card .arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64px;
  height: 42px;
  background: #ffffff;
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 14px;
}

.service-card .arrow img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.service-link:hover .service-card .arrow img {
  transform: translateX(6px);
}

.service-link:hover .service-card {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}








.footer-bg-text {
  width: 100%;
  text-align: center;
  font-size: clamp(64px, 14vw, 180px);
  font-weight: 800;
  line-height: 0.8;
  color: rgba(15, 23, 42, 0.06);
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  margin-bottom: -25px;
}

@media (max-width: 767px) {
  .footer-bg-text {
    margin-bottom: -8px;
  }
}
