/* PRELOADER */

#preloader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#0b0f1a;
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
}

/* content */

.loader-wrapper{
text-align:center;
}

/* brand name */

.brand-text{
font-family:'Playfair Display', serif;
font-size:64px;
color:white;
letter-spacing:4px;
margin-bottom:30px;
}

/* spinner */

.spinner{
width:60px;
height:60px;
border-radius:50%;
border:2px solid rgba(255,255,255,0.2);
border-top:2px solid #f2b705;
animation:spin 1s linear infinite;
margin:auto;
}

/* animation */

@keyframes spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}



/* =========================
HOME HERO
========================= */

.home-hero{
background:#ffffff;
}

.banner{
position:relative;
width:100%;
height:100%;
overflow:hidden;
}

/* VIDEO */

.hero-video{
width:100%;
height:100%;
object-fit:cover;
display:block;
opacity: 0;
animation:heroFade 2s ease forwards;
}
@keyframes heroFade{
to{
opacity:1;
}
}
/* =========================
RESPONSIVE HERO
========================= */

/* Large Screens (1200px and above) */
/* Laptop / Small Desktop */
@media (max-width:1199px){
.banner{
height:65vh;
}
}

/* Tablet */
@media (max-width:992px){
.banner{
height:55vh;
}

.hero-video{
object-position:center;
}
}

/* Mobile Large */
@media (max-width:768px){
.banner{
height:45vh;
}

.hero-video{
object-fit:cover;
}
}

/* Small Mobile */
@media (max-width:480px){
.banner{
height:38vh;
}

.hero-video{
object-fit:cover;
}
}
/* =========================
SCROLL REVEAL ANIMATION
========================= */

.reveal{
opacity:0;
transform:translateY(60px);
transition:all 0.9s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}
/* =========================
DESIGN CODE SECTION
========================= */
/* ===============================
DESIGN CODE SECTION
================================ */

.designcode-section{
padding:100px 60px;
background:linear-gradient(120deg,#0b0f1a,#141c2e);
color:white;
font-family:'Poppins',sans-serif;
}

/* CONTAINER */

.designcode-container{
display:flex;
align-items:center;
justify-content:space-between;
max-width:1300px;
margin:auto;
gap:80px;
}

/* TEXT */

.designcode-text{
opacity:0;
transform:translateX(-80px);
transition:1s ease;
}

.designcode-section.active .designcode-text{
opacity:1;
transform:translateX(0);
}

.designcode-text h2{
font-size:52px;
line-height:1.2;
margin-bottom:25px;
font-weight:600;
}

.designcode-text h2 span{
color:#f2b705;
}

/* PARAGRAPH */

.designcode-text p{
font-size:16px;
line-height:1.8;
color:#d0d6e0;
margin-bottom:20px;
max-width:500px;
}

/* BUTTON */

.about-btn{
display:inline-block;
margin-top:20px;
padding:14px 30px;
background:#f2b705;
color:#111;
text-decoration:none;
font-weight:500;
border-radius:4px;
transition:0.3s;
}

.about-btn:hover{
background:#ffc928;
transform:translateY(-3px);
}

/* IMAGE */

.designcode-image{
flex:1;
position:relative;
opacity:0;
transform:translateX(80px);
transition:1s ease;
}

.designcode-section.active .designcode-image{
opacity:1;
transform:translateX(0);
}

.designcode-image img{
width:100%;
border-radius:2px;
display:block;
}

/* GOLD FRAME EFFECT */

.designcode-image::after{
content:"";
position:absolute;
top:25px;
left:25px;
width:100%;
height:100%;
border:2px solid #f2b705;
z-index:-1;
}

/* ===============================
RESPONSIVE
================================ */

@media(max-width:900px){

.designcode-container{
flex-direction:column;
text-align:center;
}

.designcode-text p{
max-width:100%;
}

.designcode-text h2{
font-size:38px;
}

}
/*-==============image section--===========*/
.rooms-section{
padding:50px;
background:#fff;
}

/* GRID */

.rooms-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
grid-auto-rows:280px;
gap:18px;
}

/* COMMON STYLE */
.room img{
width:100%;
height:100%;
object-fit:cover;
transition:0.5s ease;
}

.room:hover img{
filter:blur(3px);
transform:scale(1.15);
}

/* TEXT */

.room{
position:relative;
overflow:hidden;
border-radius: 10px;
cursor: pointer;
}
/*=====Overlay dark effect=====*/
.room::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0);
transition:0.4s;
pointer-events: none;
}

.room:hover::after{
background:rgba(0,0,0,0.25);
}
/*ends here---*/

.room h2{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:transparent;
font-family: 'Playfair Display', serif;
font-size:22px;
letter-spacing:1px;
z-index:2;
transition:0.5s ease;
text-align:center;
}

.room:hover h2{
color:#3d1303;
transform:translate(-50%,-50%) scale(1.1);
}

/* GRID SPAN */

/* Kitchen (big top left) */
.kitchen{
grid-row:span 2;
}

/* Dining (tall right side) */
.dining{
grid-column:span 2;
}

/* Bedroom */
.bedroom{
grid-row:span 2;
}

/* Living */
.living{
grid-column:span 2;
}
/*===================images popup part========================*/
/* IMAGE POPUP */

.image-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
justify-content:center;
align-items:center;
z-index:999;
}

.image-popup img{
max-width:80%;
max-height:80%;
border-radius:10px;
}

.close-popup{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}
/* =========================
ROOMS SECTION RESPONSIVE
========================= */

/* Laptop */
@media (max-width:1200px){

.rooms-grid{
grid-template-columns:repeat(2,1fr);
grid-auto-rows:230px;
}

/* reset spans for better layout */
.kitchen{
grid-column:span 2;
}

.dining{
grid-row:span 1;
}

}


/* Tablet */
@media (max-width:992px){

.rooms-section{
padding:30px;
}

.rooms-grid{
grid-template-columns:repeat(2,1fr);
grid-auto-rows:220px;
}

.room h2{
font-size:32px;
}

}


/* Mobile */
@media (max-width:768px){

.rooms-grid{
grid-template-columns:1fr;
grid-auto-rows:250px;
}

.room h2{
font-size:28px;
letter-spacing:2px;
}

.kitchen,
.dining,
.bedroom,
.living{
grid-column:span 1;
grid-row:span 1;
}

}


/* Small Mobile */
@media (max-width:480px){

.rooms-section{
padding:20px;
}

.rooms-grid{
grid-auto-rows:200px;
gap:10px;
}

.room h2{
font-size:15px;
}

}
/* ======================
TIMELINE SECTION
====================== */

.timeline-section{
padding:30px 40px;
background:#ffffff;
text-align:center;
}

/* TITLE */

.timeline-title{
font-size:38px;
margin-bottom:60px;
font-weight:500;
}

.timeline-title span{
color:#170771;
}

/* TIMELINE */

.timeline{
display:flex;
/* align-items:center; */
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

/* STEP */

.step{
display:flex;
flex-direction:column;
align-items:center;
max-width:200px;
text-align:center;
}

/* CIRCLE */

.circle{
width:170px;
height:160px;
border-radius:50%;
border:2px solid #100f0f;
display:flex;
align-items:center;
justify-content:center;
background:#ffffff;

transform:scale(0.7);
opacity:0;
transition:0.6s;
}

.timeline-section.active .circle{
transform:scale(1);
opacity:1;
}

/* ACTIVE STEP */

.circle.active{
background:#0a7ad6;
border:none;
}

.circle img{
width:80px;
height:70px;
}

/* ARROW */

.arrow{
font-size:56px;
color:#777;
}

/* TEXT */

.step p{
margin-top:20px;
font-size:16px;
line-height:1.6;
color:#444;
}
/*=================Interior SECTION
====================================== */
/* SECTION */

.carousel-section{
padding:80px 40px;
background:#0f1524;
text-align:center;
color:white;
font-family:'Poppins',sans-serif;
}

.carousel-title{
font-size:40px;
padding:5px 15px;
}
.carousel-subtitle{
max-width:700px;
margin:20px auto 80px auto;
font-size:17px;
line-height:1.8;
color:#cfd6e2;
}
/* CONTAINER */

.carousel-container{
width:100%;
display:flex;
overflow:hidden;
justify-content:center;
perspective:1200px;
}

/* CAROUSEL */

.carousel{
display:flex;
align-items:center;
justify-content:center;
gap:30px;
position:relative;
}

/* IMAGES */

.carousel img{
width:100%;
height:80vh;
object-fit:cover;
border-radius:15px;
opacity:0.5;
transform:scale(0.7);
transition:transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
box-shadow:0 15px 40px rgba(0,0,0,0.4);
filter:blur(3px);
}

/* CENTER IMAGE */

.carousel img.center{
transform:scale(1);
opacity:1;
filter:blur(0);
z-index:10;
}

/* IMAGE JUST BEFORE CENTER */

.carousel img.center + img{
transform:rotateY(-35deg) scale(0.8);
opacity:0.7;
filter:blur(2px);
}

/* IMAGE JUST AFTER CENTER */

.carousel img.center ~ img:first-of-type{
transform:rotateY(35deg) scale(0.8);
opacity:0.7;
filter:blur(2px);
}

/* BUTTONS */

.carousel-buttons{
margin-top:50px;
display:flex;
justify-content:center;
gap:30px;
}

/* circular arrow buttons */

.arrow-btn{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:white;
border-radius:50%;
cursor:pointer;
background:rgba(255,255,255,0.1);
backdrop-filter:blur(8px);
border:1px solid rgba(255,255,255,0.2);
transition:all 0.35s ease;
}

/* hover effect */

.arrow-btn:hover{
color:#111;
transform:translateY(-4px) scale(1.05);
box-shadow:0 10px 25px rgba(0,0,0,0.5);
}
.carousel-buttons img{
width:40px;
height:40px;
cursor:pointer;
border-radius:6px;
transition:all 0.3s ease;
object-fit:contain;
}

.carousel-buttons img:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.4);
}
/* =========================
PROCESS SECTION
========================= */

.process-section{
padding:40px;
background:#ffffff;
text-align:center;
}

.process-title{
font-size:48px;
color:#3A3A3A;
margin-bottom:50px;
font-weight:500;
}

/* GRID */

.process-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:40px;
}

/* CARD */

.process-card{
padding:20px;
position:relative;
transition:0.35s;
}

.process-card:hover{
transform:translateY(-10px);
}

/* VERTICAL DIVIDER */

.process-card:not(:last-child)::after{
content:"";
position:absolute;
right:-20px;
top:20px;
height:80%;
width:1px;
background:#000000;
}

/* IMAGE */

.process-card img{
height:110px;
margin-bottom:20px;
transition:0.3s;
}

.process-card:hover img{
transform:scale(1.1);
transform: rotate(360deg);
}
/* TITLE */

.process-card h3{
font-size:22px;
color:#3A3A3A;
margin-bottom:15px;
}

/* TEXT */

.process-card p{
font-size:15px;
line-height:1.7;
color:#555;
}
/* =========================
TABLET (1024px)
========================= */

@media (max-width:1024px){

.process-grid{
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* divider remove */
.process-card::after{
display:none;
}

.process-title{
font-size:40px;
}

}


/* =========================
TABLET SMALL (768px)
========================= */

@media (max-width:768px){

.process-grid{
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.process-title{
font-size:34px;
}

.process-card img{
height:90px;
}

}


/* =========================
MOBILE (480px)
========================= */

@media (max-width:480px){

.process-section{
padding:40px 20px;
}

.process-grid{
grid-template-columns:1fr;
gap:30px;
}

.process-title{
font-size:28px;
}

.process-card{
padding:10px;
}

.process-card img{
height:80px;
}

.process-card h3{
font-size:18px;
}

.process-card p{
font-size:14px;
}

}

/* =========================
WHY CHOOSE SECTION
========================= */

.why-choose{
padding:40px 20px;
background:#f9f9f9;
text-align:center;
font-family:'Poppins',sans-serif;
}

.why-container{
max-width:1200px;
margin:auto;
}

/* TITLE */

.why-title{
font-size:38px;
font-weight:600;
margin-bottom:15px;
color:#1e2a38;
}

.why-title span{
color:#7A4A7D;
}

/* SUBTEXT */

.why-subtext{
max-width:700px;
margin:0 auto 60px auto;
font-size:16px;
line-height:1.7;
color:#666;
}

/* CARD GRID */

.why-cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

/* CARD */

.why-card{
background:#ffffff;
padding:35px 25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:all 0.35s ease;
position:relative;
overflow:hidden;
}

/* HOVER EFFECT */

.why-card:hover{
transform:translateY(-10px);
box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* TOP BORDER ANIMATION */

.why-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:0%;
height:4px;
background:#7A4A7D;
transition:0.4s;
}

.why-card:hover::before{
width:100%;
}

/* CARD TITLE */

.why-card h3{
font-size:20px;
margin-bottom:15px;
color:#1e2a38;
}

/* CARD TEXT */

.why-card p{
font-size:15px;
color:#666;
line-height:1.6;
}
/* IMAGE IN CARD */

.why-card img{
width:60px;
height:60px;
object-fit:contain;
margin-bottom:15px;
transition:0.3s;
}

/* HOVER IMAGE ANIMATION */

.why-card:hover img{
transform:scale(1.1) rotate(3deg);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

.why-title{
font-size:30px;
}

.why-subtext{
font-size:15px;
}

}
/* ===============================
OUR PHILOSOPHY
================================ */

/* ===============================
PHILOSOPHY SECTION
================================ */

.philosophy-section{
    padding:60px 120px;
background:linear-gradient(120deg,#0b0f1a,#141c2e);
color:white;
text-align:center;
font-family:'Poppins',sans-serif;
}

/* CONTAINER */

.philosophy-container{
width:100%;
margin:auto;
}

/* TAG */

.philosophy-tag{
display:block;
letter-spacing:4px;
font-size:13px;
color:#f2b705;
}

/* TITLE */

.philosophy-title{
font-size:56px;
font-weight:600;
}

.philosophy-title span{
color:#f2b705;
animation:glow 2s infinite alternate;
}

@keyframes glow{

from{
text-shadow:0 0 10px rgba(242,183,5,0.4);
}

to{
text-shadow:0 0 20px rgba(242,183,5,0.9);
}

}

/* TEXT */

.philosophy-text{
font-size:17px;
line-height:1.9;
color:#cfd6e2;
padding-bottom: 10px;
}

/* HOVER HIGHLIGHT EFFECT */

.philosophy-title span{
transition:0.3s;
}

.philosophy-title span:hover{
color:#ffd95a;
}

/* RESPONSIVE */

@media(max-width:768px){

.philosophy-title{
font-size:38px;
}

.philosophy-text{
font-size:15px;
}

}