/* 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;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  color: #111827;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.logo img {
  width: 200px;
}

/* ================= 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;
}

.nav-links {
  display: flex;
  gap: 30px;
  background: rgba(255, 255, 255, 0.4);
  padding: 14px 30px;
  border-radius: 50px;
  border: 1px solid #f1eeee;
}

.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: #000000;
  font-size: 14px;
  font-weight: 500;
}

.contact-btn {
  background: #ffffff;
  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;
}

.contact-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
}

/* ================= GCC HERO ================= */

/* ================= GCC HERO ================= */

.gcc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* text-align: center; */
  overflow: hidden;
}

@media (max-width: 767px) {
  .gcc-hero {
    background-size: 120% auto;
    background-position: center center;
  }
}

/* VIDEO */

.gcc-hero-video {
  position: absolute;

  top: -16px;
  left: 0;

  width: 100%;
  height: 100%;
  transform: scaleY(-1);
  object-fit: cover;
  z-index: 1;
}

/* DARK OVERLAY */

.hero-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;
}

/* CONTENT */

.gcc-hero .container {
  position: relative;
  z-index: 3;
}

.gcc-hero-content {
  /* max-width: 980px; */
  margin: auto;
  margin-top: 140px;
}

.gcc-hero-content h1 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 500;
  color: #292524;
  margin-bottom: 20px;
}

/* ================= GCC INFO ================= */

.gcc-info-section {
  padding: 0px 0px 80px 0px;
}

.gcc-info-card {
  background: #fff;
  border: 1px solid #E7E5E4;
  border-radius: 16px;
  padding: 30px;

  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
}

.gcc-info-left img {
  width: 100%;
}

.gcc-info-right h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 500;
  color: #191C1E;
}

.gcc-info-right h2 span {
  font-weight: 600;
  color: #AAA8A8;
}

.gcc-info-right p {
  margin-bottom: 20px;
  line-height: 1.4;
  color: #4F4F4F;
  font-size: 16px;
  font-weight: 400;
}

.gcc-info-right p span {
  color: #F25532;
  font-style: italic;
  font-weight: 700;
}

/* ================= WHY GCC ================= */

.gcc-why-section {
  border: 1px solid #E3E3E3;
  padding: 80px 0;
  background-image: url("asset/GCC_setup_img.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gcc-why-wrapper h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111827;
}

.gcc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gcc-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.78) 45%,
      rgba(255, 255, 255, 0.18) 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);

}

.gcc-card img {
  margin-bottom: 20px;
  width: 32px;
  height: 32px;
}

.gcc-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.gcc-card p {
  color: #404945;
  margin-bottom: 20px;
  font-size: 14px;

}

.gcc-card ul {
  padding-left: 18px;
}

.gcc-card ul li {
  margin-bottom: 10px;
  color: #404945;
  font-size: 14px;
  font-weight: 400;
}

/* ================= BANNER ================= */

.gcc-banner-section {
  padding: 80px 0;
}

.gcc-banner {
  background-image: url("asset/gccBg.svg");
  background-size: cover;
  background-position: center;

  padding: 70px;
  border-radius: 24px;
}

.gcc-banner h2 {
  color: #fff;
  font-size: 32px;
  line-height: 1.6;
}

.gcc-banner h2 span {
  font-style: italic;
}

/* ================= ENABLES ================= */

.enables-section {
  padding: 40px 0px;
}

.enables-section h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
}

.enables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.enable-card img {
  margin-bottom: 10px;
}

.enable-card p {
  color: #57534E;
  font-size: 16px;
}

/* ================= FINAL ================= */

.gcc-final-section {
  padding: 80px 0 120px;
}

.gcc-final-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.gcc-final-content span {
  display: block;
  color: #F25532;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.gcc-final-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #292524;
}

.gcc-final-content p {
  color: #4F4F4F;
  font-size: 16px;
  font-weight: 500;
}


.hero-buttons {
  display: flex;
  /* justify-content: center; */
  gap: 30px;
  margin-top: 40px;
}

.active {
  color: #ff5b2e !important;
}

.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;
}


/* ================= 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;
}

/* ================= LARGE LAPTOP ================= */

/* ================= TABLET ================= */

@media screen and (max-width:992px) {

  .container {
    max-width: 720px;
  }

  .gcc-hero-content {
    margin-top: 40px;
  }

  .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;
  }

  .gcc-hero {
    min-height: 70vh;
    padding-top: 120px;
  }

  .gcc-hero-content h1 {
    font-size: 44px;
    line-height: 1.2;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .gcc-info-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gcc-info-left {
    text-align: center;
  }

  .gcc-info-left img {
    max-width: 100%;
  }

  .gcc-card-grid {
    grid-template-columns: 1fr;
  }

  .gcc-banner {
    padding: 50px 40px;
  }

  .gcc-banner h2 {
    font-size: 26px;
  }

  .enables-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .gcc-final-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

}

/* ================= MOBILE LARGE ================= */

@media screen and (max-width:768px) {

  .container {
    width: 92%;
  }

  .navbar {
    padding: 16px 0;
  }

  .logo img {
    width: 130px;
  }

  .gcc-hero {
    min-height: auto;
    padding: 100px 0 0px;
  }

  .gcc-hero-content h1 {
    font-size: 36px;
    line-height: 1.3;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .gcc-info-section {
    padding: 60px 0;
  }

  .gcc-info-card {
    padding: 24px;
  }

  .gcc-info-right h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .gcc-info-right p {
    font-size: 14px;
    line-height: 1.7;
  }

  .gcc-why-section {
    padding: 60px 0;
  }

  .gcc-why-wrapper h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .gcc-card {
    padding: 24px;
  }

  .gcc-card h3 {
    font-size: 18px;
  }

  .gcc-banner-section {
    padding: 70px 0;
  }

  .gcc-banner {
    padding: 40px 24px;
    border-radius: 18px;
  }

  .gcc-banner h2 {
    font-size: 22px;
    line-height: 1.5;
  }

  .enables-section {
    padding: 20px 0 80px;
  }

  .enables-section h2 {
    font-size: 28px;
  }


  .enable-card {
    text-align: left;
  }

  .enable-card p {
    font-size: 14px;
  }

  .gcc-final-section {
    padding: 60px 0 80px;
  }

  .gcc-final-content h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .gcc-final-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer {
    padding: 24px 0;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

}

/* ================= MOBILE MEDIUM ================= */

@media screen and (max-width:480px) {

  .gcc-hero-content h1 {
    font-size: 22px;
  }

  .gcc-info-right h2 {
    font-size: 24px;
  }

  .gcc-info-right p {
    font-size: 13px;
  }

  .gcc-why-wrapper h2 {
    font-size: 24px;
  }

  .gcc-card {
    padding: 20px;
  }

  .gcc-card h3 {
    font-size: 16px;
  }

  .gcc-card p,
  .gcc-card ul li {
    font-size: 13px;
    line-height: 1.6;
  }

  .gcc-banner h2 {
    font-size: 20px;
  }

  .enables-section h2 {
    font-size: 24px;
  }

  .enable-card p {
    font-size: 13px;
  }

  .gcc-final-content h2 {
    font-size: 24px;
  }

  .gcc-final-content p {
    font-size: 13px;
  }

  .primary-btn,
  .secondary-btn {
    font-size: 14px;
  }

}

/* ================= SMALL MOBILE ================= */

@media screen and (max-width:360px) {

  .gcc-hero-content h1 {
    font-size: 26px;
  }

  .gcc-info-card {
    padding: 20px;
  }

  .gcc-info-right h2 {
    font-size: 22px;
  }

  .gcc-why-wrapper h2 {
    font-size: 22px;
  }

  .gcc-banner h2 {
    font-size: 18px;
  }

  .gcc-final-content h2 {
    font-size: 22px;
  }

}








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;
  }
}


@media screen and (max-width: 992px) {
  .nav-links {
    top: 55px;
    left: 19px;
    width: 92%;
  }
}



.footer-bg-text {
  width: 100%;
  text-align: center;
  font-size: clamp(78px, 13vw, 170px);
  font-weight: 800;
  line-height: 0.72;
  color: rgba(15, 23, 42, 0.06);
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  margin-bottom: -12px;
}

@media (max-width: 767px) {
  .footer-bg-text {
    font-size: clamp(52px, 14vw, 90px);
    line-height: 0.78;
    margin-bottom: -4px;
  }
}


.sub-heading23 {
  max-width: 700px;
  /* margin: auto; */
  line-height: 1.2;
  color: #4F4F4F;
  font-size: 15px;
  font-weight: 400;
}
