* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #222;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* LOGO */

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

/* NAVBAR */

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* HOVER EFFECT */

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #d4a017;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #d4a017;
}

/* HEADER HIDE */

.header-hide {
  transform: translateY(-100%);
}

/* MOBILE MENU ICON */

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #111;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  header {
    padding: 18px 30px;
  }

  nav {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 16px 20px;
  }

  /* MOBILE NAV */

  nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 25px;
    gap: 25px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
  }

  nav.active {
    right: 0;
  }

  nav a {
    font-size: 18px;
    width: 100%;
  }

  /* MENU ICON SHOW */

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 22px;
  }

  header {
    padding: 14px 16px;
  }

  nav {
    width: 240px;
  }
}

.logo h1 {
  font-size: 34px;
  font-weight: 700;
}

.logo p {
  color: #d4a017;
  font-weight: 300;
}

nav a {
  text-decoration: none;
  color: #222;
  margin: 10px;
  font-weight: 500;
}

nav a:hover {
  color: #d4a017;
}

.consult-btn {
  background: #d4a017;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.hero {
  height: 100vh;
  /* background: url('https://images.unsplash.com/photo-1460317442991-0ec209397118') center/cover no-repeat; */
  background: url("image/background1.jpg") center/cover no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  position: relative;
  padding: 4%;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #edc151;
  max-width: 700px;
}
.hero-content2 {
  position: relative;
  z-index: 2;
  color: #fffefc;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 65px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 700px;
}

.hero-buttons button {
  padding: 14px 30px;
  margin-right: 15px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-buttons button:hover {
  transform: scale(1.05);
}

.yellow-btn {
  background: #d4a017;
  color: white;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 12px;
  background: #f8f8f8;
}

.box {
  background: white;
  padding: 35px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  font-size: 22px;
  font-weight: 600;
}

.box:hover {
  transform: translateY(-8px);
  transition: 0.3s;
}

.section {
  padding: 80px;
  text-align: center;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {
  header {
    flex-direction: row;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h2 {
    font-size: 35px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

/*------- 2nd page css -------*/

.vision-section {
  padding: 80px 8%;
  background: #f8f8f8;
}

.vision-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vision-image {
  position: relative;
  width: 100%;
}

.vision-image img {
  width: 100%;
  max-width: 550px;
  height: 80vh;
  object-fit: cover;
  border-radius: 20px;
  border: 8px solid #d4a017;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  display: block;
}

.vision-image::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 550px;
  height: 500px;
  border: 3px dashed #d4a017;
  top: 20px;
  left: 20px;
  border-radius: 20px;
  z-index: -1;
}

/* Responsive */
@media (max-width: 768px) {
  .vision-image img {
    max-width: 100%;
    height: 45vh;
  }

  .vision-image::before {
    max-width: 100%;
    height: 350px;
  }
}

.small-heading {
  color: #d4a017;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.vision-content h2 {
  font-size: 50px;
  margin: 15px 0;
  color: #222;
}

.vision-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.vision-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 40px;
  margin-top: 20px;
  max-width: 500px;
}

.point {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  padding: 5px 0;
}

@media (max-width: 768px) {
  .vision-container {
    grid-template-columns: 1fr;
  }

  .vision-content h2 {
    font-size: 35px;
  }

  .vision-points {
    grid-template-columns: 1fr;
  }
}

.expertise-section {
  padding: 80px 8%;
  background: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.small-title {
  color: #d4a017;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 50px;
  margin: 15px 0;
  color: #222;
}

.section-header p {
  color: #666;
  max-width: 700px;
  margin: auto;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-box p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-box a {
  text-decoration: none;
  color: #d4a017;
  font-weight: 600;
}

.service-box a:hover {
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 35px;
  }
}

.investment-section {
  padding: 80px 8%;
  background: #f8f8f8;
}

.investment-heading {
  text-align: center;
  margin-bottom: 50px;
}

.investment-heading span {
  color: #d4a017;
  font-weight: 600;
  text-transform: uppercase;
}

.investment-heading h2 {
  font-size: 45px;
  margin: 15px 0;
}

.investment-heading p {
  color: #666;
  max-width: 700px;
  margin: auto;
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.investment-box {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.investment-box:hover {
  transform: translateY(-10px);
}

.investment-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.roi h4 {
  color: #d4a017;
  margin-bottom: 10px;
}

.roi p {
  font-weight: 600;
  margin-bottom: 20px;
}

.desc {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.investment-box a {
  text-decoration: none;
  color: #d4a017;
  font-weight: 600;
}

.investment-box a:hover {
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .investment-grid {
    grid-template-columns: 1fr;
  }

  .investment-heading h2 {
    font-size: 32px;
  }
}

.locations-section {
  padding: 80px 8%;
  background: #f8f8f8;
}

.location-heading {
  text-align: center;
  margin-bottom: 50px;
}

.location-heading span {
  color: #d4a017;
  font-weight: 600;
  text-transform: uppercase;
}

.location-heading h2 {
  font-size: 50px;
  margin: 15px 0;
}

.location-heading p {
  color: #666;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.location-box {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
}

.location-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px;
}

.overlay h3 {
  font-size: 28px;
}

.location-box:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .location-heading h2 {
    font-size: 35px;
  }
}

/* ------Footer-------- */

.footer {
  background: white;
  padding: 70px 8%;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-box h2 {
  font-size: 32px;
  color: #111;
}

.footer-box h3 {
  color: #111;
  margin-bottom: 20px;
}

.footer-box h4 {
  color: #d4a017;
}

.footer-box p {
  color: #666;
  line-height: 1.7;
  margin: 10px 0;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 12px;
  text-align: left;
}

.footer-box ul li a {
  text-decoration: none;
  color: #666;
}

.footer-box ul li a:hover {
  color: #d4a017;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin-right: 15px;
  text-decoration: none;
  color: #111;
}

.social-icons a:hover {
  color: #d4a017;
}

.office-card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: left;
}

.office-card a {
  text-decoration: none;
  color: #d4a017;
  font-weight: 600;
}

.office-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-box {
  text-align: left;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.footer-bottom p {
  color: #666;
  font-size: 14px;
}

/* --------feature properties--------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.featured-section {
  padding: 80px 8%;
  background: #f8f8f8;
}

/* Top Bar */

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 20px;
}

.heading-content span {
  color: #d4a017;
  font-weight: 600;
  text-transform: uppercase;
}

.heading-content h2 {
  font-size: 50px;
  margin-top: 10px;
}

.property-types button,
.cities-filter button {
  padding: 12px 22px;
  border: none;
  background: white;
  border-radius: 30px;
  cursor: pointer;
  margin: 5px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.property-types button:hover,
.cities-filter button:hover {
  background: #d4a017;
  color: white;
}

.cities-filter {
  margin: 35px 0;
}

/* Dubai Banner */

.dubai-banner {
  height: 500px;
  background: url("image/dubai.jpg") center/cover no-repeat;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
}

.banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  color: #f4e567;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.banner-overlay span {
  color: #f4c542;
  font-weight: 600;
  margin-bottom: 10px;
}

.banner-overlay h2 {
  font-size: 48px;
  max-width: 700px;
  margin-bottom: 20px;
}

.banner-overlay p {
  max-width: 700px;
  line-height: 1.8;
  font-size: 18px;
}

/* Property Cards */

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.property-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.property-card:hover {
  transform: translateY(-10px);
}

.property-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.property-content {
  padding: 25px;
}

.property-type {
  color: #d4a017;
  font-weight: 600;
}

.property-content h3 {
  font-size: 28px;
  margin: 10px 0;
}

.location {
  color: #666;
  margin-bottom: 20px;
}

.property-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.property-info h4 {
  font-size: 24px;
}

.property-info span {
  color: #666;
}

.property-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.property-buttons a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  background: #111;
  color: white;
  transition: 0.3s;
  font-size: 14px;
}

.property-buttons a:hover {
  background: #d4a017;
}

/* Bottom Button */

.view-more {
  text-align: center;
  margin-top: 50px;
}

.view-more button {
  padding: 16px 35px;
  border: none;
  border-radius: 40px;
  background: #d4a017;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.view-more button:hover {
  transform: scale(1.05);
}

/* Responsive */

@media (max-width: 992px) {
  .property-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .property-grid {
    grid-template-columns: 1fr;
  }

  .heading-content h2 {
    font-size: 35px;
  }

  .banner-overlay {
    padding: 30px;
  }

  .banner-overlay h2 {
    font-size: 30px;
  }
}

/*-------------Residential advisory---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.residential-section {
  padding: 80px 8%;
  background: #f8f8f8;
}

/* Heading */

.main-heading {
  margin-bottom: 50px;
}

.main-heading span {
  color: #d4a017;
  font-weight: 600;
  text-transform: uppercase;
}

.main-heading h1 {
  font-size: 60px;
  margin-top: 10px;
}

/* Grid */

.top-grid,
.middle-grid,
.bottom-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

/* Boxes */

.overview-box,
.insight-box,
.process-box,
.benefits-box,
.hotspots-box,
.faq-box,
.advantage-box {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.overview-box:hover,
.insight-box:hover,
.process-box:hover,
.benefits-box:hover,
.hotspots-box:hover,
.faq-box:hover,
.advantage-box:hover {
  transform: translateY(-8px);
}

.overview-box h2,
.insight-box h2,
.process-box h2,
.benefits-box h2,
.hotspots-box h2,
.faq-box h2,
.advantage-box h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

.overview-box p,
.insight-box p,
.advantage-box p {
  color: #666;
  line-height: 1.8;
  font-size: 17px;
}

/* Process */

.process-step {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.process-step span {
  width: 45px;
  height: 45px;
  background: #d4a017;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.process-step p {
  font-size: 17px;
}

/* Lists */

.benefits-box ul,
.hotspots-box ul {
  list-style: none;
}

.benefits-box ul li,
.hotspots-box ul li {
  margin-bottom: 15px;
  color: #555;
  font-size: 17px;
}

/* FAQ */

.faq-item {
  margin-bottom: 25px;
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
}

/* Buttons */

.action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.action-buttons button {
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  background: #111;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.action-buttons button:hover {
  background: #d4a017;
  transform: translateY(-5px);
}

/* Responsive */

@media (max-width: 992px) {
  .top-grid,
  .middle-grid,
  .bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-heading h1 {
    font-size: 40px;
  }

  .overview-box h2,
  .insight-box h2,
  .process-box h2,
  .benefits-box h2,
  .hotspots-box h2,
  .faq-box h2,
  .advantage-box h2 {
    font-size: 26px;
  }
}

/* ===== CONTACT & CONSULTATION ===== */

/* ===== GLOBAL ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8f8f8;
  overflow-x: hidden;
}

/* ===== CONTACT SECTION ===== */

.contact-section {
  padding: 100px 8%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    url("image/bg-pattern.jpg");
  background-size: cover;
}

/* ===== TOP SECTION ===== */

.contact-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}

/* ===== LEFT CONTENT ===== */

.contact-left span {
  color: #d4a017;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.contact-left h1 {
  font-size: 58px;
  line-height: 1.15;
  color: #111;
  margin-bottom: 25px;
  font-weight: 700;
}

.contact-left p {
  color: #666;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 35px;
  max-width: 650px;
}

/* ===== CONTACT BUTTONS ===== */

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-buttons a {
  flex: -1 1 220px;
  text-decoration: none;
  background: #d4a017;
  color: #111;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-buttons a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* background:white; */
  left: -100%;
  top: 0;
  transition: 0.5s;
  z-index: 0;
}

.contact-buttons a:hover::before {
  left: 0;
}

.contact-buttons a:hover {
  transform: translateY(-8px);
  color: white;
}

.contact-buttons a span,
.contact-buttons a br {
  position: relative;
  z-index: 2;
}

/* ===== FORM BOX ===== */

.form-box {
  background: white;
  padding: 45px;
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.form-box::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: #d4a0171c;
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.form-box h2 {
  font-size: 36px;
  margin-bottom: 35px;
  color: #111;
  position: relative;
}

/* ===== INPUTS ===== */

.input-group {
  margin-bottom: 22px;
}

.input-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 14px;
  outline: none;
  transition: 0.3s;
  background: #fafafa;
  font-size: 15px;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: #d4a017;
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.15);
  background: white;
}

.input-group textarea {
  resize: none;
  height: 150px;
}

/* ===== BUTTON ===== */

.send-btn {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 14px;
  background: #111;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

.send-btn:hover {
  background: #d4a017;
  transform: translateY(-5px);
}

/* ===== OFFICE GRID ===== */

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 35px;
}

/* ===== OFFICE CARD ===== */

.office-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.office-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: 0.5s;
}

.office-card:hover img {
  transform: scale(1.08);
}

.office-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
  color: white;
}

.office-overlay span {
  color: #f4c542;
  font-weight: 600;
  margin-bottom: 10px;
}

.office-overlay h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.office-overlay p {
  line-height: 1.8;
  margin-bottom: 25px;
}

.office-overlay a {
  text-decoration: none;
  width: fit-content;
  background: #d4a017;
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  transition: 0.4s;
}

.office-overlay a:hover {
  background: white;
  color: #111;
  transform: translateY(-5px);
}

/* ===== DUBAI HQ ===== */

.dubai-hq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 28px;
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hq-image {
  min-height: 550px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("image/dubai.jpg") center/cover no-repeat;
}

.hq-content {
  padding: 60px;
  background: #111;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hq-content span {
  color: #f4c542;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hq-content h2 {
  font-size: 52px;
  margin: 18px 0;
  line-height: 1.2;
}

.hq-content h3 {
  font-size: 28px;
  margin-bottom: 25px;
}

.hq-content p {
  line-height: 1.9;
  color: #ddd;
  margin-bottom: 35px;
}

/* ===== HQ BUTTONS ===== */

.hq-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hq-buttons button {
  padding: 15px 24px;
  border: none;
  border-radius: 12px;
  background: #d4a017;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

.hq-buttons button:hover {
  background: white;
  color: #111;
  transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .contact-top {
    grid-template-columns: 1fr;
  }

  .contact-left {
    text-align: center;
  }

  .contact-left p {
    margin: auto auto 35px;
  }

  .contact-buttons {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .office-grid {
    grid-template-columns: 1fr;
  }

  .dubai-hq {
    grid-template-columns: 1fr;
  }

  .hq-image {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 5%;
  }

  .contact-left h1 {
    font-size: 38px;
  }

  .form-box {
    padding: 30px;
  }

  .office-overlay h2 {
    font-size: 30px;
  }

  .hq-content {
    padding: 35px;
  }

  .hq-content h2 {
    font-size: 36px;
  }

  .hq-buttons button {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .contact-buttons a {
    width: 100%;
  }

  .contact-left h1 {
    font-size: 32px;
  }
}

/* *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
} */

.testimonial-section {
  padding: 90px 8%;
  background: #f8f8f8;
  overflow: hidden;
}

/* HEADING */

.testimonial-heading {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-heading span {
  color: #d4a017;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-heading h2 {
  font-size: 55px;
  margin-top: 15px;
  color: #111;
}

/* SLIDER */

.testimonial-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

/* CARD */

.testimonial-card {
  min-width: 380px;
  background: white;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.stars {
  color: #d4a017;
  font-size: 24px;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 25px;
  font-size: 16px;
}

.testimonial-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #111;
}

.testimonial-card span {
  color: #777;
}

/* ANIMATION */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .testimonial-heading h2 {
    font-size: 38px;
  }

  .testimonial-card {
    min-width: 300px;
  }
}

/* LOGO BOX */

.logo-box{
    display:flex;
    align-items:center;
    gap:14px;
}

/* LOGO IMAGE */

.logo-box img{
    width:55px;
    height:55px;
    object-fit:cover;
    border-radius:50%;
    border:2px solid #d4a017;
}

/* TEXT */

.logo-text h2{
    font-size:22px;
    font-weight:700;
    color:#111;
    line-height:1;
}

.logo-text span{
    font-size:13px;
    color:#777;
    letter-spacing:1px;
}

/* MOBILE */

@media(max-width:480px){

    .logo-box img{
        width:45px;
        height:45px;
    }

    .logo-text h2{
        font-size:18px;
    }

    .logo-text span{
        font-size:11px;
    }

}