/*======================================
    GOOGLE FONT
=======================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*======================================
    COLOR VARIABLE
=======================================*/

:root{

    --primary:#003333;
    --secondary:#027c68;
    --green:#b0e892;

    --text:#1F2937;
    --text-light:#6B7280;

    --white:#fff;

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

    --radius:18px;

}

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

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

    padding:20px 0;

}

.header.active{

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

    backdrop-filter:blur(18px);

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

}

.nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    width:80px;

}

.navbar{

    display:flex;

}

.nav-menu{

    display:flex;

    gap:45px;

}

.nav-menu a{

    color:var(--text);

    font-size:16px;

    font-weight:500;

    position:relative;

    transition:.35s;

}

.nav-menu a:hover{

    color:var(--primary);

}

.nav-menu a.active{

    color:var(--primary);

}

.nav-menu a.active::after{

    content:"";

    position:absolute;

    width:100%;

    height:3px;

    left:0;

    bottom:-10px;

    border-radius:50px;

    background:linear-gradient(to right,#003333,#027c68);

}

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

.btn-primary{

    background:linear-gradient(135deg,#003333,#027c68);

    color:#fff;

    padding:15px 34px;

    border-radius:60px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 30px rgba(13,110,253,.25);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(2, 79, 82, 0.35);

}

.btn-outline{

    border:2px solid #025c5a;

    padding:15px 34px;

    border-radius:60px;

    color:#007b70;

    transition:.35s;

}

.btn-outline:hover{

    background:#025c5a;

    color:white;

}

.menu-btn{

    display:none;

    font-size:34px;

    cursor:pointer;

}

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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding-top: 140px;

    padding-bottom: 180px; /* tambahkan */
}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.hero-left h1{

    font-size:64px;

    line-height:1.1;

    color:var(--text);

    margin:18px 0;

    font-weight:800;

}

.hero-left h1 span{

    color:#003333;

}

.subtitle{

    color:#003333;

    font-weight:600;

    letter-spacing:1px;

}

.hero-left p{

    margin-top:15px;

    color:#6B7280;

    line-height:1.8;

    max-width:540px;

    font-size:17px;

}

.hero-buttons{

    margin-top:45px;

    display:flex;

    gap:20px;

}

.hero-right{

    display:flex;

    justify-content:center;

}

.hero-image{

    animation:floating 5s ease-in-out infinite;

}

.hero-image img{

    width:650px;

    filter:drop-shadow(0 35px 60px rgba(0,0,0,.15));

}

/*======================================
        STATS
=======================================*/

.hero-stats{

    display:flex;

    gap:25px;

    margin-top:70px;

}

.stat-box{

    background:white;

    box-shadow:var(--shadow);

    padding:25px;

    border-radius:18px;

    min-width:160px;

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-box h2{

    color:#003333;

    font-size:34px;

}

.stat-box p{

    margin-top:8px;

    color:#777;

}

/*======================================
        BLUR BACKGROUND
=======================================*/

.blur{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    z-index:-1;

}

.blur-one{

    width:320px;

    height:320px;

    background:#095858;

    top:100px;

    right:-80px;

}

.blur-two{

    width:280px;

    height:280px;

    background:#B8FFD8;

    bottom:40px;

    left:-80px;

}

/*======================================
        WAVE
=======================================*/

.wave{

    position:absolute;

    left:0;

    bottom:-10px;

    width:100%;

}

.wave svg{

    display:block;

}

/*==========================
        VISION
===========================*/

.vision{

    padding:120px 0;

    background:#f8fbff;

}

.vision .section-title{

    max-width:700px;

    margin:auto;

    text-align:center;

}

.vision .section-title p{

    margin-top:20px;

    color:#6B7280;

    line-height:1.8;

}

.vision-wrapper{

    margin-top:70px;

    display:grid;

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

    gap:35px;

}

.vision-card{

    background:#fff;

    padding:45px;

    border-radius:25px;

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

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.vision-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        rgba(13,110,253,.08),
        rgba(43,228,172,.08)
    );

    top:-130px;

    right:-130px;

}

.vision-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(13,110,253,.15);

}

.vision-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:linear-gradient(135deg,#01594c,#034451);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:32px;

    margin-bottom:25px;

}

.vision-card h3{

    font-size:28px;

    margin-bottom:18px;

    color:#1F2937;

}

.vision-card p{

    color:#6B7280;

    line-height:1.9;

}

.vision-card ul{

    margin-top:10px;

}

.vision-card ul li{

    margin-bottom:15px;

    color:#6B7280;

    line-height:1.8;

    list-style:none;

    position:relative;

    padding-left:28px;

}

.vision-card ul li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#00C896;

    font-weight:bold;

}


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

.about{

    padding:120px 0;

    background:#F8FBFF;

}

.about .section-title{

    max-width:720px;

    margin:auto;

    text-align:center;

}

.about .section-title h2{

    margin-top:50px;

    color:#000001;

    line-height:1.8;

}

.about .section-title p{

    margin-top:20px;

    color:#6B7280;

    line-height:1.8;

}

.about-grid{

    display:grid;

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

    gap:35px;

    margin-top:70px;

}

.about-card{

    background:#fff;

    padding:45px 35px;

    border-radius:24px;

    text-align:center;

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

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.about-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(13,110,253,.18);

}

.about-card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        rgba(13,110,253,.08),
        rgba(43,228,172,.08));

    top:-90px;

    right:-90px;

}

.about-icon{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:20px;

    background:linear-gradient(135deg,#003333,#0a8f53);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:38px;

}

.about-card h3{

    margin-bottom:18px;

    font-size:24px;

    color:#1F2937;

}

.about-card li{

    color:#6B7280;

    line-height:1.8;

}  

.about-card ul li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#00C896;

    font-weight:bold;

} 

/* about terbaru */

.service-list{

    margin-top:40px;

}

.service-item{

    display:flex;

    align-items:flex-start;

    gap:16px;

    margin-bottom:28px;

}

.service-icon{

    min-width:28px;
    width:28px;
    height:28px;

    border-radius:50%;

    background:#00D4FF;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:16px;

    margin-top:4px;

    box-shadow:0 8px 20px rgba(0,212,255,.3);

}

.service-item p{

    color:#6B7280;

    line-height:1.8;

    font-size:16px;

}

.service-item strong{

    color:#1F2937;

    font-weight:700;

}


/* EKOSISTEM CERDAS */ 

/*==========================
        ECOSYSTEM
===========================*/

.ecosystem{

    padding:120px 0;

    background:#ffffff;

}

.ecosystem .section-title{

    max-width:700px;

    margin:auto;

    text-align:center;

}

.ecosystem .section-title p{

    margin-top:20px;

    color:#6B7280;

    line-height:1.8;

}

.ecosystem-grid{

    margin-top:70px;

    display:grid;

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

    gap:30px;

}

.ecosystem-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

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

    transition:.35s;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.ecosystem-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(13,110,253,.15);

}

.ecosystem-card::before{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        rgba(13,110,253,.08),
        rgba(0,212,255,.08));

    top:-90px;

    right:-90px;

}

.eco-icon{

    width:75px;

    height:75px;

    margin:auto;

    margin-bottom:25px;

    border-radius:18px;

    background:linear-gradient(135deg,#01574b,#08797d);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    box-shadow:0 12px 30px rgba(13,110,253,.25);

}

.ecosystem-card h3{

    margin-bottom:15px;

    color:#1F2937;

    font-size:22px;

}

.ecosystem-card p{

    color:#6B7280;

    line-height:1.8;

} 

/*==========================
        TECH STACK
===========================*/

.tech-stack{

    padding:120px 0;

    background:#00363a;

}

.tech-stack .section-title{

    max-width:720px;

    margin:auto;

    text-align:center;

}

.tech-stack .section-title span{

    color:#27ffed;

}

.tech-stack .section-title h2{

    color:#fff;

}

.tech-stack .section-title p{

    color:#9AA8C7;

    margin-top:20px;

    line-height:1.8;

}

.tech-grid{

    margin-top:70px;

    display:grid;

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

    gap:30px;

}

.tech-card{

    display:flex;

    align-items:flex-start;

    gap:22px;

    background:#046e76;

    padding:28px;

    border-radius:18px;

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

    transition:.35s;

}

.tech-card:hover{

    transform:translateY(-8px);

    border-color:#0D6EFD;

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

}

.tech-icon{

    width:58px;

    height:58px;

    border-radius:14px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:26px;

    flex-shrink:0;

}

/* Warna Icon */

.blue{

    background:#1E88E5;

}

.purple{

    background:#4F7FFF;

}

.green{

    background:#20C997;

}

.yellow{

    background:#F4B400;

}

.tech-content h3{

    color:#fff;

    margin-bottom:10px;

    font-size:22px;

}

.tech-content p{

    color:#9AA8C7;

    line-height:1.9;

}

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

footer{

    background:#0F172A;

    color:white;

    text-align:center;

    padding:35px;

}

/*======================================
    HERO DECORATION
=======================================*/

.hero::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    right:-180px;
    top:-120px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(13,110,253,.15),
    transparent 70%);
    z-index:-2;
}

.hero::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    left:-150px;
    bottom:-120px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(43,228,172,.15),
    transparent 70%);
    z-index:-2;
}

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

.hero-image{
    position:relative;
}

.hero-image::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    border-radius:30px;

    background:linear-gradient(135deg,#00D4FF,#2BE4AC);

    opacity:.15;

    top:30px;

    left:-30px;

    transform:rotate(25deg);

}

.hero-image::after{

    content:"";

    position:absolute;

    width:80px;

    height:80px;

    border-radius:50%;

    background:#0D6EFD;

    opacity:.12;

    right:-30px;

    bottom:20px;

}

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

@keyframes floating{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

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

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-left{

    animation:fadeUp .9s ease;

}

.hero-right{

    animation:fadeUp 1.1s ease;

}

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

.btn-primary{

    position:relative;

    overflow:hidden;

}

.btn-primary::before{

    content:"";

    position:absolute;

    width:0;

    height:100%;

    left:0;

    top:0;

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

    transition:.45s;

}

.btn-primary:hover::before{

    width:100%;

}

/*======================================
    NAV LINK EFFECT
=======================================*/

.nav-menu a::before{

    content:"";

    position:absolute;

    left:50%;

    bottom:-10px;

    width:0;

    height:3px;

    background:#00D4FF;

    transition:.35s;

    transform:translateX(-50%);

}

.nav-menu a:hover::before{

    width:100%;

}

/*======================================
    STAT BOX
=======================================*/

.stat-box{

    position:relative;

    overflow:hidden;

}

.stat-box::before{

    content:"";

    position:absolute;

    width:200px;

    height:200px;

    background:linear-gradient(
    135deg,
    rgba(13,110,253,.08),
    rgba(43,228,172,.08));

    border-radius:50%;

    right:-120px;

    top:-120px;

}

.stat-box:hover{

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

}

/*======================================
    SCROLLBAR
=======================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#01353a;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#edf3ff;

}

/*======================================
    SELECTION
=======================================*/

::selection{

    background:#00545a;

    color:#fff;

}

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

section{

    position:relative;

}

section:not(.hero){

    padding-top:90px;

    padding-bottom:90px;

}

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

.hero-left,
.hero-right,
.stat-box,
.section-title{

    opacity:0;

    transform:translateY(60px);

    transition:.8s;

}

.show{

    opacity:1;

    transform:translateY(0);

}

/*==========================
        ABOUT
===========================*/

.about{

    background:#f8fbff;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.about-image img{

    width:100%;

    border-radius:25px;

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

}

.about-content span{

    color:#0D6EFD;

    font-weight:600;

}

.about-content h2{

    margin:20px 0;

    font-size:50px;

}

.about-content p{

    color:#666;

    line-height:1.8;

}

.about-list{

    margin-top:35px;

    display:grid;

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

    gap:18px;

}

.about-list div{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:500;

}

.about-list i{

    color:#00D4FF;

}

/*==========================
        SERVICES
===========================*/

.services{

    background:white;

}

.service-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

}

.service-card{

    background:#fff;

    border-radius:25px;

    padding:40px;

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

    transition:.4s;

    text-align:center;

}

.service-card:hover{

    transform:translateY(-12px);

}

.service-card i{

    font-size:55px;

    color:#0D6EFD;

}

.service-card h3{

    margin:25px 0 15px;

}

.service-card p{

    color:#666;

    line-height:1.7;

}

/*==========================
        PROJECT
===========================*/

.project{

    background:#f8fbff;

}

.project-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

}

.project-card img{

    width:100%;

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
    transparent,
    rgba(0,0,0,.75));

    display:flex;

    align-items:flex-end;

    padding:30px;

    color:white;

    opacity:0;

    transition:.4s;

}

.project-card:hover .overlay{

    opacity:1;

} 



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

.contact{

    background:#f8fbff;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

}

.contact-info h2{

    margin:20px 0;

    font-size:30px;

}

.contact-item{

    margin-top:20px;

    display:flex;

    gap:12px;

    align-items:center;

}

.contact-item i{

    color:#0D6EFD;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    padding:18px;

    border:none;

    border-radius:15px;

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

    font-family:Poppins;

}

.contact-form button{

    border:none;

    cursor:pointer;

}

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

footer{

    background:#014d4c;

    color:#fff;

    padding:80px 0 20px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-container h3{

    margin-bottom:20px;

}

.footer-container a{

    display:block;

    color:#d6d6d6;

    margin-bottom:12px;

}

.copyright{

    text-align:center;

    margin-top:60px;

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

    padding-top:25px;

} 

html{
    scroll-behavior: smooth;
} 

