:root{
	--dark:#222428;
	--gold:#d99a53;
	--offwhite:#faf7f2;
}
/* Base */
body{font-family:'Montserrat',sans-serif; color:#222; background:#fff}
.section-title{font-family:'Montserrat',sans-serif; letter-spacing:2px}

.section-sub{color:var(--gold);font-weight:700;font-size:0.85rem;letter-spacing:1px;margin-bottom:0.5rem}

/* Topbar */
.top-bar-1{background:var(--dark)}
.top-bar-1 .text-white{color:#fff}
.top-bar  .icon-1,.icon-2 a{
	font-size: 15px !important;
	font-weight: 500 !important;
}
.top-bar .icon-1 a {
    color: #fff;
    font-size: 15px !important;
	font-weight: 500 !important;
}
/* /header */
.bg-nabbar {
  background-color: #c6843f;
}
/* Mobile view only */
@media (max-width: 991px) {
  .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 2px solid #ddd;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
  }

  /* Last item ka border hatane ke liye */
  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
}


/* Sticky navbar */
.navbar-custom {
  position: sticky;
  top: 0;
  z-index: 9999;
}
.bg-nabbar .navbar .navbar-brand{
	color: #fff;
	font-weight: 700;
	letter-spacing: 1px;
}
.bg-nabbar .navbar .navbar-brand:hover{
	color: #222428;
}
.bg-nabbar .navbar .nav-link{
	color: #fff;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 15px;
}
.bg-nabbar .navbar .nav-link:hover{
	color: #222428;
}
.bg-nabbar .navbar .navbar-toggler{
	border-color: rgba(0,0,0,0.12);
}
.bg-nabbar .navbar .navbar-toggler-icon{
	filter: invert(0);
	opacity: 0.9;
}
.bg-nabbar .navbar .nav-item{
	margin-left: 18px;
}

/* HERO FULL IMAGE FIX */
/* ===== Hero Banner ===== */
.hero-section {
	width: 100%;
	height: 100vh;
	background: url("../img/banner.jpg") center/cover no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* Blur + transparent overlay */
.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.9;
	backdrop-filter: blur(4px);       /* blur effect */
	-webkit-backdrop-filter: blur(6px);
	z-index: 1;
}

/* Text container */
.hero-content {
	position: relative;
	z-index: 2;
	/* padding-left: 80px;  */
 /* max-width: 700px; */
 top: -50px;
}
@media (max-width: 991px) {
	.hero-content {
		top: 0;
	}
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.lux-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
;
}

.lux-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 1.4s ease, transform 7s ease;
}

.lux-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Dark overlay */
.lux-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.25), rgba(0,0,0,0.75));
}

/* Glassmorphism box */
.glass {
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 40px 60px;
}

/* Content */
.lux-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: auto;
  top: 40%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
}

.lux-content h6 {
  letter-spacing: 5px;
  font-size: 14px;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 1s forwards;
}

.lux-content h1 span {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #f5b14c;
  opacity: 0;
  animation: fadeUp 1s forwards;
}

.lux-content h1 span:nth-child(2) {
  color: #ffffff;
  animation-delay: .2s;
}
.lux-content h1 span:nth-child(3) {
  animation-delay: .4s;
}

/* Floating animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* DOTS */
.lux-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 3;
}

.lux-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.lux-dots .dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #f5b14c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 5s linear;
}

.lux-dots .dot.active::after {
  transform: scaleX(1);
}

/* Responsive */
@media(max-width:768px) {
  .lux-content h1 span {
    font-size: 34px;
  }
  .glass {
    padding: 25px;
  }
}


/* Company title styling inside slides */
.company-title{font-size:4rem;line-height:0.95;letter-spacing:2px;text-shadow:0 6px 18px rgba(0,0,0,0.45);background:linear-gradient(90deg,#fff 0%,#f3e6d0 100%);-webkit-background-clip:text;background-clip:text;color:transparent}

/* Hero caption redesign */
.carousel-caption .company-title{font-size:3.4rem;line-height:1.05;letter-spacing:0.6px;font-weight:800;text-transform:none;background:none;-webkit-background-clip:unset;background-clip:unset;color:#fff;text-shadow:0 8px 30px rgba(0,0,0,0.6);margin-bottom:0.6rem}
.carousel-caption .company-title span{display:block;color:#d4af37;font-weight:900;font-size:1.05rem;letter-spacing:0.8px}
.hero .lead{color:rgba(255,255,255,0.95);font-size:1.125rem;max-width:640px}
.carousel-caption{max-width:720px}

/* Accent underline for the brand span */
/* .carousel-caption .company-title span::after{content:'';display:block;width:56px;height:4px;background:#d4af37;border-radius:4px;margin-top:12px} */

/* Fade + rise animation for caption elements */
@keyframes fadeUp {
	from{opacity:0; transform:translateY(18px)}
	to{opacity:1; transform:translateY(0)}
}
.carousel-caption .hero-badge{animation:fadeUp 500ms ease both}
.carousel-caption .company-title{animation:fadeUp 650ms ease both}
.carousel-caption .lead{animation:fadeUp 800ms ease both}
.carousel-caption .btn{animation:fadeUp 950ms ease both}

@media (max-width:991px){
	.company-title{font-size:2rem}
	.carousel-caption .company-title{font-size:1.8rem}
	.carousel-caption{right:6%;left:6%}
	.carousel-item .slide-bg{height:50vh}
}

.hero .social-float{position:absolute;right:4%;top:50%;transform:translateY(-50%);z-index:4}
.hero .social-float ul{list-style:none;padding:0;margin:0}
.hero .social-float li{margin:10px 0}
.hero .social-float a{display:inline-block;width:36px;height:36px;border:2px solid rgba(255,255,255,0.25);color:#fff;border-radius:4px;text-align:center;line-height:32px;background:transparent}





@media (max-width:767px){
	.cta-section{height:auto;padding:3rem 0}
	.cta-wrap{flex-direction:column}
	.cta-left{display:none}
	.cta-card{margin:0 auto;width:92%;margin-bottom:1.5rem}
	.cta-right .container .row{justify-content:center;text-align:center}
	.cta-right .cta-title{font-size:2rem}
}

/* Footer: unique site-footer styles */
.site-footer{background:linear-gradient(180deg,#0b0b0b,#0f1114);color:#d6d6d6}
.site-footer a{color:inherit;text-decoration:none;opacity:0.9}
.site-footer .footer-top{border-bottom:1px solid rgba(255,255,255,0.03)}
.site-footer .footer-logo{width:120px;height:auto;object-fit:contain}
.site-footer h6{color:#fff;margin-bottom:12px}
.site-footer .footer-about .social-links a{display:inline-block;width:36px;height:36px;border-radius:6px;background:rgba(255,255,255,0.03);color:#fff;text-align:center;line-height:36px}
.site-footer .footer-links ul{padding-left:0}
.site-footer .footer-links li{margin-bottom:8px}
.site-footer .footer-links a:hover{color:var(--gold)}
.site-footer .footer-links h6{color:#fff;margin-bottom:14px;font-weight:700;display:flex;align-items:center;gap:8px}
.site-footer .footer-links ul li a{color:#cfcfcf;text-decoration:none;padding:6px 0;transition:color 160ms ease}
.site-footer .footer-links ul li a:hover{color:var(--gold)}
.site-footer .footer-about .social-links a{margin-right:10px;background:rgba(255,255,255,0.03);border-radius:8px}

/* Footer column width adjustments for new layout */
@media (min-width:768px){
	.footer-about{flex:0 0 41.666667%;max-width:41.666667%} /* col-md-5 */
	.footer-links{flex:0 0 25%;max-width:25%} /* col-md-3 */
	.footer-details{flex:0 0 33.333333%;max-width:33.333333%} /* col-md-4 */
}

/* Improve footer link readability */
.site-footer .footer-top{padding-top:3.5rem;padding-bottom:3.5rem}
.site-footer .footer-about .footer-info li{align-items:center}
.site-footer .footer-about .footer-info i{color:var(--gold);min-width:28px}
.site-footer .footer-newsletter .form-control{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.04);color:#fff}
.site-footer .footer-newsletter .btn-warning{background:var(--gold);border-color:var(--gold);color:#fff}
.site-footer .footer-bottom{background:transparent}

/* Footer info list with icons */
.site-footer .footer-info li{margin-bottom:0.6rem;display:flex;align-items:flex-start;gap:10px}
.site-footer .footer-info i{color:var(--gold);min-width:20px;font-size:1.05rem}
.site-footer .footer-about p small, .site-footer .footer-about p{margin-bottom:0.5rem}
.site-footer .footer-logo-text{color:var(--gold);font-weight:800}
.site-footer .footer-about a{color:#fff;text-decoration:underline}

@media (max-width:767px){
	.site-footer .footer-top .footer-about {text-align:center}
	/* .site-footer .footer-links {text-align:center} */
	.site-footer .footer-contact {text-align:center}
	.site-footer .footer-newsletter {text-align:center}
}

/* Responsive tweaks */
@media (max-width:767px){
	.hero .carousel-caption{left:1rem;right:1rem;text-align:center;top:45%;transform:translateY(-45%)}
	.hero .display-4{font-size:2.2rem}
	.hero .social-float{display:none}
	.main-nav .nav-link{font-size:12px}
}

/* Mobile nav toggle and improved small-screen behaviour */
.nav-toggle{border-width:1px;padding:6px 10px;font-size:16px}
.main-nav .nav{transition:all 220ms ease}

@media (max-width:991px){
	.site-header{flex-direction:column}
	.main-nav .nav-inner{padding:14px 0}
	.main-nav .nav{display:none;flex-direction:column;gap:0;align-items:stretch}
	.main-nav .nav.open{display:flex}
	.main-nav .nav-link{display:block;padding:12px 16px;text-align:center;letter-spacing:1.5px}
	.main-nav .nav{width:100%}
	.main-nav .nav-inner::before{display:none}
	.main-nav::before{display:none}
}

@media (max-width:575px){
	.hero .carousel-item .slide-bg{height:40vh;opacity:0.5;filter:blur(18px);transform:scale(1.03)}
	.hero .display-4{font-size:1.6rem}
	.carousel-caption{padding:0 0.5rem}
	.company-title{font-size:1.1rem}
	.carousel-caption .company-title{font-size:1rem}
	.cta-card{padding:22px}
}

/* Footer stacking tweaks */
footer{
  margin-top: 40px;
}
@media (max-width:767px){
	.site-footer .footer-top .row{flex-direction:column}
	.site-footer .footer-top .col-md-4{width:100%}
	.site-footer .footer-about{text-align:center}
}

/* Contact bar wrap and spacing improvements */
@media (max-width:991px){
	.contact-bar{flex-wrap:wrap;gap:12px;padding:10px}
	.contact-bar .contact-item{flex:1 1 100%;text-align:center}
}

@media (min-width:768px){
 	.section-title{font-size:2.25rem}
}

/* Room Dimensions styles */
.nav-tabs#roomTab{border-bottom:0;padding-left:0}
.nav-tabs#roomTab .nav-link{background:transparent;border:0;color:#222;padding:18px 30px;border-radius:0;font-family:'Montserrat',sans-serif;letter-spacing:2px;font-weight:700}
.nav-tabs#roomTab .nav-link:hover{color:var(--dark);background:rgba(0,0,0,0.03)}
.nav-tabs#roomTab .nav-link.active{background:var(--gold);color:#fff;position:relative}
.nav-tabs#roomTab .nav-link.active::after{content:'';position:absolute;right:-18px;top:0;width:28px;height:100%;background:transparent;transform:skewX(-20deg);box-shadow:0 0 0 1px rgba(0,0,0,0.02)}

.room-section-header{display:flex;flex-direction:column;align-items:center;margin-bottom:1rem}
.room-section-header .section-sub{margin-bottom:0.25rem}
.room-section-header .section-title{margin-bottom:0}

.size-badge{display:inline-block;background:#111;color:#fff;padding:8px 14px;font-weight:700;border-radius:2px;letter-spacing:1px;margin:12px 0}

.room-features{margin-top:28px}
.room-features .feature-item{text-align:center}
.room-features .feature-item i{font-size:32px;color:var(--dark);margin-bottom:12px}
.room-features .feature-item .label{font-weight:700;letter-spacing:0.6px;margin-top:6px}

/* decorative background sketch for this section */
.py-5.room-bg{background-image:url('https://images.unsplash.com/photo-1519710164239-da123dc03ef4?q=80&w=1400&auto=format&fit=crop&sat=-20');background-repeat:no-repeat;background-position:center;background-size:cover;background-attachment:fixed;opacity:1}

@media (max-width:991px){
 	.nav-tabs#roomTab .nav-link{padding:12px 10px;font-size:14px}
 	.size-badge{display:block;margin:12px auto}
}

/* Floor plans (left specs, center image, right text) */
.plan-specs{display:flex;flex-direction:column;gap:14px}
.plan-specs .spec{background:#f6f2ee;padding:18px 20px;border-radius:4px;display:flex;justify-content:space-between;align-items:center}
.plan-specs .spec .label{font-weight:700;color:var(--dark);letter-spacing:0.6px}
.plan-specs .spec .value{color:#222;font-weight:700}
.plan-image-wrapper{display:inline-block;max-width:420px}
.plan-image-wrapper img{display:block;width:100%;height:auto;border-radius:4px}
.plan-copy .btn-learn{background:var(--gold);border-color:var(--gold);color:#fff;padding:14px 32px;font-weight:700}
.plan-copy .btn-learn:hover{background:#c6843f}

@media (max-width:767px){
	.plan-specs .spec{padding:12px}
	.plan-image-wrapper{max-width:100%}
	.plan-copy{margin-top:0}
}

/* Header / logo panel to match design */
.site-header{display:flex;align-items:stretch}
.logo-panel{width:271px;justify-content:center;display:flex;background:#17293f;border-right:0}
/* .logo-inner{padding:28px} */
.logo-large{max-width:100%;height:194px;object-fit:contain}
.header-right{flex:1;background:var(--dark);display:flex;flex-direction:column}
.topbar{padding:10px 0}
.topbar .opening{color:#fff;font-weight:600;letter-spacing:1px}
.schedule-btn{color:var(--gold);border-color:rgba(217,154,83,0.18)}
.contact-bar{background:#2b2d30;padding:12px 20px;gap:36px}
.contact-bar .contact-item{color:#fff;font-weight:600;letter-spacing:1px}
.contact-bar .label{color:#d1d1d1;margin-right:6px;font-weight:700}

/* Orange nav with angled left corner */
.main-nav{position:relative}
.main-nav .nav-inner{background:var(--gold);padding:28px 0;position:relative}
.main-nav .nav{gap:13px}
.main-nav .nav-link{color:#fff;font-family:'Montserrat',sans-serif;letter-spacing:2px;font-weight:600}
.main-nav::before{content:"";position:absolute;left:-31px;top:-99px;width:90px;height:100px;background:var(--dark);z-index:2}
.main-nav .nav-inner::before{content:'';position:absolute;left:-48px;top:1px;width:74px;height:95px;background:var(--gold);transform:skewX(-20deg);z-index:1}

@media (max-width:991px){
	.logo-panel{display:none}
	.header-right .contact-bar{display:none}
	.main-nav .nav-inner::before{display:none}
}

/* Company name (replaces logo image) */
.logo-inner .company-name{font-family:'Montserrat',sans-serif;font-size:3.6rem;color:var(--dark);font-weight:900;letter-spacing:1px;text-align:center;padding:26px 12px;text-transform:uppercase}

/* Attractive background for logo-inner only */
.logo-inner{background:transparent;padding:8px;border-radius:0;width:100%;display:flex;align-items:center;justify-content:flex-start}
.logo-panel .logo-inner .company-name{color:#fff;letter-spacing:0.8px;font-weight:800}

@media (max-width:1199px){
	.logo-inner{width:92%;padding:16px}
}

/* New logo block styles */
.company-logo{display:flex;align-items:center;text-decoration:none;color:inherit}
.logo-mark{width:72px;height:72px;border-radius:50%;background:#17293f;display:flex;align-items:center;justify-content:center;color:#d4af37;font-weight:900;font-size:1.6rem;border:3px solid #d4af37}
.logo-text{margin-left:14px;line-height:1}
.logo-text .brand{font-family:'Montserrat',sans-serif;font-weight:900;color:#d4af37;letter-spacing:0.6px;font-size:1.25rem}
.logo-text .sub{font-size:0.7rem;color:#ffffff;font-weight:700;letter-spacing:1px}

/* Top bar (thin strip) */
.top-bar-1{background:#222428;border-bottom:1px solid rgba(0,0,0,0.06)}
.top-bar{display:flex;justify-content:space-between;align-items:center;padding:6px 0}
.top-bar .icon-1 ul{list-style:none;margin:0;padding:0;display:flex;gap:18px;align-items:center}
.top-bar .icon-1 li{font-weight:600;color:#fff}
.top-bar .icon-1 a{color:#fff;text-decoration:none}
.top-bar .icon-2 a{color:#fff;text-decoration:none;font-weight:600}

/* Main header */
.header{background:#d99a53;box-shadow:0 6px 24px rgba(0,0,0,0.12)}
.header .wrapper{display:flex;align-items:center;justify-content:space-between;padding:10px 0}
.header-item-left{flex:0 0 220px;display:flex;align-items:center}
.header-item-left #img-logo{height:64px;object-fit:contain}
.header-item-center{flex:1 1 auto;display:flex;justify-content:center}

/* Style Bootstrap navbar inside header */
.header .navbar{background:transparent;padding:0}
.header .container{display:flex;align-items:center}
.header .navbar-brand{color:#17293f;font-weight:900;font-family:'Montserrat',sans-serif;font-size:1.35rem}
.header .navbar-toggler{border-color:rgba(0,0,0,0.12)}
.header .navbar-toggler-icon{filter:invert(0);opacity:0.9}
.header .navbar-nav{display:flex;gap:22px;align-items:center}
.header .nav-link{color:#17293f;font-weight:700;padding:8px 10px;border-radius:6px}
.header .nav-link.active{background:rgba(0,0,0,0.06)}
.header .nav-link:hover{color:#111;background:rgba(0,0,0,0.06)}
.header-item-right{flex:0 0 64px;display:flex;justify-content:flex-end}

/* Responsive adjustments */
@media (max-width:991px){
	.header .wrapper{padding:8px 0}
	.header-item-left{flex:0 0 140px}
	.header .navbar-nav{gap:12px}
}


/* Footer company text styling */
.footer-logo-text{font-family:'Poppins',sans-serif;font-size:1.05rem;color:var(--gold);font-weight:800;letter-spacing:1px;text-transform:uppercase}

@media (max-width:767px){
    .footer-logo-text{font-size:0.95rem}
}


/* start ABOUT PAGE */

/* about banner */

.neo-banner {
  position: relative;
 
   min-height: 220px;
   height: 150px; 
  display: flex;
  overflow: hidden;
  background: #111827;
}

/* Left Image */
.neo-image {
  width: 55%;
  position: relative;
}

.neo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Diagonal Cut */
.neo-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  width: 160px;
  height: 100%;
  background: #f9fafb;
  transform: skewX(-12deg);
  z-index: 2;
}

/* Right Content */
.neo-content {
  width: 45%;
  background: #f9fafb;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Giant Background Text */
.neo-content::before {
  content: "PROJECTS";
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  font-size: 120px;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  letter-spacing: 12px;
  pointer-events: none;
}


.neo-tag {
  font-size: 12px;
  letter-spacing: 4px;
  color: #c59d2f;
  font-weight: 700;
}

.neo-content h1 {
  font-size: 48px;
  font-weight: 900;
  color: #111827;
  margin: 12px 0;
}

.neo-content p {
  font-size: 15px;
  color: #4b5563;
  max-width: 360px;
}

/* Vertical Breadcrumb */
.neo-breadcrumb {
  position: absolute;
  left: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
}

.neo-breadcrumb .line {
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  margin: 6px 0;
}

.neo-breadcrumb .active {
  color: #c59d2f;
  font-weight: 600;
}

/* Responsive */
@media(max-width: 992px) {
  .neo-banner {
    flex-direction: column;
  }

  .neo-image,
  .neo-content {
    width: 100%;
  }

  .neo-image::after {
    display: none;
  }

  .neo-content {
    padding: 50px 25px;
  }

  .neo-content h1 {
    font-size: 34px;
  }

  .neo-content::before {
    font-size: 80px;
    left: 5%;
  }

  .neo-breadcrumb {
    flex-direction: row;
    gap: 10px;
    left: 20px;
    bottom: 15px;
  }

  .neo-breadcrumb .line {
    width: 30px;
    height: 2px;
  }
}
.neo-breadcrumb a{
    color: #fff;
    text-decoration: none;
}

/* start about us ABOUT US – CONTENT SECTION */


.about-block {

  background: #fff;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin: 15px 0 25px;
  color: #222;
}

.about-block p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
}

.tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: #f4a23f;
  font-weight: 600;
}

.about-image img {
  border-radius: 4px;
  height: 420px;
  width: 100%;
  object-fit: cover;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about-title {
    font-size: 26px;
  }

  .about-image img {
    height: 280px;
  }
}

/* start counter section */


.fun-facts-section {
  background: #1f232b;
;
  color: #fff;
}

.small-title {
  font-size: 13px;
  letter-spacing: 2px;
  color: #f4a23f;
  font-weight: 600;
}

.main-title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 10px;
  line-height: 1.3;
}

.counter-box {
  padding: 20px;
}

.counter-box .icon {
  font-size: 22px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.counter-box h3 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 5px;
}

.counter-box p {
  font-size: 13px;
  letter-spacing: 2px;
  color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
  .main-title {
    font-size: 28px;
  }
  .counter-box h3 {
    font-size: 30px;
  }
}

/* start accordion section */
.faq-section {
    background: #f7f5f2;
    padding: 80px 0;
}
.faq-title small {
    color: #f4a460;
    letter-spacing: 1px;
}
.faq-title h2 {
    font-weight: 700;
}
.accordion-button {
    font-weight: 600;
}
.accordion-button:not(.collapsed) {
    background: #1f2329;
    color: #fff;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.faq-img img {
    border-radius: 10px;
}
/* end about us ABOUT US – CONTENT SECTION */
/* appointment section --> */
.appointment-section {
    position: relative;
    padding: 100px 15px;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
    color: #fff;
    text-align: center;
}
.appointment-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(216, 162, 90, 0.85); /* orange overlay */
}
.appointment-content {
    position: relative;
    z-index: 2;
}
.appointment-content small {
    letter-spacing: 1px;
    font-weight: 500;
}
.appointment-content h2 {
    font-weight: 700;
    margin: 15px 0;
}
.phone-number {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    .appointment-content h2 {
        font-size: 1.5rem;
    }
    .phone-number {
        font-size: 1.4rem;
    }
}

/* start contact us page */

/* Main Section */
.lux-contact-section {
  background: linear-gradient(135deg, #e9ecef, #f8f9fa, #ffffff);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Left Brand Area */
.brand-box {
  color: #1f2933;
}

.brand-box h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}

.small-title {
  color: #b0892f;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Company Info */
.company-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.company-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #374151;
}

/* Glass Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.glass-card h5 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.glass-card p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

/* Map */
.glass-card iframe {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  border: none;
  margin-top: 12px;
}

/* Floating Dots */
.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

.dot1 { top: 18%; left: 6%; }
.dot2 { bottom: 15%; right: 12%; animation-delay: 2s; }
.dot3 { top: 52%; right: 28%; animation-delay: 4s; }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .brand-box h2 {
    font-size: 32px;
  }
}

/* start project section */
.lux-projects {
  background: #f8f9fa;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #111827;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 420px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17,24,39,0.85),
    rgba(17,24,39,0.1)
  );
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(40%);
  transition: all 0.5s ease;
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay h5 {
  font-size: 22px;
  font-weight: 700;
}

.project-overlay p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.location {
  font-size: 13px;
  color: #e5e7eb;
}

/* Responsive */
@media(max-width: 768px) {
  .section-title {
    font-size: 30px;
  }

  .project-card {
    height: 360px;
  }
}

/* start pdf aprove registration */



body{
    font-family: 'Poppins', sans-serif;
}

/* Section Background */
.aprove-section{
    background: #c6843f;
    padding: 80px 0;
}

/* Heading */
.section-title{
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after{
    content: "";
    width: 80px;
    height: 4px;
    background: white;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

/* Card */
.pdf-card{
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pdf-card:hover{
    transform: translateY(-10px);
}

/* Icon */
.pdf-icon{
    font-size: 60px;
    color: #c6843f;
    margin-bottom: 20px;
}

/* Button */
.pdf-btn{
    background: #c6843f;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
}

.pdf-btn:hover{
    background: black;
    color: white;
}

.pdf-card h5{
  text-transform: capitalize !important;
  font-weight: 600;
  font-size: 19px !important;
}
.pdf-card p{
  font-size: 13px;
}

/* start about us section */
/* .about-section{
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab");
    background-size: cover;
    background-position: center;
    color: white;
} */

/* Image */

.about-image{
    position: relative;
}

.about-image img{
    border-radius: 15px;
}

/* Experience Box */

.experience-box{
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #c6843f;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.experience-box h3{
    margin: 0;
    font-size: 28px;
}

/* Subtitle */

.about-subtitle{
    color: #c6843f;
    letter-spacing: 2px;
}

/* Title */

.about-title{
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0 20px;
}

/* Text */



/* Icon */

.about-icon{
    font-size: 30px;
    color: #c6843f;
}

/* Button */

.about-btn{
    background: #c6843f !important;
    color: white !important;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
}

.about-btn:hover{
    background: white;
    color: black;
}

/* Responsive */

@media(max-width:768px){

.about-title{
    font-size: 26px;
    text-align: center;
}

.about-subtitle,
.about-text{
    text-align: center;
}

.experience-box{
    left: 50%;
    transform: translateX(-50%);
}

}

/* about us page */

/* About Section */

.about-section{
    padding: 20px 0;
    background: #f9f9f9;
    margin-top: 40px;
}

.about-title{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-title {
    color: #c6843f;
    font-size: 25px;
}

.about-text{
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Image */

.about-img img{
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Feature Box */

.feature-box{
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.feature-box:hover{
    transform: translateY(-10px);
}

.feature-box i{
    font-size: 30px;
    color: #c6843f;
    margin-bottom: 10px;
}

/* Responsive */

@media(max-width:768px){

.about-banner h1{
    font-size: 28px;
}

.about-title{
    font-size: 24px;
    text-align: center;
}

.about-text{
    text-align: center;
}
}


/* start why us section */

.why-choose-section{
    background: #f9f9f9;
}

/* Title */

.why-title{
    font-size: 34px;
    font-weight: 700;
}

.why-subtitle{
    color: #777;
}

/* Box */

.why-box{
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.why-box:hover{
    transform: translateY(-10px);
    border-bottom: 4px solid #c6843f;
}

/* Icon */

.why-box i{
    font-size: 35px;
    color: #c6843f;
    margin-bottom: 15px;
}

/* Responsive */

@media(max-width:768px){

.why-title{
    font-size: 26px;
}

}