/* Domain.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;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  color: #111827;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= NAVBAR ================= */

.navbar {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 20px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 200px;
}

.nav-links {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.4);
  padding: 14px 30px;
  border-radius: 50px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
}

.nav-links .active {
  color: #F25532;
}

.nav-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-btn {
  text-decoration: none;
  color: #111;
}

.contact-btn {
  background: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  text-decoration: none;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.mobile-menu {
  display: none;
}

/* ================= HERO ================= */
.domain-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* text-align: center; */
  overflow: hidden;
}

/* VIDEO */

.domain-video {
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(-1);
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */

.domain-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* CONTENT */

.domain-hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 850px;
  /* margin: auto; */
  margin-top: 160px;
}

@media (max-width: 767px) {
  .hero-content {
    margin-top: 70px;
  }
}

.hero-content h1 {
  font-size: 64px;
  color: rgba(41, 37, 36, 1);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 span {
  font-style: italic;
  font-weight: 400;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.hero-content p {
  max-width: 700px;
  /* margin: auto; */
  line-height: 1.2;
  color: #4F4F4F;
  font-size: 16px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  /* justify-content: center; */
  gap: 20px;
  margin-top: 40px;
}

.primary-btn {
  background: #292524;
  color: #fff;
  text-decoration: none;
  padding: 6px 10px 6px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-btn span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F25532;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondary-btn {
  border: 1px solid #ddd;
  padding: 16px 24px;
  border-radius: 50px;
  text-decoration: none;
  color: #111;
}

.solution-btn {
  background: #FFFFFF;
  color: #292524;
  text-decoration: none;
  padding: 6px 10px 6px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.solution-btn span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F25532;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= FEATURES ================= */
.feature-section {
  background: #F8F7F5;
  padding: 80px 0px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #D6D3D1;
  border-bottom: 1px solid #D6D3D1;
}

.feature-card {
  min-height: 380px;
  padding: 20px 28px;
  border-right: 1px solid #D6D3D1;
  display: flex;
  flex-direction: column;
  /* justify-content:space-between; */
  overflow: hidden;
  gap: 20px;
}

.feature-card:last-child {
  border-right: none;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #292524;
  text-align: center;
}

.feature-card.orange h3 {
  color: #F25532;
}

.feature-image img {
  min-height: 300px;
  width: 100%;
}

/* .feature-image img{
    width:100%;
    max-width:260px;
    object-fit:contain;
} */

/* ================= BOTTOM TEXT ================= */

.feature-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #D6D3D1;
}

.feature-text {
  padding: 28px 40px;
}

.feature-text:first-child {
  border-right: 1px solid #D6D3D1;
}

.feature-text p {
  color: #AAA8A8;
  font-size: 16px;
  line-height: 1.2;
  max-width: 500px;
}

.feature-text strong {
  color: #000000;
}

.feature-text span {
  color: #F25532;
  font-weight: 500;
}


/* ================= DOMAIN SECTION ================= */

.domain-section {
  padding: 100px 0;
  background: url(asset/Why.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #828282;
  display: block;
  margin-bottom: 25px;
}

.tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.tab-btn {
  border: 1px solid #E7E5E5;
  background: #FFFFFF;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 6px;
  color: #434656;
  font-size: 14px;
  font-weight: 500;
  box-shadow:
    0px 4px 6px -4px #0000001A,
    0px 10px 15px -3px #0000001A;

}

.tab-btn.active {
  background: #F25532;
  color: #fff;
  border-color: #F25532;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.domain-heading h2 {
  font-size: 32px;
  max-width: 600px;
  margin-bottom: 50px;
}

.systems {
  font-size: 32px;
  max-width: 600px;
  line-height: 1.2;
  color: #AAA8A8;
  margin-bottom: 50px;
}

.solve-section h4,
.build-section h4,
.outcomes-box h4 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #191C1E;
}

.solve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.solve-card {
  padding: 20px;
}

.solve-card img {
  margin-bottom: 10px;
}

.solve-card p {
  color: #888888;
  font-size: 14px;
  font-weight: 500;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.build-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.build-card:hover,
.mindset-card:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.solve-card:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 6px;
}

.build-card span {
  color: #D4D4D5;
  font-size: 12px;
  font-weight: 800;
}

.build-card h3 {
  margin: 16px 0;
  font-size: 20px;
  font-weight: 500;
}

.build-card p {
  color: #4A5565;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 400;
}

.outcomes-box {
  background: #F8FAFC;
  padding: 40px;
  border-radius: 20px;

  background-image: url("asset/outcomesImage.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.outcome-grid p {
  color: #364153;
  font-size: 14px;
  font-weight: 400;
  align-items: center;
  display: flex;
  gap: 10px;
}

/* ================= MINDSET ================= */

.mindset-section {
  padding: 80px 0;
  background-image: url("asset/image50.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mindset-wrapper {
  margin-top: -120px;
}

.mindset-title h2 {
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.5;
}

.mindset-title span {
  color: #FFFFFF;
  font-style: italic;
}

.mindset-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mindset-card {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #E0E0E0;
}

.mindset-card h3 {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #191C1E;
}

.mindset-card p {
  color: #434656;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}


.final-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 120px;
}

.final-content h2 {
  color: #FFFFFF;
  font-size: 42px;
  max-width: 700px;
}


/* ================= 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 ================= */

/* =========================
   320px — Small Mobile
========================= */
@media screen and (max-width: 320px) {

  .container {
    width: 92%;
    max-width: 100%;
  }

  .navbar {
    padding: 14px 0;
  }

  .logo img {
    width: 100px;
  }

  .nav-btns {
    display: none;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    background: #fff;
    border-radius: 10px;

    font-size: 18px;
    cursor: pointer;
  }

  .nav-links {
    position: fixed;

    top: 70px;
    left: 50%;

    transform: translateX(-50%);

    width: 92%;

    background: #fff;

    padding: 20px;
    border-radius: 16px;

    flex-direction: column;
    align-items: flex-start;

    gap: 16px;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 12px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .primary-btn,
  .secondary-btn,
  .solution-btn {
    width: 100%;
    justify-content: center;
    font-size: 13px;
  }

  .feature-grid,
  .feature-bottom,
  .solve-grid,
  .build-grid,
  .mindset-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    padding: 24px 16px;
    border-right: none;
  }

  .feature-text {
    padding: 20px 16px;
  }

  .feature-text:first-child {
    border-right: none;
    border-bottom: 1px solid #D6D3D1;
  }

  .tab-btn {
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
    text-align: center;
  }

  .domain-heading h2,
  .systems {
    font-size: 22px;
    line-height: 1.3;
  }

  .build-card {
    padding: 20px;
  }

  .mindset-title h2,
  .final-content h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

}


/* =========================
   321px to 480px — Mobile
========================= */
@media screen and (min-width: 321px) and (max-width: 480px) {


  .container {
    width: 92%;
  }

  .navbar {
    padding: 16px 0;
  }

  .domain-hero {
    min-height: 54vh;
  }

  .logo img {
    width: 120px;
  }

  .nav-btns {
    display: none;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: #fff;
    border-radius: 12px;

    font-size: 20px;
    cursor: pointer;
  }

  .nav-links {
    position: fixed;

    top: 75px;
    left: 50%;

    transform: translateX(-50%);

    width: 92%;

    background: #fff;

    padding: 24px;
    border-radius: 16px;

    flex-direction: column;
    align-items: flex-start;

    gap: 18px;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .primary-btn,
  .secondary-btn,
  .solution-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  .feature-grid,
  .feature-bottom,
  .solve-grid,
  .build-grid,
  .mindset-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    padding: 26px 18px;
    border-right: none;
  }

  .feature-text:first-child {
    border-right: none;
    border-bottom: 1px solid #D6D3D1;
  }

  .tabs {
    gap: 10px;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
  }

  .domain-heading h2,
  .systems {
    font-size: 24px;
  }

  .mindset-title h2,
  .final-content h2 {
    font-size: 26px;
  }

  .final-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}


/* =========================
   481px to 768px — Tablet
========================= */
@media screen and (min-width: 481px) and (max-width: 768px) {

  .container {
    width: 92%;
  }

  .domain-hero {
    min-height: 70vh;
  }

  .logo img {
    width: 130px;
  }

  .nav-btns {
    display: none;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    background: #fff;
    border-radius: 12px;

    font-size: 20px;
    cursor: pointer;
  }

  .nav-links {
    position: fixed;

    top: 80px;
    left: 50%;

    transform: translateX(-50%);

    width: 92%;

    background: #fff;

    padding: 24px;
    border-radius: 16px;

    flex-direction: column;
    align-items: flex-start;

    gap: 18px;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .primary-btn,
  .secondary-btn,
  .solution-btn {
    width: 100%;
    justify-content: center;
  }

  .feature-grid,
  .mindset-grid,
  .build-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    min-height: 320px;
    border-right: 1px solid #D6D3D1;
    border-bottom: 1px solid #D6D3D1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .feature-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .feature-image img {
    max-width: 220px;
    width: 100%;
    object-fit: contain;
  }

  .feature-bottom,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-right: none;
  }

  .feature-text:first-child {
    border-right: none;
    border-bottom: 1px solid #D6D3D1;
  }

  .tab-btn {
    width: 100%;
  }

  .domain-heading h2,
  .systems {
    font-size: 28px;
  }

  .final-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-content h2 {
    font-size: 30px;
  }


}


/* =========================
   769px to 992px — Small Laptop
========================= */
@media screen and (min-width: 769px) and (max-width: 992px) {

  .container {
    max-width: 720px;
  }

  .logo img {
    width: 150px;
  }

  .nav-btns {
    display: none;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    background: #fff;
    border-radius: 12px;

    font-size: 22px;
    cursor: pointer;
  }

  .nav-links {
    position: fixed;

    top: 80px;
    left: 50%;

    transform: translateX(-50%);

    width: 92%;

    background: #fff;

    padding: 24px;
    border-radius: 16px;

    flex-direction: column;
    align-items: flex-start;

    gap: 18px;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .feature-grid,
  .mindset-grid,
  .build-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    min-height: 320px;
    border-right: 1px solid #D6D3D1;
    border-bottom: 1px solid #D6D3D1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .feature-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .feature-image img {
    max-width: 220px;
    width: 100%;
    object-fit: contain;
  }


  .solve-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .final-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

}


/* =========================
   993px to 1200px — Desktop
========================= */
@media screen and (min-width: 993px) and (max-width: 1200px) {

  .container {
    max-width: 960px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  /* .feature-grid,
    .mindset-grid,
    .build-grid {
        grid-template-columns: repeat(2, 1fr);
     }  */

  .feature-card {
    border-bottom: 1px solid #D6D3D1;
  }

  .final-content {
    margin-top: 90px;
  }

  .final-content h2 {
    font-size: 36px;
    max-width: 550px;
  }

}


/* =========================
   1201px to 1400px — Large Desktop
========================= */
@media screen and (min-width: 1201px) and (max-width: 1400px) {

  .container {
    max-width: 1280px;
  }

}


/* =========================
   1401px and Above — Extra Large Screens
========================= */
@media screen and (min-width: 1401px) {

  .container {
    max-width: 1400px;
  }

}




.domain-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.35) 42%,
      #ffffff 72%);
  z-index: 1;
  pointer-events: none;
}



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: #bfa192;
  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;
  }
}


















.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;
}
