@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;
  overflow-x: hidden;
  color: #111827;
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= BACKGROUND ================= */
.about-page-bg {
  background-image: url("asset/home-about-bg.svg");
  background-repeat: no-repeat;
  background-position: center top;
}

.about-page33 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.about-page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("asset/home-about-gif.gif");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  z-index: 0;
  pointer-events: none;
}

.about-page33>* {
  position: relative;
  z-index: 2;
}

/* ================= NAVBAR ================= */
.navbar {
  width: 100%;
  padding: 20px 0px;
  transition: 0.3s ease;
  z-index: 9999;
}

.nav-wrapper {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  width: 200px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 30px;
  background: #FFFFFF5E;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1px solid #f1eeee;
}

.nav-links a,
.services-toggle {
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.services-toggle:hover,
.nav-links .active {
  color: #F25532;
}

.nav-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-btn {
  background: #FFFFFF;
  color: #0A0A0A;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 1px 3px 0px #0a2a6e1a;
  transition: 0.3s ease;
  white-space: nowrap;
}

.contact-btn span {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.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:hover span {
  transform: translateX(6px);
}

.mobile-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #eeeeee;
  border-radius: 12px;
  font-size: 22px;
  cursor: pointer;
  user-select: none;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #ffffff;
  backdrop-filter: blur(12px);
}

/* ================= SERVICES DROPDOWN ================= */
.nav-item {
  position: relative;
}

.services-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  /* background: #FFFFFF; */
  border: none;
  outline: none;
}

.services-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.services-dropdown.active .services-toggle i {
  transform: rotate(180deg);
}

.services-menu {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 230px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 10px 12px;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 99999;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); */
  transition: 0.25s ease;
}

.services-dropdown.active .services-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.services-menu a {
  display: block;
  color: #101828 !important;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 8px;
  border-bottom: 1px solid #EBEBEB;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.services-menu a:last-child {
  border-bottom: none;
}

.services-menu a.navlinkhover:hover {
  color: #F25532 !important;
  padding-left: 14px;
}

/* ================= ABOUT TOP SECTION ================= */
.top-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  min-height: calc(100vh - 90px);
  /* padding: 120px 9% 80px; */
  margin: 0px 0px 80px 0px;
}

.top-left {
  flex: 1;
  max-width: 650px;
}

.section-label {
  font-size: clamp(32px, 64vw, 67px);
  line-height: 1.2;
  font-weight: 700;
  color: #292524;
  margin-bottom: 16px;
}

.section-label span {
  color: #F25532;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.top-left h1 {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #4F4F4F;
  margin-bottom: 15px;
}

.top-left h1 strong,
.top-left h1 b {
  color: #F25532;
  font-style: italic;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.description {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.75;
  color: #222222;
}

/* ================= THINK SECTION ================= */
.think-section {
  padding: 25px 8%;
  background: #ffffff;
}

.think-section h2,
.trust-section h2,
.contact-header h2 {
  line-height: 1.2;
  font-weight: 800;
  color: #292524;
}

.think-section h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 18px;
}

.think-section h2 span,
.trust-section h2 span,
.contact-header h2 span {
  color: #F25532;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.think-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
}

.think-card {
  position: relative;
  min-height: 240px;
  padding: 18px 18px 0;
  border: 2px solid #eeeeee;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

.think-card h3 {
  position: relative;
  z-index: 2;
  max-width: 230px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
  color: #101828;
  margin-bottom: 14px;
}

.think-card p {
  position: relative;
  z-index: 2;
  max-width: 210px;
  font-size: 13px;
  font-weight: 500;
  color: #ACACAC;
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 125px;
  z-index: 1;
  overflow: hidden;
}

.wave img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

/* ================= TRUST SECTION ================= */
.trust-section {
  padding: 40px 8%;
  background: #ffffff;
}

.trust-section h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 18px;
}

.testimonial-box {
  max-width: 980px;
  min-height: 160px;
  border: 2px solid #EEEEEE;
  background: #F1F1F133;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px 55px;
}

.quote {
  flex: 0 0 auto;
}

.quote img {
  width: 75px;
  height: auto;
}

.testimonial-content {
  flex: 1;
  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
  font-weight: 700;
  color: #555555;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 80px 10% 36px;
  border: 2px solid #EEEEEE;
  background: #ffffff;
}

.contact-header,
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 18px;
}

.contact-header h2 {
  font-size: clamp(26px, 3vw, 30px);
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 15px;
  color: #4F4F4F;
}

.input-group {
  margin-bottom: 12px;
}

.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #364153;
  margin-bottom: 5px;
}

.required {
  color: #F25532;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 8px;
  color: #222222;
  font-size: 14px;
  padding: 12px 14px;
  background: #F3F3F5;
  font-family: inherit;
}

.input-group input,
.input-group select {
  min-height: 42px;
}

.input-group textarea {
  min-height: 100px;
  resize: vertical;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  box-shadow: 0 0 0 2px rgba(242, 85, 50, 0.18);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #9A9A9A;
}

.input-group select {
  appearance: none;
  color: #555555;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.submit-btn {
  width: 100%;
  min-height: 44px;
  border: none;
  border-radius: 24px;
  background: #2B2523;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 90px;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #181514;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.big-brand-text {
  position: relative;
  z-index: -1;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  font-size: clamp(52px, 11vw, 200px);
  line-height: 0.75;
  font-weight: 800;
  color: #eeeeee;
  white-space: nowrap;
  letter-spacing: -8px;
  padding-left: 12%;
  user-select: none;
  margin-bottom: -58px;
}

/* ================= FOOTER ================= */
.footer {
  position: relative;
  z-index: 5;
  background: #07142B;
  padding: 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top img {
  width: 180px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links a {
  color: #B8BCC8;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 20px;
}

.footer-bottom p {
  color: #8D93A1;
  font-size: 14px;
  font-weight: 400;
}

/* ================= POPUP BASIC ================= */
.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: 0.3s ease;
}

.success-popup.active {
  opacity: 1;
  visibility: visible;
}

.success-popup-box {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 22px;
  cursor: pointer;
}

.popup-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.popup-icon img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

#popupTitle {
  font-size: 24px;
  margin-bottom: 8px;
  color: #111827;
}

#popupMessage {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 18px;
}

.popup-ok {
  border: none;
  border-radius: 24px;
  padding: 11px 28px;
  background: #2B2523;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.popup-ok.success {
  background: #2B2523;
}

.popup-ok.error {
  background: #dc2626;
}

.success-text {
  color: #16a34a !important;
}

.error-text {
  color: #dc2626 !important;
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 1200px) {
  .navbar {
    padding: 18px 32px;
  }

  .logo img {
    width: 160px;
  }

  /* .think-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    } */

  .top-section {
    padding: 90px 7% 60px;
    gap: 50px;
  }

  .big-brand-text {
    letter-spacing: -5px;
  }
}

@media screen and (max-width: 992px) {
  .navbar {
    padding: 16px 24px;
  }

  .nav-btns {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: calc(100% - 32px);
    max-width: 520px;
    background: rgba(255, 255, 255, 0.98);
    padding: 22px;
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 99999;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-links a,
  .services-toggle {
    width: 100%;
    font-size: 15px;
  }

  .nav-item,
  .services-dropdown {
    width: 100%;
  }

  .services-toggle {
    justify-content: space-between;
  }

  .services-menu {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 10px;
    padding: 8px;
    box-shadow: none;
    border: 1px solid #eeeeee;
    background: #fafafa;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .services-dropdown.active .services-menu {
    display: block;
    transform: none;
  }

  .services-menu a {
    padding: 10px 8px !important;
    font-size: 14px;
  }

  .top-section {
    min-height: auto;
    padding: 70px 24px 50px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .think-section,
  .trust-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .testimonial-box {
    max-width: 100%;
    padding: 30px 24px;
  }

  .contact-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .about-page33::before {
    background-size: 150% auto;
  }

  .navbar {
    padding: 14px 18px;
  }

  .logo img {
    width: 130px;
  }

  .mobile-menu {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .nav-links {
    top: 72px;
  }

  .section-label {
    font-size: 30px;
  }

  .top-left h1,
  .description {
    font-size: 15px;
    line-height: 1.7;
  }

  .think-grid {
    grid-template-columns: 1fr;
  }

  .think-card {
    min-height: 220px;
  }

  .testimonial-box {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .quote img {
    width: 58px;
  }

  .contact-header p {
    font-size: 14px;
    line-height: 1.6;
  }

  .submit-btn {
    margin-bottom: 60px;
  }

  .big-brand-text {
    padding-left: 0;
    text-align: center;
    letter-spacing: -3px;
    margin-bottom: -25px;
  }

  .footer {
    padding: 28px 20px;
  }

  .footer-links {
    gap: 16px;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    padding: 12px 14px;
  }

  .logo img {
    width: 118px;
  }

  .mobile-menu {
    width: 40px;
    height: 40px;
    font-size: 19px;
    border: none;
  }

  .nav-links {
    top: 66px;
    width: calc(100% - 24px);
    padding: 20px;
    gap: 16px;
  }

  .top-section {
    padding: 80px 16px 38px;
  }

  .section-label {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .top-left h1,
  .description {
    font-size: 14px;
  }

  .think-section,
  .trust-section,
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .think-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .trust-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .think-card {
    min-height: 260px;
    padding: 18px 16px 0;
  }

  .think-card h3 {
    font-size: 19px;
  }

  .think-card p {
    font-size: 13px;
  }

  .testimonial-box {
    padding: 24px 16px;
  }

  .contact-section {
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    font-size: 13px;
  }

  .big-brand-text {
    font-size: 60px;
    letter-spacing: -2px;
    margin-bottom: -34px;
  }

  .footer-top img {
    width: 150px;
  }

  .footer-links {
    flex-direction: row;
    gap: 12px;
  }

  .success-popup-box {
    padding: 26px 18px;
  }
}

@media screen and (max-width: 360px) {
  .logo img {
    width: 105px;
  }

  .section-label {
    font-size: 24px;
  }

  .top-left h1,
  .description {
    font-size: 13px;
  }

  .think-card {
    min-height: 200px;
  }

  .big-brand-text {
    font-size: 40px;
  }
}
