/* ==============================
        ABOUT US SECTION
================================ */

.about-section{

    width:100%;
    padding:100px 8%;
    background:#f8f2ea;
    overflow:hidden;

}


.about-container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

}


/* ==============================
        ABOUT IMAGE
================================ */


.about-image{

    width:45%;
    position:relative;

}


.about-image img{

    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:5px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    transition:0.5s ease;

}


.about-image:hover img{

    transform:scale(1.03);

}


/* Gold Frame Effect */

.about-image::after{

    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border:2px solid #b08d57;
    top:20px;
    left:20px;
    z-index:-1;

}



/* ==============================
        ABOUT CONTENT
================================ */


.about-content{

    width:45%;

}


.about-subtitle{

    font-family:'Poppins',sans-serif;
    font-size:14px;
    letter-spacing:4px;
    color:#b08d57;
    font-weight:500;

}



.about-content h2{

    font-family:'Cinzel',serif;
    font-size:42px;
    color:#5a1025;
    margin:15px 0;

}



.about-line{

    width:70px;
    height:2px;
    background:#b08d57;
    margin-bottom:25px;

}



.about-content p{

    font-family:'Poppins',sans-serif;
    font-size:15px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;

}



/* ==============================
        BUTTON
================================ */


.about-btn{

    display:inline-block;
    margin-top:20px;
    padding:14px 35px;
    background:#5a1025;
    color:white;
    text-decoration:none;
    font-family:'Poppins',sans-serif;
    font-size:13px;
    letter-spacing:1.5px;
    transition:0.4s ease;
    border:1px solid #5a1025;

}



.about-btn:hover{

    background:#b08d57;
    border-color:#b08d57;
    color:white;

}



/* ==============================
        RESPONSIVE DESIGN
================================ */


@media(max-width:900px){


.about-container{

    flex-direction:column;

}


.about-image,
.about-content{

    width:100%;

}


.about-image img{

    height:400px;

}


.about-content h2{

    font-size:32px;

}


}

/*=========================================
            OUR PROMISE
=========================================*/

.promise-section{
   
    background:#F8F4EC;
}

.promise-heading{
    text-align:center;
    margin-bottom:60px;
}

.promise-heading span{
    display:inline-block;
    color:#D4AF37;
    font-size:13px;
    letter-spacing:4px;
    font-family:'Poppins',sans-serif;
    font-weight:600;
    margin-bottom:15px;
}

.promise-heading h2{
    font-size:46px;
    color:#4A102A;
    margin-bottom:18px;
    font-family:'Cinzel',serif;
}

.promise-heading p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:16px;
    font-family:'Poppins',sans-serif;
}

.promise-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.promise-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border:1px solid transparent;
}

.promise-card:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
    box-shadow:0 18px 40px rgba(74,16,42,.12);
}

.promise-icon{
    width:75px;
    height:75px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#4A102A;
    color:#D4AF37;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    font-weight:bold;
}

.promise-card h3{
    color:#4A102A;
    font-size:24px;
    margin-bottom:12px;
    font-family:'Cinzel',serif;
}

.promise-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    font-family:'Poppins',sans-serif;
}

/* Responsive */

@media(max-width:992px){

    .promise-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .promise-section{
        padding:70px 5%;
    }

    .promise-container{
        grid-template-columns:1fr;
    }

    .promise-heading h2{
        font-size:36px;
    }

}

/*=========================================
        OUR SIGNATURE FABRICS
=========================================*/

.fabric-section{
    padding:100px 8%;
    background:#ffffff;
}

.fabric-heading{
    text-align:center;
    margin-bottom:60px;
}

.fabric-heading span{
    display:inline-block;
    color:#D4AF37;
    font-size:13px;
    letter-spacing:4px;
    font-family:'Poppins',sans-serif;
    font-weight:600;
    margin-bottom:15px;
}

.fabric-heading h2{
    font-size:46px;
    color:#4A102A;
    margin-bottom:18px;
    font-family:'Cinzel',serif;
}

.fabric-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:16px;
    font-family:'Poppins',sans-serif;
}

/* Grid */

.fabric-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.fabric-card{
    background:#FDFBF8;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.fabric-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(74,16,42,.15);
}

/* Image */

.fabric-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.fabric-card:hover img{
    transform:scale(1.08);
}

/* Content */

.fabric-content{
    padding:25px;
}

.fabric-content h3{
    color:#4A102A;
    font-size:28px;
    margin-bottom:12px;
    font-family:'Cinzel',serif;
}

.fabric-content p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    font-family:'Poppins',sans-serif;
}

/* Responsive */

@media(max-width:992px){

    .fabric-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .fabric-section{
        padding:70px 5%;
    }

    .fabric-grid{
        grid-template-columns:1fr;
    }

    .fabric-heading h2{
        font-size:36px;
    }

    .fabric-card img{
        height:240px;
    }

}
/*=========================================
      THE HOUSE OF IVORY EXPERIENCE
=========================================*/

.luxury-experience{
    padding:100px 8%;
    background:#F8F4EC;
}

.experience-header{
    text-align:center;
    margin-bottom:70px;
}

.experience-header span{
    display:inline-block;
    color:#D4AF37;
    font-size:13px;
    letter-spacing:4px;
    font-family:'Poppins',sans-serif;
    font-weight:600;
    margin-bottom:15px;
}

.experience-header h2{
    font-size:46px;
    color:#4A102A;
    font-family:'Cinzel',serif;
    margin-bottom:20px;
}

.experience-header p{
    max-width:720px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:16px;
    font-family:'Poppins',sans-serif;
}

.experience-timeline{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.experience-step{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.experience-step::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#D4AF37;
}

.experience-step:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(74,16,42,.15);
}

.step-number{
    width:70px;
    height:70px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#4A102A;
    color:#D4AF37;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:700;
    font-family:'Cinzel',serif;
}

.experience-step h3{
    color:#4A102A;
    font-size:24px;
    margin-bottom:15px;
    font-family:'Cinzel',serif;
}

.experience-step p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    font-family:'Poppins',sans-serif;
}

/* Responsive */

@media(max-width:992px){

    .experience-timeline{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .luxury-experience{
        padding:70px 5%;
    }

    .experience-header h2{
        font-size:36px;
    }

    .experience-timeline{
        grid-template-columns:1fr;
    }

}