/*==================================================
ABOUT SECTION
Premium 2026
==================================================*/

.about-section{
    position:relative;
    overflow:hidden;
    padding:140px 0;
    background:
        url("../img/bg/1.webp") center/cover no-repeat;
}

.about-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(8px);
}

.about-section::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    border-radius:50%;
    background:rgba(212,175,55,.05);
    filter:blur(140px);
    left:-250px;
    top:-200px;
}

.about-section::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,217,232,.06);
    filter:blur(120px);
    right:-150px;
    bottom:-120px;
}

.about-section .container{
    position:relative;
    z-index:5;
}

/*==================================================
IMAGE AREA
==================================================*/

.about-images{

    position:relative;

    min-height:720px;

}

.about-img{

    position:absolute;

    overflow:hidden;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(15px);

    box-shadow:

    0 40px 80px rgba(0,0,0,.40),

    inset 0 1px 0 rgba(255,255,255,.08);

    transition:.6s;

}

.about-img:hover{

    transform:translateY(-12px);

}

.about-img img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:1.2s;

}

.about-img:hover img{

    transform:scale(1.12);

}

/* Main */

.img-one{

    width:470px;

    height:600px;

    left:0;

    top:0;

    z-index:1;

}

/* Floating */

.img-two{

    width:290px;

    height:360px;

    right:10px;

    bottom:20px;

    z-index:3;

}

/* Decoration */

.img-two::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(0,0,0,.20),transparent);

    z-index:2;

}

/*==================================================
FLOATING BADGE
==================================================*/

.experience-box{

    position:absolute;

    left:330px;

    top:90px;

    width:180px;

    height:180px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    background:

    linear-gradient(135deg,#FFD9E8,#D4AF37);

    color:#111;

    box-shadow:

    0 20px 70px rgba(212,175,55,.45);

    animation:floatBadge 5s ease-in-out infinite;

    z-index:10;

}

.experience-box h2{

    font-size:58px;

    font-weight:800;

    margin:0;

    line-height:1;

}

.experience-box span{

    margin-top:10px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    text-align:center;

}

@keyframes floatBadge{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}
/*==================================================
CONTENT AREA
==================================================*/

.about-content{

    position:relative;

    padding-left:40px;

}

.about-section .section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:darkred;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:28px;

    text-transform:uppercase;

    backdrop-filter:blur(15px);

}

.about-section .section-tag::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:red;

    box-shadow:0 0 20px #D4AF37;

}

.about-section .section-title{

    font-size:58px;

    line-height:1.12;

    color:#fff;

    margin-bottom:28px;

    font-weight:800;

    letter-spacing:-1px;

}

.about-section .section-title span{

    background:linear-gradient(90deg,#FFD9E8,#D4AF37,#fff);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.about-section .section-desc{

    font-size:18px;

    line-height:1.9;

    color:black;

    margin-bottom:45px;

}

/*==================================================
FEATURE GRID
==================================================*/

.about-feature{

    position:relative;

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:24px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.45s;

    overflow:hidden;

    height:100%;

}

.about-feature::before{

    content:"";

    position:absolute;

    width:0;

    height:100%;

    left:0;

    top:0;

    background:linear-gradient(180deg,#FFD9E8,#D4AF37);

    transition:.45s;

    opacity:.08;

}

.about-feature:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 25px 60px rgba(212,175,55,.15);

}

.about-feature:hover::before{

    width:100%;

}

.about-feature i{

    position:relative;

    width:70px;

    height:70px;

    min-width:70px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    color:#D4AF37;

    background:rgba(212,175,55,.10);

    border:1px solid rgba(212,175,55,.18);

    transition:.45s;

    z-index:2;

}

.about-feature:hover i{

    transform:rotate(-8deg) scale(1.08);

    background:linear-gradient(135deg,#FFD9E8,#D4AF37);

    color:#111;

}

.about-feature h5{

    position:relative;

    color:#fff;

    font-size:22px;

    margin-bottom:10px;

    z-index:2;

}

.about-feature p{

    position:relative;

    color:#bdbdbd;

    line-height:1.8;

    margin:0;

    z-index:2;

}

/*==================================================
BUTTON
==================================================*/

.about-btn{

    display:inline-flex;

    align-items:center;

    gap:14px;

    margin-top:50px;

    padding:18px 38px;

    border-radius:60px;

    background:linear-gradient(135deg,#FFD9E8,#D4AF37);

    color:#111;

    font-weight:700;

    transition:.4s;

}

.about-btn:hover{

    transform:translateY(-6px);

    color:#111;

    box-shadow:0 20px 45px rgba(212,175,55,.35);

}

.about-btn i{

    transition:.35s;

}

.about-btn:hover i{

    transform:translateX(8px);

}
/*==================================================
PREMIUM STATS
==================================================*/

.about-stats{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

    margin-top:60px;

}

.stat-box{

    flex:1;

    min-width:180px;

    position:relative;

    overflow:hidden;

    padding:30px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.45s;

}

.stat-box::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:120%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );

    transition:.8s;

}

.stat-box:hover::before{

    left:120%;

}

.stat-box:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 25px 60px rgba(212,175,55,.15);

}

.stat-box h2{

    font-size:48px;

    color:#fff;

    margin-bottom:10px;

    font-weight:800;

}

.stat-box span{

    color:#bdbdbd;

    font-size:15px;

    letter-spacing:1px;

    text-transform:uppercase;

}

/*==================================================
BACKGROUND SHAPES
==================================================*/

.about-shape{

    position:absolute;

    border-radius:50%;

    pointer-events:none;

}

.shape-1{

    width:350px;

    height:350px;

    background:rgba(212,175,55,.05);

    top:-120px;

    right:-120px;

    filter:blur(120px);

}

.shape-2{

    width:280px;

    height:280px;

    background:rgba(255,217,232,.05);

    bottom:-80px;

    left:-80px;

    filter:blur(120px);

}

.shape-3{

    width:14px;

    height:14px;

    background:#D4AF37;

    box-shadow:0 0 30px #D4AF37;

    top:25%;

    right:12%;

    animation:moveDot 6s linear infinite;

}

.shape-4{

    width:10px;

    height:10px;

    background:#FFD9E8;

    box-shadow:0 0 25px #FFD9E8;

    bottom:20%;

    left:8%;

    animation:moveDot 8s linear infinite reverse;

}

@keyframes moveDot{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-30px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
IMAGE HOVER GLOW
==================================================*/

.about-img::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(212,175,55,.15),
        transparent 60%
    );

    opacity:0;

    transition:.5s;

}

.about-img:hover::after{

    opacity:1;

}

/*==================================================
TITLE EFFECT
==================================================*/

.section-title{

    position:relative;

}

.section-title::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    margin-top:22px;

    border-radius:50px;

    background:linear-gradient(90deg,#FFD9E8,#D4AF37);

}

/*==================================================
PARAGRAPH
==================================================*/

.section-desc{

    max-width:620px;

}

/*==================================================
FEATURE ICON ANIMATION
==================================================*/

.about-feature:hover i{

    animation:iconBounce .6s ease;

}

@keyframes iconBounce{

    0%{

        transform:scale(.8);

    }

    50%{

        transform:scale(1.15);

    }

    100%{

        transform:scale(1);

    }

}

/*==================================================
IMAGE BORDER LIGHT
==================================================*/

.about-img{

    position:absolute;

}

.about-img::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:30px;

    padding:1px;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.35),
        rgba(212,175,55,.35),
        transparent
    );

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

    pointer-events:none;

}
/*==================================================
LARGE SCREEN
==================================================*/

@media (max-width:1400px){

    .about-section{
        padding:120px 0;
    }

    .about-section .section-title{
        font-size:52px;
    }

    .img-one{
        width:420px;
        height:560px;
    }

    .img-two{
        width:260px;
        height:330px;
    }

    .experience-box{
        left:280px;
    }

}

/*==================================================
LAPTOP
==================================================*/

@media (max-width:1199px){

    .about-content{
        padding-left:20px;
    }

    .about-section .section-title{
        font-size:44px;
    }

    .about-section .section-desc{
        font-size:17px;
    }

    .about-images{
        min-height:620px;
    }

    .img-one{
        width:360px;
        height:500px;
    }

    .img-two{
        width:230px;
        height:290px;
    }

    .experience-box{
        width:150px;
        height:150px;
        left:240px;
        top:70px;
    }

    .experience-box h2{
        font-size:42px;
    }

}

/*==================================================
TABLET
==================================================*/

@media (max-width:991px){

    .about-section{
        padding:100px 0;
    }

    .about-content{
        padding-left:0;
        margin-top:70px;
        text-align:center;
    }

    .about-section .section-title{
        font-size:40px;
    }

    .section-desc{
        max-width:100%;
    }

    .about-images{

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:30px;

        min-height:auto;

    }

    .about-img{

        position:relative;

        width:100%;

        max-width:600px;

        height:420px;

        left:auto;
        right:auto;
        top:auto;
        bottom:auto;

    }

    .experience-box{

        width:140px;

        height:140px;

        left:50%;

        top:50%;

        transform:translate(-50%,-50%);

    }

    .about-feature{

        text-align:left;

    }

    .about-stats{

        justify-content:center;

    }

}

/*==================================================
MOBILE
==================================================*/

@media (max-width:767px){

    .about-section{

        padding:80px 0;

    }

    .about-section .section-title{

        font-size:34px;

    }

    .about-section .section-desc{

        font-size:16px;

    }

    .about-img{

        height:320px;

        border-radius:22px;

    }

    .about-img::before{

        border-radius:22px;

    }

    .experience-box{

        width:120px;

        height:120px;

    }

    .experience-box h2{

        font-size:32px;

    }

    .experience-box span{

        font-size:10px;

    }

    .about-feature{

        padding:18px;

    }

    .about-feature i{

        width:58px;

        height:58px;

        min-width:58px;

        font-size:24px;

    }

    .about-feature h5{

        font-size:18px;

    }

    .stat-box{

        min-width:100%;

    }

    .stat-box h2{

        font-size:38px;

    }

}

/*==================================================
SMALL MOBILE
==================================================*/

@media (max-width:576px){

    .about-section{

        padding:70px 0;

    }

    .about-section .section-tag{

        font-size:11px;

        padding:8px 18px;

    }

    .about-section .section-title{

        font-size:30px;

    }

    .about-section .section-title::after{

        margin:18px auto 0;

    }

    .about-img{

        height:260px;

    }

    .about-feature{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

    .about-feature i{

        margin-bottom:10px;

    }

    .about-btn{

        width:100%;

        justify-content:center;

    }

}

/*==================================================
HOVER EFFECTS
==================================================*/

@media (hover:hover){

    .about-img:hover{

        transform:translateY(-15px) rotate(-1deg);

    }

    .about-feature:hover{

        transform:translateY(-12px);

    }

    .stat-box:hover{

        transform:translateY(-10px);

    }

}

/*==================================================
PERFORMANCE
==================================================*/

.about-img,
.about-feature,
.stat-box,
.experience-box{

    will-change:transform;

    transform:translateZ(0);

}