/*==================================================
ROOT
==================================================*/

:root{

    --primary:#1696E8;
    --primary-dark:#0F6DA8;

    --secondary:#0D1B2A;

    --text:#1F2937;

    --gray:#64748B;

    --white:#FFFFFF;

    --light:#F7FAFC;

    --border:#E5E7EB;


    --shadow-sm:
    0 10px 25px rgba(0,0,0,.06);


    --shadow-md:
    0 20px 50px rgba(0,0,0,.12);


    --shadow-lg:
    0 30px 70px rgba(0,0,0,.18);


    --radius:24px;

    --transition:.35s ease;

}



/*==================================================
RESET
==================================================*/


*{

margin:0;

padding:0;

box-sizing:border-box;

}



html{

scroll-behavior:smooth;

}



body{

font-family:'Inter',Arial,sans-serif;

color:var(--text);

background:#fff;

overflow-x:hidden;

}



img{

max-width:100%;

display:block;

}



a{

text-decoration:none;

}



.container{

width:90%;

max-width:1200px;

margin:auto;

}

/*==================================================
HEADER
==================================================*/

#header{

    position:fixed;

    top:18px;

    left:0;

    width:100%;

    z-index:1000;

    transition:.35s ease;

}

#header.sticky{

    top:10px;

}

#header .container{

    width:min(95%,1320px);

    margin:auto;

}

/*==================================================
NAVBAR
==================================================*/

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

    padding:0 35px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-radius:70px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

/*==================================================
LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    flex-shrink:0;

}

.logo img{

    width:56px;

    height:56px;

    object-fit:contain;

}

.logo-text{

    display:flex;

    flex-direction:column;

}

.logo-text h2{

    font-size:23px;

    color:var(--secondary);

    font-weight:800;

    line-height:1.1;

}

.logo-text span{

    font-size:11px;

    color:var(--gray);

    margin-top:3px;

    letter-spacing:.5px;

}

/*==================================================
MENU
==================================================*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:34px;

    list-style:none;

}

.nav-menu li{

    list-style:none;

}

.nav-menu a{

    position:relative;

    text-decoration:none;

    color:var(--secondary);

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-7px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-menu a:hover,

.nav-menu a.active{

    color:var(--primary);

}

.nav-menu a:hover::after,

.nav-menu a.active::after{

    width:100%;

}

/*==================================================
RIGHT
==================================================*/

.nav-right{

    display:flex;

    align-items:center;

    gap:18px;

}

/*==================================================
BUTTON
==================================================*/

.header-btn{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 28px;

    background:var(--primary);

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.header-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

/*==================================================
MENU TOGGLE
==================================================*/

.menu-toggle{

    display:none;

    width:48px;

    height:48px;

    border:none;

    background:none;

    cursor:pointer;

    color:var(--secondary);

    font-size:25px;

    justify-content:center;

    align-items:center;

}

/*==================================================
OVERLAY
==================================================*/

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

/*==================================================
LAPTOP
==================================================*/

@media(max-width:1200px){

.navbar{

    padding:0 25px;

}

.nav-menu{

    gap:24px;

}

.logo-text h2{

    font-size:21px;

}

}

/*==================================================
TABLET
==================================================*/

@media(max-width:992px){

#header{

    top:12px;

}

#header .container{

    width:94%;

}

.navbar{

    height:74px;

    padding:0 20px;

}

.logo img{

    width:46px;

    height:46px;

}

.logo-text h2{

    font-size:20px;

}

.logo-text span{

    font-size:9px;

}

.header-btn{

    display:none;

}

.menu-toggle{

    display:flex;

}

.nav-menu{

    position:fixed;

    top:92px;

    left:50%;

    transform:translateX(-50%) translateY(-20px);

    width:94%;

    background:#fff;

    border-radius:24px;

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:0;

    padding:20px;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    box-shadow:0 25px 45px rgba(0,0,0,.12);

    z-index:1002;
       transform:
    translateX(-50%)
    translateY(-20px);


}

.nav-menu.active{

    opacity:1;

    visibility:visible;

    transform:translateX(-50%) translateY(0);

}

.nav-menu li{

    width:100%;

}

.nav-menu a{

    width:100%;

    display:block;

    padding:18px 0;

    border-bottom:1px solid #eee;

}

.nav-menu a::after{

    display:none;

}

}

/*==================================================
PHONE
==================================================*/

@media(max-width:768px){

.navbar{

    height:70px;

    padding:0 18px;

}

.logo{

    gap:10px;

}

.logo img{

    width:42px;

    height:42px;

}

.logo-text h2{

    font-size:18px;

}

.logo-text span{

    font-size:8px;

}

.menu-toggle{

    width:42px;

    height:42px;

    font-size:22px;

}

.nav-menu{

    top:84px;

}

}

/*==================================================
SMALL PHONE
==================================================*/

@media(max-width:480px){

#header{

    top:8px;

}

#header .container{

    width:95%;

}

.navbar{

    height:65px;

    padding:0 15px;

}

.logo img{

    width:38px;

    height:38px;

}

.logo-text h2{

    font-size:16px;

}

.logo-text span{

    display:none;

}

.menu-toggle{

    font-size:20px;

}

.nav-menu{

    width:95%;

    top:76px;

    padding:18px;

}

.nav-menu a{

    padding:15px 0;

    font-size:15px;

}

}

/*==================================================
CORPORATE HERO
==================================================*/

.corporate-hero{

    position:relative;

    overflow:hidden;

    padding:170px 0 120px;

    background:
    linear-gradient(
    135deg,
    var(--light) 0%,
    #ffffff 55%,
    rgba(22,150,232,.06) 100%);

}


/*==================================================
BACKGROUND DECORATION
==================================================*/

.corporate-hero::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(22,150,232,.15),
    transparent 70%);

    top:-280px;

    right:-220px;

}

.corporate-hero::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(15,109,168,.08),
    transparent 70%);

    bottom:-180px;

    left:-160px;

}


/*==================================================
LAYOUT
==================================================*/

.corporate-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

    position:relative;

    z-index:2;

}


/*==================================================
CONTENT
==================================================*/

.corporate-content{

    max-width:650px;

}

.section-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(22,150,232,.08);

    color:var(--primary);

    font-weight:600;

    margin-bottom:25px;

}

.section-subtitle i{

    font-size:15px;

}

.corporate-content h1{

    font-size:58px;

    line-height:1.15;

    color:var(--secondary);

    margin-bottom:25px;

}

.corporate-content p{

    font-size:17px;

    color:var(--gray);

    line-height:1.9;

    margin-bottom:40px;

}


/*==================================================
BUTTON
==================================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-buttons a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:var(--white);

    box-shadow:var(--shadow-sm);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-5px);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}


/*==================================================
FEATURES
==================================================*/

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:45px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:50px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.feature-item:hover{

    transform:translateY(-5px);

}

.feature-item i{

    color:var(--primary);

}


/*==================================================
STATISTIC
==================================================*/

.corporate-stat{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

}

.stat-card{

    background:#fff;

    padding:22px;

    border-radius:18px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.stat-card strong{

    display:block;

    font-size:32px;

    color:var(--primary);

    margin-bottom:6px;

}

.stat-card span{

    font-size:14px;

    color:var(--gray);

}


/*==================================================
IMAGE
==================================================*/
/*==========================================
CORPORATE IMAGE
==========================================*/

.corporate-image{

    position:relative;

    width:100%;

    border-radius:30px;

    overflow:hidden;

}



.corporate-image img{

    width:100%;

    height:560px;

    object-fit:cover;

    object-position:center;

    display:block;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    transition:.6s ease;

}



/* Hover Effect */

.corporate-image:hover img{

    transform:scale(1.03);

}



/* Soft Overlay */

.corporate-image::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:30px;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,0) 60%,
        rgba(0,0,0,.18)
    );

    pointer-events:none;

}



/* Experience Card tetap di atas image */

.experience-card,
.rating-card{

    z-index:2;

}



/*==========================================
TABLET
==========================================*/

@media(max-width:992px){

    .corporate-image img{

        height:450px;

    }

}



/*==========================================
PHONE
==========================================*/

@media(max-width:768px){

    .corporate-image{

        margin-top:40px;

    }


    .corporate-image img{

        height:380px;

        border-radius:22px;

    }


    .corporate-image::after{

        border-radius:22px;

    }

}
/*==================================================
FLOATING CARD
==================================================*/

.experience-card,
.rating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:18px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.6);

    border-radius:24px;

    padding:20px 26px;

    box-shadow:
    0 20px 45px rgba(0,0,0,.12);

    z-index:5;

    transition:.4s ease;

}


/* Hover */

.experience-card:hover,
.rating-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.18);

}



/*==================================================
EXPERIENCE CARD
==================================================*/

.experience-card{

    left:-45px;

    bottom:45px;

    min-width:280px;

}



.experience-card .icon{

    width:65px;

    height:65px;

    flex-shrink:0;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        rgba(22,150,232,.18),
        rgba(22,150,232,.05)
    );

    color:var(--primary);

    font-size:26px;

}



/* Text */

.experience-card h4{

    margin:0;

    font-size:18px;

    font-weight:700;

    color:var(--secondary);

}


.experience-card p{

    margin-top:6px;

    font-size:13px;

    color:var(--gray);

    line-height:1.5;

}





/*==================================================
RATING CARD
==================================================*/


.rating-card{

    right:-40px;

    top:45px;

    min-width:250px;

}



.rating-card > i{

    width:60px;

    height:60px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:

    linear-gradient(
        135deg,
        #FFF7E5,
        #FFF1CC
    );

    color:#F59E0B;

    font-size:24px;

}



.rating-card strong{

    display:block;

    color:var(--secondary);

    font-size:17px;

}



.rating-card span{

    display:block;

    margin-top:5px;

    font-size:13px;

    color:var(--gray);

}



/*==================================================
TABLET
==================================================*/

@media(max-width:992px){


.experience-card{

    left:-20px;

    bottom:25px;

}


.rating-card{

    right:-15px;

    top:25px;

}


}





/*==================================================
PHONE
==================================================*/

@media(max-width:768px){


.experience-card,
.rating-card{

    position:relative;

    left:auto;

    right:auto;

    top:auto;

    bottom:auto;

    margin-top:20px;

    width:100%;

    min-width:unset;

}



.corporate-image{

    display:flex;

    flex-direction:column;

}



.corporate-image img{

    border-radius:24px;

}


.experience-card,
.rating-card{

    border-radius:18px;

    padding:16px 18px;

}


.experience-card .icon,
.rating-card > i{

    width:50px;

    height:50px;

    border-radius:16px;

    font-size:20px;

}


}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

    .corporate-wrapper{

        grid-template-columns:1fr;

        text-align:center;

        gap:60px;

    }

    .corporate-content{

        margin:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-features{

        justify-content:center;

    }

    .corporate-stat{

        max-width:650px;

        margin:auto;

    }

    .experience-card{

        left:20px;

    }

    .rating-card{

        right:20px;

    }

}

@media(max-width:768px){

    .corporate-hero{

        padding:130px 0 70px;

    }

    .corporate-content h1{

        font-size:38px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons a{

        width:100%;

    }

    .corporate-stat{

        grid-template-columns:1fr;

    }

    .experience-card,

    .rating-card{

        position:relative;

        left:0;

        right:0;

        top:0;

        bottom:0;

        margin-top:20px;

    }

}

@media(max-width:576px){

    .corporate-content h1{

        font-size:30px;

    }

    .hero-features{

        flex-direction:column;

    }

    .feature-item{

        justify-content:center;

    }

}

/*==================================================
FLOATING WHATSAPP
==================================================*/

.whatsapp-float{

    position:fixed;

    right:30px;

    bottom:30px;

    width:65px;

    height:65px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:34px;

    z-index:9999;

    box-shadow:
    0 15px 35px rgba(37,211,102,.35);

    transition:.35s ease;

    animation:pulse-wa 2s infinite;

}



/* Hover */

.whatsapp-float:hover{

    transform:
    translateY(-8px)
    scale(1.05);

    background:#20BA5A;

}





/*==================================================
TOOLTIP
==================================================*/


.wa-tooltip{

    position:absolute;

    right:80px;

    top:50%;

    transform:
    translateY(-50%);

    background:#0D1B2A;

    color:white;

    font-size:14px;

    font-weight:600;

    padding:10px 18px;

    border-radius:30px;

    white-space:nowrap;

    opacity:0;

    visibility:hidden;

    transition:.3s ease;

}



/* Arrow */

.wa-tooltip::after{

    content:"";

    position:absolute;

    right:-6px;

    top:50%;

    transform:translateY(-50%);

    border-width:6px 0 6px 6px;

    border-style:solid;

    border-color:transparent transparent transparent #0D1B2A;

}





.whatsapp-float:hover .wa-tooltip{

    opacity:1;

    visibility:visible;

}





/*==================================================
PULSE ANIMATION
==================================================*/


@keyframes pulse-wa{


0%{

    box-shadow:
    0 0 0 0 rgba(37,211,102,.55);

}


70%{

    box-shadow:
    0 0 0 18px rgba(37,211,102,0);

}


100%{

    box-shadow:
    0 0 0 0 rgba(37,211,102,0);

}


}







/*==================================================
TABLET
==================================================*/

@media(max-width:768px){


.whatsapp-float{

    width:58px;

    height:58px;

    right:20px;

    bottom:90px;

    font-size:30px;

}



.wa-tooltip{

    display:none;

}


}

/* //perlu perbaikan diatas ini */
/*==================================================
WHY SECTION
==================================================*/

.why-section{

    position:relative;

    padding:100px 0;

    overflow:hidden;

}

.why-section::before{

    content:"";

    position:absolute;

    top:-120px;

    right:-120px;

    width:280px;

    height:280px;

    border-radius:50%;

    opacity:.05;

    background:currentColor;

}

.why-section::after{

    content:"";

    position:absolute;

    bottom:-100px;

    left:-100px;

    width:220px;

    height:220px;

    border-radius:50%;

    opacity:.04;

    background:currentColor;

}


/*==================================================
HEADER
==================================================*/

.section-header{

    text-align:center;

    max-width:720px;

    margin:0 auto 70px;

}

.section-header h2{

    font-size:46px;

    line-height:1.25;

    margin:18px 0;

}

.section-header p{

    font-size:17px;

    line-height:1.8;

    opacity:.85;

}


/*==================================================
GRID
==================================================*/

.card-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}



/*==================================================
CARD
==================================================*/

.service-card{

    position:relative;

    padding:45px 35px;

    border-radius:24px;

    overflow:hidden;

    transition:.4s ease;

    text-align:center;

    box-shadow:
    0 12px 35px rgba(0,0,0,.06);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:0;

    height:4px;

    transition:.35s;

}

.service-card:hover::before{

    width:100%;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.12);

}


/*==================================================
ICON
==================================================*/

.icon-box{

    width:90px;

    height:90px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

    transition:.35s;

}

.icon-box i{

    font-size:36px;

}

.service-card:hover .icon-box{

    transform:rotateY(180deg);

}


/*==================================================
TITLE
==================================================*/

.service-card h3{

    font-size:24px;

    margin-bottom:18px;

    font-weight:600;

}


/*==================================================
DESCRIPTION
==================================================*/

.service-card p{

    font-size:16px;

    line-height:1.8;

    opacity:.85;

}


/*==================================================
ANIMATION
==================================================*/

.service-card{

    animation:fadeUp .8s ease both;

}

.service-card:nth-child(2){

    animation-delay:.2s;

}

.service-card:nth-child(3){

    animation-delay:.4s;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*==================================================
TABLET
==================================================*/

@media(max-width:992px){

    .card-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .section-header h2{

        font-size:38px;

    }

}


/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

    .why-section{

        padding:80px 0;

    }

    .card-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .section-header{

        margin-bottom:50px;

    }

    .section-header h2{

        font-size:32px;

    }

    .section-header p{

        font-size:15px;

    }

    .service-card{

        padding:35px 28px;

    }

    .icon-box{

        width:75px;

        height:75px;

    }

    .icon-box i{

        font-size:30px;

    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:480px){

    .section-header h2{

        font-size:28px;

    }

    .service-card{

        border-radius:18px;

        padding:30px 22px;

    }

    .service-card h3{

        font-size:22px;

    }

    .service-card p{

        font-size:14px;

    }

}
/*==================================================
CORPORATE DETAIL
==================================================*/

.corporate-detail{

    position:relative;

    padding:100px 0;

    overflow:hidden;

}

.corporate-detail::before{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    top:-160px;
    right:-160px;

    border-radius:50%;

    opacity:.04;

    background:currentColor;

}

.corporate-detail::after{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    bottom:-120px;
    left:-120px;

    border-radius:50%;

    opacity:.03;

    background:currentColor;

}


/*==================================================
WRAPPER
==================================================*/

.detail-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}


/*==================================================
LEFT CONTENT
==================================================*/

.detail-content{

    max-width:560px;

}

.detail-content h2{

    font-size:46px;

    line-height:1.25;

    margin:18px 0 22px;

}

.detail-content p{

    font-size:17px;

    line-height:1.9;

    opacity:.85;

    margin-bottom:40px;

}


/*==================================================
BUTTON
==================================================*/

.detail-content .btn-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.detail-content .btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}


/*==================================================
RIGHT BOX
==================================================*/

.detail-box{

    display:flex;

    flex-direction:column;

    gap:24px;

}


/*==================================================
ITEM
==================================================*/

.detail-item{

    position:relative;

    display:flex;

    align-items:flex-start;

    gap:22px;

    padding:28px;

    border-radius:22px;

    transition:.35s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    overflow:hidden;

}

.detail-item::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:5px;

    height:0;

    transition:.35s;

}

.detail-item:hover::before{

    height:100%;

}

.detail-item:hover{

    transform:translateX(12px);

    box-shadow:
    0 18px 45px rgba(0,0,0,.12);

}


/*==================================================
ICON
==================================================*/

.detail-item i{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    flex-shrink:0;

    transition:.35s;

}

.detail-item:hover i{

    transform:rotate(-8deg) scale(1.08);

}


/*==================================================
TEXT
==================================================*/

.detail-item h4{

    font-size:22px;

    margin-bottom:10px;

}

.detail-item p{

    font-size:15px;

    line-height:1.8;

    opacity:.85;

}


/*==================================================
HOVER EFFECT
==================================================*/

.detail-item:hover h4{

    transition:.3s;

}

.detail-item:hover p{

    transition:.3s;

}


/*==================================================
ANIMATION
==================================================*/

.detail-item{

    animation:slideUp .8s ease both;

}

.detail-item:nth-child(2){

    animation-delay:.15s;

}

.detail-item:nth-child(3){

    animation-delay:.3s;

}

@keyframes slideUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*==================================================
TABLET
==================================================*/

@media(max-width:992px){

    .detail-wrapper{

        grid-template-columns:1fr;

        gap:60px;

    }

    .detail-content{

        max-width:100%;

        text-align:center;

    }

    .detail-content p{

        max-width:700px;

        margin:0 auto 40px;

    }

}


/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

    .corporate-detail{

        padding:80px 0;

    }

    .detail-content h2{

        font-size:34px;

    }

    .detail-content p{

        font-size:15px;

    }

    .detail-item{

        padding:22px;

        gap:18px;

    }

    .detail-item i{

        width:60px;

        height:60px;

        font-size:24px;

    }

    .detail-item h4{

        font-size:20px;

    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:576px){

    .detail-content h2{

        font-size:28px;

    }

    .detail-item{

        flex-direction:column;

        text-align:center;

        align-items:center;

        border-radius:18px;

    }

    .detail-item:hover{

        transform:translateY(-8px);

    }

    .detail-item h4{

        margin-top:10px;

    }

}
/*==================================================
PROCESS SECTION
==================================================*/

.process-section{

    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background: linear-gradient(
        180deg,
        var(--white) 0%,
        var(--light) 100%
    );

}

/*==================================================
BACKGROUND DECORATION
==================================================*/

.process-section::before{

    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    top: -180px;
    right: -180px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(22,150,232,.15),
        transparent 70%
    );

}

.process-section::after{

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    bottom: -120px;
    left: -120px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(13,27,42,.05),
        transparent 70%
    );

}


/*==================================================
SECTION HEADER
==================================================*/

.process-section .section-header{

    max-width:700px;

    margin:0 auto 70px;

    text-align:center;

}

.process-section .section-subtitle{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(22,150,232,.08);

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:18px;

}

.process-section h2{

    font-size:46px;

    color:var(--secondary);

    margin-bottom:20px;

    line-height:1.25;

}

.process-section .section-header p{

    max-width:650px;

    margin:auto;

    color:var(--gray);

    font-size:17px;

    line-height:1.8;

}


/*==================================================
GRID
==================================================*/

.process-grid{

    position:relative;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}


/*==================================================
CONNECTOR
==================================================*/

.process-grid::before{

    content:"";

    position:absolute;

    left:16%;

    right:16%;

    top:42px;

    height:4px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        var(--primary),
        rgba(22,150,232,.25),
        var(--primary)
    );

    z-index:0;

}


/*==================================================
CARD
==================================================*/

.process-card{

    position:relative;

    z-index:2;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:45px 35px;

    text-align:center;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.process-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-md);

    border-color:rgba(22,150,232,.25);

}


/*==================================================
TOP BORDER
==================================================*/

.process-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-dark)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.process-card:hover::before{

    transform:scaleX(1);

}


/*==================================================
NUMBER
==================================================*/

.number{

    position:relative;

    width:84px;

    height:84px;

    margin:0 auto 28px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    font-weight:700;

    color:var(--white);

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    box-shadow:
        0 15px 30px rgba(22,150,232,.35);

    transition:.45s;

}

.number::after{

    content:"";

    position:absolute;

    inset:-8px;

    border-radius:50%;

    border:2px dashed rgba(22,150,232,.25);

}

.process-card:hover .number{

    transform:rotate(360deg) scale(1.08);

}


/*==================================================
TITLE
==================================================*/

.process-card h3{

    font-size:24px;

    color:var(--secondary);

    margin-bottom:18px;

    transition:.35s;

}

.process-card:hover h3{

    color:var(--primary);

}


/*==================================================
DESCRIPTION
==================================================*/

.process-card p{

    font-size:15px;

    line-height:1.9;

    color:var(--gray);

}


/*==================================================
ANIMATION
==================================================*/

.process-card{

    opacity:0;

    animation:fadeProcess .8s ease forwards;

}

.process-card:nth-child(2){

    animation-delay:.2s;

}

.process-card:nth-child(3){

    animation-delay:.4s;

}

@keyframes fadeProcess{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*==================================================
HOVER GLOW
==================================================*/

.process-card:hover{

    background:

    linear-gradient(

        180deg,

        #ffffff,

        rgba(22,150,232,.03)

    );

}


/*==================================================
TABLET
==================================================*/

@media(max-width:992px){

    .process-section{

        padding:90px 0;

    }

    .process-grid{

        grid-template-columns:1fr;

        gap:30px;

    }

    .process-grid::before{

        display:none;

    }

    .process-section h2{

        font-size:38px;

    }

}


/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

    .process-section{

        padding:80px 0;

    }

    .process-section .section-header{

        margin-bottom:50px;

    }

    .process-section h2{

        font-size:32px;

    }

    .process-section .section-header p{

        font-size:15px;

    }

    .process-card{

        padding:35px 28px;

    }

    .number{

        width:72px;

        height:72px;

        font-size:26px;

    }

    .process-card h3{

        font-size:21px;

    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:480px){

    .process-section{

        padding:70px 0;

    }

    .process-section h2{

        font-size:28px;

    }

    .process-card{

        padding:28px 22px;

        border-radius:18px;

    }

    .number{

        width:64px;

        height:64px;

        font-size:22px;

    }

    .process-card h3{

        font-size:20px;

    }

    .process-card p{

        font-size:14px;

        line-height:1.8;

    }

}


/*==================================================
FOOTER
==================================================*/

.footer{
    background:#08131F;
    color:#fff;
    padding:90px 0 35px;
    position:relative;
    overflow:hidden;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:60px;
    margin-bottom:60px;
}

.footer-column{
    display:flex;
    flex-direction:column;
}

/*==================================================
LOGO
==================================================*/

.footer-logo{
    width:180px;
    height:auto;
    margin-bottom:25px;
}

/*==================================================
COMPANY
==================================================*/

.footer-column.company p{
    color:#B7C5D2;
    font-size:15px;
    line-height:1.9;
    margin-bottom:30px;
    max-width:380px;
}

/*==================================================
TITLE
==================================================*/

.footer-column h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    color:#fff;
}

/*==================================================
MENU
==================================================*/

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:16px;
}

.footer-column ul li:last-child{
    margin-bottom:0;
}

.footer-column ul li a{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#B7C5D2;
    transition:.35s;
    font-size:15px;
}

.footer-column ul li a i{
    color:var(--primary);
    font-size:12px;
}

.footer-column ul li a:hover{
    color:#fff;
    transform:translateX(6px);
}

/*==================================================
CONTACT
==================================================*/

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.footer-contact div{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.footer-contact i{
    color:var(--primary);
    width:18px;
    margin-top:4px;
    ;
}

.footer-contact span{
    color:#B7C5D2;
    line-height:1.8;
    font-size:15px;
}

/*==================================================
SOCIAL
==================================================*/

.footer-social{
    display:flex;
    gap:14px;
}

.footer-social a{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.05);
    color:#fff;
    text-decoration:none;
    transition:.35s;
}

.footer-social a:hover{
    background:var(--primary);
    transform:translateY(-5px);
}

/*==================================================
BOTTOM
==================================================*/

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:30px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-copy{
    color:#8C99A8;
    font-size:14px;
}

.footer-bottom-links{
    display:flex;
    gap:25px;
}

.footer-bottom-links a{
    text-decoration:none;
    color:#8C99A8;
    transition:.3s;
    font-size:14px;
}

.footer-bottom-links a:hover{
    color:#fff;
}

/*==================================================
RESPONSIVE
==================================================*/

/*============================
Laptop
============================*/

@media (max-width:1200px){

.footer-grid{

grid-template-columns:1.8fr 1fr 1fr 1.2fr;

gap:45px;

}

}

/*============================
Tablet
============================*/

@media (max-width:991px){

.footer{

padding:75px 0 30px;

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

gap:45px;

}

.footer-column.company p{

max-width:100%;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.footer-bottom-links{

justify-content:center;

}

}

/*============================
Mobile
============================*/

@media (max-width:768px){

.footer{

padding:65px 0 25px;

}

.footer-grid{

grid-template-columns:1fr;

gap:40px;

}

.footer-logo{

width:160px;

}

.footer-column h3{

font-size:20px;

margin-bottom:20px;

}

.footer-column.company p{

font-size:15px;

line-height:1.8;

}

.footer-column ul li{

margin-bottom:14px;

}

.footer-column ul li a{

font-size:15px;

}

.footer-contact{

gap:16px;

}

.footer-contact span{

font-size:15px;

}

.footer-social{

margin-top:5px;

}

.footer-social a{

width:44px;

height:44px;

}

.footer-bottom{

padding-top:25px;

}

.footer-bottom-links{

flex-wrap:wrap;

gap:15px;

justify-content:center;

}

}

/*============================
Small Mobile
============================*/

@media (max-width:576px){

.footer{

padding:55px 0 20px;

}

.footer-logo{

width:145px;

}

.footer-column h3{

font-size:19px;

}

.footer-column.company p{

font-size:14px;

}

.footer-column ul li a{

font-size:14px;

}

.footer-contact span{

font-size:14px;

}

.footer-social{

gap:12px;

}

.footer-social a{

width:42px;

height:42px;

font-size:15px;

}

.footer-copy{

font-size:13px;

line-height:1.7;

}

.footer-bottom-links{

flex-direction:column;

gap:10px;

}

.footer-bottom-links a{

font-size:13px;

}

}

/*==========================================
CORPORATE BENEFITS
==========================================*/


.benefit-section{

padding:100px 0;

background:#f8fafc;

}



.benefit-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}



.benefit-card{

background:white;

padding:35px 25px;

border-radius:25px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.3s;

}



.benefit-card:hover{

transform:translateY(-10px);

}



.benefit-card i{

width:70px;

height:70px;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

border-radius:50%;

background:rgba(22,150,232,.12);

color:var(--primary);

font-size:30px;

}



.benefit-card h3{

margin-top:25px;

font-size:20px;

color:var(--secondary);

}



.benefit-card p{

margin-top:15px;

color:var(--gray);

line-height:1.7;

}





@media(max-width:992px){

.benefit-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:576px){

.benefit-grid{

grid-template-columns:1fr;

}

}