* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-playfair: "Playfair Display", serif;
  --font-custom: "segoe", serif;
  --primary-color: rgba(201, 162, 77, 1);
  --font-popins: "Poppins", sans-serif;
}

@font-face {
  font-family: "segoe";
  src: url("font/Segoe\ UI.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.navbar {
  padding: 10px 20px !important;

  /* glass effect */
  background:
    linear-gradient(268.72deg,
      rgba(200, 153, 56, 0.4) 23.72%,
      rgba(211, 167, 79, 0.4) 32.09%,
      rgba(255, 236, 147, 0.4) 41.15%,
      rgba(228, 191, 102, 0.4) 48.59%,
      rgba(254, 216, 126, 0.4) 56.73%,
      rgba(200, 153, 56, 0.4) 64.86%,
      rgba(149, 110, 15, 0.4) 72.07%) bottom / 100% 1px no-repeat,
    rgba(15, 15, 15, 0.35);

  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  z-index: 9999 !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.navbar-bg {
  background-color: #0f0f0f !important;
}

.navbar-brand {
  margin-right: 120px !important;
}

.navbar-nav {
  gap: 30px !important;
}

.nav-link {
  position: relative;
  font-family: var(--font-custom) !important;
  font-size: 17px !important;
  color: white !important;
  padding-bottom: 6px;
}

/* hover line */
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(255, 236, 147, 0.9),
      rgba(200, 153, 56, 0.9));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

/* hover + active */
.nav-link:hover::after,
.nav-link.active::after {
  width: 50%;
}

.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.navbar-button-box button {
  font-size: 16px;
  font-family: var(--font-popins);
  color: white;
  background-color: var(--primary-color);
  border-radius: 100px;
  padding: 9px 22px;
  border: 2px solid #ddb965;
}

.support-button {
  background-color: transparent !important;
  border: none !important;
  padding: 9px 5px !important;
}

.navbar-toggler {
  border: none;
  background: none;
  border: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  border: none !important;
}

.toggler-icon {
  width: 26px;
  height: 18px;
  position: relative;
  display: block;
}

/* all lines */
.toggler-icon::before,
.toggler-icon::after,
.toggler-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

/* top */
.toggler-icon::before {
  top: 0;
}

/* middle */
.toggler-icon span {
  top: 8px;
}

/* bottom */
.toggler-icon::after {
  bottom: 0;
}

.view-all-stays-btn {
  font-size: 16px;
  font-family: var(--font-popins);
  color: white;
  background-color: transparent;
  border-radius: 100px;
  margin-top: 20px;
  padding: 12px 25px;
  border: 1px solid #ddb965;
}

.view-all-stays-btn:hover {
  background-color: #c9a24d;
  color: black;
  transition: all 0.3s ease-in-out;
}

.view-all-stays-btn a {
  text-decoration: none;
  color: inherit;
}

/* open → X */
.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
  transform: rotate(45deg);
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 8px;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span {
  opacity: 0;
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    padding: 20px 0;
    border-radius: 0 0 16px 16px;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 12px !important;
    text-align: center;
  }

  .navbar-button-box {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .navbar-toggler-icon {
    color: white !important;
  }

  .nav-link::after {
    bottom: 0px !important;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 20%;
  }
}

/* navbar */
/* hero */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  margin-top: -100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero {
  background: url(imgs/updaetdgallery.png) center / cover no-repeat;
  padding: 120px 0px !important;
  height: 75vh !important;
}

.packages-hero {
  background: url(imgs/updaetdpackagebg.png) center / cover no-repeat;
  padding: 120px 0px !important;
  height: 75vh !important;
}

.practical-info-hero {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(imgs/practicalinfoupdated.png) center / cover no-repeat;
  padding: 120px 0px !important;
  height: 75vh !important;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Individual Slides */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

/* Active Slide */
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Container needs to be above background */
.hero-container {
  position: relative;
  z-index: 2;
}

/* Hero Content */
.hero-content {
  text-align: center;
  padding: 0 95px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-family: var(--font-playfair);
  color: #c9a24d;
  font-weight: 600;
  line-height: 1.2;
}

.hero-content p {
  color: white;
  font-size: clamp(16px, 2.5vw, 24px);
  margin-top: 8px;
  font-weight: 300;
  font-family: var(--font-popins);
}

/* Buttons Container */
.hero-button-box {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.hero-button-box button {
  font-size: 17px;
  font-family: var(--font-popins);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid #c9a24d;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover Effect */
.hero-button-box button:hover {
  background-color: #c9a24d;
  color: #111;
  box-shadow: 0 8px 25px rgba(201, 162, 77, 0.4);
  transform: translateY(-2px);
}

/* Active Button */
.hero-button-box button.active {
  background-color: #c9a24d;
  color: #111;
}

/* Anchor Reset */
.hero-button-box button a {
  text-decoration: none;
  color: inherit;
}

/* Mobile Tweaks */
@media (max-width: 576px) {
  .hero {
    margin-top: -80px;
  }

  .hero-button-box button {
    width: 100%;
    max-width: 260px;
  }

  .hero-content {
    padding: 0px !important;
  }
}

/* hero */
/* support section */
.support-section {
  /* background-color: #0b0b0b; */
  padding: 50px 90px;
}

.support-row {
  padding: 32px 0px;
  border: 2px solid var(--primary-color);
  border-radius: 12px;

  position: relative;
}

.support-row::before {
  content: "";
  position: absolute;
  height: 60px;
  left: 27%;
  top: 30px;

  width: 2px;
  background-color: rgba(201, 162, 77, 0.3);
}

.support-row::after {
  content: "";
  position: absolute;
  height: 60px;
  left: 50%;
  top: 30px;

  width: 2px;
  background-color: rgba(201, 162, 77, 0.3);
}

.support-section-content {
  text-align: center;
}

.support-section-content::after {
  content: "";
  position: absolute;
  height: 60px;
  left: 73%;
  top: 30px;
  width: 2px;
  background-color: rgba(201, 162, 77, 0.1);
}

.support-section-content h5 {
  font-size: 18px;
  color: white;
  font-family: var(--font-popins);
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 5px;
}

@media (max-width: 900px) {
  .support-section {
    padding: 20px !important;
  }

  .support-row {
    padding: 20px 0px !important;
    margin-top: 30px !important;
  }

  /* Remove ::before and ::after for support-row */
  .support-row::before,
  .support-row::after {
    display: none !important;
  }

  .support-section-content {
    margin-top: 20px;
  }

  .support-section-content h5 {
    font-size: 14px;
  }

  /* Remove ::before and ::after for support-section-content */
  .support-section-content::before,
  .support-section-content::after {
    display: none !important;
  }
}

.wrapper-about {
  background: url(imgs/aboutbg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* support section */
/* Premium Transportation */
.premimum-transporation {
  padding: 80px 0px 80px 50px;
  overflow: hidden;
}

.premimum-transporation-content {
  text-align: start;
}

.premimum-transporation-content h2 {
  font-size: 48px;
  font-family: var(--font-playfair);
  font-weight: 600;
  color: #c9a24d;
}

.premimum-transporation-content p {
  font-size: 18px;
  font-family: var(--font-popins);
  color: white;
  margin-bottom: 70px;
}

.premimum-transporation-content ul {
  padding: 0;
  list-style: none;
}

.premimum-transporation-content ul li {
  font-size: 18px;
  font-family: var(--font-popins);
  color: white;
  margin-top: 15px;
}

/* Image Slider Container */
.premimum-transporation-pictures {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.transport-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual Slides */
.transport-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* First image should be visible initially */
.transport-slide:first-child {
  position: relative;
}

/* Active Slide */
.transport-slide.active {
  opacity: 1;
  z-index: 1;
}

@media (max-width: 900px) {
  .premimum-transporation {
    padding: 20px 0px;
  }

  .premimum-transporation-content h2 {
    font-size: 36px;
  }

  .premimum-transporation-content p {
    margin-bottom: 50px;
    font-size: 14px;
  }

  .premimum-transporation-content ul li {
    font-size: 14px;
  }

  .premimum-transporation-content {
    padding: 10px;
  }
}

/* welcome-section */
.welcome-section {
  /* background: url(imgs/Home\ \(3\).png); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0px;
}

.second-welcome-section {
  background: url(imgs/triplesectionwrapper.png);
  background-position: center;
  background-size: cover;
  padding-bottom: 40px;
  background-repeat: no-repeat;
}

.welcome-section-pictures img {
  width: 100%;
}

.welcome-section-content h1 {
  font-size: 45px;
  font-family: var(--font-playfair);
  color: var(--primary-color);
  font-weight: 600;
}

.welcome-section-content p {
  font-size: 18px;
  font-family: var(--font-popins);
  color: white;
}

.welcome-section-content button {
  font-size: 16px;
  font-family: var(--font-custom);
  color: white;
  border: 1px solid rgba(255, 236, 147, 1);
  padding: 12px 25px;
  background-color: transparent;
  transition: 0.3s ease-in-out;
  border-radius: 100px;
}

.welcome-section-content button:hover {
  background-color: rgba(255, 236, 147, 1);
  color: black;
}

.welcome-section-content button:hover a {
  color: black !important;
}

@media (max-width: 900px) {
  .welcome-section-content h1 {
    font-size: 38px;
  }

  .welcome-section-content p {
    font-size: 14px;
  }
}

/* welcome-section */
/* stay-plans */
.stays-plans {
  padding: 90px 50px;
  /* background: url(imgs/Home\ \(4\).png); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.stays-plans h1 {
  font-size: 48px;
  font-family: var(--font-playfair);
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0;
}

.stays-plans p {
  font-size: 18px;
  font-family: var(--font-popins);
  color: white;
}

.stays-plans-content {
  padding: 30px 30px 5px 30px;
  background-image: linear-gradient(to right top,
      #0e0e0d,
      #13130f,
      #171610,
      #1c1a12,
      #201d13,
      #242014,
      #282316,
      #2c2617,
      #302919,
      #342d1a,
      #39301c,
      #3d341e);

  border-radius: 40px;
  border: 1px solid #483a1f;
}

.stays-plans-content-active {
  background-color: #0c0c0c;
  background-image: linear-gradient(21.13deg,
      rgba(201, 162, 77, 0) 1.07%,
      rgba(201, 162, 77, 0.2) 108.48%);
  box-shadow:
    0 20px 50px rgba(201, 162, 77, 0.4),
    0 30px 70px rgba(201, 162, 77, 0.2);
}

.stays-plans-content h3 {
  text-align: start;
  font-family: var(--font-playfair);
  color: white;
  font-size: 24px;
}

.stays-plans-content h3 span {
  position: relative;
  font-size: 14px;
  font-family: var(--font-custom);
  color: white;
  padding: 7px 16px;
  border-radius: 50px;
  background: transparent;
  border: none;
  display: inline-block;
}

.stays-plans-content h3 span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(267.12deg,
      #c89938 -2.8%,
      #d3a74f 15.4%,
      #ffec93 35.11%,
      #e4bf66 51.28%,
      #fed87e 68.97%,
      #c89938 86.66%,
      #956e0f 102.33%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.tag-active {
  background-color: var(--primary-color) !important;
  color: white !important;
}

.stays-plans-content h4 {
  font-size: 15px;
  font-family: var(--font-custom);
  text-align: start;
  margin-top: 2px;
  color: white;
  border-bottom: 1px solid #463f31;
  padding-bottom: 30px;
}

.stays-plans-content h1 {
  font-size: 48px;
  font-family: var(--font-popins);
  color: rgba(201, 162, 77, 1);
  font-weight: 600;
  text-align: start;
  margin-top: 30px;
  margin-bottom: 0;
}

.person-tag {
  font-size: 14px;
  color: white;
  text-align: start;
  margin: 0;
  width: 100%;
  font-family: var(--font-custom);
}

.stays-plans-content button {
  position: relative;
  width: 100%;
  border-radius: 50px;
  margin-top: 20px;
  font-family: var(--font-popins);
  color: white;
  height: 50px;
  background-color: transparent;
  border: none;
}

.stays-plans-content button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(267.12deg,
      #c89938 -2.8%,
      #d3a74f 15.4%,
      #ffec93 35.11%,
      #e4bf66 51.28%,
      #fed87e 68.97%,
      #c89938 86.66%,
      #956e0f 102.33%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.active-button {
  background-color: var(--primary-color) !important;
  color: white !important;
}

.stays-plans-content button:hover {
  background-color: var(--primary-color);
  color: black;
  transition: 0.3s ease-in-out;
}

.stays-plans-content ul {
  padding: 0;
  list-style: none;
  margin-top: 20px;
}

.stays-plans-content ul li {
  text-align: start;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  font-size: 16px;
  padding-bottom: 10px;
  margin-top: 10px;
  color: white;
  border-bottom: 1px solid #37332a;
}

.last-li {
  border: none !important;
}

@media (max-width: 900px) {
  .stays-plans {
    padding: 30px 10px !important;
  }

  .stays-plans h1 {
    font-size: 36px;
  }

  .stays-plans p {
    font-size: 17px;
  }
}

/* stay-plans */
/* review-section */
.reviews-section {
  background: url(imgs/Home\ \(5\).png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 20px;
  overflow: hidden;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
}

.reviews-title {
  font-family: var(--font-playfair);
  font-size: 48px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
}

.reviews-subtitle {
  font-family: var(--font-popins);
  font-size: 16px;
  color: #b8b8b8;
  text-align: center;
  margin-bottom: 60px;
}

.reviews-marquee {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 30px;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  background: #0b0b0b;
  border: 1px solid rgba(201, 162, 77, 0.2);
  border-radius: 8px;
  padding: 30px;
  min-width: 380px;
  max-width: 380px;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.review-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 10px 30px rgba(201, 162, 77, 0.2);
}

.review-text {
  font-family: var(--font-popins);
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 100px;
}

.review-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.review-stars span {
  color: var(--primary-color);
  font-size: 18px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-playfair);
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: var(--font-popins);
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-location {
  font-family: var(--font-popins);
  font-size: 13px;
  color: #b8b8b8;
}

@media (max-width: 768px) {
  .reviews-title {
    font-size: 36px;
  }

  .review-card {
    min-width: 320px;
    max-width: 320px;
  }
}

/* review-section */
/* umrah-journey */
.umrah-journey-main-section {
  background-color: #0b0b0b;
  height: fit-content;
  background: url("imgs/da.png") center/cover no-repeat;
  padding: 50px;
}

.umrah-journey {
  background: url("imgs/Section.png") center/cover no-repeat;
  padding: 50px 50px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

/* .umrah-journey::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(45, 45, 45, 0.6) 100%
  );
  z-index: 1;
} */

.journey-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.journey-content {
  padding: 20px;
}

.journey-title {
  font-family: var(--font-playfair);
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.journey-description {
  font-family: var(--font-popins);
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.journey-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-custom);
  background: var(--primary-color);
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 162, 77, 0.3);
}

.btn-secondary {
  position: relative;
  font-family: var(--font-custom);
  background: transparent;
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1.5px;
  background: linear-gradient(267.12deg,
      #c89938 -2.8%,
      #d3a74f 15.4%,
      #ffec93 35.11%,
      #e4bf66 51.28%,
      #fed87e 68.97%,
      #c89938 86.66%,
      #956e0f 102.33%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.btn-secondary:hover {
  background: white;
  border-color: #ffffff;
  color: black;
  /* transform: translateY(-3px); */
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.col-6 {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .umrah-journey {
    margin: 40px 15px;
    padding: 60px 15px;
    border-radius: 15px;
  }

  .umrah-journey-main-section {
    padding: 10px !important;
  }

  .journey-title {
    font-size: 32px;
  }

  .journey-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .journey-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    padding: 14px 30px;
  }
}

@media (max-width: 480px) {
  .journey-title {
    font-size: 28px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 15px;
  }
}

/* umrah-journey */
/* footer */
footer {
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 20px 30px;
  /* margin-top: 80px; */
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-family: var(--font-popins);
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-tagline {
  font-family: var(--font-popins);
  font-size: 14px;
  line-height: 1.6;
  color: #b8b8b8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8b8b8;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-color);
  color: #1a1a1a;
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-popins);
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  font-family: var(--font-popins);
  font-size: 14px;
  margin-bottom: 12px;
  color: #b8b8b8;
  transition: color 0.3s ease;
}

.footer-links .footer-list li a {
  color: #b8b8b8;
  text-decoration: none;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
  display: inline-block;
}

.footer-links .footer-list li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-item svg {
  color: var(--primary-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item span {
  line-height: 1.5;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(201, 162, 77, 0.3),
      transparent);
  margin-bottom: 30px;
}

.footer-bottom {
  text-align: center;
}

.footer-copyright {
  font-family: var(--font-popins);
  font-size: 14px;
  color: #808080;
}

.footer-copyright p {
  margin: 5px 0;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 50px 20px 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-heading {
    font-size: 18px;
  }

  .footer-copyright {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .social-icon {
    width: 40px;
    height: 40px;
  }

  .footer-list li {
    font-size: 13px;
  }

  .contact-item svg {
    width: 16px;
    height: 16px;
  }
}

/* footer */
/* gallery */
/* gallery-section */
.gallery-section {
  background: url(imgs/Gallery\ \(3\).png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 70px;
  position: relative;
  overflow: hidden;
}

/* .umrah-journey-wrapper {
  background: url(imgs/da.png) !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
} */
.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%,
      rgba(201, 162, 77, 0.03) 0%,
      transparent 70%);
  pointer-events: none;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-title {
  font-family: var(--font-playfair);
  font-size: 48px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
}

.gallery-subtitle {
  font-family: var(--font-popins);
  font-size: 16px;
  color: #b8b8b8;
  text-align: center;
  margin-bottom: 50px;
}

/* Filter Buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-popins);
  background: rgba(40, 40, 40, 0.6);
  color: #ffffff;
  border: 1px solid rgba(201, 162, 77, 0.2);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.filter-btn:hover {
  background: rgba(201, 162, 77, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

/* Gallery Grid - 3 COLUMNS */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-family: var(--font-playfair);
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

.gallery-overlay p {
  font-family: var(--font-popins);
  font-size: 14px;
  color: #e0e0e0;
  margin: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.15s;
}

.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Hide/Show Animation */
.gallery-item.hide {
  display: none;
}

.gallery-item.show {
  display: block;
  animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 15px;
  }

  .gallery-title {
    font-size: 36px;
  }

  .gallery-filters {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-overlay h3 {
    font-size: 18px;
  }

  .gallery-overlay p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* gallery-section */

.notification-banner {
  position: relative;
  max-width: 900px;
  margin: 30px auto;
  background: rgba(201, 162, 77, 0.14);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.notification-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  border: none;
  border-left: 3px solid var(--primary-color) !important;
}

.notification-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.notification-icon svg {
  width: 24px;
  height: 24px;
}

.notification-text {
  position: relative;
  z-index: 1;
  flex: 1;
}

.notification-text p {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.7;
  font-family: var(--font-popins);
  margin: 0;
  font-weight: 300;
}

@media (max-width: 768px) {
  .notification-banner {
    padding: 18px 24px;
    gap: 14px;
    border-radius: 12px;
  }

  .notification-main {
    padding: 0px 20px;
  }

  .notification-text p {
    font-size: 12px;
    /* line-height: 1.6; */
  }
}

/* preloader */
/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999999 !important;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-text {
  color: #d3a74f;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  display: none;
  font-weight: 500;
  margin-top: 30px;
  letter-spacing: 1px;
}

/* Honeycomb Animation */
@-webkit-keyframes honeycomb {

  0%,
  20%,
  80%,
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  30%,
  70% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes honeycomb {

  0%,
  20%,
  80%,
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  30%,
  70% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.honeycomb {
  height: 24px;
  position: relative;
  width: 24px;
}

.honeycomb div {
  -webkit-animation: honeycomb 2.1s infinite backwards;
  animation: honeycomb 2.1s infinite backwards;
  background: linear-gradient(135deg, #c89938 0%, #d3a74f 50%, #ffec93 100%);
  height: 12px;
  margin-top: 6px;
  position: absolute;
  width: 24px;
}

.honeycomb div:after,
.honeycomb div:before {
  content: "";
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  position: absolute;
  left: 0;
  right: 0;
}

.honeycomb div:after {
  top: -6px;
  border-bottom: 6px solid #d3a74f;
}

.honeycomb div:before {
  bottom: -6px;
  border-top: 6px solid #d3a74f;
}

.honeycomb div:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  left: -28px;
  top: 0;
}

.honeycomb div:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  left: -14px;
  top: 22px;
}

.honeycomb div:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  left: 14px;
  top: 22px;
}

.honeycomb div:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  left: 28px;
  top: 0;
}

.honeycomb div:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  left: 14px;
  top: -22px;
}

.honeycomb div:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  left: -14px;
  top: -22px;
}

.honeycomb div:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  left: 0;
  top: 0;
}