/*!
 * Project Name: Voora One sea Landing Page
 * Author: Tamil Selva
 * Version: 2.0.1
 * Description: Custom CSS for layout, styling, and responsive design.
 * Created: 22 Nov 2025
 * Updated: 07 Jan 2026
 */

/* Root Variables */
:root {
  --primary-color: #1a4175;
  --secondary-color: #7e7fb5;
  --tertiary-color: #f9ba2f;
  --white-color: #fff;
  --black-color: #000;
  --gray-color: #9f9f9f;
  --dark-gray-color: #333;
}
/* Root Variables */

/* Custom scroll bar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background-color: rgb(151, 151, 151);
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}
/* Custom scroll bar */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

/* body{
  background-image: url(../src/assets/images/hero-desktop.jpg);
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  font-weight: 200 !important;
}

p,
span,
input,
button,
ol,
li,
ul,
span,
a,
small,
label,
option {
  font-family: "Outfit", sans-serif;
  font-weight: 200;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.669);
  backdrop-filter: blur(9px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.62);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
  z-index: 1000;
}

/* Scrolled state */
.navbar.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.logo img {
  width: 130px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--black-color);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.contact-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  animation: jump 1s ease infinite;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Hamburger */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .main-logo {
    display: none;
  }
}

/* Mobile Bottom Button */
.mobile-contact-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-contact-btn {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 0.9rem;
    font-size: 1rem;
    text-transform: uppercase;
    border: none;
    z-index: 1500;
    animation: jump 1s ease infinite;
    cursor: pointer;
  }
}

#home {
  background: url(../images/slider-web-2.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  #home {
    background: url(../images/new-mob-ban.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Home banner section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Luxury overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  z-index: 3;
}

.about {
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin: 20px;
  flex-wrap: wrap;
}

/* Text Container */
.about .container {
  flex: 1;
  max-width: 750px;
  text-align: left;
}

.about .container h2 {
  font-size: 2.3rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  line-height: 1.4;
}

.about .container p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--dark-gray-color);
}

/* Image */
.about > div img {
  width: 100%;
  max-width: 550px;
  border-radius: 1px;
  object-fit: cover;
}

.about .container .ordered-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.about .container .ordered-list li {
  background: #f8f9fb;
  padding: 1.3rem 1.6rem;
  padding-left: 48px; /* more breathing space */
  font-size: 1rem;
  color: var(--dark-gray-color);
  border-radius: 12px;
  position: relative;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* subtle accent line */
.about .container .ordered-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url("../images/shell.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
}

/* hover effect */
.about .container .ordered-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* 📱 Mobile View */
@media (max-width: 768px) {
  .about {
    flex-direction: column-reverse;
    text-align: center;
    margin: 0;
    padding: 3rem 1rem;
    gap: 20px;
  }

  .about .container .ordered-list li{
    font-size: 0.7rem !important;
  }

  .about .container {
    text-align: center;
  }

  .about .container h2 {
    font-size: 1.5rem;
  }

  .about .container p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about > div img {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 10px;
  }
  .stats-section{
    padding: 1rem !important;
  }
  .stat-item h2 {
    font-size: 1.5rem !important;
  }

  .stat-item p{
    font-size: 0.6rem !important;
  }
}

.luxury-amenities {
  width: 100%;
  height: 100vh;
  position: relative;
  margin: 3rem 0;
}

.amenity-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: background-image 0.8s ease-in-out;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* Content */
.content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 500px;
}

.subtitle {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: #d6b98c;
  text-transform: uppercase;
}

.content h2 {
  font-size: 2.3rem;
  font-weight: 300;
  margin-top: 0.5rem;
  letter-spacing: 1px;
}

/* Navigation Buttons */
.nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav:hover {
  background: #d6b98c;
  color: #000;
}

.prev {
  left: 4%;
}

.next {
  right: 4%;
}

/* Mobile */
@media (max-width: 768px) {
  .content h2 {
    font-size: 2.2rem;
  }
.amenities-container-section>h2{
  margin-top: 2rem;
  font-size: 1.5rem !important;
}
  .nav {
    width: 44px;
    height: 44px;
  }
  .amenities-container-section>p{
    font-size: 0.8rem !important;
    padding: 0 1rem !important;
  }
  }

.stats-section {
  padding: 5rem 1rem;
  background-color: #fff;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

/* Tablet */
@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  position: relative;
}

.stat-item h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #1a4175;
  margin: 0;
  line-height: 1.5;
}

.stat-item p {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  font-weight: 300;
  color: #898989;
  text-transform: uppercase;
  white-space: nowrap;
}

.privacy-anchor {
  /* text-decoration: none; */
  color: #979797;
}

.luxury-amenities {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.normal-amenities {
  background: url(../images/white-bg.jpg) no-repeat center center/cover fixed;
  padding: 2rem 0;
}

/* HEADER */
.amenities-header {
  text-align: center;
  margin-bottom: 5rem;
}

.amenities-header h2 {
  font-size: 2.3rem;
  color: var(--primary-color);
  font-weight: 500;
}

.amenities-header p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: #666;
  line-height: 1.7;
}

/* GRID */
.fancy-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

/* CARD */
.amenity-card {
  position: relative;
  height: 220px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(26, 65, 117, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;

  /* animation base */
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  animation: reveal 1s ease forwards;
}

/* stagger effect */
.amenity-card:nth-child(1) {
  animation-delay: 0.1s;
}
.amenity-card:nth-child(2) {
  animation-delay: 0.2s;
}
.amenity-card:nth-child(3) {
  animation-delay: 0.3s;
}
.amenity-card:nth-child(4) {
  animation-delay: 0.4s;
}
.amenity-card:nth-child(5) {
  animation-delay: 0.5s;
}
.amenity-card:nth-child(6) {
  animation-delay: 0.6s;
}
.amenity-card:nth-child(7) {
  animation-delay: 0.7s;
}
.amenity-card:nth-child(8) {
  animation-delay: 0.8s;
}

/* ICON */
.amenity-card .icon-wrap {
  font-size: 3rem;
  color: var(--primary-color);
  animation: float 4s ease-in-out infinite;
}

/* TITLE */
.amenity-card h4 {
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a4175;
}

/* HOVER MAGIC */
.amenity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top, #164a8e44, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.amenity-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.amenity-card:hover::after {
  opacity: 1;
}

.amenity-card:hover .icon-wrap {
  color: var(--secondary-color);
}

/* ANIMATIONS */
@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .fancy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .fancy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .fancy-grid {
    grid-template-columns: 1fr;
  }
}

/* Header */
.amenities-header {
  text-align: center;
  margin-bottom: 4rem;
}

.amenities-header img {
  width: 90px;
  margin-bottom: 1rem;
}

.amenities-header h2 {
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.amenities-header p {
  max-width: 620px;
  margin: 0.8rem auto 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

/* Grid */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* Tiles */
.amenity-tile {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(26, 65, 117, 0.12);
  transition: all 0.4s ease;
  overflow: hidden;
}

.amenity-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 186, 47, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.icon-wrap {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.amenity-tile span {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #1a4175;
  text-transform: uppercase;
}

/* Hover */
.amenity-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.amenity-tile:hover::before {
  opacity: 1;
}

.amenity-tile:hover .icon-wrap {
  transform: scale(1.15);
  color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 1024px) {
  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .amenity-grid {
    grid-template-columns: 1fr;
  }
}

.gallery {
  padding: 2rem 0;
  text-align: center;
}

.gallery h2 {
  color: #1a4175;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 500;
}

.gallery-slider {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.gallery-slider .swiper {
  padding-bottom: 2rem;
}

.gallery-image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.gallery-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 12px;
}

.gallery-image:hover img {
  transform: scale(1.05);
}

/* Navigation arrows */
.swiper-button-prev,
.swiper-button-next {
  color: #0666d3 !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-size: 10px !important ;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #1a4175;
  color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 30px !important;
  font-weight: semibold;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-image img {
    height: 220px;
  }
  .gallery h2{
    font-size: 1.8rem;
  }
  }

.journey-location {
  padding: 6rem 2rem;
}

/* Layout */
.journey-location .location-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

/* LEFT PANEL */
.journey-location .location-text {
  text-align: left;
}

.journey-location .location-text h2 {
  font-size: 2.3rem;
  font-weight: 500;
  color: #1a4175;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.journey-location .location-text .intro {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 3rem;
}

/* Journey List */
.journey-location .journey-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.journey-location .journey-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.journey-location .journey-item span {
  font-size: 1.4rem;
  font-weight: 500;
  color: #b9975b;
  min-width: 40px;
}

.journey-location .journey-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.journey-location .journey-item p strong {
  color: #1a4175;
  font-weight: 600;
}

/* MAP */
.journey-location .location-map {
  width: 100%;
  height: 580px;
  /* border-radius: 20px; */
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.journey-location .location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .journey-location .location-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .journey-location .location-text {
    text-align: center;
  }

  .journey-location .location-text .intro {
    margin-left: auto;
    margin-right: auto;
  }

  .journey-location .journey-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .journey-location .journey-item span {
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 576px) {
  .journey-location {
    padding: 4rem 1.5rem;
  }

  .journey-location .location-text h2 {
    font-size: 1.8rem;
  }

  .journey-location .location-map {
    height: 360px;
  }
}

.footer {
  background: #000000cd;
  color: #cfcfcf;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Inner wrapper */
.footer-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Divider line (luxury subtle touch) */

/* Copyright */
.footer .copyright {
  margin: 0;
  letter-spacing: 0.5px;
}

/* Developer credit */
.footer .developer {
  font-size: 0.8rem;
  color: #9e9e9e;
  text-align: center;
}

.footer .developer a {
  color: #c9a339;
  text-decoration: none;
  font-weight: 500;
  margin-left: 4px;
  transition: color 0.3s ease;
}

.footer .developer a:hover {
  color: #f9e27d;
}

/* Mobile */
@media (max-width: 576px) {
  .footer {
    padding: 1.8rem 1rem;
  }

  .footer-inner {
    gap: 0.4rem;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(3px);
}

.modal {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  position: relative;
  text-align: center;
  animation: slideUp 0.4s ease;

  h3 {
    color: #1a4175;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.8rem;
    line-height: 1.5;
  }

  small {
    font-size: 0.8rem;
    color: #666;
    line-height: 0.1;
    
  }
  .input-group {
    position: relative;
    margin-bottom: 0.5rem;

    input {
      width: 100%;
      padding: 1rem;
      border: 1px solid #ddd;
      border-radius: 12px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: #f9fafc;
      box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);

      &:focus {
        border-color: #1a4175;
        background: #fff;
        box-shadow: 0 0 5px rgba(26, 65, 117, 0.2);
        outline: none;
      }
    }
  }

  .submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #1a4175, #8a5899);
    color: #fff;
    padding: 0.9rem;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin-top: 1rem;

    &:hover {
      transform: translateY(-2px);
      background: linear-gradient(90deg, #173a66, #dba820);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #444;
    cursor: pointer;
    transition: 0.3s;

    &:hover {
      color: #1a4175;
    }
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .modal {
    padding: 2rem 1.5rem;

    h3 {
      font-size: 1.5rem;
    }

    button {
      font-size: 1rem;
    }
  }
}

.modal-overlay {
  display: none;
}

small {
  text-align: left;
  padding: 1rem 0;
}

.project-inner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.project-inner-container > h1 {
  text-align: center;
  font-size: 2rem;
  color: #1a4175;
  margin-bottom: 3rem;
}

.project-inner-container > iframe {
  width: 1000px;
  height: 500px;
}

@media (max-width: 768px) {
  .project-inner-container > iframe {
    width: 100%;
    height: 300px;
    padding: 1rem;
  }
  .project-inner-container > h1{
    font-size: 1.8rem;
  }
}


.amenities-section {
  position: relative;
  height: 100vh;
  background-image: url("../../assets/images/ame/3RooftopRestaurant.jpg");
  background-size: cover;
  background-position: center;
  transition: background-image 0.6s ease-in-out;
  font-family: 'Manrope', sans-serif !important;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* GRID */
.amenities-grid {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 6% 8%;
  align-items: center;
}

/* ITEM */
.amenity {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  text-align: center;
}

/* Hover */
.amenity:hover {
  color: #fff;
  transform: translateY(-6px);
}

.amenities-container-section>h2{
  text-align: center;
  font-size: 2.3rem;
  color: #1a4175;
  padding: 1rem 0;
  /* margin-bottom: 3rem; */
}

.amenities-container-section>p{
  text-align: center;
  font-size: 1rem;
  color: #333;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .amenities-section {
    height: 80vh;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 2rem;
    padding: 8% 6%;
  }

  .amenity {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .amenities-section {
    height: auto;
    min-height: 70vh;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 12% 8%;
  }

  .amenity {
    font-size: 1.05rem;
    padding: 1rem 0;
  }
  .about-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    /* background-color: red; */
    width: 100% !important;
    img{
      width: 180px !important;
      height: 80px !important;
    }
  }
}
@media (max-width: 480px) {
  .amenities-container-section > h2 {
    font-size: 1.8rem;
  }

  .amenities-container-section > p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .amenity {
    font-size: 1rem;
  }
  .about-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    /* background-color: red; */
    width: 100% !important;
    img{
      width: 180px !important;
      height: 80px !important;
    }
  }
}


.rera-container{
  text-align: center;

}

.rera-container>h2{
  margin: 1rem;
}

.about-logo{
  width: 120px;
  height: 100px;
  padding: 1rem 0;
}

