/* =======================================
    Global Styles (Reset + Base Styling)
    ======================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Prevents padding/borders from increasing element size */
}

body {
  font-family: "Inter", sans-serif;
  /* A more modern and versatile font */
  line-height: 1.6;
  /* Improves readability */
  color: #014d4d;
  /* Default text color */
  background: #014d4d;
  /* A soft, light background */
}

/* =======================================
    Fullscreen Header Section
    (Background image + overlay)
    ======================================= */
.home-site-header {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Takes up full viewport height */
  background: url("images/background-2.jpg") center/cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Dark overlay on top of background image */
.home-site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  /* covers entire parent */
  background: rgba(0, 0, 0, 0.55);
  /* Slightly darker overlay for better contrast */
  z-index: 0;
}

/* Header container for logo + navigation */
.home-header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  /* Increased padding for better spacing */
  position: relative;
  z-index: 2;
  /* Above overlay */
}

/* Logo image size for the main header */
.home-logo img {
  /* Pixel-perfect control */
  height: 120px;
  width: auto;
  /* Allows the width to adjust automatically to the height to maintain aspect ratio */
  object-fit: contain;
  /* Ensures the image fits without being cropped or distorted */
}

/* =======================================
    Navigation Menu (Desktop)
    ======================================= */
.home-nav-menu {
  display: block;
}

.home-nav-menu ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  /* Space between menu items */
}

.home-nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
  /* Smooth hover effect */
}

.home-nav-menu a:hover {
  color: #d4af37;
  /* A rich, luxurious gold hover effect */
}

/* Mobile hamburger menu button */
.home-burger {
  display: none;
  /* Hidden by default (visible in mobile) */
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Mobile-only socials (hidden by default) */
.home-mobile-socials {
  display: none;
}

/* =======================================
    Belt Header (Top Navigation Strip)
    ======================================= */
.home-belt-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* Left - Center - Right layout */
  align-items: center;
  height: 150px;
  background: #014d4d;
  /* A deep, elegant black */
  position: relative;
  z-index: 10;
  opacity: 1;
}

/* Left & Right sections inside belt */
.home-belt-left,
.home-belt-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  /* Increased space for better visual separation */
  padding: 0 2rem;
  /* Increased padding */
  height: 100%;
}

/* Social media icons inside belt */
.home-belt-left img,
.home-belt-right img {
  width: 24px;
  /* Slightly larger icon size for clarity */
  height: 24px;

  /* Makes icons white */
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect for icons */
.home-belt-left a:hover img,
.home-belt-right a:hover img {
  /* Subtle change on hover */
}

/* Right-side navigation inside belt */
.home-belt-right nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.home-belt-right nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.home-belt-right nav a:hover {
  color: #d4af37;
  /* A rich, luxurious gold hover effect */
}

/* Center logo box (inside belt header) */
.home-belt-center {
  position: relative;
  z-index: 2;
}

/* Logo box styling (stands out in center) */
.home-logo-box {
  background: #014d4d;
  border-radius: 18px;
  /* Slightly more rounded corners for a modern feel */

  /* More subtle, elegant shadow */
  text-align: center;
  padding: 10px 20px;
  /* Adds internal spacing for the logo */
}

/* Logo image inside the belt header */
.home-logo-box img {
  /* Pixel-perfect control */
  height: 140px;
  width: 300px;
  opacity: 1;
  scale: (1.5);
  /* Allows the width to adjust automatically to the height */
  object-fit: contain;
  /* Ensures the image fits without being cropped or distorted */
}
/* =======================================
   Responsive (Mobile & Tablet <= 768px)
   ======================================= */
@media (max-width: 768px) {
  /* Belt header becomes a flex row instead of grid */
  .home-belt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;

    background: #000000;
  }

  /* Hide left socials on mobile */
  .home-belt-left {
    display: none;
  }

  /* Move logo box order before nav */
  .home-belt-center {
    order: 1;
  }

  /* Simplify logo box design for small screens */
  .home-logo-box {
    background: none;
    box-shadow: none;
    padding: 0;
    transform: none;
  }

  .home-logo-box img {
    max-height: 120px; /* smaller logo for mobile */
  }

  /* Nav / burger container on right side */
  .home-belt-right {
    order: 2;
  }

  /* Show burger menu button */
  .home-burger {
    display: block;
    margin-left: auto;
  }

  /* Mobile dropdown nav (hidden by default) */
  .home-nav-menu {
    display: none;
    position: absolute;
    top: 100px;
    right: 0;
    background: #000000;
    width: 100%;
    padding: 1rem;
    text-align: center;
  }

  .home-nav-menu ul {
    flex-direction: column; /* Stack menu vertically */
    gap: 1rem;
  }

  /* Show nav menu when toggled */
  .home-nav-menu.active {
    display: block;
  }

  /* Mobile-only socials (appear under nav menu) */
  .home-mobile-socials {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .home-mobile-socials img {
    width: 24px;
    filter: invert(1); /* makes icons white */
  }
}

/* Utility class for hiding elements */
.hidden {
  display: none;
}

/* Full screen Swiper banner */

/* =======================================
   Navigation Menu Links (Polished + Animated)
   ======================================= */
.home-nav-menu a {
  position: relative;
  display: inline-block;
  font-family: "Poppins", "Inter", sans-serif; /* modern & clean */
  font-size: 1rem; /* slightly larger for readability */
  font-weight: 600; /* stronger emphasis */
  letter-spacing: 0.8px; /* more breathing space */
  text-transform: uppercase; /* bold navigation feel */

  color: #fff;
  text-decoration: none;

  /* underline animation using pseudo element */
  transition: color 0.3s ease, transform 0.25s ease;
}

.home-nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #fff);
  transition: width 0.35s ease-in-out;
}

.home-nav-menu a:hover,
.home-nav-menu a:focus-visible {
  color: #d4af37;
  transform: translateY(-2px); /* slight lift */
}

.home-nav-menu a:hover::after,
.home-nav-menu a:focus-visible::after {
  width: 100%; /* underline grows */
}

/* Active link highlight (optional) */
.home-nav-menu a.is-active {
  color: #d4af37;
}

.home-nav-menu a.is-active::after {
  width: 100%;
}

/* logo alignment */
/* Force logo/image to the left below 766px */
@media (max-width: 766px) {
  .home-belt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
  }

  /* Logo always left */
  .home-belt-center {
    order: 0;
    margin-right: auto;
    justify-self: flex-start;
  }

  .home-logo-box img {
    max-height: 80px; /* slightly smaller for mobile */
    width: auto;
  }

  /* Burger / nav toggle always on right */
  .home-belt-right {
    order: 1;
    margin-left: auto;
  }

  /* Hide socials fully below 766px */
  .home-belt-left {
    display: none !important;
  }
}

html,
body {
  overflow-x: hidden; /* stop horizontal scrollbars */
}

/* =======================================
   Home Banner (Swiper Slider)
   ======================================= */

/* Swiper container full screen */
.homebanner-slider {
  width: 100%;
  height: 80vh !important;
  position: relative;
}

.homebanner-media-bg {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  object-position: center; /* center video/image instead of top-left */
  display: block; /* prevents gaps with inline images */
}

.swiper-slide {
  height: 90% !important; /* make each slide inherit the slider height */
}

/* Overlay content */
.homebanner-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  max-width: 90%;
}

.homebanner-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.homebanner-subtitle {
  font-size: 1.2rem;
  color: #ddd;
}

/* Cursor effect */
.cursor {
  display: inline-block;
  background-color: white;
  margin-left: 3px;
  width: 3px;
  animation: blink 1s infinite;
}

.cursor.typing {
  animation: none;
}

@keyframes blink {
  0%,
  49% {
    background-color: white;
  }
  50%,
  99% {
    background-color: transparent;
  }
  100% {
    background-color: white;
  }
}

/* Swiper controls */
/* Base Swiper navigation buttons */
#swiper-button-next,
#swiper-button-prev {
  color: #d4af37; /* red arrow */
  background: rgba(0, 0, 0, 0.6); /* semi-transparent circle */
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

/* Make sure arrows (icons inside) scale correctly */
#swiper-button-next::after,
#swiper-button-prev::after {
  font-size: 18px; /* size of the arrow */
  font-weight: bold;
}

/* Hover effects */
#swiper-button-next:hover,
#swiper-button-prev:hover {
  background: #d4af37;
  color: #000000; /* turn arrow white */
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Position tweaks (you can adjust depending on design) */
#swiper-button-next {
  right: 15px;
}
#swiper-button-prev {
  left: 15px;
}

/* Responsiveness */
@media (max-width: 1024px) {
  #swiper-button-next,
  #swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  #swiper-button-next::after,
  #swiper-button-prev::after {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #swiper-button-next,
  #swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  #swiper-button-next::after,
  #swiper-button-prev::after {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #swiper-button-next,
  #swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  #swiper-button-next::after,
  #swiper-button-prev::after {
    font-size: 12px;
  }
}

.swiper-pagination-bullet {
  background: white;
  font-size: 2rem;
}

/* Base bullets */
.swiper-pagination-bullet {
  width: 3rem; /* size */
  height: 3rem;
  border-radius: 50%; /* make them circular */
  background: #ccc; /* default color */
  opacity: 0.6;
  transition: all 0.3s ease;
  margin: 0 6px !important; /* spacing between bullets */
}

/* Active bullet */
.swiper-pagination-bullet-active {
  width: 5rem; /* slightly larger */
  height: 5rem;
  background: linear-gradient(
    135deg,
    #e11d2e,
    #ff6b6b
  ); /* gradient red shine */
  box-shadow: 0 0 6px rgba(225, 29, 46, 0.6);
  opacity: 1;
  transform: scale(1.4);
}

/* Hover effect (desktop) */
.swiper-pagination-bullet:hover {
  background: #999;
  opacity: 0.9;
  transform: scale(1.8);
}

/* Smooth transition */
.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .homebanner-title {
    font-size: 2rem;
  }
  .homebanner-subtitle {
    font-size: 1rem;
  }
}

/* Button Container */
.homebanner-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Neutral outline button */
.btn-outline-neutral {
  padding: 12px 28px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  color: #ded602;

  border: 5px solid #f7e27f;
  border-radius: 30px;
  background: transparent;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
}

.btn-outline-neutral:hover {
  color: #e7e7e7;
  border-color: #ffffff;
}

.btn-red-shine {
  --btn-red: #ffd700;
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  color: #000000;
  background: var(--btn-red);
  border: 2px solid var(--btn-red);
  box-shadow: 0 6px 18px #f7e27f;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Shine layer */
.btn-red-shine::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(255, 255, 255) 35%,
    /* thicker + brighter */ rgb(255, 255, 255) 45%,
    /* extend width of shine */ rgba(255, 255, 255, 0) 80%
  );
  transform: translateX(-150%) skewX(-20deg);
  will-change: transform;
  pointer-events: none;
  animation: shine-sweep 5s ease-in-out infinite; /* slower + looping */
}

/* Hover/Focus still lifts button */
.btn-red-shine:hover,
.btn-red-shine:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px #877204;
}

/* Pressed */
.btn-red-shine:active {
  transform: translateY(0);
  box-shadow: 0 12px 24px #f7db7f;
}

/* Focus ring */
.btn-red-shine:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7),
    0 0 0 6px rgba(225, 29, 46, 0.5), 0 10px 26px #f7e27f;
}

/* Animation */
@keyframes shine-sweep {
  to {
    transform: translateX(150%) skewX(-20deg);
  }
}

/* ✅ Responsive Buttons Below 800px */
@media (max-width: 900px) {
  .homebanner-buttons {
    flex-direction: column; /* stack vertically */
    align-items: center;
    gap: 12px; /* slightly smaller gap */
  }

  .btn-outline-neutral,
  .btn-red-shine {
    width: 100%; /* full width for small screens */
    max-width: 320px; /* prevent them from being too wide */
    padding: 10px 20px; /* reduce padding */
    font-size: 0.9rem; /* slightly smaller font */
    border-radius: 20px; /* more compact pill shape */
  }
}

/* ✅ Even smaller screens (below 480px) */
@media (max-width: 480px) {
  .btn-outline-neutral,
  .btn-red-shine {
    max-width: 260px; /* narrower for phones */
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

/* =======================================
   Responsive Styles for Home Banner
   ======================================= */

/* Base Styles (All screens) */
.homebanner-slider {
  width: 100%;
  height: 100vh;
  position: relative;
}

.homebanner-media-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homebanner-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  pointer-events: none;
  padding: 0 10px; /* prevents text cutoff on mobile */
}

.homebanner-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.homebanner-subtitle {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* Pagination & Navigation Defaults */
.swiper-button-prev,
.swiper-button-next {
  width: 44px;
  height: 44px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

/* Small Mobile (up to 320px) */
@media (max-width: 320px) {
  .homebanner-title {
    font-size: 1.4rem;
  }
  .homebanner-subtitle {
    font-size: 0.85rem;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 24px;
    height: 24px;
    margin-left: 0;
    margin-right: 0;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 8px;
  }
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/* Larger Mobile (321px–480px) */
@media (min-width: 321px) and (max-width: 480px) {
  .homebanner-title {
    font-size: 1.8rem;
  }
  .homebanner-subtitle {
    font-size: 1rem;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 38px;
    height: 38px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 18px;
  }
}

/* Tablets (481px–768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .homebanner-title {
    font-size: 2.3rem;
  }
  .homebanner-subtitle {
    font-size: 1.1rem;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 42px;
    height: 42px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 20px;
  }
}

/* Large Tablets & Small Laptops (769px–992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .homebanner-title {
    font-size: 2.7rem;
  }
  .homebanner-subtitle {
    font-size: 1.2rem;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 46px;
    height: 46px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 21px;
  }
}

/* Laptops (993px–1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
  .homebanner-title {
    font-size: 3rem;
  }
  .homebanner-subtitle {
    font-size: 1.3rem;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 48px;
    height: 48px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 22px;
  }
}

/* Desktops (1201px and above) */
@media (min-width: 1201px) {
  .homebanner-title {
    font-size: 3.5rem;
  }
  .homebanner-subtitle {
    font-size: 1.5rem;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 52px;
    height: 52px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 24px;
  }
}

/* For the heading */

.scroll-down {
  text-align: center;
  margin-top: 60px;
}

.uncover-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* spacing between text and arrow */
  cursor: pointer;
}

.uncover-text {
  font-size: clamp(1.4rem, 2.2vw, 2.5rem);
  /* responsive font */
  color: #ffd700;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.arrow-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
}

.chevron {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: #ffffff;
  animation: chevronBounce 4s infinite;
  opacity: 0;
}

/* first arrow */
.chevron:nth-child(1) {
  animation-delay: 0s;
}

/* second arrow */
.chevron:nth-child(2) {
  animation-delay: 1s;
}

@keyframes chevronBounce {
  0% {
    transform: translateY(-6px);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  70% {
    transform: translateY(6px);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* mobile spacing adjustments */
@media (max-width: 480px) {
  .scroll-down {
    margin-top: 40px;
  }

  .arrow-wrapper {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 1100px) {
  .home-nav-menu ul {
    gap: 0.2rem;
  }
  .home-nav-menu a {
    font-size: 0.75rem; /* slightly larger for readability */
  }
}

/*=========================================
 Social media links 
 ============================================*/

/* Social nav wrapper */
.sh-social {
  display: flex;
  margin-right: 6rem;
  /* reduced */
  align-items: center;
}

/* Flex container for icons */
.landing-social {
  display: flex;
  gap: 0.8rem;
  /* tighter spacing */
  justify-content: center;
  align-items: center;
  z-index: 3;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each item */
.landing-social-item {
  position: relative;
  width: 48px;
  /* reduced from 64px */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Link (icon background circle) */
.landing-social-link {
  position: relative;
  z-index: 2;
  width: 34px;
  /* reduced from 44px */
  height: 34px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #dce8e5;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.landing-social-link:hover {
  background: #ffea06;
  transform: translateY(-3px) scale(1.05);
}

/* Icon inside */
.landing-social-link svg {
  width: 18px;
  /* reduced */
  height: 18px;
  fill: #000000;
  transition: fill 0.18s ease, transform 0.18s ease;
}

.landing-social-link:hover svg {
  fill: var(--accent, #820d0d);
}

/* Animated ring */
.landing-ringer-header {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #fbf9fc;
  pointer-events: none;
  animation: landing-ringRotate 6.5s linear infinite;
  transform-origin: center center;
}

.landing-social-item:nth-child(2) .landing-ringer-header {
  animation-duration: 7.2s;
  transform: rotate(20deg);
}

.landing-social-item:nth-child(3) .landing-ringer-header {
  animation-duration: 5.7s;
  transform: rotate(-10deg);
}

@keyframes landing-ringRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* 🔥 Responsive Sizes */
@media (max-width: 1200px) {
  .landing-social-link {
    width: 32px;
    height: 32px;
  }

  .landing-social-link svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 1000px) {
  .landing-social-link {
    width: 30px;
    height: 30px;
  }

  .landing-social-link svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 800px) {
  .sh-social {
    margin-right: 0;
  }

  .landing-social {
    gap: 0.6rem;
  }

  .landing-social-link {
    width: 28px;
    height: 28px;
  }

  .landing-social-link svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 600px) {
  .landing-social {
    gap: 0.5rem;
  }

  .landing-social-item {
    width: 42px;
    height: 42px;
  }

  .landing-social-link {
    width: 26px;
    height: 26px;
  }

  .landing-social-link svg {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 400px) {
  .landing-social {
    gap: 0.4rem;
  }

  .landing-social-link {
    width: 24px;
    height: 24px;
  }

  .landing-social-link svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 320px) {
  .landing-social {
    gap: 0.3rem;
  }

  .landing-social-link {
    width: 22px;
    height: 22px;
  }

  .landing-social-link svg {
    width: 11px;
    height: 11px;
  }
}

/* Special range: tablets/smaller desktops */
@media (min-width: 768px) and (max-width: 1150px) {
  .landing-social {
    gap: 0.5rem;
    /* tighter spacing */
    flex-wrap: nowrap;
    /* force them side by side */
    justify-content: center;
    /* center align horizontally */
  }

  .landing-social-item {
    width: 40px;
    /* smaller wrapper */
    height: 40px;
  }

  .landing-social-link {
    width: 26px;
    /* reduced circle */
    height: 26px;
  }

  .landing-social-link svg {
    width: 13px;
    /* smaller icons */
    height: 13px;
  }
}

/* Special range: tablets/smaller desktops */
@media (min-width: 768px) and (max-width: 1150px) {
  .home-socials {
    display: flex;
    gap: 2rem;
    /* more spacing between them */
    justify-content: center;
    margin-top: 1.5rem;
  }

  .social-link {
    width: 60px;
    /* bigger clickable area */
    height: 60px;
    border-radius: 50%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    /* bigger icons */
    color: #222;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .social-link:hover {
    background: #ffb400;
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  /* Responsive: scale up a bit more for mobile */
  @media (max-width: 768px) {
    .social-link {
      width: 56px;
      height: 56px;
      font-size: 26px;
    }
  }

  /* Socials shrink & align side by side */
  .landing-social {
    gap: 0.5rem;
    flex-wrap: nowrap;
    /* force row layout */
    justify-content: center;
  }

  .landing-social-item {
    width: 40px;
    height: 40px;
  }

  .landing-social-link {
    width: 26px;
    height: 26px;
  }

  .landing-social-link svg {
    width: 13px;
    height: 13px;
  }

  /* Hide nav links */
  nav ul li a {
    display: none;
    /* hide all nav links */
  }
}

/* Hide socials on wider screens */
@media (min-width: 768px) {
  .home-socials2 {
    display: none !important;
  }
}

/* OverWrites on Social burger Icon */

/* 🔥 Bigger socials in burger menu (home-socials2) */
.home-socials2 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.home-socials2 .social-link {
  width: 30px; /* bigger clickable circle */
  height: 30px;
  border-radius: 50%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px; /* bigger icon inside */
  color: #222;
  transition: all 0.3s ease;
  text-decoration: none;
}

.home-socials2 .social-link:hover {
  background: #ffb400;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}

/* Smaller tweak for very small phones */
@media (max-width: 400px) {
  .home-socials2 .social-link {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }
}

/* home banner fix */
.homebanner-media-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* Keep it in the background */
  pointer-events: none; /* Prevent blocking clicks */
}

.homebanner-overlay-content {
  position: relative;
  z-index: 2; /* Ensure overlay is above video */
}

.homebanner-media-bg {
  pointer-events: none;
}

.homebanner-media-bg {
  pointer-events: none;
  z-index: 0;
}

.homebanner-overlay-content {
  position: relative;
  z-index: 2;
}

.homebanner-overlay-content a,
.homebanner-overlay-content button {
  pointer-events: auto;
}

/* home-banner fixxing */
/* ✅ Cleaned Home Banner Fix */
.homebanner-slider {
  width: 100%;
  height: 100vh; /* fullscreen banner */
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  position: relative;
  height: 100% !important;
}

/* Background media (video or image) */
.homebanner-media-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 0; /* stay in background */
  pointer-events: none; /* avoid blocking clicks */
}

/* Overlay text/buttons */
.homebanner-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffbb00;
  z-index: 2; /* above background */
  max-width: 90%;
  pointer-events: auto; /* buttons clickable */
}

.homebanner-media-bg {
  object-fit: cover;
  object-position: center top; /* or left/center/bottom depending on your image */
}

@media (max-width: 968px) {
  .homebanner-slider {
    height: auto; /* remove forced short height */
  }

  .homebanner-media-bg {
    width: 100%; /* always span full width */
    height: auto; /* auto height keeps ratio */
    object-fit: contain; /* show full image */
    object-position: top center;
  }
}

/* top strip container*/
/* Top strip container */
/* Container: The main strip at the top of the page */
.home-top-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  color: #f5f5f5; /* A softer white */
  padding: 1rem 2.5rem; /* Using rem for better scaling */
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

/* Common block styling for flex items */
.home-top-strip > div {
  display: flex;
  align-items: center;
  gap: 1rem; /* A cleaner way to add space between items */
  white-space: nowrap;
}

/* Day and Date: A prominent, clean look */
.top-day-date {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e0e0e0;
  padding: 8px 15px;
}

/* Link: Dynamic and visually appealing with a smooth hover effect */
.top-link a {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  animation: pulseSoft 3s infinite; /* Renamed for clarity */
}

.top-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* A slightly more pronounced underline */
  width: 100%;
  height: 2px;
  background: #ffd700; /* A crisp gold */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* A smoother transition */
}

.top-link a:hover {
  color: #ffd700;
}

.top-link a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Soft pulse animation for the link */
@keyframes pulseSoft {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85; /* A subtle pulse */
  }
}

/* Address and Contact: Consistent and readable */
.top-address,
.top-contact {
  font-size: 0.95rem;
  color: #aaa;
}

.top-contact {
  font-weight: 600;
  color: #f5f5f5;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .top-address {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-contact {
    display: none;
  }
}

@media (max-width: 576px) {
  .top-day-date {
    display: none;
  }
  .home-top-strip {
    padding: 1rem 1.5rem; /* More balanced padding on mobile */
  }
}

/* Address: A styled component with a luxurious touch */
.top-address {
  font-size: 0.95rem;
  font-weight: 500;
  color: #c9c9c9;
  /* Frosted glass effect */
  backdrop-filter: blur(5px);
  padding: 8px 15px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05); /* Outer and inner shadow for depth */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* The transition is slightly slower for a more graceful effect */
}

/* Hover: A subtle but noticeable transformation */
.top-address:hover,
.top-day-date:hover {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 30, 0.8),
    rgba(25, 25, 25, 0.8)
  );
  color: #fff;

  transform: translateY(-4px); /* A slight lift to indicate interactivity */
}

/* top strip  rewrite */

/* ==========================================================================
           1. Global & Variable Definitions
           ========================================================================== */
:root {
  --bg-color: #000;
  --text-primary: #f5f5f5;
  --text-secondary: #c9c9c9;
  --text-subtle: #aaa;
  --accent-gold: #ffd700;
  --transition-fast: 0.3s;
  --transition-smooth: 0.4s;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;

  /* Added for better contrast in demo */
}

/* ==========================================================================
           2. Top Strip Base Styles
           ========================================================================== */
.home-top-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-color);
  color: var(--text-primary);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
}

/* Common styling for all direct children containers */
.home-top-strip > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

/* ==========================================================================
           3. Individual Element Styles
           ========================================================================== */

/* --- Day and Date --- */
.top-day-date {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 15px;
  border-radius: 8px;
  transition: all var(--transition-smooth) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Central Link --- */
.top-link a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast) ease;
  animation: pulseSoft 3s infinite;
}

.top-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast)
    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.top-link a:hover {
  color: var(--accent-gold);
}

.top-link a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@keyframes pulseSoft {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

/* --- Address (Consolidated & Refactored) --- */
.top-address {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  backdrop-filter: blur(5px);
  padding: 8px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all var(--transition-smooth) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Contact --- */
.top-contact {
  font-size: 0.95rem;
  color: var(--text-subtle);
  font-weight: 600;
  color: var(--text-primary);
}

/* --- Shared Hover Effect for Address & Date --- */
.top-address:hover,
.top-day-date:hover {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 30, 0.8),
    rgba(25, 25, 25, 0.8)
  );
  color: #fff;
  transform: translateY(-4px);
}

/* ==========================================================================
           4. Responsive Media Queries
           ========================================================================== */

/* --- For Tablets (under 900px) --- */
@media (max-width: 900px) {
  .home-top-strip {
    padding: 1rem 2rem;
  }
  /* As requested, hide the address on tablets and smaller */
  .top-address {
    display: none;
  }
}

/* --- For Large Mobile (under 700px) --- */
@media (max-width: 700px) {
  .home-top-strip {
    padding: 1rem 1.5rem;
  }
  /* Hide contact info */
  .top-contact {
    display: none;
  }
}

/* --- For Standard Mobile (under 500px) --- */
@media (max-width: 500px) {
  /* Hide the date and center the remaining link */
  .top-day-date {
    display: none;
  }
  .home-top-strip {
    justify-content: center;
  }
}

/* --- For Smaller Mobile (under 400px) --- */
@media (max-width: 400px) {
  .home-top-strip {
    padding: 0.8rem 1.5rem;
  }
  .top-link a {
    font-size: 1rem; /* Reduce font size slightly */
  }
}

/* --- For Smallest Mobile (under 320px) --- */
@media (max-width: 321px) {
  .home-top-strip {
    padding: 0.8rem 1rem;
  }

  .top-link a {
    font-size: 0.7rem;
  }

  .top-day-date {
    display: block;
    font-size: 0.8rem;
  }

  .top-link {
    display: none;
  }
}

/* Base styles for the typed text */
/* The class for the glowing effect */
.typed-text.shining-gold {
  color: #f99500;
  text-shadow: 0 0 8px #fff,
    /* A subtle white inner core for a light bulb look */ 0 0 15px gold,
    /* Gold glow */ 0 0 25px rgb(160, 138, 13),
    0 0 40px rgba(241, 207, 12, 0.655);

  /* Apply a pulsing animation */
  animation: pulse-shine 5s infinite alternate ease-in-out;
}

/* Keyframe animation for the light bulb pulse */
@keyframes pulse-shine {
  from {
    text-shadow: 0 0 8px #fff, 0 0 15px rgb(255, 222, 35),
      0 0 25px rgb(200, 171, 3), 0 0 40px rgba(255, 215, 0, 0.4);
  }
  to {
    text-shadow: 0 0 12px #fff, /* Brighter white core */ 0 0 25px gold,
      /* Brighter gold glow */ 0 0 45px gold, 0 0 70px rgba(255, 215, 0, 0.6);
  }
}

/* Overwrites */
/* =======================================
   Belt Header (Top Navigation Strip)
   ======================================= */
.home-belt-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Keep columns for left + logo alignment */
  grid-template-rows: auto auto; /* Add 2 rows */
  align-items: center;
  justify-items: center;
  height: auto; /* Allow height to expand naturally */
  background: #014d4d;
  position: relative;
  z-index: 10;

  padding-bottom: 1rem; /* spacing below logo */
}

/* Center logo stays on row 1 */
.home-belt-center {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 2;
}

/* Left icons stay top-left */
.home-belt-left {
  grid-column: 1;
  grid-row: 1;
  justify-content: flex-start;
}

/* Right nav now moves below the logo */
.home-belt-right {
  grid-column: 1 / span 3; /* full width across grid */
  grid-row: 2; /* move to second row */
  justify-content: center;
  margin-top: 0.5rem;
}

/* Responsive (Mobile & Tablet <= 768px)
 * ======================================= */
@media (max-width: 768px) {
  /* Belt header becomes a flex row instead of grid */
  .home-belt-header {
    display: flex;
    justify-content: space-between; /* Pushes Logo to left and Burger to right */
    align-items: center;
    height: auto;
    /* REMOVED: background: #000000; - Assuming you want it transparent/inherited */
    padding: 1rem; /* Added vertical padding for space above/below content, kept horizontal padding */
  }

  /* Hide left socials on mobile */
  .home-belt-left {
    display: none;
  }

  /* Logo container - place at the start (left) */
  .home-belt-center {
    order: 1;
    /* NEW: Ensure logo box is left-aligned within its container if it was floating */
    margin-right: auto; /* Pushes the element to the left if needed */
  }

  /* Simplify logo box design for small screens */
  .home-logo-box {
    background: none;
    box-shadow: none;
    padding: 0; /* Ensures no extra padding around the logo image */
    transform: none;
    /* NEW: Ensures content is left-aligned within the logo box */
    text-align: left;
  }

  .home-logo-box img {
    max-height: 120px; /* smaller logo for mobile */
    /* NEW: Added a slight margin below the logo to separate it from content below if necessary */
    margin-bottom: 0.5rem;
  }

  /* Nav / burger container on right side (end) */
  .home-belt-right {
    order: 2;
  }

  /* Show burger menu button */
  .home-burger {
    display: block;
    margin-left: 0; /* Removed 'auto' to ensure it respects 'space-between' */
  }

  /* Mobile dropdown nav (hidden by default) */
  .home-nav-menu {
    display: none;
    position: absolute;
    top: 100px; /* Adjust this value if the new logo height affects it */
    right: 0;
    background: #000000;
    width: 100%;
    padding: 1rem;
    text-align: center;
    z-index: 10; /* Added z-index to ensure the menu is above other content */
  }

  /* ... (rest of the nav menu styles are kept) */
}

/* Responsive (Mobile & Tablet <= 768px)
 * ======================================= */
@media (max-width: 768px) {
  /* ... (Previous home-belt-header, home-belt-left, home-belt-center, etc., styles remain the same) ... */

  /* Simplify logo box design for small screens */
  .home-logo-box {
    background: none;
    box-shadow: none;
    padding: 0;
    transform: none;
    text-align: left; /* Ensure logo is left-aligned */
  }

  .home-logo-box img {
    max-height: 120px; /* smaller logo for mobile */
    margin-bottom: 0.5rem;
  }

  /* Nav / burger container on right side */
  .home-belt-right {
    order: 2;
  }

  /* Show burger menu button */
  .home-burger {
    display: block; /* Ensures it is visible on mobile */
    margin-left: 0;
    /* Clean up burger button styles */
    background: none; /* Already 'none', keeping for clarity */
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
  }

  /* Mobile dropdown nav (hidden by default) */
  .home-nav-menu {
    display: none;
    position: absolute;
    top: 150px;
    right: 0;
    background: #000000;
    width: 100%;
    padding: 1rem;
    text-align: center;
    z-index: 10;
  }

  .home-nav-menu ul {
    flex-direction: column; /* Stack menu vertically */
    gap: 1rem;
    /* NEW: Create space at the bottom of the list */
    padding-bottom: 2rem;
  }

  /* Show nav menu when toggled */
  .home-nav-menu.active {
    display: block;
  }

  /* ... (rest of the mobile styles) ... */
}
/* ... (rest of the general styles) ... */
