/**
* Template Name: Instant
* Template URL: https://bootstrapmade.com/newtemplate-bootstrap-website-template/
* Updated: Jul 07 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  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: "Raleway",  sans-serif;
  --nav-font: "Raleway",  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: #040000; /* Background color for the entire website, including individual sections */
  --default-color: #f8f8f8; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e59d02; /* 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: #191919; /* 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. */
}

/* 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: #f8f8f8;  /* The default color of the main navmenu links */
  --nav-hover-color: #e59d02; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #1b1a1a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1b1a1a; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #f8f8f8; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e59d02; /* 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: #1b1a1a;
  --surface-color: #282828;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1b1b1b;
  --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: linear-gradient(90deg, #000000, #a05f3d, #cf956, #ffffff);
  color: #fff;
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
}

/* Logo Styles */
.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
}

.header .logo-img {
  max-height: 100px; /* Bigger logo image */
  width: auto;
  margin-right: 12px;
}

.header .logo-text {
  font-size: 36px; /* bigger text */
  font-weight: 800;
  margin: 0;
  background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Get Started Button */
.header .header-buttons {
    gap: 10px; /* दोनों बटन के बीच का gap */
}

.header .header-buttons .btn-getstarted,
.header .header-buttons .btn-getstarted:focus {
  color: #fff;
  background: linear-gradient(90deg, #a05f3d, #cf956e);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .header-buttons .btn-getstarted:hover,
.header .header-buttons .btn-getstarted:focus:hover {
  background: linear-gradient(90deg, #cf956e, #a05f3d);
}

/* Scrolled Header Shadow (Optional) */
.scrolled .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .header .logo-img {
    max-height: 60px; /* Slightly smaller on mobile */
  }

  .header .logo-text {
    font-size: 28px;
  }
  .header .header-buttons .btn-getstarted{
/*    display:none;*/
    font-size: 10px;
  padding: 8px 8px;
  }
}

@media (max-width: 480px) {
  .header .logo-img {
    max-height: 50px;
  }

  .header .logo-text {
    font-size: 24px;
  }
  .header .header-buttons .btn-getstarted{
/*    display:none;*/
font-size: 10px;
  padding: 8px 8px;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-modern {
  background-color: #1a1a1a;
  color: #ccc;
  font-size: 1.0rem;
  position: relative;
  padding-top: 60px;
}

.footer-modern a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-modern a:hover {
   background: linear-gradient(135deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.footer-modern .footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(160,95,61,0.1);
}

.footer-modern .footer-about .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-modern .footer-about .logo img {
  max-height: 100px;
}

.footer-modern .footer-about .sitename {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.footer-modern .footer-about .footer-description {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

.footer-modern h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  color: #fff;
  line-height: 1.5;
}

.footer-modern h4::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  bottom: 0;
  left: 0;
 }

.footer-modern .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-modern .footer-links ul li {
  padding: 8px 0;
}

.footer-modern .footer-links ul li a {
  color: #ccc;
}

.footer-modern .footer-links ul li a:hover {
   background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.footer-modern .footer-contact p {
  margin-bottom: 8px;
  color: #aaa;
}

.footer-modern .footer-bottom {
  padding: 20px 0;
}

.footer-modern .footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-modern .footer-bottom .credits {
  font-size: 13px;
}

.footer-modern .social-links {
  margin-top: 15px;
}

.footer-modern .social-links a {
  font-size: 1.2rem;
  background: linear-gradient(135deg, #a05f3d, #cf956e);
 /*  background: rgba(255,255,255,0.05);*/
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 5px;
  transition: 0.3s;
  }

.footer-modern .social-links a:hover {
  background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  transform: translateY(-2px);
  border:1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 991px) {
  .footer-modern .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-modern .social-links {
    margin-top: 10px;
  }
}

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

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

.scroll-top:hover {
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}
.section-title h2 span{
  background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
  font-size:1.1rem;
  color:#ffffff;
  font-weight: 300;
}
/* Medium devices (tablets) */
@media (max-width: 991.98px) {
  .section-title {
    padding-bottom: 40px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title h2:before,
  .section-title h2:after {
    width: 40px;
    height: 2px;
  }

  .section-title h2:before {
    margin: 0 10px 8px 0;
  }

  .section-title h2:after {
    margin: 0 0 8px 10px;
  }

  .section-title p {
    font-size: 1rem;
  }
}

/* Small devices (mobile phones) */
@media (max-width: 575.98px) {
  .section-title {
    padding-bottom: 30px;
  }

  .section-title h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .section-title h2:before,
  .section-title h2:after {
    width: 30px;
    height: 2px;
  }

  .section-title h2:before {
    margin: 0 8px 6px 0;
  }

  .section-title h2:after {
    margin: 0 0 6px 8px;
  }

  .section-title p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* ----------- SECTION FIX ----------- */
#section-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
   }

/* Header overlap fix */
.header {
    position: relative;
    z-index: 1000;
}

/* Image Fit Properly */
#section-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Desktop Height */
@media (min-width: 992px) {
    #section-banner {
        height: 88vh; /* Visible full banner */
    }
}

/* Mobile Height */
@media (max-width: 991px) {
    #section-banner {
        height: 65vh;
    }
}

/* ------------ Carousel Controls ------------- */
#section-banner .carousel .slide .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
#section-banner .carousel .slide .carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

#section-banner .carousel-control-prev,
#section-banner .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: .9;
}

#section-banner .carousel-control-prev:hover,
#section-banner .carousel-control-next:hover {
    background: rgba(0,0,0,0.85);
}

/* White arrow icons */
#section-banner .carousel-control-prev-icon,
#section-banner .carousel-control-next-icon {
    filter: invert(1);
    width: 28px;
    height: 28px;
}

/* Mobile arrows */
@media (max-width: 575px) {
    #section-banner .carousel-control-prev,
    #section-banner .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    #section-banner .carousel-control-prev-icon,
    #section-banner .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
}



/*.hero {
      min-height: 70vh;
      width: 100%;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      / Background layers: gradient for left contrast + image /
      background-image:
        linear-gradient(90deg, rgba(6,8,10,0.86) 0%, rgba(6,8,10,0.55) 40%, rgba(6,8,10,0.15) 65%),
        url("../img/building1.webp");
      background-size: cover;
      background-position: right center; / focus the image on right /
      background-repeat: no-repeat;
    }

    / Optional subtle vignette to push eyes to image /
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(1200px 500px at 75% 50%, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.7) 100%);
      pointer-events: none;
    }

    / CONTENT area sits inside container for responsive padding /
    .hero .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding-left: clamp(1rem, 6vw, 6rem);
      padding-right: clamp(1rem, 3vw, 3rem);
      display: flex;
      align-items: center;
      min-height: 90vh;
    }

    / Left column width (on large screens take ~50%) /
    .hero .content {
      max-width: 650px;
      color: var(--text-strong);
      padding: 6vh 0;
    }

    .hero .badge-trust{
      display:inline-block;
      color: #f4c28b;
      border:1px solid rgba(255,255,255,0.12);
      padding:6px 12px;
      border-radius:40px;
      margin-bottom:1rem;
      background: rgba(255,255,255,0.02);
      font-size:0.95rem;
    }

    .hero h1{
      margin: 0 0 0.8rem 0;
      font-size: clamp(1.8rem, 4.2vw, 3.6rem);
      line-height: 1.02;
      font-weight: 700;
      color: var(--text-strong);
      text-shadow: 0 6px 20px rgba(0,0,0,0.45);
      text-transform: capitalize;
    }
    .hero span{
    background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  font-size: 2.8rem;

   }

    .hero p.lead {
      color: var(--text-muted);
      font-size: 1.05rem;
      margin-bottom: 1.6rem;
    }

   .hero .btn-cta {
      background: linear-gradient(90deg,#b56e3d,#cc8a57);
      border: none;
      color: #fff;
      padding: 0.85rem 1.6rem;
      border-radius: 40px;
      font-weight: 600;
      box-shadow: 0 10px 30px rgba(197,125,80,0.18);
      margin-right: 0.8rem;
      transition: transform .18s ease;
    }
    .hero.btn-cta:hover { transform: translateY(-3px); }

    .hero .btn-outline {
      border-radius: 40px;
      padding: 0.78rem 1.5rem;
      color: #f0d5a8;
      border: 1px solid rgba(240,213,168,0.2);
      background: transparent;
    }

    / Decorative small info row for trust icons etc. /
    .meta-row { margin-top: 1.2rem; color: rgba(255,255,255,0.8); font-size: 0.95rem; }

    / RESPONSIVE BEHAVIOR /
    @media (max-width: 991.98px) {
      .hero {
        background-position: center center; / keep important parts visible /
      }
      .hero-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
      .content { padding: 3rem 0; }
      .hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
      .hero p.lead { font-size: 1rem; }
    }

    @media (max-width: 575.98px) {
      .hero { min-height: 70vh; }
      .content { max-width: 100%; text-align: center; }
      .hero h1 { font-size: 1.6rem; }
      .meta-row { text-align: center; }
    }*/
/*--------------------------------------------------------------
# Quick Facts Section
--------------------------------------------------------------*/
  .quick-facts {
  background: linear-gradient(180deg, #0a0a0a, #111);
  color: #fff;
  overflow: hidden;
}

.quick-facts .fact {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.quick-facts .fact:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(160, 95, 61, 0.15);
}

.quick-facts .fact .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(160, 95, 61, 0.2);
  transition: all 0.4s ease;
}

.quick-facts .fact:hover .icon {
  transform: rotate(10deg) scale(1.05);
  box-shadow: 0 12px 35px rgba(160, 95, 61, 0.35);
}

.quick-facts .fact-title {
   background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  font-weight: 600;
  margin: 10px 0 6px;
}

.quick-facts .muted {
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .quick-facts .fact {
    padding: 18px 12px;
  }
  .quick-facts .fact .icon {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a, #111);
  /*background-color: #0d1117;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231c1f25' stroke-width='1'%3E%3Cpath d='M0 50 L50 0 L100 50 L50 100 Z'/%3E%3C/g%3E%3C/svg%3E");*/
  background-size: 80px;
  background-repeat: repeat;
  color: #fff;
  overflow: hidden;
  /*padding-top: 5rem;
  padding-bottom: 5rem;*/
}

.about-image-wrapper {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.corner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #cf956e 50%, transparent 50%);
  border-top-left-radius: 6px;
}

.hex-shape {
  position: absolute;
  right: -70px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  border: 1.5px solid #a05f3d;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  opacity: 0.5;
  z-index: 0;
}

.about-section .text-warning {
  background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.about-section .btn-outline-warning {
  border: 1.5px solid  #cf956e;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-section .btn-outline-warning:hover {
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  color: #fff;
}

@media (max-width: 991px) {
  .hex-shape {
    display: none;
  }
  .about-section {
    background-size: 60px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action-realestate {
 padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05); /* semi-transparent glass */
  backdrop-filter: blur(12px);            /* frosted blur effect */
  -webkit-backdrop-filter: blur(12px);    /* Safari support */
  border-radius: 1rem;
  border: 0px solid rgba(255, 255, 255, 0.15); /* subtle glass border */
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 
      -8px 0 20px rgba(0, 0, 0, 0.5),    /* left shadow */
       8px 0 20px rgba(0, 0, 0, 0.5),    /* right shadow */
      -4px 0 15px rgba(160, 95, 61, 0.2), 
       4px 0 15px rgba(207, 149, 86, 0.2); /* subtle gradient glow on sides */
}

.call-to-action-realestate .cta-pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.call-to-action-realestate table th,
.call-to-action-realestate table td {
  padding: 1rem 1.5rem;
  text-align: center;
  word-wrap: break-word;
}

.call-to-action-realestate table thead {
  background: linear-gradient(135deg, #a05f3d, #cf956e);
}

.call-to-action-realestate table thead th {
  color: #fff;
  font-weight: 600;
}

.call-to-action-realestate table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.call-to-action-realestate table tbody tr:hover {
  background: rgba(160,95,61,0.08);
  transform: translateY(-4px);
}

.call-to-action-realestate .btn-enquire {
  padding: 0.6rem 1.4rem;
  background: #cf956e;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action-realestate .btn-enquire:hover {
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  transform: translateY(-2px);
}

.call-to-action-realestate .cta-contact p {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.call-to-action-realestate .btn-contact,
.call-to-action-realestate .btn-whatsapp {
  display: inline-block;
  margin: 0.3rem 0.5rem;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action-realestate .btn-contact {
  background: #00aaff;
  color: #fff;
}

.call-to-action-realestate .btn-contact:hover {
  background: #33bbff;
  transform: translateY(-2px);
}

.call-to-action-realestate .btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.call-to-action-realestate .btn-whatsapp:hover {
  background: #52e88a;
  transform: translateY(-2px);
}

/* Adjust font size for small devices */
@media (max-width: 768px) {
  .call-to-action-realestate .cta-pricing-table table th,
  .call-to-action-realestate .cta-pricing-table table td {
    padding: 0.8rem 1rem;
  }
  .call-to-action-realestate .btn-enquire {
  padding: 0.3rem 1.0rem;
  font-size:13px;
}
}

@media (max-width: 480px) {
  .call-to-action-realestate .cta-pricing-table table th,
  .call-to-action-realestate .cta-pricing-table table td {
    padding: 0.8rem 0.5rem;
  }

  .call-to-action-realestate h2 {
    font-size: 1.75rem;
  }
  .call-to-action-realestate .btn-enquire {
  padding: 0.3rem 1.0rem;
  font-size:13px;
}
}

/*--------------------------------------------------------------
# AMENITIES SECTION
--------------------------------------------------------------*/
.amenities {
  background: linear-gradient(180deg, #0a0a0a, #111);
  color: #ffffff;
  overflow: hidden;
  position:relative;
}

/* Amenity Cards */
.amenity-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  text-align: center;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  cursor: default;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(160, 95, 61, 0.15);
}

.amen-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(160, 95, 61, 0.25);
  transition: all 0.6s ease;
}

.amenity-card:hover .amen-icon {
  transform: rotateY(360deg) scale(1.1);
  background: linear-gradient(135deg, #a05f3d, #cf956e);
}

.amenity-card h6 {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
  transition: color 0.3s ease;
}

.amenity-card:hover h6 {
  color: #cf956e;
}

/* Swiper Slider */
.amenitiesSwiper {
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(160, 95, 61, 0.15);
}

.amenitiesSwiper .swiper-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
}

.swiper-pagination-bullet {
  background: #cf956e !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .amenitiesSwiper {
    height: 380px;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .amenity-card {
    padding: 18px;
  }

  .amen-icon {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .amenitiesSwiper {
    height: 380px;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .amenity-card {
    padding: 18px;
  }
  .amen-icon {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}


/*---------------------------------
# POSSESSION / TIMELINE  Section
---------------------------------*/
.possession {
  background: linear-gradient(180deg, #0b0b0b, #080808);
  color: #fff;
}

.possession .timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

.possession .timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(135deg, #a05f3d, #cf956e);;
}

/* Timeline items */
.possession .timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0;
  gap: 24px;
  position: relative;
}

.possession .timeline-item.left .timeline-content {
  order: 1;
}
.possession .timeline-item.left .timeline-img {
  order: 2;
}
.possession .timeline-item.right .timeline-content {
  order: 2;
}
.possession .timeline-item.right .timeline-img {
  order: 1;
}

.possession .timeline-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 12px 36px rgba(160, 95, 61, 0.2);
  transition: all 0.4s ease;
  z-index: 2;
}

.possession .timeline-icon:hover {
  transform: translate(-50%, -50%) scale(1.1) rotate(10deg);
  box-shadow: 0 16px 40px rgba(160, 95, 61, 0.35);
}

.possession .timeline-content {
  width: 45%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.possession .timeline-content:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.possession .timeline-heading {
  background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  font-weight: 700;
  margin-bottom: 6px;
}

.possession .timeline-img {
  width: 45%;
}

.possession .timeline-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.possession .timeline-img img:hover {
  transform: scale(1.05);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .possession .timeline::before {
    display: none;
  }

  .possession .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
    margin: 40px 0;
  }

  .possession .timeline-item .timeline-icon {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin-bottom: 10px;
  }

  .possession .timeline-content,
  .possession .timeline-img {
    width: 100%;
  }

  .possession .timeline-img img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .possession .timeline-content {
    padding: 18px;
  }
 .possession  .timeline-icon {
    width: 58px;
    height: 58px;
    font-size: 1rem;
  }
}

/*-----------------------
 # SPECIAL OFFER Section
--------------------------*/
.special-offer-gradient {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
/*    padding: 100px 20px;*/
    text-align: center;
    position: relative;
    box-shadow: -8px 0 20px rgba(0, 0, 0, 0.5), 8px 0 20px rgba(0, 0, 0, 0.5), -4px 0 15px rgba(160, 95, 61, 0.2), 4px 0 15px rgba(207, 149, 86, 0.2);
}

.special-offer-gradient .special-inner {
  text-align: center;
  color: #fff;
  max-width: 900px;
  margin: auto;
  background: linear-gradient(135deg, rgba(160,95,61,0.3), rgba(20,26,26,0.3));
  padding: 50px 30px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
}

.special-offer-gradient .special-text h3 {
  font-weight: 800;
  font-size: 1.9rem;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.special-offer-gradient .special-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Timer */
.special-offer-gradient .timer {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.special-offer-gradient .timer .time-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 80px;
  text-align: center;
  transition: transform 0.3s ease;
}

.special-offer-gradient .timer .time-box:hover {
  transform: scale(1.05);
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.special-offer-gradient .timer .time-box span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.special-offer-gradient .timer  .time-box small {
  color: rgba(255, 255, 255, 0.8);
}

/* CTA Buttons */
.special-offer-gradient .cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.special-offer-gradient .btn-reserve,
.special-offer-gradient .btn-call,
.special-offer-gradient .btn-whatsapp {
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  transition: all 0.4s ease;
}

.special-offer-gradient .btn-reserve {
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  color: #fff;
  box-shadow: 0 8px 20px rgba(160, 95, 61, 0.3);
}

.special-offer-gradient .btn-reserve:hover {
  background: linear-gradient(180deg, #a05f3d, #cf956e);
  transform: translateY(-2px);
}

.special-offer-gradient .btn-call {
  background: rgba(160, 95, 61,0.3);
  color: #fff;
  border: 1px solid rgba(160, 95, 61, 0.15);
}

.special-offer-gradient .btn-call:hover {
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  color: #fff;
  transform: translateY(-2px);
}

.special-offer-gradient .btn-whatsapp {
  background: rgba(160, 95, 61,0.1);
  color: #fff;
  box-shadow: 0 8px 20px rgba(160, 95, 61, 0.1);
  border:1px solid #cf956e;
}

.special-offer-gradient .btn-whatsapp:hover {
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  transform: translateY(-2px);
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .special-text h3 {
    font-size: 1.6rem;
  }
  .special-text p {
    font-size: 0.95rem;
  }
  .time-box {
    min-width: 70px;
    padding: 12px 10px;
  }
  .btn-reserve, .btn-call, .btn-whatsapp {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Video And Gallery  Section
--------------------------------------------------------------*/
/* ===== VIDEO & GALLERY SECTION ===== */
.media-section {
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: #fff;
}

.media-section .video-box {
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  widht:100%;
  height:100%;
}

.media-section .video-box img {
  transition: transform 0.4s ease, filter 0.4s ease;
  widht:100%;
  height:550px;
}

.media-section .video-box:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.media-section .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: #fff;
  transition: all 0.3s ease;
}

.media-section .play-btn:hover {
 background: linear-gradient(135deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ===== Gallery "View" Icon Overlay ===== */
.media-section .gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.media-section .gallery-item .view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.media-section .gallery-item .view-icon i {
  font-size: 1.8rem;
  color: #fff;
  transition: color 0.3s ease;
}

.media-section .gallery-item:hover .view-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.media-section .gallery-item:hover .view-icon i {
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gallery hover effect */
.media-section .glightbox img {
  transition: all 0.3s ease;
  width:100%;
  height: 100%;
}

.media-section .glightbox img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Responsive spacing */
@media (max-width: 768px) {
  .media-section .video-box {
    margin-bottom: 1rem;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #120b08, #111);
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
 background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a05f3d, color-mix(in srgb, #cf956e, var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: #a05f3d;
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, #a05f3d, transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 15px 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, #ffffff, transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, #a05f3d, transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: color-mix(in srgb, #a05f3d, #cf956e 20%);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

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

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}

/*-----------------------
 # Location Section
--------------------------*/
.location {
  background: linear-gradient(180deg, #0b0b0b, #070707);
  color: #fff;
}

/* Map Card */
.location .map-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease;
}

.location .map-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 50px rgba(160, 95, 61, 0.15);
}

/* Location Info Cards */
.location .loc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 14px;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
}

.location .loc-item:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(160, 95, 61, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}

.location .loc-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(160, 95, 61, 0.2);
  transition: all 0.4s ease;
}

.location .loc-item:hover .loc-icon {
  transform: rotate(10deg) scale(1.05);
  background: linear-gradient(135deg, #a05f3d, #cf956e);
}

.location .loc-title {
  background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-bottom: 2px;
}

.location .loc-desc {
  color: #aaa;
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Footer Text */
.location .loc-footer {
  font-size: 0.9rem;
  color: #bbb;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 10px;
}

/* Responsive */
@media (max-width: 991px) {
  .location .map-card iframe {
    height: 360px;
  }
  .location .location-info {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .location .loc-item {
    padding: 14px;
  }
  .location .loc-icon {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  .section-sub {
    font-size: 0.95rem;
  }
}

/*-----------------------
 # Partner Section
--------------------------*/
.partners-section {
  background: rgba(255, 255, 255, 0.05); /* semi-transparent glass */
  backdrop-filter: blur(12px);            /* frosted blur effect */
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
/*  padding: 100px 20px;*/
  text-align: center;
  position: relative;
  box-shadow: 
      -8px 0 20px rgba(0, 0, 0, 0.5),    /* left shadow */
       8px 0 20px rgba(0, 0, 0, 0.5),    /* right shadow */
      -4px 0 15px rgba(160, 95, 61, 0.2), 
       4px 0 15px rgba(207, 149, 86, 0.2); /* subtle gradient glow on sides */
}

.badge-label {
  display: inline-block;
  background: rgba(160, 95, 61, 0.15);
  color: #cf956e;
  border: 1px solid rgba(160, 95, 61, 0.25);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.partners-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.partner-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 25px;
  width: 300px;
  transition: all 0.4s ease;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(207, 149, 110, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, #a05f3d, #cf956e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(207, 149, 110, 0.25);
}

.partner-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.partner-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn-visit {
  display: inline-block;
  color: #cf956e;
  border: 1px solid #cf956e;
  border-radius: 25px;
  padding: 6px 16px;
  font-size: 0.9rem;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn-visit:hover {
  background: #cf956e;
  color: #fff;
}

.partners-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px 30px;
  width: fit-content;
  margin: 0 auto;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #cf956e;
}

.badge-item i {
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .partner-card { width: 260px; }
}
@media (max-width: 768px) {
  .partners-grid { flex-direction: column; align-items: center; }
  .partner-card { width: 85%; }
}


/*-----------------------
 # BOOKING MODERN Section
--------------------------*/
.booking-modern {
/*  padding: 80px 0;*/
  background: linear-gradient(180deg,#0b0b0b,#070707);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.booking-modern .steps h3 {
  background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  font-weight: 800;
  margin-bottom: 24px;
  font-size: 1.8rem;
}

.booking-modern .step-card {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 16px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.booking-modern .step-card:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 35px rgba(160,95,61,0.08);
}

.booking-modern .step-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(160,95,61,0.15);
}

/* ===== FORM MODERN ===== */
.booking-modern .book-form-modern {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 30px 22px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 10px rgba(160, 95, 61, 0.3), 0 0 15px rgba(207, 149, 86, 0.2);
  backdrop-filter: blur(6px);
}

.booking-modern .book-form-modern h5 {
  background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
}

.booking-modern .book-form-modern .form-control,
.booking-modern .book-form-modern .form-select {
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.booking-modern .book-form-modern .form-control::placeholder {
  color: rgba(255,255,255,0.6);
}

.booking-modern .book-form-modern .btn-cta.btn-sm {
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  color: #fff;
  font-weight: 700;
  padding: 10px;
  border-radius: 50px;
  border: none;
  font-size: 1.2rem;
  width:220px;
  text-align: center;
}

.booking-modern .book-form-modern .btn-cta.btn-sm:hover {
  background: linear-gradient(90deg, #a05f3d, #cf956e);
  transform: translateY(-2px);
}

/* CAPTCHA */
.booking-modern .captcha-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom:12px;
}

.booking-modern .btn-refresh {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .booking-modern .booking-modern .steps h3 { font-size: 1.6rem; }
  .booking-modern .book-form-modern { padding: 25px 18px; }
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* ===== FLOATING ACTIONS ===== */
.floating-actions {
  position: fixed;
  right: 10px;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.flt-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #a05f3d;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border: none;
  transition: all 0.28s ease-in-out;
  font-size: 18px;
}

.flt-btn:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  color:#fff;
}

/* ===== ENQUIRE MODAL ===== */
.enquire-modal {
  border-radius: 12px;
  overflow: hidden;
}

.enquire-modal .btn-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
}

.enquire-modal .modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enquire-modal .form-section {
  background: #ffffff;
  color: #ccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.enquire-modal .text-accent {
   background: linear-gradient(45deg, #a05f3d, #cf956e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.enquire-modal .muted {
  color: #aaa;
  margin-bottom: 14px;
}

.enquire-modal .form-control, .form-select {
  border-radius: 6px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rbga(255,255,255,0.6);
  color: #444;
}

.enquire-modal .form-control::placeholder, .form-select option {
  color: #444;
}

.enquire-modal .btn-cta {
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}

.enquire-modal .btn-cta:hover {
  background: linear-gradient(90deg, #a05f3d, #cf956e);
  color: #fff; 
}

.enquire-modal .captcha-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #a05f3d, #cf956e);
  padding: 6px 10px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
}

.enquire-modal .refresh-captcha {
  background: transparent;
  border: none;
  color: #000;
  cursor: pointer;
}

.enquire-modal .refresh-captcha:hover {
  color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .enquire-modal .modal-img {
    display: none;
  }
  .enquire-modal .form-section {
    padding: 20px;
  }
}