/*==================================================
ROOT COLORS
==================================================*/

:root{
    --navy:#041C44;
    --navy-light:#0A2D68;
    --gold:#C9A227;
    --gold-dark:#B68B18;
    --white:#ffffff;
    --light:#F8FAFD;
    --border:#E8EDF5;
    --text:#666666;
    --shadow:0 18px 45px rgba(4,28,68,.10);
    --shadow-hover:0 30px 70px rgba(4,28,68,.18);
}

/*==================================================
ABOUT SECTION
==================================================*/

.about-section{
    position:relative;
    padding:120px 0;
    background:#fff;
    overflow:hidden;
}

.about-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(201,162,39,.08);
    border-radius:50%;
    right:-180px;
    top:-180px;
}

.about-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(4,28,68,.05);
    border-radius:50%;
    left:-150px;
    bottom:-150px;
}

/*==================================================
IMAGE
==================================================*/

.about-image-wrap{
    position:relative;
    padding-right:45px;
}

.about-image{
    overflow:hidden;
    border-radius:30px;
    background:#fff;
    box-shadow:var(--shadow);
}

.about-image img{
    width:100%;
    display:block;
    transition:.7s;
}

.about-image:hover img{
    transform:scale(1.08);
}

.about-image:hover{
    box-shadow:var(--shadow-hover);
}

/*==================================================
EXPERIENCE BADGE
==================================================*/

.experience-badge{
    position:absolute;
    left:-30px;
    top:35px;
    width:170px;
    height:170px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--navy),var(--navy-light));
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 20px 45px rgba(4,28,68,.30);
    animation:floatCard 5s ease-in-out infinite;
}

.badge-inner{
    text-align:center;
    color:#fff;
}

.badge-inner h2{
    font-size:48px;
    margin-bottom:8px;
    color:var(--gold);
    font-weight:700;
}

.badge-inner p{
    margin:0;
    line-height:1.6;
    font-size:15px;
}

/*==================================================
MEMBER CARD
==================================================*/

.member-card{
    position:absolute;
    right:0;
    bottom:35px;
    display:flex;
    align-items:center;
    gap:18px;
    padding:24px;
    background:#fff;
    border-radius:20px;
    box-shadow:var(--shadow);
    animation:floatCard 6s ease-in-out infinite;
}

.member-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--gold),#e0b73a);
    color:var(--navy);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
}

.member-card h3{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:var(--navy);
}

.member-card span{
    color:#777;
    font-size:15px;
}

/*==================================================
CONTENT
==================================================*/

.about-content{
    padding-left:25px;
}

.section-subtitle{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--gold);
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
}

.section-subtitle::before{
    content:"";
    width:45px;
    height:2px;
    background:var(--gold);
}

.about-content h2{
    font-family:'Cinzel',serif;
    font-size:56px;
    color:var(--navy);
    line-height:1.2;
    margin-bottom:18px;
}

.about-content h2 span{
    display:block;
    color:var(--gold);
}

.title-divider{
    width:90px;
    height:4px;
    border-radius:50px;
    background:var(--gold);
    margin:28px 0;
}

.about-content p{
    font-size:17px;
    color:var(--text);
    line-height:1.9;
    margin-bottom:18px;
}

/*==================================================
BUTTONS
==================================================*/

.about-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

.btn-main,
.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:200px;
    height:58px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    transition:.35s ease;
    text-decoration:none;
}

.btn-main{
    background:linear-gradient(135deg,var(--navy),var(--navy-light));
    color:#fff;
    border:2px solid var(--navy);
}

.btn-main:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:var(--navy);
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(201,162,39,.35);
}

.btn-outline{
    background:#fff;
    color:var(--navy);
    border:2px solid var(--gold);
}

.btn-outline i{
    color:var(--gold);
    margin-left:10px;
    transition:.35s;
}

.btn-outline:hover{
    background:var(--gold);
    color:var(--navy);
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(201,162,39,.35);
}

.btn-outline:hover i{
    color:var(--navy);
    transform:translateX(6px);
}
/*==================================================
FEATURE BOXES
==================================================*/

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin:45px 0;
}

.feature-box{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:28px;
    background:#fff;
    border-radius:22px;
    border:1px solid var(--border);
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 12px 35px rgba(4,28,68,.06);
}

.feature-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:0;
    background:var(--gold);
    transition:.4s;
}

.feature-box:hover::before{
    height:100%;
}

.feature-box:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 60px rgba(4,28,68,.14);
    border-color:var(--gold);
}

.feature-box i{
    width:65px;
    height:65px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--navy),var(--navy-light));
    color:var(--gold);
    font-size:26px;
    flex-shrink:0;
}

.feature-box h5{
    margin:0 0 10px;
    color:var(--navy);
    font-size:20px;
    font-weight:700;
}

.feature-box p{
    margin:0;
    color:var(--text);
    line-height:1.8;
    font-size:15px;
}

/*==================================================
COUNTER SECTION
==================================================*/

.about-counter{
    position:relative;
    padding:90px 0;
    background:linear-gradient(135deg,#041C44,#0A2D68);
    overflow:hidden;
}

.about-counter::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    top:-220px;
    right:-180px;
}

.about-counter::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(201,162,39,.08);
    left:-120px;
    bottom:-150px;
}

.counter-item{
    position:relative;
    text-align:center;
    padding:25px;
    z-index:2;
}

.counter-item i{
    width:78px;
    height:78px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 22px;
    border-radius:50%;
    background:var(--gold);
    color:var(--navy);
    font-size:28px;
    transition:.35s;
}

.counter-item:hover i{
    transform:rotateY(180deg);
}

.counter-item h2{
    font-size:54px;
    font-weight:700;
    color:#fff;
    margin-bottom:8px;
    font-family:'Cinzel',serif;
}

.counter-item h2::after{
    content:"+";
    color:var(--gold);
    margin-left:4px;
}

.counter-item p{
    margin:0;
    color:rgba(255,255,255,.85);
    font-size:16px;
    letter-spacing:.5px;
}

/*==================================================
FLOAT ANIMATION
==================================================*/

@keyframes floatCard{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes pulseGlow{

    0%{
        box-shadow:0 0 0 rgba(201,162,39,.35);
    }

    50%{
        box-shadow:0 0 35px rgba(201,162,39,.30);
    }

    100%{
        box-shadow:0 0 0 rgba(201,162,39,.35);
    }

}

.experience-badge{
    animation:floatCard 5s ease-in-out infinite;
}

.member-card{
    animation:floatCard 6s ease-in-out infinite;
}

.counter-item i{
    animation:pulseGlow 3s infinite;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.about-content h2{
    font-size:48px;
}

}

@media(max-width:991px){

.about-section{
    padding:90px 0;
}

.about-image-wrap{
    padding-right:0;
    margin-bottom:70px;
}

.about-content{
    padding-left:0;
    text-align:center;
}

.title-divider{
    margin:25px auto;
}

.section-subtitle{
    justify-content:center;
}

.about-features{
    grid-template-columns:1fr;
    max-width:650px;
    margin:40px auto;
}

.about-btns{
    justify-content:center;
}

.experience-badge{
    left:20px;
}

.member-card{
    right:20px;
}

.counter-item{
    margin-bottom:35px;
}

}

@media(max-width:767px){

.about-section{
    padding:70px 0;
}

.about-content h2{
    font-size:36px;
}

.about-content p{
    font-size:16px;
}

.about-features{
    gap:18px;
}

.feature-box{
    padding:22px;
}

.feature-box i{
    width:60px;
    height:60px;
    font-size:22px;
}

.feature-box h5{
    font-size:18px;
}

.about-btns{
    flex-direction:column;
}

.about-btns .btn-main,
.about-btns .btn-outline{
    width:100%;
}

.experience-badge{
    width:135px;
    height:135px;
}

.badge-inner h2{
    font-size:34px;
}

.member-card{
    position:relative;
    right:auto;
    bottom:auto;
    margin:25px auto 0;
    max-width:280px;
}

.counter-item h2{
    font-size:42px;
}

.counter-item i{
    width:68px;
    height:68px;
    font-size:24px;
}

}

@media(max-width:576px){

.about-content h2{
    font-size:30px;
}

.about-content p{
    font-size:15px;
}

.section-subtitle{
    font-size:13px;
    letter-spacing:1px;
}

.about-image-wrap{
    padding-top:55px;
}

.experience-badge{
    left:50%;
    top:-25px;
    transform:translateX(-50%);
}

.about-features{
    gap:15px;
}

.feature-box{
    flex-direction:column;
    text-align:center;
}

.feature-box i{
    margin:auto;
}

.about-counter{
    padding:60px 0;
}

.counter-item{
    padding:15px;
}

}
