@font-face {
  font-family: 'CustomFont';
  src: url('./assets/fonts/Louis\ George\ Cafe.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'CustomFont';
  src: url('./assets/fonts/Louis\ George\ Cafe.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'CustomFont';
  src: url('./assets/fonts/Louis\ George\ Cafe.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'CustomFont';
  src: url('./assets/fonts/Louis\ George\ Cafe\ Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'CustomFont';
  src: url('./assets/fonts/Louis\ George\ Cafe\ Bold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
body {
  font-family: 'CustomFont', sans-serif;
  font-weight: 400; /* Default to Regular */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'CustomFont', sans-serif; /* Updated font-family */
}

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
/* navbar */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

nav h1 {
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
}

nav h1 i {
  transform: rotate(45deg);
  font-size: 2rem;
}

nav h4 {
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.df-btn-text {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
  background-color: red;
  width: 90px;
  height: 40px;
  overflow: hidden;
  position: relative;
}

.df-btn-text svg {
  margin-top: 40px;
  position: absolute;
  top: -18px;
  border-radius: 35px;
  left: 70px;
  background-color: green;
  transition: opacity 0.3s ease-in-out; /* Smooth hide effect */
}

.df-btn-text.hidden-svg svg {
  opacity: 0;
  visibility: hidden;
}

nav button {
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #000;
}

.part2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Mobile Menu Styles */
.mobile_menu h4 {
  font-size: 1.25rem;
  text-align: center;
}

/* Hero Section */

.hero {
  margin: 5px 10px 5px 10px;
  border-radius: 20px;
  position: relative;
  height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.carousel {
  position: absolute;
  border-radius: 20px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  border-radius: 20px;
  height: 100%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Content */
.hero-content {
  position: absolute;
  bottom: 100px;
  left: 20px;
  text-align: left;
  z-index: 10;
  padding: 20px;
  /* background-color: rgba(0, 0, 0, 0.5); */
  color: white;
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); */
  width: auto;
  max-width: 80%;
}

.hero-content h1 {
  font-size: 2.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: normal;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.5rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.cta-button {
  padding: 12px 20px;
  font-size: 1.1rem;
  color: white;
  background-color: #c5964a;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #bf8a36;
}
.custom-benefit {
  font-size: 15px;
  color: #c5964a;
  font-weight: bold;
  margin: 5px;
  letter-spacing: 2px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* For small screens (mobile) */
@media (max-width: 768px) {
  nav h1 {
    font-size: 1.5rem;
  }

  nav h4 {
    font-size: 1rem;
  }

  .hero-content {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%); /* Center the content */
    text-align: center;
    width: 80%;
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 10px 18px;
  }

  /* Mobile menu adjustments */
  .mobile_menu h4 {
    font-size: 1rem;
  }

  .carousel {
    height: 80vh; /* Reduce carousel height on mobile */
  }
}

/* For very small screens (portrait phones) */
@media (max-width: 480px) {
  nav h1 {
    font-size: 1.25rem;
  }

  .hero-content {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%); /* Center the content */
    text-align: center;
    width: 80%;
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
}
.price-text {
  background-color: black;
  padding: 0.5rem;
  border-radius: 1rem;
  color: white;
  display: inline-block;
}

@media (max-width: 600px) {
  .price::before {
    content: "\A"; /* Inserts a line break */
    white-space: pre;
  }
}

/* For extremely small screens (phones in portrait mode) */
@media (max-width: 360px) {
  nav h1 {
    font-size: 1.2rem;
  }

  nav h4 {
    font-size: 0.9rem;
  }

  .hero-content {
    padding: 15px;
    max-width: 90%;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%); /* Center the content */
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
}
/* navbar */
.navbar {
  justify-content: stretch;
  align-items: center;
  padding: 0px 30px 0px 0px;
  background-color: #fff;
}

.logo img {
  max-height: 75px;
}

.menu {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.menu ul {
  display: flex;
  gap: 15px;
  list-style: none;
  background-color: #f5f5f5;
  padding: 20px 20px;
  border-radius: 50px;
}

.menu ul li a {
  text-decoration: none;
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
}

.menu ul li a.active,
.menu ul li a:hover {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .menu ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .navbar {
    flex-wrap: wrap;
  }
}

/* about-section */

.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px;
  flex-wrap: wrap; /* Allows content to wrap on smaller screens */
}

.left-content,
.right-content {
  width: 45%;
}

.left-content h2 {
  font-size: 32px;
  color: #333333;
}
.right-content h2 {
  font-size: 35px;
  color: #333333;
  text-align: left;
}

.left-content p {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

.btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #c5964a;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 15px;
}
.gold {
  color: #c5964a;
  font-size: 35px;
}

.btn:hover {
  background-color: #bf8a36;
}

.right-content h1 {
  font-size: 32px;
  line-height: 1.3;
}
.left-content h1 {
  font-size: 32px;
  line-height: 1.3;
}

.highlight {
  color: #c5964a;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  width: 30%; /* Adjusts layout of stats */
}

.stat-item h2 {
  font-size: 32px;
  font-weight: bold;
  color: #c5964a;
}

.stat-item p {
  font-size: 15px;
  color: #777777;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-section {
    padding: 40px 60px;
  }

  .left-content,
  .right-content {
    width: 100%;
    text-align: center; /* Center-align text for smaller screens */
    margin-bottom: 40px;
  }

  .right-content h1 {
    font-size: 32px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .stats {
    justify-content: center;
    gap: 15px;
  }

  button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #c5964a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
  }

  /* Responsive Design */
  @media (max-width: 600px) {
    #thankYouPopup .popup-content {
      padding: 15px;
      width: 90%;
    }

    button {
      padding: 8px 16px;
      font-size: 14px;
    }
  }

  @media (max-width: 400px) {
    #thankYouPopup .popup-content {
      width: 95%;
    }

    button {
      font-size: 14px;
      padding: 8px 14px;
    }
  }

  .stat-item {
    width: 45%; /* Wider stat items for smaller screens */
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 20px 30px;
  }

  .right-content h1 {
    font-size: 28px;
  }

  .left-content p,
  .stat-item p {
    font-size: 14px;
  }

  .stat-item {
    width: 100%; /* Full-width stats on very small screens */
  }
}

/* location-benefits */

.services {
  width: 100%;
  background-color: white;
  padding: 5vh 5vw;
}

.services-title {
  font-size: 2rem;
}

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: 2vh;
}

/* Badge */
.badge {
  display: inline-block;
  background-color: #c5964a;
  color: white;
  padding: 0.625em 2.5em;
  border-radius: 1rem;
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 2rem;
}

/* Heading */
h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0.625rem;
  color: #333;
  text-align: center;
}

/* Service Item */
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.125rem solid #ccc;
  padding: 3vh 5vw;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect */
.service-item:hover {
  background-color: #faf4ea;
  transform: scale(1.02);
}

/* Service Number */
.service-number {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  flex: 1;
  text-align: left;
}

/* Service Title */
.service-title {
  font-size: 2rem;
  font-weight: normal;
  flex: 2;
  text-align: left;
  color: #c5964a;
}

/* Service Description */
.service-description {
  font-size: 1.4rem;
  color: #666;
  flex: 3;
  text-align: left;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .services {
    padding: 4vh 5vw;
  }

  .service-item {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .service-number,
  .service-title,
  .service-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services-title,
  h2 {
    font-size: 1.75rem;
  }

  .badge {
    font-size: 1rem;
    padding: 0.5em 2em;
  }

  .service-number {
    font-size: 2.5rem;
  }

  .service-title {
    font-size: 1.375rem;
  }

  .service-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 3vh 4vw;
  }

  .services-title,
  h2 {
    font-size: 1.5rem;
  }

  .badge {
    font-size: 1.5rem;
    padding: 0.5em 1.5em;
  }

  .service-number {
    font-size: 2rem;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .service-description {
    font-size: 0.875rem;
  }
}

.unique-gallery-section {
  padding: 50px 20px 20px 20px;
}
.gallery-container {
  position: relative;
}

.gallery-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.gallery-item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  margin: 0 10px;
  background-color: #f1f1f1;
  border-radius: 10px;
}

.scroll-btn-left,
.scroll-btn-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3); /* Light black color */
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 999;
}

.scroll-btn-left {
  left: 10px;
}

.scroll-btn-right {
  right: 10px;
}

.scroll-btn-left:hover,
.scroll-btn-right:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Download Brochure Button Styles */
.download-brochure-btn-container {
  text-align: center;
  margin-top: 20px;
}

.download-brochure-btn-container .btn2 {
  padding: 12px 20px;
  background-color: #c5964a;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.download-brochure-btn-container .btn2:hover {
  background-color: #b4873b;
}

/* .benefits-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #444;
  } */

.gallery-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px;
  scroll-snap-type: x mandatory;
  margin-left: 40px;
  margin-bottom: 10px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.gallery-scroll-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}

.gallery-item {
  flex: 0 0 auto;
  width: 100%;
  max-width: 400px;
  height: 300px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-scroll-container {
    gap: 10px;
    margin-left: 20px;
    margin-bottom: 30px;
  }

  .gallery-item {
    max-width: 350px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    max-width: 300px;
    height: 200px;
  }

  .benefits-title {
    font-size: 1.5rem;
  }
}

/* General Section Styling */
/* Single Image Container */
.golden-jejuri-image-container {
  width: 100%; /* Full width of the container */
  margin: 0 auto;
  padding: 0 20px 30px 20px; /* Adjusted padding for smaller devices */
  /* border-radius: 20px; */
  overflow: hidden;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.golden-jejuri-image-container img {
  width: 100%; /* Full width of the container */
  height: auto; /* Maintain aspect ratio */
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.get-directions-button {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.get-directions-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #c5964a; /*  color, you can adjust as needed */
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
}

.get-directions-link:hover {
  background-color: #b38c14; /* Darker  on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .golden-jejuri-image-container {
    padding: 0 10px 30px 10px;
    /* Adjusted padding for smaller devices */
  }
}

@media (max-width: 480px) {
  .golden-jejuri-image-container {
    padding: 0 10px 0 10px; /* No padding for very small devices */
    height: 200px;
  }
}

/* Section Title Styling */
.benefits-title {
  text-align: center;
  font-size: 32px;
  color: #c5964a;
  font-weight: bold;
  margin-bottom: 10px;
}

.benefits-description {
  text-align: center;
  font-size: 18px;
  color: #333333;
  margin-bottom: 30px;
}

/* Proximity Container */
.proximity-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  margin-left: 140px;
  margin-right: 140px;
}

/* Individual Proximity Section */
.proximity-section {
  background-color: white;
  padding: 20px;
  margin: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.proximity-section:hover {
  transform: translateY(-5px);
}

/* Proximity Section Titles */
.proximity-head {
  color: #c5964a;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid #c5964a;
  padding-bottom: 10px;
  text-align: left; /* Align titles to the left */
}

/* Proximity Items */
.proximity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0;
  border-radius: 6px;
  color: black;
  word-wrap: break-word;
  white-space: normal;
}

.proximity-item span:first-child {
  flex: 1;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.proximity-item span:last-child {
  white-space: nowrap;
  margin-left: 10px;
}

.proximity-item:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .proximity-container {
    grid-template-columns: 1fr; /* Single column layout */
    margin-left: 20px;
    margin-right: 20px;
    gap: 10px;
    padding: 10px;
  }

  .proximity-item {
    flex-wrap: wrap; /* Allow content to wrap */
    justify-content: space-between; /* Maintain spacing between children */
    align-items: center; /* Vertically center items */
  }

  .proximity-item span:first-child {
    flex: 1; /* Take up remaining space */
    word-wrap: break-word; /* Wrap text if it exceeds */
    white-space: normal; /* Ensure wrapping is allowed */
  }

  .proximity-item span:last-child {
    flex-shrink: 0; /* Prevent the second child from shrinking */
    white-space: nowrap; /* Prevent wrapping of the second child */
    margin-left: 10px; /* Optional: Add slight spacing */
  }
}
.cardStack {
  width: 100%;
  padding: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2vw;
}

.card {
  width: 100%;
  flex-shrink: 0;
  height: 85vh;
  border-radius: 30px;
  position: sticky;
  transition: all 0.3s ease-in-out;
}

.card1 {
  background: url(./assets/image/hero4.jpg) no-repeat center top / cover;
  display: flex;
  align-items: flex-start;
  justify-content: start;
  border-radius: 30px;
  top: 0;
}

.card1 h1 {
  margin-top: 1vw;
  margin-left: 2vw;
  font-size: 64px;
  font-weight: 500;
  color: black;
}

.card2,
.card3 {
  background-color: #faf4ea;
  top: 10vh;
}

.card3-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2vw;
}

.card3_inner_left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2vw 5vw;
}

.card3_inner_left h4 {
  font-size: 36px;
  font-weight: 600;
  color: #c5964a;
  margin-bottom: 20px;
}

.card3_inner_left p {
  font-size: 18px;
  line-height: 28px;
  color: #333;
  margin-bottom: 10px;
}

.card3_inner_left ul {
  list-style-type: disc;
  padding-left: 20px;
}

.card3_inner_left li {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  padding-bottom: 8px;
}

.card3_inner_right {
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
}

.card3_inner_right img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.card3_inner_right img:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .card3_inner_right {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .card{
    height: 95vh;
  }
  .card3-inner {
    flex-direction: column;
    padding: 0px;
  }

  .card3_inner_left {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .card3_inner_right {
    width: 100%;
    height: 60vh;
    /* background-color: red; */
    padding: 4px;
  }
}

.crsr {
  width: 4vw;
  height: 4vw;
  background-color: transparent;
  border-radius: 50%;
  position: fixed;
  border: 0.3vw solid #c5964a;
  z-index: 4;
  pointer-events: none;
  mix-blend-mode: difference;
  display: flex;
  align-self: center;
  justify-content: center;
  align-items: center;
  justify-self: center;
  transform: translate(-50%, -50%);
}

.loader-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 999;
  overflow-x: hidden;
  background-color: rgb(42, 42, 42);
  font-family: monument;
}
svg {
  width: 40rem;
  font-family: monument;
  font-weight: 500;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
}
svg text {
  font-family: monument;
  font-weight: 400;
  font-size: 3.5vw;
  line-height: 3.8vw;
  font-size: 3rem;
  stroke-width: 2;
  letter-spacing: 2px;
}
svg text.text-body {
  stroke: #c5964a;
  animation: 2s infinite alternate animate-stroke;
}
svg text.dot {
  fill: #c5964a;
  stroke: #c5964a;
  animation: 2s infinite alternate animate-dot;
}
@keyframes animate-stroke {
  0% {
    fill: transparent;
    stroke: #c5964a;
    stroke-width: 3;
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 32%;
  }
  50% {
    fill: transparent;
    stroke: #c5964a;
    stroke-width: 3;
  }
  80%,
  100% {
    fill: #c5964a;
    stroke: transparent;
    stroke-width: 0;
    stroke-dashoffset: -25%;
    stroke-dasharray: 32% 0;
  }
}
@keyframes animate-dot {
  0%,
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.footer {
  background-image: url("./assets/image/hero4.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 20px 5%; /* Reduced padding to make footer smaller */
  color: white;
  z-index: 1;
}

/* Black Overlay */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Black overlay with transparency */
  z-index: 0;
  pointer-events: none; /* Ensure overlay doesn't block interactions */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-left,
.footer-right {
  background: none; /* Removed glassmorphism */
  border-radius: 5px;
  padding: 15px;
  width: 48%;
  margin-bottom: 15px;
}

/* .footer-item img{
max-height: 75px;
} */
.footer-left .footer-item,
.footer-right .footer-item {
  margin-bottom: 15px;
}

.footer-title {
  font-size: 1.2rem; /* Slightly smaller font */
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
}

.footer-text,
.footer-link {
  font-size: 0.9rem;
  color: white;
}

.footer-link {
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-link:hover {
  text-decoration: underline;
  color: #c5964a;
}

.footer-logo {
  max-width: 150px; /* Reduced size */
  width: 100%;
  max-height: 75px;
}
.footer-qr-code {
  max-width: 100px; /* Reduced size */
  width: 100%;
  height: auto;
}

/* Form Styling */
.footer-form-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

.footer-form {
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay background */
  padding: 15px;
  border-radius: 5px;
}

.form-field {
  margin-bottom: 10px;
}

.form-field label {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 5px;
}

.form-field input {
  width: 100%;
  padding: 8px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #000;
}

.footer-button {
  background-color: #c5964a;
  color: white;
  padding: 10px 16px;
  font-size: 0.9rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.footer-button:hover {
  background-color: #c5964a;
}

/* Center Footer Text */
.footer-text-center {
  text-align: center;
  margin-top: 15px;
  padding: 8px 0;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  position: relative;
  z-index: 2; /* Ensure text remains clickable */
}

.footer-text-center p {
  font-size: 0.9rem;
  color: white;
}

.footer-text-center a {
  color: white;
  text-decoration: none;
}

.footer-text-center a:hover {
  text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-item {
    margin-bottom: 10px;
  }
}
.custom-social-links {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.custom-social-icon img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.custom-social-icon img:hover {
  transform: scale(1.2);
}

.social-btn {
  position: fixed;
  bottom: 50px;
  right: 10px;
  border: none;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  text-decoration: none; /* Remove underline */
}

.social-btn img {
  width: 35px;
  height: 35px;
}

#instagramBtn {
  bottom: 180px;
}

#facebookBtn {
  bottom: 240px;
}

#youtubeBtn {
  bottom: 300px;
}

/* #backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  font-size: 20px;
  background-color: #c5964a;
  color: black;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  display: none; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#backToTopBtn:hover {
  background-color: #c5964a;
} */


#popupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup form container */
#popupForm {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  width: 400px;
  position: relative;
  text-align: center;
}

/* Logo styling */
#popupForm .form-logo {
  width: 170px;
  height: 170px;
  margin: 0 auto 5px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#popupForm .form-logo img {
  max-width: 100%;
}

#popupForm h2 {
  margin-top: 5px;
  font-size: 24px;
  color: #333;
  font-weight: bold;
}

#popupForm input[type="text"],
#popupForm input[type="email"],
#popupForm input[type="tel"] {
  width: 100%;
  padding: 10px 15px;
  margin: 12px 0;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
  color: #555;
}

#popupForm input:focus {
  outline: none;
  border-color: #c5964a;
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

#popupForm label {
  font-size: 14px;
  color: #555;
  display: block;
  text-align: left;
  margin-top: 10px;
}

#popupForm input[type="checkbox"] {
  margin-right: 8px;
}

#popupForm button {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background-color: #c5964a;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#popupForm button:hover {
  background-color: #c5964a;
}

#downloadBrochureBtn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 10px 15px;
  font-size: 16px;
  background-color: #c5964a;
  color: white;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#downloadBrochureBtn:hover {
  background-color: #c5964a;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  color: #aaa;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  #popupForm {
    width: 90%;
    padding: 25px;
  }

  #popupForm h2 {
    font-size: 20px;
  }
}


#image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* dim background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#image-popup img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.close-image-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}
