:root {
  --primary: #5f0c0b;
  --secondary: #af8d63;
  --light: #f8f6f3;
  --dark: #1d1d1d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 /* font-family: "Poppins", sans-serif;*/
}

body {
  background: #fff;
  overflow-x: hidden;
}

/* ================= HEADER ================= */

header {
  width: 100%;
  background: #fff;
  padding: 14px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.logo img {
  width: 210px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.header-btn {
  background: var(--secondary);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
}

.header-btn:hover {
  background: var(--primary);
}

/* ================= HERO ================= */

.hero {
  min-height: 92vh;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 60px 7%;
  background:
    linear-gradient(90deg, rgba(95, 12, 11, 0.92), rgba(175, 141, 99, 0.78)),
    /* url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1920'); */
    url(../img/dubai.jpeg);

  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* LEFT SIDE */

.hero-left {
  width: 58%;
  position: relative;
}

.hero-title {
  color: #fff;
  font-size: 58px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero-text {
  color: #f3f3f3;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-buttons a {
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #fff;
  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

/* IMAGE COLLAGE */

.collage {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-top: 50px;
}

.collage img {
  width: 170px;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  border: 8px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transform: rotate(-4deg);
}

.collage img:nth-child(2) {
  transform: rotate(4deg);
  margin-bottom: 30px;
}

.collage img:nth-child(3) {
  transform: rotate(-6deg);
}

/* RIGHT LOGIN BOX */

.hero-right {
  width: 380px;
}

.login-box {
  background: rgba(255, 255, 255, 0.97);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.login-box h2 {
  font-size: 28px !important;
  color: #5F0C0B;
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  height: 58px;
  border: none;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 15px;
  color: #000 !important;
}

.form-group input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(175, 141, 99, 0.2);
}

.remember {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}

.remember a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
}

.login-btn {
  width: 100%;
  height: 58px;
  border: none;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background: var(--secondary);
}

/* ================= SECTION ================= */

.section {
  padding: 90px 7%;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  color: #000;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 25px;
}

.card-content p {
  color: #666;
  line-height: 1.7;
}

/* CTA */

.cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta p {
  color: #eee;
  font-size: 18px;
  margin-bottom: 35px;
}

.cta a {
  text-decoration: none;
  background: var(--secondary);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 600;
}

/* FOOTER */

footer {
/*  background: #2a0505;*/
  background: #000;
  color: #bbb;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}

/* ================= MOBILE ================= */

@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .hero-left {
    width: 100%;
  }

  .hero-right {
    width: 100%;
    max-width: 420px;
    margin: 50px auto;
    position: unset !important;
  }

  .collage {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  nav {
    gap: 10px;
  }

  nav a {
    font-size: 13px;
  }

  .header-btn {
    padding: 10px 16px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-text {
    font-size: 16px;
  }

  .collage img {
    width: 110px;
    height: 220px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .cta h2 {
    font-size: 34px;
  }
}

/* .alert-danger{
        color: red;
    }

    .alert-success{
        color: green;
    } */

.header-top-section-new {
  background-color: var(--theme-2);
}

.header-top-section-new .container-fluid {
  padding: 0 150px;
}


 ul li a {
  /* display: inline-block !important; */
  font-size: 16px !important;
  font-weight: 500 !important;
  color: var(--header) !important;
  padding: 20px 0 !important;
  text-align: left !important;
  position: relative !important;
  
  transition: all 0.4s ease-in-out !important;
}

.header-top-wrapper-new .top-right li a{
  font-size: 13px !important;
  font-weight: 500;
}

#header-sticky{
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer p{
 color: #fff;
}