/* ================= COLORS ================= */
:root {

  /* Gold Theme */
  --gold: #b18502;
  --dark-gold: #B8962E;

  /* Backgrounds */
  --bg-light: #faf6ed;
  --bg-soft-gold: #f3e2c7;
  --white: #ffffff;

  /* Text Colors */
  --text-primary: #2c2c2c;
  --text-secondary: #555555;
  --text-white: #ffffff;

}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5; /* page background color */
}

/* body {
  background: var(--light-bg);
  color: var(--soft-black);
    margin: 0;
    background: #f5f5f5; /* optional page background */


@media (max-width: 768px) {

  /* GENERAL TEXT FIX */
  h1 { font-size: 26px !important; }
  h2 { font-size: 22px !important; }
  h3 { font-size: 18px !important; }
  p  { font-size: 14px !important; }

  section {
    padding: 50px 15px !important;
  }


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
}
/*//////////////////////////// PRELOADER //////////////////////////////////////////////////////////*/


#preloader{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:#0a0a0a;
display:flex;
justify-content:center;
align-items:center;
z-index:9999;
transition:opacity .6s ease, visibility .6s;
}

/* Hide animation */
#preloader.hide{
opacity:0;
visibility:hidden;
}

/* Center Box */
.loader-box{
text-align:center;
}

/* Logo */
.loader-box img{
width:160px;
margin-bottom:30px;
animation:logoFloat 2s ease-in-out infinite;
}

/* Floating logo animation */
@keyframes logoFloat{
0%{transform:translateY(0)}
50%{transform:translateY(-8px)}
100%{transform:translateY(0)}
}

/* Loading Bar */
.loading-bar{
width:200px;
height:4px;
background:#222;
border-radius:10px;
overflow:hidden;
margin:auto;
}

/* Gold Fill Animation */
.loading-fill{
width:0%;
height:100%;
background:linear-gradient(90deg,#D4AF37,#FFD700,#D4AF37);
animation:loading 2s infinite;
}

@keyframes loading{
0%{width:0%}
50%{width:80%}
100%{width:100%}
}



/* ================= HEADER ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: linear-gradient(
    135deg,
    rgba(250, 246, 237, 0.95),
    rgba(243, 226, 199, 0.95)
  );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(184,150,46,0.4);

  box-shadow:
    0 10px 30px rgba(184,150,46,0.15),
    inset 0 -1px 0 rgba(255,255,255,0.4);

  transition: all 0.4s ease;
}

/* Container */
.header-container {
  max-width: 1350px;
  margin: auto;
  padding: 20px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */

.logo img {
  height: 62px;
  transition: 0.4s ease;
}

.logo img:hover {
  transform: scale(1.07);
}

/* ================= NAVIGATION ================= */

.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.navbar ul li a {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s ease;
}

/* Gold Underline Animation */
.navbar ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -8px;
  background: linear-gradient(90deg,#d4af37,#b8962e);
  transition: 0.4s cubic-bezier(.77,0,.18,1);
}

.navbar ul li a:hover {
  color: #b8962e;
}

.navbar ul li a:hover::after {
  width: 100%;
}

/* ================= PREMIUM BUTTON ================= */
.btn-enquiry {
  position: relative;
  overflow: hidden;
}

.btn-gold.btn-enquiry {
  position: relative;
  overflow: hidden;
  padding: 12px 32px;
     background: linear-gradient(135deg, #e7b100, #a37800);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(184,150,46,0.35);
}


/* Shine Sweep */
.btn-enquiry::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.2),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.2)
  );
  transform: skewX(-25deg);
}

.btn-enquiry:hover::before {
  animation: shine 1s forwards;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.btn-enquiry:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}
/* ================= HAMBURGER ================= */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #b8962e;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .navbar ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;

    background: linear-gradient(145deg,#faf6ed,#f3e2c7);

    flex-direction: column;
    gap: 35px;
    padding-top: 120px;
    text-align: center;

    transition: 0.4s ease;
    box-shadow: -15px 0 40px rgba(0,0,0,0.15);
  }

  .navbar ul.active {
    right: 0;
  }

  .navbar ul li a {
    font-size: 18px;
  }

  .btn-gold {
    display: none;
  }
}

/* //////////////// */

.project-list h1{
    color: #b8860b;
    margin-bottom: 40px;
    font-size: 36px;
}
.btn-gold {
  padding: 10px 22px;
  background: linear-gradient(135deg, #ffb300, #b8962e);
  color: #ff0000;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}



/* ////hero/////////////////////////////////////////// */

.hero{
width:100%;
overflow:hidden;
position:relative;
}

/* DESKTOP SLIDER */

.desktop-slider{
position:relative;
width:100%;
height:90vh;
}

.desktop-slider img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1s ease;
}

.desktop-slider img.active{
opacity:1;
}


/* MOBILE CAROUSEL */

.mobile-carousel{
display:none;
width:100%;
overflow:hidden;
}

.mobile-track{
display:flex;
transition:transform .4s ease;
}

.mobile-track img{
width:100%;
flex-shrink:0;
}


/* MOBILE VIEW */

@media(max-width:768px){

.desktop-slider{
display:none;
}

.mobile-carousel{
display:block;
}

}


/* POPUP */
#enquiryPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: linear-gradient(135deg, #d4af37, #b8962e);
  padding: 30px;
  width: 350px;
  border-radius: 12px;
  position: relative;
}

.popup-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.popup-box button {
  width: 100%;
  padding: 10px;
  background: #000;
  color: gold;
  border: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 22px;
}


/* #enquirypopuo */

/* ===== ENQUIRY POPUP OVERLAY ===== */
.enquiry-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  z-index: 999;
  display: none;
}

/* ===== POPUP WRAPPER ===== */
.enquiry-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 40%;
  max-width: 900px;
  display: none;
}

/* ===== POPUP BOX ===== */
.enquiry-box {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* ===== LEFT ABOUT ===== */
.enquiry-left{
position:relative;
width:50%;
padding:40px;
color:#fff;
overflow:hidden;
}

/* Video */

.bg-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:1;
}

/* Dark overlay */

.enquiry-left::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
z-index:2;
}

/* Content */

.enquiry-content{
position:relative;
z-index:3;
}

.enquiry-left h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.enquiry-left .tagline {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 25px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-points li {
  font-size: 15px;
  margin-bottom: 12px;
}

/* ===== RIGHT FORM ===== */
.enquiry-right {
  width: 50%;
  padding: 40px;
  position: relative;
}

.enquiry-right h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  border: none;
  padding: 0;
}


/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* FORM ELEMENTS */
.enquiry-right input,
.enquiry-right select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.enquiry-right input:focus,
.enquiry-right select:focus {
  outline: none;
  border-color: #c9a24d;
}
textarea {
  min-height: 140px !important;
  width: 100% !important;
  padding: 12px 14px !important;
  border-radius: 6px !important;
  border: 1px solid #ccc !important;
  font-size: 14px !important;
}
/* BUTTON */
.btn-gold.full {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #c9a24d, #e6c15a);
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.btn-gold.full:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {

  .enquiry-box {
    flex-direction: column;
  }

  .enquiry-left,
  .enquiry-right {
    width: 100%;
  }

  .enquiry-left {
    padding: 30px;
    text-align: center;
  }

  .about-points li {
    text-align: left;
  }

  .enquiry-right {
    padding: 30px;
  }
}




/* ================= ABOUT SECTION ================= */

.trust-section {
  padding: 100px 8%;
  background: linear-gradient(135deg, #faf6ed, #f3e2c7);
  display: flex;
  justify-content: center;
}

.trust-container {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  padding: 60px;
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

/* LEFT IMAGE */
.trust-left {
  flex: 1.2;   /* before 1 irundha increase pannunga */
}

.trust-right {
  flex: 1;     /* content slightly smaller */
}

/* IMAGE STYLE */
.trust-left img {
  width: 100%;
  max-width: 600px;   /* before 500px irundha increase */
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transform: scale(1.03);   /* slight zoom effect */
  transition: 0.4s ease;
}

/* Hover subtle premium effect */
.trust-left img:hover {
  transform: scale(1.07);
}

/* RIGHT CONTENT */
.trust-right h2 {
  font-family: 'HK Grotesk Wide', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold);
  margin-bottom: 25px;
  position: relative;
}

/* Gold underline accent */
.trust-right h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--gold);
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 10px;
}

/* Paragraph */
.trust-right p {
  font-family: 'HK Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* ================= ICON GRID ================= */

.trust-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.icon-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  transition: 0.3s ease;
}

.icon-item img {
  width: 50px;
  margin-bottom: 10px;
  filter: grayscale(20%);
  transition: 0.3s ease;
}

.icon-item h4 {
  font-family: 'HK Grotesk Wide', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Hover effect */
.icon-item:hover img {
  transform: translateY(-6px);
  filter: none;
}

.icon-item:hover h4 {
  color: var(--gold);
}


/* /////////////////📱 Mobile Responsive/////////////////// */

@media (max-width: 992px) {

  .trust-container {
    flex-direction: column;
    padding: 40px;
  }

  .trust-right h2 {
    font-size: 32px;
  }

  .trust-icons {
    justify-content: center;
  }

  .icon-item {
    flex: 0 0 45%;
    margin-bottom: 20px;
  }
}


/* //////////////////////Project card//////////////////////////// */

.project-list {
  padding: 80px 5%;
  background: linear-gradient(135deg,#faf6ed,#f3e2c7);
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: #b8962e;
  font-weight: 700;
}

.scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.project-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.project-grid::-webkit-scrollbar {
  display: none;
}

.modern-card {
  min-width: 340px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  flex: 0 0 auto;
}

.modern-card:hover {
  transform: translateY(-10px);
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 25px;
}

.card-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.location {
  font-family: 'Inter', sans-serif;
  color: #777;
  margin-bottom: 20px;
}

.details-row {
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #999;
}

.value {
  font-weight: 600;
}

.price h2 {
  font-family: 'Inter', sans-serif;
  color: #4e3c01;
  font-size: 22px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.btn-outline {
  padding: 8px 16px;
  border: 1px solid #d4af37;
  color: #d4af37;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #d4af37;
  color: #fff;
}

.btn-gold {
  padding: 8px 16px;
  background: linear-gradient(135deg,#d4af37,#b8962e);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg,#d4af37,#b8962e);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}

.scroll-btn.left { left: -15px; }
.scroll-btn.right { right: -15px; }

.scroll-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.card-footer {
  font-family: 'Inter', sans-serif;
  display: flex;
  gap: 15px;
  padding: 20px;
}

.card-footer a {

  position: relative;
  overflow: hidden;
  flex: 1;
  text-align: center;
  padding: 14px 20px;   /* size increase */
  font-size: 15px;      /* font bigger */
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* VIEW PROJECT */
.card-footer .view {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.card-footer .view:hover {
  background: var(--gold);
  color: #fff;
}
.card-footer .enquire::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.6s;
}

.card-footer .enquire:hover::before {
  left: 130%;
}

/* VIEW BROCHURE */
.card-footer .enquire {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
}

.card-footer .enquire:hover {
  background: var(--dark-gold);
  border-color: var(--dark-gold);
}

/* ================= POPUP OVERLAY ================= */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* ================= POPUP BOX ================= */
.popup-box {
  background: #111;
  width: 95%;
  max-width: 420px;
  padding: 40px 30px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: popupFade 0.4s ease;
}

/* Animation */
@keyframes popupFade {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* Heading */
.popup-box h3 {
  color: gold;
  margin-bottom: 20px;
  text-align: center;
}

/* Inputs */
.popup-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: none;
  outline: none;
}

/* Button full width */
.btn-gold.full {
  width: 100%;
}


/* ================= BACKGROUND ================= */

/* ===== SECTION ===== */
.premium-upcoming {
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;

  background: linear-gradient(135deg, #111111, #1c1c1c);
  position: relative;
  overflow: hidden;
}

/* GOLD LIGHT EFFECT */
.premium-upcoming::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.3), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(100px);
}

/* ===== CARD ===== */
.premium-card {
  position: relative;
  background: #181818;
  padding: 50px 60px;
  width: 100%;
  max-width: 700px;
  text-align: center;
  border-radius: 18px;

  border: 1px solid rgba(212,175,55,0.4);

  box-shadow:
    0 0 40px rgba(212,175,55,0.15),
    0 20px 60px rgba(0,0,0,0.7);
}

/* BADGE */
.premium-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  padding: 6px 20px;
  border: 1px solid #d4af37;
  color: #d4af37;
  margin-bottom: 25px;
}

/* TITLE */
.premium-card h2 {
  font-size: 48px;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 10px;
}

/* LOCATION */
.premium-location {
  color: #d4af37;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

/* DIVIDER */
.premium-divider {
  width: 80px;
  height: 2px;
  background: #d4af37;
  margin: 0 auto 30px auto;
}

/* FEATURES */
.premium-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-features li {
  margin-bottom: 12px;
  color: #ddd;
  font-size: 16px;
  letter-spacing: 1px;
}

/* BUTTON */
.premium-btn {
  margin-top: 25px;
  padding: 14px 40px;
  border: 1px solid #d4af37;
  background: transparent;
  color: #d4af37;
  letter-spacing: 3px;
  font-weight: 600;
  cursor: default;
  transition: 0.4s ease;
}

.premium-btn:hover {
  background: #d4af37;
  color: #111;
  box-shadow: 0 0 25px rgba(212,175,55,0.6);
}


.premium-card {
  position: relative;
  overflow: hidden;
}

/* moving gold light */
.premium-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(212,175,55,0.4) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(25deg);
  animation: shineMove 4s infinite;
}

/* animation */
@keyframes shineMove {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}


/*////////////////// About and youtube ///////////////*/

/* SECTION */
.media-section{
  padding:120px 8%;
  background:linear-gradient(135deg,#fdf8f0,#f6e2c4);
}

.media-container{
  display:flex;
  gap:60px;
  align-items:center;
}

/* LEFT SIDE */
.media-content{
  flex:1;
}

.media-content h2{
  font-size:42px;
  font-weight:800;
  margin-bottom:20px;
  background:linear-gradient(90deg,#D4AF37,#b8962e);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.media-content p{
  color:#7a6b4f;
  line-height:1.8;
  margin-bottom:25px;
}

.media-content ul{
  list-style:none;
  padding:0;
}

.media-content ul li{
  margin-bottom:12px;
  padding-left:20px;
  position:relative;
  color:#8b6f2f;
}

.media-content ul li::before{
  content:"★";
  position:absolute;
  left:0;
  color:#D4AF37;
}

/* RIGHT SIDE BOX */
.media-videos{
  flex:1;
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(20px);
  padding:25px;
  border-radius:25px;
  box-shadow:0 30px 60px rgba(212,175,55,0.25);
  overflow:hidden;
}

/* HORIZONTAL SCROLL */
.video-scroll-horizontal{
  display:flex;
  gap:25px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom:10px;
}

/* Scrollbar */
.video-scroll-horizontal::-webkit-scrollbar{
  height:8px;
}

.video-scroll-horizontal::-webkit-scrollbar-thumb{
  background:linear-gradient(#D4AF37,#b8962e);
  border-radius:10px;
}

/* SHORTS STYLE HEIGHT */
.video-scroll-horizontal iframe{
  flex:0 0 220px;  /* width of each short */
  height:380px;    /* vertical short size */
  border-radius:20px;
  border:none;
  box-shadow:0 15px 40px rgba(212,175,55,0.3);
  transition:0.3s;
}

.video-scroll-horizontal iframe:hover{
  transform:scale(1.05);
}
/* //////////////////////contact/////////////////// */


/* Contact Section Container */
.contact-section {
    background: #fefaf6; /* soft off-white background */
        padding: -18px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    color: #b38600; /* gold-ish color */
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Form Container */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

/* Form Fields */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid #b38600;
    box-shadow: 0 0 10px rgba(179, 134, 0, 0.3);
    outline: none;
}

/* Placeholder styling */
.contact-form ::placeholder {
    color: #999;
    font-style: italic;
}

/* Submit Button */
.contact-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #b38600, #ffd633);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
    background: linear-gradient(45deg, #ffd633, #b38600);
    transform: translateY(-3px);
}

/* Form message styling */
#form-message {
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: #b38600;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        padding: 30px 20px;
    }
    .contact-section h2 {
        font-size: 28px;
    }
}


/* ////////////////////////////testimonial cards/////////////////////////// */

/* ================== TESTIMONIALS SECTION ================== */
.testimonials-section {
    background: #fdfaf7; /* soft off-white for premium feel */
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    color: #b38600; /* gold accent */
    margin-bottom: 50px;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Container and Arrows */
.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.8); /* semi-gold */
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    transition: background 0.3s, transform 0.2s;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.arrow:hover {
    background: #ffd633;
    transform: translateY(-50%) scale(1.1);
}

.left-arrow { left: 10px; }
.right-arrow { right: 10px; }

/* Slider */
.testimonials-wrapper {
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

/* Testimonial Card */
.testimonial-card {
  scroll-snap-align: start;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    flex: 0 0 380px; /* card width */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/*////////////////////////// Client Photo ///////////////////////////////*/
.client-photo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #b38600; /* gold border */
    margin-bottom: 20px;
}

/* Content */
.testimonial-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-content h4 {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Rating */
.rating {
    color: #b38600; /* gold stars */
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-card { flex: 0 0 300px; }
}

@media (max-width: 768px) {
    .testimonial-card { flex: 0 0 250px; padding: 20px 15px; }
    .testimonials-section h2 { font-size: 28px; margin-bottom: 30px; }
}
  

/* ================= VIRTUAL TOUR SECTION ================= */
/* ================= VIRTUAL TOUR SECTION ================= */
.client-section {
    background: #fcfaf6; /* soft luxury off-white */
    padding: 100px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.client-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #b38600; /* premium gold accent */
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Wrapper & Arrows */
.testimonial-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ffd633, #b38600);
    border: none;
    padding: 18px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    color: #fff;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.2s, background 0.3s;
}

.nav-btn:hover {
    transform: translateY(-50%) scale(1.15);
}

.left-btn { left: 10px; }
.right-btn { right: 10px; }

/* Video Container */
.testimonial-container {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

/* Video Cards */
.testimonial-card1 {
    scroll-snap-align: start;
       flex: 5 0 290px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    transition: transform 0.4s, box-shadow 0.4s;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-card1 iframe {
    width: 100%;
    height: calc(280px * 16 / 9); /* vertical 9:16 aspect ratio */
    border: none;
    border-radius: 25px;
}

.testimonial-card1:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-card1 { flex: 0 0 220px; }
    .testimonial-card1 iframe { height: calc(220px * 16 / 9); }
}

@media (max-width: 768px) {
    .testimonial-card1 { flex: 0 0 170px; }
    .testimonial-card1 iframe { height: calc(170px * 16 / 9); }
}  

.pinnaclee-advantage {
  width: 100%;
  padding: 80px 0;
  text-align: center;
  background-color: #ffffff; /* forest green */
}

.pinnaclee-advantage h2 {
  color: #d4af37; /* gold */
  font-size: 36px;
  margin-bottom: 40px;
}

.advantage-image {
  display: flex;
  justify-content: center;
}

.advantage-image img {
  width: 70%;          /* konjam perusa */
  max-width: 900px;    /* romba perusa pogama */
  border-radius: 16px;
}



/* Footer Container */
/* Make footer full width and dark red */
.site-footer {
    background: #e18700; /* deep red premium color */
    color: #fff;
    padding: 80px 20px 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%; /* full width */
    margin: 0;    /* remove extra margins */
    box-sizing: border-box;
}

/* Remove extra space around footer container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto; /* center container */
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

/* Footer Boxes */
.footer-box {
    flex: 1 1 250px;
}

.footer-box h4 {
    font-size: 18px;
    color: #ffd633; /* premium gold */
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-box p,
.footer-box li {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-box ul li a:hover {
    color: #ffd633;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1); /* white icons */
    transition: transform 0.3s, filter 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.2);
    filter: brightness(1) invert(0); /* gold hover */
}

/* EMI Button */
.btn-gold {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, #ffd633, #b38600);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Footer Bottom */
/* Footer bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #ccc;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-box {
        flex: 1 1 100%;
    }
}



/* ================= PROJECT PAGE ================= */

/* Banner */
.banners{
    width:100%;
    height:450px;

    background-image: url("../images/cover2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display:flex;
    align-items:center;
    justify-content:center; /* center horizontally */
}

.banners .banner-overlay{
    background: rgba(255,255,255,0.9);
    padding: 40px;
    max-width: 700px;
    text-align: center;
    border-radius: 10px;
}

.banners .banner-overlay h1{
    font-size: 40px;
    color: #c8a45c;
    margin-bottom: 15px;
}

.banners .banner-overlay p{
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}
@media(max-width:768px){

.banners{
    height: 320px;
    padding: 20px;
}

.banners .banner-overlay{
    padding: 20px;
}

.banners .banner-overlay h1{
    font-size: 26px;
}

}

/* Grid */
.modern-card {
    width: 100%;
    max-width: 380px;
    border-radius: 18px;
    overflow: hidden;
    background: #f5f6f8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.modern-card:hover {
    transform: translateY(-8px);
}

.card-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.card-body {
    padding: 25px;
    text-align: center;
}

.card-body h3 {
    font-size: 22px;
    color: #4a3000;
    margin-bottom: 8px;
}

/* .location {
    color: #5c6c7c;
    font-size: 15px;
    margin-bottom: 15px;
} */

.details-row {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.label {
    color: #8a96a3;
    font-size: 14px;
}

.value {
    font-weight: 600;
    margin-top: 5px;
}

.price {
    margin-top: 15px;
}

.price h2 {
    margin-top: 8px;
    font-size: 26px;
    font-weight: 700;
}

.card-footer {
    display: flex;
    height: 55px;
}

.card-footer a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
}

.card-footer .view {
    background: #e4e6eb;
    color: #2c3e50;
}

.card-footer .enquire {
    background: #b88a00;
    color: white;
}
/* .project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-items: center;
} */

/* Single Page Layout */
.single-project {
    padding: 70px 10%;
}

.project-container {
    display: flex;
    gap: 40px;
}

.left-gallery, .right-info {
    width: 50%;
}

.main-img {
    width: 100%;
    border-radius: 10px;
}

.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbs img {
    width: 100px;
    cursor: pointer;
}

.right-info h2 {
    font-size: 32px;
}

.location {
    color: #916400;
    font-weight: bold;
    margin-bottom: 15px;
}

.amenities {
    margin: 20px 0;
}

.btn-group {
    display: flex;
    gap: 15px;
}

.gold-btn {
    padding: 12px 25px;
    background: gold;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.outline-btn {
    padding: 12px 25px;
    border: 2px solid gold;
    color: gold;
    text-decoration: none;
}

/* ===== PROJECT DETAIL ===== */

.project-detail-section {
    padding: 80px 0;
}

.project-detail-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.project-gallery {
    flex: 1;
}

.main-image img {
    width: 100%;
    border-radius: 12px;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumbnail-images img {
    width: 100px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.thumbnail-images img:hover {
    transform: scale(1.05);
}

.project-info {
    flex: 1;
}

.project-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.project-location {
    color: #777;
    margin-bottom: 25px;
}

.info-box {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.project-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #9b6aa5;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-secondary {
    background: #eee;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    color: black;
}

/* ===== OTHER PROJECTS ===== */

.other-projects-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: goldenrod;
}

/* .project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
} */

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    padding-bottom: 20px;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-card h4 {
    margin: 15px 0;
}

.view-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #9b6aa5;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}



/* Reset small issues */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

/* =========================
   Banner
========================= */
.project-banner img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* =========================
   Main Section
========================= */
.project-details {
    padding: 80px 5%;
    background: #f4f6f8;
}

.project-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* =========================
   LEFT CONTENT
========================= */
.project-left {
    flex: 1;
}

.project-left h1 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.project-left h3 {
    font-size: 22px;
    color: #c9a227;
    margin-bottom: 30px;
}

/* Highlight Boxes */
.highlight-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-box div {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    font-size: 15px;
}

/* Description */
.project-description {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
    color: #444;
}

/* Button */
.enquire-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
}

.enquire-btn:hover {
    background: #c9a227;
}

/* =========================
   RIGHT IMAGES
========================= */
.project-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-right img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* =========================
   Amenities Section
========================= */
.amenities {
    padding: 80px 5%;
    background: #9d6a00;
    text-align: center;
}

.amenities h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.amenities-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenities-grid div {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    font-weight: 500;
}

/* =========================
   Responsive
========================= */
@media (max-width: 992px) {
    .project-container {
        flex-direction: column;
    }

    .project-right img {
        height: 220px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .highlight-box {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================
   Other Projects Section
======================== */

.other-projects {
    padding: 80px 5%;
    background: #f4f6f8;
}

.other-projects .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.other-projects h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.other-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.other-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.other-card:hover {
    transform: translateY(-8px);
}

.other-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.other-card h3 {
    margin: 20px 0;
    font-size: 20px;
}

.other-card a {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}
.other-projects {
    padding: 80px 5%;
    background: #f4f6f8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.other-card a:hover {
    background: #c9a227;
}

/* Responsive */
@media(max-width: 992px){
    .other-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .other-projects-grid {
        grid-template-columns: 1fr;
    }
}


.thank-you-box{
    background: linear-gradient(135deg,#d4af37,#b8962e);
    color:#000;
    padding:15px;
    margin-top:15px;
    border-radius:8px;
    font-weight:600;
    text-align:center;
}

.error-box{
    background:#842029;
    color:#fff;
    padding:15px;
    margin-top:15px;
    border-radius:8px;
    text-align:center;
}


.project-banner {
    position: relative;
    height: 500px;
    background: url('images/cairo.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    text-align: center;
    color: #fff;
    max-width: 800px;
    border-radius: 10px;
}

.banner-overlay h1 {
    font-size: 42px;
    color: gold;
    margin-bottom: 20px;
}

.banner-overlay p {
    font-size: 18px;
    line-height: 1.7;
}




/* POPUP BACKGROUND */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* POPUP BOX */
.popup-content {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.popup-content h2 {
  margin-bottom: 20px;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.submit-btn {
  background: gold;
  border: none;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}


.emi-overlay{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
z-index:999;
}

.emi-card-container{
display:none;
position:fixed;
top:50%;
left:50%;
transform:translate(-50%,-50%);
perspective:1000px;
z-index:1000;
}

.emi-card{
width:380px;
height:450px;
position:relative;
transform-style:preserve-3d;
transition:transform 0.8s;
}

.emi-card.flip{
transform:rotateY(180deg);
}

.emi-front,
.emi-back{
position:absolute;
width:100%;
color: #333;
height:100%;
background:white;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,0.2);
padding:30px;
backface-visibility:hidden;
}
.emi-back p{
font-size:16px;
margin:10px 0;
color:#333;
}

.emi-back span{
font-weight:bold;
color:#000;
}
.emi-back{
transform:rotateY(180deg);
text-align:center;
}

.emi-front input{
width:100%;
padding:10px;
margin:8px 0;
border-radius:8px;
border:1px solid #ccc;
}

.btn-gold{
background:linear-gradient(45deg,#ffcc00,#f5a700);
border:none;
padding:10px 20px;
border-radius:8px;
cursor:pointer;
color:white;
margin-top:10px;
}

.btn-close{
background:#ccc;
border:none;
padding:10px 20px;
border-radius:8px;
margin-left:10px;
cursor:pointer;
}