/* Full Section */
.hero-section {
    height: 100vh;
}

/* Swiper Full Height */
.heroSwiper {
    height: 100vh;
}

.swiper-slide {
    position: relative;
    height: 100vh;
}

/* Image */
.swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}

/* LEFT CENTER CONTENT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 3;
    max-width: 600px;
}

/* Text */
.hero-content h1,
.hero-content h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Button */
.btn-primary {
    background: #d4af37;
    color: #000;
    padding: 12px 28px;
    text-decoration: none;
    display: inline-block;
}

.about-company{
padding:100px 0;
background:#111;
}

.about-flex{
display:flex;
align-items:center;
gap:60px;
}

.about-text{
flex:1;
}

.about-text h2{
font-size:42px;
margin-bottom:25px;
}

.about-text p{
margin-bottom:15px;
line-height:1.8;
}

.about-image{
flex:1;
}

.about-image img{
width:100%;
border-radius:10px;
}

@media(max-width:768px){

.about-flex{
flex-direction:column;
}

.about-text h2{
font-size:28px;
}

}

<!-- ===== OUR CATEGORIES SECTION START ===== -->
.our-categories{
padding:120px 0;
background:#0f0f0f;
}

.section-title{
text-align:center;
font-size:42px;
margin-bottom:60px;
}

.category-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.category-card{
position:relative;
display:block;
overflow:hidden;
border-radius:12px;
text-decoration:none;
color:white;
background:#111;
transition:0.4s;
}

.category-image{
overflow:hidden;
}

.category-image img{
width:100%;
height:280px;
object-fit:cover;
transition:0.6s;
}

/* HOVER EFFECT */

.category-card:hover img{
transform:scale(1.1);
}

.category-card::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:100%;
height:100%;
background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.category-card h3{
position:absolute;
bottom:20px;
left:20px;
font-size:22px;
z-index:2;
}

/* GOLD BORDER HOVER */

.category-card:hover{
box-shadow:0 0 15px rgba(212,175,55,0.5);
}

@media(max-width:768px){

.category-grid{
grid-template-columns:1fr;
}

}

<!-- ===== WHY CHOOSE US SECTION START ===== -->

.why-choose{
padding:120px 0;
background:#111;
}

.why-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:30px;
text-align:center;
}

.why-item{
background:#0f0f0f;
padding:40px 20px;
border-radius:12px;
transition:0.3s;
}

.why-icon{
font-size:35px;
margin-bottom:15px;
}

.why-item h3{
font-size:18px;
}

/* Luxury hover effect */

.why-item:hover{
transform:translateY(-5px);
box-shadow:0 0 15px rgba(212,175,55,0.5);
}

@media(max-width:768px){

.why-grid{
grid-template-columns:1fr 1fr;
}

}
.why-intro{
max-width:800px;
margin:0 auto 50px auto;
text-align:center;
line-height:1.8;
}

<!-- ===== FEATURED PRODUCTS SECTION START ===== -->
.featured-products{
padding:120px 0;
background:#0f0f0f;
}

.product-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.product-card{
background:#111;
border-radius:12px;
overflow:hidden;
text-align:center;
transition:0.3s;
}

.product-card img{
width:100%;
height:260px;
object-fit:cover;
}

.product-card h3{
margin:15px 0 10px;
}

.product-card p{
padding:0 15px;
margin-bottom:15px;
}

.quote-btn{
display:inline-block;
background:#d4af37;
padding:10px 20px;
margin-bottom:20px;
text-decoration:none;
color:#000;
}

.product-card:hover{
transform:translateY(-5px);
box-shadow:0 0 15px rgba(212,175,55,0.5);
}

@media(max-width:768px){

.product-grid{
grid-template-columns:1fr;
}

}

<!-- ===== CUSTOM SOFA ORDER SECTION START ===== -->
.custom-sofa{
padding:120px 0;
background:#111;
}

.custom-flex{
display:flex;
align-items:center;
gap:60px;
}

.custom-text{
flex:1;
}

.custom-text h2{
font-size:42px;
margin-bottom:20px;
}

.custom-text p{
line-height:1.8;
margin-bottom:25px;
}

.custom-buttons a{
padding:12px 24px;
text-decoration:none;
margin-right:10px;
}

.btn-primary{
background:#d4af37;
color:#000;
}

.btn-secondary{
background:#fff;
color:#000;
}

.custom-image{
flex:1;
}

.custom-image img{
width:100%;
border-radius:12px;
}

@media(max-width:768px){

.custom-flex{
flex-direction:column;
}

.custom-text h2{
font-size:28px;
}

}
<!-- ===== PROCESS SECTION START ===== -->

.process-section{
padding:120px 0;
background:#111;
}

.process-intro{
text-align:center;
max-width:800px;
margin:0 auto 60px auto;
line-height:1.8;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.process-step{
background:#0f0f0f;
padding:40px 25px;
border-radius:12px;
text-align:center;
transition:0.3s;
}

.step-number{
font-size:30px;
font-weight:bold;
color:#d4af37;
margin-bottom:15px;
}

.process-step:hover{
transform:translateY(-5px);
box-shadow:0 0 15px rgba(212,175,55,0.5);
}
@media(max-width:768px){

.process-grid{
grid-template-columns:1fr;
}

}

<!-- ===== TESTIMONIALS SECTION START ===== -->

.testimonials{
background:#f5f5f5;   /* light theme */
padding:120px 0;
overflow:hidden;
}

.dark-text{
color:#000;
text-align:center;
margin-bottom:50px;
}

.testimonial-slider{
overflow:hidden;
}

.testimonial-track{
display:flex;
gap:20px;
animation:scrollLeft 20s linear infinite;
}

.review-card{
background:#fff;
padding:25px;
min-width:300px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.review-card h3{
margin-bottom:10px;
color:#000;
}

.review-card p{
color:#333;
}

.stars{
color:#f4b400; /* google gold star */
margin-bottom:10px;
}

@keyframes scrollLeft{
0%{ transform:translateX(0); }
100%{ transform:translateX(-50%); }
}

.testimonials{
background:#e5e5e5;
padding:120px 0;
overflow:hidden;
position:relative;
}
<!-- ===== TESTIMONIALS SECTION END ===== -->


<!-- ===== SERVICE AREA SECTION START ===== -->
.service-area{

background:linear-gradient(180deg,#1a1a1a,#222);   /* premium light-dark mix */
padding:120px 0;

}

.service-area .section-title{
color:#fff;
text-align:center;
margin-bottom:30px;
}

.service-intro{

max-width:850px;
margin:0 auto 60px auto;
text-align:center;
color:#ccc;
line-height:1.8;

}

.service-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;

}

.service-item{

background:#2a2a2a;
padding:22px;
text-align:center;
border-radius:10px;
font-weight:600;
color:#fff;
transition:0.3s;
border:1px solid transparent;

}

/* PREMIUM GOLD HOVER */

.service-item:hover{

border-color:#d4af37;
transform:translateY(-5px);
box-shadow:0 0 15px rgba(212,175,55,0.4);

}

.service-bottom{

margin-top:50px;
text-align:center;
color:#bbb;

}
@media(max-width:768px){

.service-grid{
grid-template-columns:1fr 1fr;
}

}


<!-- ===== SERVICE AREA SECTION END ===== -->


<!-- ===== FAQ SECTION START ===== -->
.faq-section{
padding:120px 0 160px 0;   /* bottom extra space */
background:#111;
}


.faq-item{
border-bottom:1px solid #333;
}

.faq-question{
width:100%;
background:none;
border:none;
color:#fff;
padding:20px;
text-align:left;
font-size:18px;
cursor:pointer;
}

.faq-answer{
display:none;
padding:0 20px 20px;
color:#ccc;
}

.faq-item.active .faq-answer{
display:block;
}

}
.faq-item.active .faq-icon{
opacity:0;
visibility:hidden;
}


<!-- ===== FAQ SECTION END ===== -->

/* ===== CALL TO ACTION SECTION ===== */

.cta-section{
background:linear-gradient(90deg,#111,#1a1a1a);
padding:100px 0;
border-top:1px solid rgba(212,175,55,0.2);
border-bottom:1px solid rgba(212,175,55,0.2);
}

.cta-flex{
display:flex;
justify-content:space-between;
align-items:center;
gap:40px;
}

.cta-text h2{
font-size:40px;
margin-bottom:15px;
}

.cta-text p{
color:#ccc;
max-width:600px;
}

.cta-buttons a{
padding:14px 28px;
text-decoration:none;
margin-right:10px;
display:inline-block;
}

.cta-call{
background:#d4af37;
color:#000;
}

.cta-whatsapp{
background:#25D366;
color:#fff;
}

.cta-buttons a:hover{
transform:translateY(-3px);
}

@media(max-width:768px){

.cta-flex{
flex-direction:column;
text-align:center;
}

.cta-text h2{
font-size:28px;
}

}
.cta-section{
margin-top:80px;
}
