/*=========================================
ABOUT
=========================================*/
.about-section{
    padding:120px 0;
    background:#fff;
    overflow:hidden;
}

.about-image-wrapper{
    position:relative;
}

.about-image-box{
    overflow:hidden;
    border-radius:30px;
    box-shadow:var(--shadow-lg);
}

.about-image{
    width:100%;
    transition:.8s;
}

.about-image-box:hover .about-image{
    transform:scale(1.08);
}

.experience-card{
    position:absolute;
    left:-35px;
    bottom:40px;
    background:linear-gradient(
        135deg,
        var(--secondary),
        #F6D56A
    );
    color:#fff;
    padding:30px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.experience-card h2{
    font-size:56px;
    margin:0;
    font-family:var(--heading-font);
}

.experience-card span{
    font-size:15px;
    letter-spacing:1px;
}

.about-content{
    padding-left:30px;
}

.section-subtitle{
    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:600;
}

.section-title{
    font-size:58px;
    color:var(--primary);
    margin:20px 0;
    line-height:1.1;
}

.section-description{
    color:var(--text);
    line-height:2;
    margin-bottom:40px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:40px;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;
}

.feature-box i{
    color:var(--secondary);
}

@media(max-width:991px){
    .about-content{
        padding-left:0;
        margin-top:40px;
    }
    .about-features{
        grid-template-columns:1fr;
    }
    .experience-card{
        left:20px;
        bottom:20px;
    }
    .section-title{
        font-size:42px;
    }
}
/*==seperate page style==*/
/*=========================================
        OUR STORY
=========================================*/
.about-story{
    padding:120px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

/* Decorative background */
.about-story::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(212,175,55,.05);
    border-radius:50%;
    top:-220px;
    right:-220px;
}

.about-story::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(109,27,27,.04);
    border-radius:50%;
    bottom:-150px;
    left:-150px;
}
/*=========================================
        IMAGE
=========================================*/
.story-image{
    position:relative;
}

.story-image img{
    width:100%;
    border-radius:30px;
    box-shadow:var(--shadow-lg);
    transition:.5s;
}

.story-image img:hover{
    transform:scale(1.03);
}
/* Gold Border */
.story-image::before{
    content:"";
    position:absolute;
    width:92%;
    height:92%;
    border:3px solid var(--secondary);
    border-radius:30px;
    top:30px;
    left:30px;
    z-index:-1;
}
/*=========================================
        EXPERIENCE BOX
=========================================*/
.experience-box{
    position:absolute;
    left:-35px;
    bottom:45px;
    background:#fff;
    padding:28px;
    border-radius:20px;
    box-shadow:var(--shadow-lg);
    text-align:center;
    min-width:180px;
}

.experience-box h2{
    color:var(--secondary);
    font-size:52px;
    margin-bottom:5px;
}

.experience-box p{
    margin:0;
    color:var(--dark);
    font-weight:600;
}
/*=========================================
        CONTENT
=========================================*/
.story-content{
    padding-left:40px;
}

.section-tag{
    display:inline-block;
    color:var(--secondary);
    letter-spacing:3px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:20px;
}

.story-content h2{
    font-size:52px;
    margin-bottom:30px;
    color:var(--primary);
}

.story-content p{
    font-size:17px;
    color:var(--text);
    line-height:2;
    margin-bottom:35px;
}
/*=========================================
        FEATURES
=========================================*/
.story-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:40px;
}

.story-features li{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;
}

.story-features i{
    color:var(--secondary);
    font-size:18px;
}
/*=========================================
        RESPONSIVE
=========================================*/
@media(max-width:991px){
    .story-content{
        padding-left:0;
        margin-top:60px;
    }
    .story-content h2{
        font-size:40px;
    }
    .story-features{
        grid-template-columns:1fr;
    }
    .experience-box{
        left:20px;
        bottom:20px;
    }
}
/*=========================================
            JOURNEY
=========================================*/
.journey-section{
    padding:120px 0;
    background:#faf8f5;
}

.section-header{
    max-width:760px;
    margin:0 auto 90px;
}

.section-header h2{
    font-size:54px;
    color:var(--primary);
    margin:20px 0;
}

.section-header p{
    font-size:18px;
    color:var(--text);
}

.journey-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    margin-bottom:120px;
}

.journey-row.reverse .journey-image{
    order:2;
}

.journey-row.reverse .journey-content{
    order:1;
}

.journey-image{
    position:relative;
}

.journey-image img{
    width:100%;
    border-radius:28px;
    box-shadow:var(--shadow-lg);
    transition:.5s;
}

.journey-image img:hover{
    transform:scale(1.03);
}

.journey-image::before{
    content:"";
    position:absolute;
    width:90%;
    height:90%;
    border:3px solid var(--secondary);
    top:28px;
    left:28px;
    border-radius:28px;
    z-index:-1;
}

.journey-year{
    display:inline-block;
    padding:10px 24px;
    border-radius:40px;
    background:var(--secondary);
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:25px;
}

.journey-content h3{
    font-size:44px;
    color:var(--primary);
    margin-bottom:15px;
}

.journey-content h5{
    color:var(--secondary);
    margin-bottom:18px;
}

.journey-content p{
    font-size:17px;
    line-height:2;
    color:var(--text);
}

@media(max-width:991px){
    .journey-row{
        grid-template-columns:1fr;
        gap:50px;
        margin-bottom:90px;
    }
    .journey-row.reverse .journey-image,
    .journey-row.reverse .journey-content{
        order:unset;
    }
    .section-header h2{
        font-size:38px;
    }
    .journey-content h3{
        font-size:32px;
    }
}
/*=========================================
        WHY CHOOSE
=========================================*/
.why-section{
    padding:120px 0;
    background:#fff;
}

.feature-box{
    background:#fff;
    border-radius:22px;
    padding:35px;
    height:100%;
    text-align:center;
    transition:.4s;
    box-shadow:var(--shadow-md);
}

.feature-box:hover{
    transform:translateY(-10px);
}

.feature-box i{
    width:75px;
    height:75px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    border-radius:50%;
    background:rgba(212,175,55,.12);
    color:var(--secondary);
    font-size:30px;
}

.feature-box h5{
    margin-bottom:15px;
    color:var(--primary);
}

.feature-box p{
    margin:0;
    color:var(--text);
}

.why-image img{
    width:100%;
    border-radius:30px;
    box-shadow:var(--shadow-lg);
}
/* ===== Why Choose Us — dedicated cards (avoid .feature-box conflict) ===== */
.why-choose-section {
    padding: 100px 0 110px;
    background: #faf8f2;
}

.why-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px 32px;
    height: 100%;
    text-align: center;
    box-shadow: 0 12px 36px rgba(0,0,0,.06);
    transition: transform .35s ease, box-shadow .35s ease;
    border: 1px solid rgba(0,0,0,.04);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0,0,0,.12);
}

.why-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.why-card-title {
    font-size: 18px;
    color: var(--primary);
    margin: 0 0 12px;
    line-height: 1.35;
    font-weight: 700;
}

.why-card-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Override conflicting feature-box on why-section in about page */
.why-section .feature-box {
    display: block !important;
    text-align: center !important;
    background: #fff;
    border-radius: 22px;
    padding: 35px 28px;
    height: 100%;
    box-shadow: 0 12px 36px rgba(0,0,0,.06);
    transition: .35s;
}

.why-section .feature-box i {
    width: 72px;
    height: 72px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px !important;
    border-radius: 50%;
    background: rgba(212,175,55,.12);
    color: var(--secondary);
    font-size: 28px;
}

.why-section .feature-box h5 {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 18px;
}

.why-section .feature-box p {
    display: block;
    width: 100%;
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .why-choose-section,
    .why-section {
        padding: 70px 0;
    }
    .why-card {
        padding: 28px 22px;
    }
}
