/* =====================================================
                    WHO WE ARE
===================================================== */

.who-we-are{

    padding:110px 20px;

    background:#ffffff;

}

.who-container{

    max-width:900px;

    margin:auto;

}

/* Subtitle */

.section-subtitle{

    display:inline-block;

    font-family:'Montserrat',sans-serif;

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    color:#C89B3C;

    text-transform:uppercase;

    margin-bottom:18px;

}

/* Heading */

.who-container h2{

    font-family:'Montserrat',sans-serif;

    font-size:56px;

    font-weight:800;

    line-height:1.15;

    color:#111111;

    margin-bottom:25px;

}

/* Gold Line */

.gold-line{

    width:90px;

    height:4px;

    background:#C89B3C;

    border-radius:50px;

    margin-bottom:35px;

}

/* Paragraph */

.who-container p{

    font-family:'Poppins',sans-serif;

    font-size:17px;

    line-height:2;

    color:#555555;

    text-align:justify;

    margin-bottom:24px;

}

.who-container strong{

    color:#111111;

    font-weight:700;

}

/* ================= TABLET ================= */

@media(max-width:992px){

.who-container{

    max-width:90%;

}

.who-container h2{

    font-size:42px;

}

}

/* ================= MOBILE ================= */

@media(max-width:768px){

.who-we-are{

    padding:80px 20px;

}

.section-subtitle{

    font-size:13px;

    letter-spacing:3px;

}

.who-container h2{

    font-size:32px;

    line-height:1.3;

}

.gold-line{

    width:70px;

}

.who-container p{

    font-size:16px;

    line-height:1.9;

    text-align:justify;

}

}




/* =====================================================
                WHY CHOOSE US
===================================================== */

.why-section{

    padding:110px 20px;

    background:#ffffff;

}

.why-container{

    max-width:1300px;

    margin:auto;

}

.why-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* Card */

.why-card{

    background:#fff;

    padding:45px 35px;

    border-radius:18px;

    border:1px solid #ECECEC;

    text-align:center;

    transition:.45s;

    position:relative;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}

/* Gold Top Border */

.why-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:#C89B3C;

    transition:.45s;

}

.why-card:hover::before{

    width:100%;

}

/* Hover */

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

/* Icon */

.why-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    background:#111;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:28px;

    transition:.4s;

}

.why-card:hover .why-icon{

    background:#C89B3C;

    transform:rotate(8deg) scale(1.1);

}

.why-card h3{

    margin:25px 0 15px;

    font-size:24px;

    color:#111;

    font-family:'Montserrat',sans-serif;

}

.why-card p{

    color:#666;

    line-height:1.9;

    text-align:center;

}

/* Tablet */

@media(max-width:992px){

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.why-section{

    padding:80px 20px;

}

.why-grid{

    grid-template-columns:1fr;

    gap:22px;

}

.why-card{

    padding:35px 28px;

}

.why-card h3{

    font-size:22px;

}

}


/* =====================================================
                CORE VALUES
===================================================== */

.values-section{

    padding:110px 20px;

    background:#F8F8F8;

}

.values-container{

    max-width:1300px;

    margin:auto;

}

.values-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* Card */

.value-card{

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    transition:.45s;

    position:relative;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.value-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

    border-color:#C89B3C;

}

/* Icon */

.value-icon{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:#111;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    transition:.4s;

}

.value-card:hover .value-icon{

    background:#C89B3C;

    transform:scale(1.1) rotate(8deg);

}

.value-card h3{

    margin:22px 0 15px;

    font-family:'Montserrat',sans-serif;

    font-size:24px;

    color:#111;

}

.value-card p{

    color:#666;

    line-height:1.8;

}

/* Gold Border Animation */

.value-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:#C89B3C;

    transition:.45s;

}

.value-card:hover::before{

    width:100%;

}

/* Tablet */

@media(max-width:992px){

.values-grid{

    grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.values-section{

    padding:80px 20px;

}

.values-grid{

    grid-template-columns:1fr;

    gap:22px;

}

.value-card{

    padding:35px 25px;

}

.value-card h3{

    font-size:22px;

}

}