/*=========================================
 ABOUT PAGE
 Hotel Carpets India
==========================================*/


/*=========================================
 HERO
==========================================*/

.luxury-hero{

    position:relative;

    width:100%;
    height:72vh;
    min-height:580px;

    background:
    url('/images/hotel-carpets-india-about.png')
    center center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(

        rgba(0,0,0,.65),
        rgba(0,0,0,.45)

    );

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    padding:20px;

    text-align:center;

    color:#fff;

}

.hero-content h1{

    font-size:4rem;
    line-height:1.1;

    margin-bottom:25px;

    color:#fff;

}

.hero-content p{

    max-width:720px;

    margin:auto;

    margin-bottom:35px;

    color:#f5f5f5;

    font-size:1.15rem;

    line-height:1.8;

}


/*=========================================
 OUR STORY
==========================================*/

.about-story{

    padding:20px 20px;

}

.story-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.story-image{

    position:relative;

}

.story-image img{

    width:100%;

    border-radius:20px;

    box-shadow:

    0 20px 50px rgba(0,0,0,.12);

}

.story-content h2{

    margin:20px 0;

    font-size:2.6rem;

    color:#222;

}

.story-content p{

    margin-bottom:22px;

    color:#666;

    line-height:1.9;

}


/*=========================================
 HIGHLIGHTS
==========================================*/

.company-highlights{

    background:#faf8f4;

    padding:20px 20px;

}

.highlight-grid{

    max-width:1200px;

    margin:60px auto 0;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.highlight-card{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:

    0 12px 35px rgba(0,0,0,.08);

}

.highlight-card:hover{

    transform:translateY(-8px);

}

.highlight-card span{

    display:block;

    font-size:40px;

    font-weight:700;

    color:#C8A96A;

    margin-bottom:18px;

}

.highlight-card h3{

    margin-bottom:15px;

    color:#222;

}

.highlight-card p{

    color:#666;

    line-height:1.7;

}


/*=========================================
 WHY CHOOSE US
==========================================*/

.why-us{

    padding:20px 20px;

}

.why-grid{

    max-width:1200px;

    margin:60px auto 0;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    border-left:5px solid #C8A96A;

    transition:.35s;

    box-shadow:

    0 10px 30px rgba(0,0,0,.08);

}

.why-card:hover{

    transform:translateY(-6px);

}

.why-card h3{

    margin-bottom:15px;

    color:#222;

}

.why-card p{

    color:#666;

    line-height:1.8;

}

/*=========================================
MANUFACTURING PROCESS
==========================================*/

.process-section{

    background:#faf8f4;

    padding:20px 20px;

}

.process-grid{

    max-width:1200px;

    margin:60px auto 0;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.process-item{

    position:relative;

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:

    0 12px 30px rgba(0,0,0,.08);

}

.process-item:hover{

    transform:translateY(-8px);

}

.step-number{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:#C8A96A;

    color:#fff;

    font-size:28px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.process-item h3{

    color:#222;

    margin-bottom:12px;

}

.process-item p{

    color:#666;

    line-height:1.8;

}


/*=========================================
HOSPITALITY SECTORS
==========================================*/

.hospitality-sector{

    padding:20px 20px;

}

.sector-grid{

    max-width:1200px;

    margin:60px auto 0;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.sector-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:

    0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.sector-card:hover{

    transform:translateY(-8px);

}

.sector-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.sector-card:hover img{

    transform:scale(1.08);

}

.sector-card h3{

    padding:25px;

    text-align:center;

    color:#222;

}


/*=========================================
CTA
==========================================*/

.footer-cta{

    max-width:1200px;

    margin:80px auto;

    border-radius:24px;

    background:

    linear-gradient(

        135deg,

        #1c1c1c,

        #2d2d2d

    );

    color:#fff;

    text-align:center;

    padding:90px 40px;

}

.footer-cta h2{

    color:#fff;

    font-size:2.7rem;

    margin-bottom:20px;

}

.footer-cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

    color:#ddd;

    line-height:1.9;

}

.footer-cta a{

    display:inline-block;

    padding:16px 36px;

    background:#C8A96A;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.footer-cta a:hover{

    background:#b49459;

    transform:translateY(-4px);

}


/*=========================================
SMALL ANIMATIONS
==========================================*/

.story-image img,

.highlight-card,

.why-card,

.process-item,

.sector-card{

    transition:all .35s ease;

}

.story-image:hover img{

    transform:scale(1.02);

}


/*=========================================
RESPONSIVE
==========================================*/

@media(max-width:1100px){

.story-grid{

grid-template-columns:1fr;

gap:50px;

}

.highlight-grid{

grid-template-columns:repeat(2,1fr);

}

.process-grid{

grid-template-columns:repeat(2,1fr);

}

.sector-grid{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:768px){

.luxury-hero{

height:60vh;

min-height:500px;

}

.hero-content h1{

font-size:2.5rem;

}

.hero-content p{

font-size:1rem;

}

.story-content h2{

font-size:2rem;

}

.highlight-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.process-grid{

grid-template-columns:1fr;

}

.sector-grid{

grid-template-columns:1fr;

}

.footer-cta{

padding:60px 25px;

}

.footer-cta h2{

font-size:2rem;

}

}


@media(max-width:480px){

.hero-content{

padding:20px;

}

.hero-content h1{

font-size:2rem;

}

.story-content p{

font-size:15px;

}

.highlight-card{

padding:30px 20px;

}

.why-card{

padding:30px 20px;

}

.process-item{

padding:30px 20px;

}

.footer-cta{

margin:60px 20px;

}

}
.clients-section{

    background:#faf8f4;

    padding:100px 20px;

}

.client-grid{

    max-width:1200px;

    margin:60px auto 0;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.client-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.client-card:hover{

    transform:translateY(-8px);

}

.client-card h3{

    color:#222;

    margin-bottom:15px;

}

.client-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:992px){

.client-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.client-grid{

grid-template-columns:1fr;

}

}
.quality-section{

    padding:20px 20px;

}

.quality-grid{

    max-width:1200px;

    margin:60px auto 0;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.quality-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    border-top:4px solid #C8A96A;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.quality-card:hover{

    transform:translateY(-8px);

}

.quality-card h3{

    margin-bottom:15px;

    color:#222;

}

.quality-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:992px){

.quality-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.quality-grid{

grid-template-columns:1fr;

}

}