:root {
  --primary: #FFDF00;     /* gold */
  --secondary: #25273A;   /* deep slate */
  --body-bg: #FFFFFF;
}

/* Base */
body {
  background-color: var(--body-bg);
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}
.navbar
{
  padding-top: 0px;
  padding-bottom: 0px;
}
a.navbar-brand.fw-bold.text-secondary
{
 padding-top: 0px;
  padding-bottom: 0px;
}
.nav-link
{
  font-size: 16px;
  font-weight: 600;
 
}
/* Fonts */
@font-face {
  font-family: 'GothamBlack';
  src: url('../fonts/Gotham-Black.otf') format('opentype');
}
@font-face {
  font-family: 'GothamBold';
  src: url('../fonts/Gotham-Bold.otf') format('opentype');
}
@font-face {
  font-family: 'GothamBook';
  src: url('../fonts/Gotham-Book.otf') format('opentype');
}
@font-face {
  font-family: 'GothamLight';
  src: url('../fonts/Gotham-Light.otf') format('opentype');
}
@font-face {
  font-family: 'GothamMedium';
  src: url('../fonts/Gotham-Medium.otf') format('opentype');
}
@font-face {
  font-family: 'GothamThin';
  src: url('../fonts/Gotham-Thin.otf') format('opentype');
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'GothamMedium', sans-serif;
}
p {
  font-size: 16px;
  font-family: 'GothamBook', sans-serif;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Utilities */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border: none;
  color: var(--secondary);
  font-weight: 600;
}
.btn-primary:hover {
  background-color: #e6ca00;
  color: var(--secondary);
}
.btn-light:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

/* Navigation hover */
.nav-link:hover { color: var(--primary) !important; }

/* Feature cards */
.feature-box:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
  border-top: 4px solid var(--primary);
}

/* ---------------- Hero Section ---------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat fixed;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Headline */
.hero-title {
  color: var(--primary);
  text-transform: uppercase;
  line-height: 1.05;
  font-family: 'GothamBlack', 'GothamMedium', sans-serif;
  font-size: clamp(2.2rem, 4.5vw + 0.5rem, 5rem);
  margin: 0 0 .25rem 0;
}

/* Equal height columns */
.row.g-4.align-items-stretch > [class*="col-"] {
  display: flex;
}
.hero-copy,
.hero-box {
  width: 100%;
}

/* Right side box */
.hero-box {
    background-image: url("../images/blue.png");
  background-size: cover;           /* scale to cover the box */
  background-position: center;      /* keep focal point centered */
  background-repeat: no-repeat;
  
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.hero-badge {
    position: relative;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Optional fixed min height for both sides */
.hero-copy,
.hero-box {
  min-height: 480px;
}

/* Typography inside hero */
.hero-box h6 {
  font-family: 'GothamLight', sans-serif;
  letter-spacing: 0.5px;
}
.hero-box h2 {
  font-family: 'GothamBold', sans-serif;
}

/* ---------------- Responsive adjustments ---------------- */

/* Tablets and small laptops */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 80px 0;
    background-attachment: scroll;
  }
  .hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-align: left;
  }
  .hero-box {
    padding: 2rem;
    text-align: center;
  }
}

/* Mobiles (≤ 768px) */
@media (max-width: 767.98px) {
  .hero-section {
    padding: 72px 0;
  }
  .hero-copy,
  .hero-box {
    min-height: auto; /* don't force huge height on mobiles */
  }
  .hero-title {
    font-size: 2.4rem;
    line-height: 1.15;
  }
  .hero-section p {
    font-size: 15px;
  }
}

/* Extra small mobiles (≤ 480px, including 320px width) */
@media (max-width: 480px) {
  .hero-section {
    padding: 70px 0 56px;
    min-height: auto;
    text-align: center;
  }

  .hero-copy {
    justify-content: center;
  }

  .hero-title {
    font-size: 1.9rem;      /* comfortable on 320px */
    line-height: 1.1;
    text-align: center;
  }

  .hero-copy h3 {
    font-size: 1rem;
    margin-bottom: .5rem;
    margin-top: 90px;
        text-align: center;
  }

  .hero-section p {
    font-size: 0.9rem;
   
    margin: 0 auto;
            text-align: center;
  }

  .hero-box {
    padding: 1.6rem 1.2rem;
    margin-top: 20px;
  }

  .hero-box h2 {
    font-size: 1.25rem;
  }

  .hero-box h6 {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .hero-box .btn {
    width: 100%;
    max-width: 260px;
    font-size: 0.9rem;
    padding: 0.8rem 1.4rem;
    margin: 10px auto 0;
  }
}

/* iOS Safari fixed background fallback */
@supports (-webkit-touch-callout: none) {
  .hero-section { background-attachment: scroll; }
}


/* ------------------- Developers Section ------------------- */
.devs-section {
  background: #ffffff;
  padding: clamp(48px, 7vw, 104px) 0;
}

/* .devs-copy {
  max-width: 560px;
} */

.devs-title {
  font-family: 'GothamBlack', 'GothamMedium', sans-serif;
  color: var(--secondary);
  letter-spacing: 0.2px;
  line-height: 1.05;
  margin: 0 0 18px 0;
  font-size: clamp(1.9rem, 5.2vw, 4.25rem);
}

.devs-underline {
  display: inline-block;
  width: clamp(64px, 9vw, 88px);
  height: 10px;
  background: var(--secondary);
  border-radius: 2px;
  margin-bottom: clamp(16px, 2vw, 28px);
}

.devs-sub {
  font-family: 'GothamBook', sans-serif;
  color: #555A66;
  line-height: 1.7;
  font-size: clamp(14px, 1.6vw, 16px);
  margin: 0;
  max-width: 520px;
}

/* ------------------- Logo Grid ------------------- */
.devs-logos {
  display: flex;
  justify-content: center;   /* horizontal centering */
  align-items: center;       /* vertical alignment if needed */
  flex-wrap: wrap;           /* allow multiple rows */
  gap: 20px;                 /* spacing between logos */
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  
}

.devs-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(230, 230, 230);
}

.devs-logos img {
  max-width: 180px;
  height: auto;
  padding: 10px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.devs-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ------------------- Responsiveness ------------------- */
/* Mobile: center text */
@media (max-width: 575.98px) {
  .devs-copy {
    text-align: center;
    margin: 0 auto;
  }
  .devs-underline {
    display: block;
    margin-inline: auto;
  }
}



/* Optional hover animation */
@media (hover:hover) {
  .devs-logos li {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .devs-logos li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 575.98px) {

  .devs-logos {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
    gap: 16px;
    justify-items: center;
  }

  .devs-logos li {
    width: 100%;
    max-width: 140px;
    border: 1px solid #e5e5e5;
    padding: 8px;
    background: #fff;
  }

  .devs-logos img {
    max-width: 100%;
    padding: 6px;
  }
}

/* Brand variables assumed already present:
:root { --primary:#FFDF00; --secondary:#25273A; }
Fonts: GothamBlack, GothamMedium, GothamBook loaded earlier
*/

.emirates-section{
  background: var(--secondary);          /* your blue #25273A */
  padding: clamp(56px, 8vw, 120px) 0;
  color: #FFF;
}

/* --- Heading block --- */
.emirates-title{
  font-family: 'GothamBlack', 'GothamMedium', sans-serif;
  line-height: 1.02;
  letter-spacing: .2px;
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.5rem);   /* large, multi-line */
}

.emirates-emblem{
  width: 42px; height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 34%, #fff 35% 36%, transparent 37%),
    conic-gradient(from 0deg, #fff 0 10deg, transparent 10deg 20deg);
  mask: radial-gradient(circle at center, #000 68%, transparent 69%); /* keeps ring look */
  flex: 0 0 42px;
  margin-top: 6px;
}

.emirates-sub{
  font-family: 'GothamBook', sans-serif;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
}

/* --- Cards --- */
.city-card{
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #0f0f0f;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.city-card img{
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
}

.city-overlay{
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(12px, 1.6vw, 18px);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 38%, rgba(0,0,0,.85) 100%);
  color: #fff;
}

.city-name{
  font-family: 'GothamBold','GothamBlack','GothamMedium',sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.1;
}

.city-loc{
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'GothamBook', sans-serif;
  font-size: clamp(.8rem, 1.6vw, .95rem);
  letter-spacing: .3px;
  color: rgba(255,255,255,.9);
}

.city-loc .pin{
  width: 16px; height: 16px; fill: var(--primary);
}

/* Hover lift (desktop only) */
@media (hover:hover){
  .city-card{ transition: transform .25s ease, box-shadow .25s ease; }
  .city-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
  }
}

/* --- Investment CTA --- */
.invest-row{ margin-top: clamp(24px, 4vw, 40px); }

.invest-label{
  font-family: 'GothamMedium', sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  color: #fff;
  margin-bottom: 8px;
}

.invest-amount{
  font-family: 'GothamBlack','GothamBold', sans-serif;
  color: var(--primary);
  font-size: clamp(1.8rem, 6vw, 3rem);
  letter-spacing: .8px;
}

.invest-sub{
  font-family: 'GothamBook', sans-serif;
  color: rgba(255,255,255,.8);
  font-size: clamp(.95rem, 1.6vw, 1rem);
  margin: 0;
}

.btn-register{
  border: 2px solid rgba(255,255,255,.85);
  color: #fff;
  font-weight: 700;
  padding: .9rem 2.2rem;
  letter-spacing: .5px;
  border-radius: 4px;
  text-transform: uppercase;
}
.btn-register:hover{
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
}

/* --- Small-device polish --- */
@media (max-width: 575.98px){
  .emirates-title{ text-align:center; }
  .emirates-sub{ text-align:center; }
  .emirates-emblem{ display:none; }
  .invest-row .btn-register{ width:100%; max-width: 420px; }
}

/* Section container */
.invest-reasons-section{
  background:#ffffff;                 /* soft light like your reference */
  padding: clamp(56px, 8vw, 110px) 0;
  color: var(--secondary);
}

/* Title + underline */
.reasons-title{
  font-family:'GothamBlack','GothamMedium',sans-serif;
  font-size: clamp(2rem, 5.4vw, 4.25rem);
  line-height: 1.05;
  margin: 0 0 16px 0;
  letter-spacing:.2px;
}
.reasons-underline{
  display:inline-block;
  width: clamp(64px, 9vw, 88px);
  height: 10px;
  background: var(--secondary);        /* dark slate bar */
  border-radius:2px;
}

/* List */
.reasons-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 18px);
}

.reason-item{
  display:grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items:flex-start;
}

.reason-icon{
  width: 44px;
  height: 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--secondary);
  background:#fff;
  border:1px solid #ECEEF3;
  border-radius:8px;
}

.reason-icon svg{
  width: 26px;
  height: 26px;
  display:block;
}

.reason-copy{
  font-family:'GothamBook',sans-serif;
  font-size: clamp(15px, 1.7vw, 18px);
  color:#333A44;
  line-height:1.6;
  position:relative;
}

/* Tiny underline bar under each point */
.reason-bar{
  display:block;
  width: clamp(90px, 18vw, 160px);
  height: 6px;
  background:#E9EBEF;
  border-radius:3px;
  margin-top: 8px;
}

/* Tablet/Desktop spacing */
@media (min-width: 992px){
  .reasons-list{ gap: 22px; }
}

/* Small mobile polish: center title */
@media (max-width: 575.98px){
  .reasons-title{ text-align:center; }
  .reasons-underline{ display:block; margin-inline:auto; }
}

/* ---------- Dark Blurred Section ---------- */
.savills-exp-section.dark {
  position: relative;
  background: var(--secondary);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: clamp(56px, 8vw, 110px) 0;
  color: #fff;
  overflow: hidden;
}

/* ---------- Title ---------- */
.savills-exp-title {
  font-family: 'GothamBlack','GothamMedium',sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
}
.savills-exp-underline {
  display: inline-block;
  width: 80px;
  height: 10px;
  background: var(--primary);
  border-radius: 4px;
}

/* ---------- Cards ---------- */
.savills-exp-card {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.savills-exp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.45);
}

/* Image */
.savills-exp-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.savills-exp-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.savills-exp-card:hover img {
  transform: scale(1.05);
}

/* Card Content */
.savills-exp-body {
  padding: clamp(18px, 2vw, 22px) 16px 28px;
}
.savills-exp-heading {
  font-family: 'GothamMedium','GothamBold',sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.4;
  color: #fff;
  margin-bottom: 10px;
}
.savills-exp-text {
  font-family: 'GothamBook',sans-serif;
  color: rgba(255,255,255,0.85);
  font-size: clamp(.95rem, 1.6vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

/* ---------- REGISTER NOW Button ---------- */
.btn-register-now {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  font-family: 'GothamMedium','GothamBold',sans-serif;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 223, 0, 0.25);
}
.btn-register-now:hover {
  background: #e6ca00;
  color: var(--secondary);
  box-shadow: 0 6px 20px rgba(255, 223, 0, 0.4);
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
  .savills-exp-title {
    text-align: center;
  }
  .savills-exp-underline {
    display: block;
    margin-inline: auto;
  }
  .savills-exp-body {
    text-align: center;
  }
  .btn-register-now {
    width: 100%;
    max-width: 320px;
  }
}

/* Wrapper */
.register-invite{
  background:#FFFFFF;
  padding: clamp(56px, 8vw, 110px) 0;
  color: var(--ink);
  font-family: 'GothamBook', sans-serif;
}

/* Left block */
.invite-title{
  font-family: 'GothamBlack','GothamMedium',sans-serif;
  color: var(--secondary);
  line-height: 0.95;               /* tight, stacked lines */
  letter-spacing:.2px;
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 6.4vw, 4.6rem);  /* very large like screenshot */
}
.invite-underline{
  display:inline-block;
  width: 88px; height: 10px;
  background: var(--secondary);
  border-radius: 2px;
  margin: 8px 0 22px;
}
.invite-note{
  max-width: 460px;
  color:#686E79;
  line-height:1.9;
  margin:0;
}

/* Form base */
.invite-form{
  font-family:'GothamBook',sans-serif;
}
.form-label{
  font-family:'GothamMedium',sans-serif;
  font-size: 14px;
  color:#5A5F69;
  margin-bottom:8px;
}

/* Inputs (same look as screenshot) */
.form-control.custom{
  width:100%;
  background: #f3f3f3;
  border: none;
  border-radius: 0;
  height: 54px;
  padding: 0 16px;
  font-size: 15px;
  color:#2b2f38;
  outline: none;
}
.form-control.custom::placeholder{ color:#8B9098; }

/* Radio list */
.form-check-wrap{
  display:flex;
  flex-direction:column;
  gap: 12px;
  margin-top:8px;
}
.radio-line{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  color:#3b404a;
}
.radio-line input[type="radio"]{
  width:16px; height:16px;
  accent-color: var(--secondary);
}

/* Consent */
.consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color:#6A707A;
  line-height:1.6;
}
.consent input[type="checkbox"]{
  width:16px; height:16px; margin-top:3px;
  accent-color: var(--secondary);
}

/* Submit row & button (right aligned like screenshot) */
.submit-row{
  display:flex;
  justify-content:flex-end;
  margin-top: 22px;
}
.btn-invite{
  background:#1F2022;
  color:#fff;
  font-family:'GothamMedium','GothamBold',sans-serif;
  text-transform: uppercase;
  letter-spacing:.6px;
  border:none;
  padding: 1rem 2.6rem;
  border-radius: 2px;
  transition: background .2s ease, transform .2s ease;
}
.btn-invite:hover{ background: var(--secondary); transform: translateY(-1px); }

/* Mobile polish */
@media (max-width: 575.98px){
  .invite-title{ text-align:center; }
  .invite-underline{ display:block; margin-inline:auto; }
  .invite-note{ text-align:center; margin-inline:auto; }
  .submit-row{ justify-content:center; }
  .btn-invite{ width:100%; max-width:360px; }
}

/* Disclaimer Section */
.savills-disclaimer {
  background: var(--secondary);
  color: #fff;
  padding: clamp(40px, 6vw, 80px) 0;
  font-family: 'GothamBook', sans-serif;
  text-align: left;
}

/* Container width if no Bootstrap */


/* Title */
.disclaimer-title {
  font-family: 'GothamMedium', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Text */
.disclaimer-text {
  font-family: 'GothamBook', sans-serif;
  font-size: clamp(0.8rem, 1.2vw, 0.8rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Responsive Center Align (Optional) */
@media (max-width: 767.98px) {
  .savills-disclaimer {
    text-align: center;
  }
  .disclaimer-text {
    text-align: justify;
  }
}
/* Global safety net */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Fix navbar overflow + layout on mobile */
@media (max-width: 991.98px) {
  .navbar {
    overflow-x: hidden;
  }

  .navbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: left;       /* or center if you prefer */
  }

  /* Register button full-width inside collapsed menu */
  .navbar-nav .btn-register {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    background: #25273a;
  }
}
.navbar-nav .btn-register {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    background: #25273a;
  }