/* Fonts */
@font-face {
  font-family: Gilroy-Medium;
  src: url('../fonts/Gilroy-Medium.ttf');
}
@font-face {
  font-family: Gilroy-Regular;
  src: url('../fonts/Gilroy-Regular.ttf');
}
:root {
  --default-font: "Gilroy-Regular",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Gilroy-Medium",  sans-serif;
  --nav-font: "Gilroy-Regular",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #dfcf80; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --main-color: #dfcf80;
  --main-bg-color:rgb(0 4 26);
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.5);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #559bcc; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f3f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #142e6c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1c4097;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgb(0 4 26);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--main-bg-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 100px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgb(0 4 26);
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: #01020a;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  border-top: 1px solid var(--main-color);
}

.footer h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--main-color);
}

.footer .tagline {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* Highlight urgency */
.footer .highlight {
  font-size: 16px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 10px;
}

/* Note */
.footer .note {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 15px;
}

/* Contact */
.footer .contact {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Social */
.footer .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  background: #ffc107;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  background: #fff;
}

/* Copyright */
.footer .copyright {
  font-size: 15px;
  opacity: 0.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer h3 {
    font-size: 24px;
  }

  .footer .contact {
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--main-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}



/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  /* text-align: center; */
  padding-bottom: 15px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 120px 0 0px 0;
  display: flex;
  align-items: center;
  background: url(../img/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.hero:before {
  content: "";
  /* background: color-mix(in srgb, #0000004f, transparent 30%); */
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  margin-top: -0%;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-default);
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  border-radius: 3px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .download-btn+.download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

.hero .hero-img {
  position: relative;
  min-height: 600px;
}

.hero .hero-img .phone-1 {
  margin-top: 20px;
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 250px;
}

.hero .hero-img .phone-2 {
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 250px;
  margin-top: 70px;
  margin-left: 100px;
}
.highligh-text{
  font-size: 4rem;
    color: #ffc107;
}
/* .highligh-text1{
  font-size: 4.5rem;
  color: #ffc107;
} */


/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url('../img/banner.jpg') center/cover no-repeat;
}

/* Content */
.hero .container {
  position: relative;
  z-index: 2;
}

/* Main Heading */
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

/* Highlight */
.hero .highlight {
  color: var(--main-color);
}

/* Tagline */
.hero .tagline {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-top: 15px;
}

/* Sub Text */
.hero .sub-text {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero .tagline {
    font-size: 16px;
  }

  .hero .sub-text {
    font-size: 14px;
  }
}
/* HERO CTA BUTTON */
.hero .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #dfb958, #c69e4d);
  color: #000;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Icon */
.hero .download-btn i {
  font-size: 18px;
}

/* Hover Effect */
.hero .download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
  color: #000;
}

/* Active Click */
.hero .download-btn:active {
  transform: scale(0.96);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero .download-btn {
    font-size: 14px;
    padding: 10px 22px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.advantages{
  background-color: var(--main-bg-color);
}
.advantages .section-subtitle {
  color: var(--main-color);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.advantages .section-title {
  font-size: 36px;
  font-weight: 700;
}

.advantages .section-desc {
  font-size: 16px;
  color: rgba(0,0,0,0.7);
  max-width: 700px;
  margin: 0 auto 50px auto;
}

/* Card */
.advantage-card {
  background: #ffffff1a;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* Gradient hover effect */
.advantage-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, #00041a, #2d465e, #ff5420, #431000);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  z-index: 0;
}

.advantage-card:hover::before {
  opacity: 0.15;
  transform: rotate(15deg);
}

/* Icon */
.adv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--main-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--main-color);
  transition: all 0.4s ease;
  z-index: 1;
  position: relative;
}

.advantage-card:hover .adv-icon {
  background: var(--main-color);
  color: #ffffff;
  transform: scale(1.2) rotate(10deg);
}

/* Heading & Text */
.advantage-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.advantage-card p {
  font-size: 16px;
  color: rgb(255 255 255 / 70%);
}

/* Stagger effect */
.advantages .row .col-lg-4:nth-child(2),
.advantages .row .col-lg-4:nth-child(5) {
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 991px) {
  .advantage-card {
    padding: 30px 20px;
  }

  .adv-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .advantage-card h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/
.about .section-title h3 {
  font-size: 20px;
  color: var(--main-color);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

.about .about-desc {
  font-size: 16px;
  color: rgba(0,0,0,0.75);
  line-height: 1.6;
}

.about-img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
  object-fit: cover;
}

/* Feature Boxes */
.feature-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.feature-box i {
  font-size: 32px;
  color: var(--main-color);
  margin-bottom: 15px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--main-bg-color);
}

.feature-box p {
  font-size: 14px;
  color: rgba(0,0,0,0.7);
}

/* Hover Effects */
.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.feature-box:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #343a40;
}

/* Responsive */
@media (max-width: 991px) {
  .about-img {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .steps-img img {
  max-width: 575px;
}

.cards .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.cards .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.cards .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards .card-item h4 a {
  color: var(--heading-color);
}

.cards .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.cards .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.cards .card-item:hover span,
.cards .card-item:hover h4 a,
.cards .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

.features .features-item h3 {
  /* font-weight: 700; */
  /* font-size: 26px; */
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--main-color);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}


/*--------------------------------------------------------------
Amenities Section – Flowing Layout
--------------------------------------------------------------*/
.amenities {
  background: var(--main-bg-color);
  color: #fff;
}

.amenities .section-title h3 {
  font-size: 20px;
  color: var(--main-color);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.amenities .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #f1f1f1;
  line-height: 1.3;
}

/* Flow Layout */
.amenities-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Central vertical line */
.amenities-flow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, var(--main-color), rgb(255 255 255 / 30%));
  transform: translateX(-50%);
  z-index: 0;
}

/* Amenity Items */
.amenity-item {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.amenity-item.left {
  flex-direction: row;
}

.amenity-item.right {
  flex-direction: row-reverse;
}

/* Icon Style */
.amenity-icon {
  width: 70px;
  height: 70px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--main-bg-color);
  flex-shrink: 0;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.amenity-item:hover .amenity-icon {
  transform: scale(1.3) rotate(10deg);
  background: transparent;
  color: var(--main-color);
  border: 1px solid;
}

/* Text Style */
.amenity-text h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--main-color);
}

.amenity-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .amenity-item {
    flex-direction: column !important;
    text-align: center;
  }

  .amenities-flow::before {
    left: auto;
    top: auto;
    width: 100%;
    height: 4px;
    transform: none;
    margin-top: -30px;
  }
}


/*--------------------------------------------------------------
Gallery Section
--------------------------------------------------------------*/
.gallery {
  background: var(--main-bg-color);
}

.gallery .section-title h3 {
  color: var(--main-color);
  font-size: 20px;
  text-transform: uppercase;
}

.gallery .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s ease;
  border-radius: 15px;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.6), rgba(255,193,7,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-overlay i {
  font-size: 28px;
  color: #fff;
  transform: scale(0.7);
  transition: 0.3s ease;
}

/* Hover Effects */
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .gallery-item img {
    height: 160px;
  }
}


/*--------------------------------------------------------------
Neighbourhood / Location Section
--------------------------------------------------------------*/
.neighbourhood {
}

.neighbourhood .section-title h3 {
  font-size: 20px;
  color: var(--main-color);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.neighbourhood .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.neighbourhood .section-title p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto 50px auto;
}

/* Cards */
.neighbourhood-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--main-color);
  box-shadow: 1px 5px 10px #dfe4ff;
}

.neighbourhood-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: linear-gradient(45deg, rgba(255, 193, 7, 0.3), rgb(0 4 26 / 33%));
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

.neighbourhood-card:hover::after {
  opacity: 1;
  transform: scale(1.05);
}

/* Icon */
.neighbourhood-card .icon {
  width: 80px;
  height: 80px;
  background: var(--main-bg-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.neighbourhood-card:hover .icon {
  transform: rotate(15deg) scale(1.2);
  color: #ffffff;
}

/* Title & List */
.neighbourhood-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  color: var(--main-bg-color);
}

.neighbourhood-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.neighbourhood-card ul li {
  margin-bottom: 8px;
  position: relative;
}


/* Responsive */
@media (max-width: 991px) {
  .neighbourhood .row {
    justify-content: center;
  }
  
  .neighbourhood-card {
    max-width: 350px;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# layout Section
--------------------------------------------------------------*/
.layout{
background-color: #f1f1ea;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: #343a40;
  background: color-mix(in srgb, #ffc107, #ffc10745);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #ffc107;
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact button[type=submit] {
  color: var(--contrast-color);
  background: #373837;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}



/* sidebar slide form */
.sidebar-contact{
  position:fixed;
  top:50%;
  left:-350px;
  transform:translateY(-50%);
  width:350px;
  height:auto;
  padding:40px;
  background:#fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  box-sizing:border-box;
  transition:0.5s;
}
.sidebar-contact.active{
  left:0;
}
.sidebar-contact input,
.sidebar-contact textarea{
  width:100%;
  height:36px;
  padding:5px;
  margin-bottom:10px;
  box-sizing:border-box;
  border:1px solid rgba(0,0,0,.5);
  outline:none;
}
.sidebar-contact h2{
  margin:0 0 20px;
  padding:0;
}
.sidebar-contact textarea{
  height:60px;
  resize:none;
}
.sidebar-contact input[type="submit"]{
  background:#00bcd4;
  color:#fff;
  cursor:pointer;
  border:none;
  font-size:18px;
}
.toggle{
  position:absolute;
  height:48px;
  width:48px;
  text-align:center;
  cursor:pointer;
  background:#f00;
  top:0;
  right:-48px;
  line-height:48px;
}
.toggle:before{
  content:'\f003';
  font-family:fontAwesome;
  font-size:18px;
  color:#fff;
}
.toggle.active:before{
  content:'\f00d';
}

/* whatsapp button */
.wh-api {
	position: fixed;
	bottom: 1%;
	left: 1%;
}

.wh-fixed {
	margin-right: 15px;
	margin-bottom: 15px;
}
