html{

    scroll-behavior:smooth;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {

    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f6f9;
    overflow-x:hidden;
}

/* NAVBAR */
.nav-container{

    width:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;
}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 0;
    transition: 0.3s ease;
}

.logo{

    display:flex;

    align-items:center;

    z-index:10;
}

.logo img{

    height:70px;

    transition:.3s ease;

    filter:brightness(0) invert(1);
}


/* DROPDOWN ACTIVE */

.dropdown.active .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

.nav-links{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:38px;

    list-style:none;

    margin:0 auto;

    padding:0;
}

.nav-links a{

    color:white;

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    transition:.3s ease;
}

.nav-links a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    background:white;

    transition:.3s ease;
}
.nav-links a i{

    font-size:14px;

    margin-top:2px;
}

.nav-links a:hover{

    color:#dbeafe;
}

/* ================================= */
/* HERO PREMIUM */
/* ================================= */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

    padding:140px 20px 100px;

    color:white;

    background:
    linear-gradient(
    rgba(7,22,47,.78),
    rgba(10,31,68,.70)
    ),

    url('/images/hero-home.jpg');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;

    background: rgba(10, 31, 68, 0);
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    padding: 20px;

    color: white;
}

.hero-content h1 {
    font-size: 65px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p{

    font-size:19px;

    line-height:1.9;

    color:#dbe4f0;

    margin-bottom:40px;

    max-width:760px;

    margin-left:auto;

    margin-right:auto;
}
.btn-primary {
    background: rgb(255, 255, 255);
    color: #0A1F44;

    padding: 15px 35px;

    border-radius: 8px;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

/* TRUST */
.trust{
    padding:100px 70px;
    background:white;
}

.trust-grid{
    display:flex;
    justify-content:space-around;
    text-align:center;
}

.trust h2{
    font-size:42px;
    color:#0A1F44;
}

/* SERVICES */
.services{
    padding:100px 70px;
    background:#f5f7fa;
    text-align:center;
}

.services h2{
    font-size:42px;
    margin-bottom:50px;
}

/* ================================= */
/* SERVICE GRID FIX */
/* ================================= */

.service-grid{

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:30px;

    align-items:stretch;

    margin-top:50px;
}

/* CARD */

.service-card{

    width:100%;

    min-height:320px;

    background:white;

    padding:45px 35px;

    border-radius:24px;

    text-align:center;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.06);

    transition:0.4s ease;
}

/* TITLE */

.service-card h3{

    font-size:30px;

    line-height:1.4;

    color:#0A1F44;

    margin-bottom:20px;
}

/* TEXT */

.service-card p{

    width:100%;

    font-size:18px;

    line-height:1.9;

    color:#64748b;

    word-break:normal;

    overflow-wrap:break-word;
}

/* HOVER */

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* MOBILE */

@media(max-width:992px){

    .service-grid{

        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .service-grid{

        grid-template-columns:1fr;
    }

}

.card{

    background:white;
    border-radius:24px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    margin-bottom:15px;
}

/* WHY */
.why{
    padding:100px 70px;
    background:#0A1F44;
    color:white;
    text-align:center;
}

.why h2{
    font-size:42px;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.why-grid div{
    background:rgba(255,255,255,0.1);
    padding:25px;
    border-radius:15px;
    font-size:18px;
}

/* CTA */
.cta{
    padding:100px 70px;
    background:rgb(255, 255, 255);
    text-align:center;
}

.cta h2{
    font-size:42px;
    margin-bottom:30px;
}

/* PORTFOLIO PREMIUM */

.portfolio {
    padding: 100px 60px;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    color: #0A1F44;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 18px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 320px;
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 0.5s;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,0.8)
    );

    color: white;
}

.portfolio-overlay h3 {
    font-size: 24px;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

/* FORM */
.form-section{
    padding:150px 20px 100px;
    background:#f4f6f9;
}

.form-container{
    max-width:650px;
    margin:auto;
    background:white;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.form-container h2{
    text-align:center;
    margin-bottom:30px;
    color:#0A1F44;
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-family:Poppins;
}

.form-group textarea{
    height:120px;
}

.btn-submit{
    width:100%;
    padding:15px;
    border:none;
    background:#0A1F44;
    color:white;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.btn-submit:hover{
    background:#163b7a;
}

/* SUCCESS */
.success-box{
    background:#e6ffed;
    color:#0a7f3f;
    padding:15px;
    border-radius:10px;
    margin-bottom:20px;
    text-align:center;
}

/* UPLOAD */
.upload-box{
    border:2px dashed #0A1F44;
    padding:40px;
    text-align:center;
    border-radius:15px;
    cursor:pointer;
    transition:0.3s;
}

.upload-box:hover{
    background:#eef3ff;
}

/* ================================= */
/* FOOTER */
/* ================================= */

.footer{

    position:relative;

    background:
    linear-gradient(
    135deg,
    #07162f 0%,
    #0A1F44 50%,
    #102c5c 100%);

    color:white;

    padding-top:100px;

    overflow:hidden;
}

/* GLOW */

.footer::before{

    content:'';

    position:absolute;

    width:400px;
    height:400px;

    background:linear-gradient(135deg, rgb(7, 22, 47) 0%, rgb(10, 31, 68) 50%, rgb(16, 44, 92) 100%);

    border-radius:50%;

    top:-120px;
    left:-120px;

    filter:blur(80px);
}

.footer::after{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    background:rgba(255,255,255,0.05);

    border-radius:50%;

    bottom:-100px;
    right:-100px;

    filter:blur(70px);
}

/* CONTAINER */

.footer-container{

    position:relative;

    z-index:2;

    width:90%;

    margin:auto;

    display:grid;

    grid-template-columns:1.3fr 1fr 1fr 1fr;

    gap:60px;

    align-items:flex-start;

    padding-bottom:70px;
}

/* TITLE */

.footer-col h2,
.footer-col h3{

    margin-bottom:22px;

    font-size:22px;

    line-height:1.2;
}

/* TEXT */

.footer-col p{

    color:#dbe4f0;

    line-height:1.9;
}

/* MENU */

.footer-col ul{

    list-style:none;

    padding:0;
}

.footer-col ul li{

    margin-bottom:14px;
}

.footer-col ul li a{

    color:#dbe4f0;

    text-decoration:none;

    transition:0.3s;
}

.footer-col ul li a:hover{

    color:gold;

    padding-left:8px;
}

/* SOCIAL */

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;
}

.footer-social a{

    width:45px;
    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    text-decoration:none;

    font-size:18px;

    transition:0.4s;
}

.footer-social a:hover{

    background:gold;

    color:black;

    transform:
    translateY(-8px)
    rotate(8deg);
}

/* COPYRIGHT */

.footer-bottom{

    position:relative;

    z-index:2;

    border-top:1px solid rgba(255,255,255,0.08);

    text-align:center;

    padding:30px;

    color:#cbd5e1;

    font-size:14px;

    letter-spacing:1px;
}

/* ================================= */
/* FOOTER CLICKABLE */
/* ================================= */

.footer-contact-link{

    color:#dbe4f0;

    text-decoration:none;

    display:flex;

    align-items:center;

    gap:10px;

    transition:0.3s;
}

.footer-contact-link:hover{

    color:gold;
}

.footer-contact-link i{

    font-size:15px;
}

.footer-logo img{

    width:180px;

    margin-bottom:20px;

    object-fit:contain;
}

/* MOBILE */

@media(max-width:768px){

    .footer-container{

        grid-template-columns:1fr;

        gap:50px;
    }

}

/* WHATSAPP */
.wa-float{
    position:fixed;
    right:30px;
    bottom:30px;

    background:#25D366;
    color:white;

    padding:15px 25px;
    border-radius:50px;

    display:flex;
    align-items:center;
    gap:10px;

    text-decoration:none;
    font-weight:600;

    box-shadow:0 10px 30px rgba(0,0,0,0.2);

    z-index:999;
}

.wa-float i{
    font-size:24px;
}

.wa-float:hover{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:991px){

.hero-content h1 {

    font-size:58px;

    line-height:1.15;

    margin-bottom:24px;

    font-weight:700;

    letter-spacing:-2px;
}

    .service-grid{
        flex-direction:column;
    }

    .portfolio-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .trust-grid{
        flex-direction:column;
        gap:30px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .navbar{
        padding:20px;
    }

    .nav-links{
        gap:15px;
    }

    .timeline{
    grid-template-columns:1fr;
}

.timeline::before{
    display:none;
}
}

/* CLIENT LOGO */

.clients {
    padding: 70px 0;
    background: white;
    overflow: hidden;
}

.client-title {
    text-align: center;
    margin-bottom: 40px;
}

.client-title p {
    color: #777;
    font-size: 18px;
    letter-spacing: 1px;
}

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    align-items: center;

    width: calc(220px * 20);

    animation: scrollLogo 40s linear infinite;
}

.logo-track img {
    width: 140px;
    height: 80px;

    object-fit: contain;

    margin: 0 40px;

    filter: grayscale(100%);
    opacity: 0.7;

    transition: 0.4s;
}

.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;

    transform: scale(1.08);
}

@keyframes scrollLogo {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-220px * 10));
    }

}


.service-card{

    background:white;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:0.4s ease;

    position:relative;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);

}

.service-card::before{

    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    transition:0.6s;
}

.service-card:hover::before{
    left:100%;
}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(0,0,0,0.12);

}

.service-icon{

    width:80px;
    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#0A1F44;

    color:white;

    font-size:30px;

    transition:0.4s;
}

.service-card:hover .service-icon{

    background:gold;

    color:#0A1F44;

    transform:rotate(8deg) scale(1.1);

}



/* ================================= */
/* PROCESS TIMELINE */
/* ================================= */

.process{

    padding:100px 8%;

    background:#f8fafc;
}

.timeline{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

    position:relative;
}

.timeline::before{

    content:'';

    position:absolute;

    top:45px;
    left:10%;

    width:80%;
    height:4px;

    background:#dbe4f0;

    z-index:0;
}

.timeline-item{

    position:relative;

    z-index:1;

    text-align:center;
}

.timeline-icon{

    width:90px;
    height:90px;

    margin:auto;

    border-radius:50%;

    background:#0A1F44;

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

    transition:0.4s;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.timeline-item:hover .timeline-icon{

    background:gold;

    color:#0A1F44;

    transform:translateY(-10px) scale(1.08);
}

.timeline-item h3{

    margin-bottom:12px;

    color:#0A1F44;

    font-size:22px;
}

.timeline-item p{

    color:#666;

    line-height:1.8;
}

/* ================================= */
/* TESTIMONIAL */
/* ================================= */

.testimonial{

    padding:100px 8%;

    background:#f8fafc;
}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;
}

.testimonial-card{

    background:white;

    padding:40px;

    border-radius:24px;

    border:1px solid #e5e7eb;

    transition:0.4s ease;
}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.quote-icon{

    font-size:70px;

    color:#cbd5e1;

    line-height:1;

    margin-bottom:20px;
}

.testimonial-card p{

    color:#1e293b;

    line-height:1.9;

    font-size:18px;

    margin-bottom:35px;
}

.testimonial-user{

    display:flex;

    align-items:center;

    gap:15px;
}

.user-avatar{

    width:60px;
    height:60px;

    border-radius:50%;

    background:#e2e8f0;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    color:#3b82f6;

    font-size:24px;
}

.testimonial-user h4{

    margin:0;

    color:#0A1F44;
}

.testimonial-user span{

    color:#64748b;

    font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

    .testimonial-grid{

        grid-template-columns:1fr;
    }

}


/* ================================= */
/* BUTTON HOVER */
/* ================================= */

.btn-primary{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#5fa8c7;

    color:white;

    padding:18px 40px;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(95,168,199,.25);
}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(0,0,0,0.25);

    background:#0A1F44;

    color:white;
}

/* ================================= */
/* NAVBAR HOVER */
/* ================================= */

.nav-links > li > a{

    position:relative;
}

.nav-links > li > a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-5px;

    width:0;

    height:2px;

    background:#5fa8c7;

    transition:0.4s;
}

.nav-links a:hover::after{

    width:100%;
}

/* ================================= */
/* SERVICE CARD */
/* ================================= */

.service-card{

    transition:0.4s ease;
}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

/* ================================= */
/* PORTFOLIO IMAGE */
/* ================================= */

.portfolio-card{

    overflow:hidden;

    border-radius:20px;
}

.portfolio-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:0.5s;
}

.portfolio-card:hover img{

    transform:scale(1.1);
}

/* ================================= */
/* TIMELINE */
/* ================================= */

.timeline-item:hover{

    transform:translateY(-10px);

  
}

/* ================================= */
/* TESTIMONIAL */
/* ================================= */

.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* ================================= */
/* LOGO CLIENT */
/* ================================= */

.logo-track img:hover{

    transform:scale(1.1);

    filter:grayscale(0%);
}

/* ================================= */
/* WA BUTTON */
/* ================================= */

.wa-float:hover{

    transform:scale(1.08);

    box-shadow:0 15px 35px rgba(37,211,102,0.4);
}

/* ================================= */
/* MOBILE RESPONSIVE */
/* ================================= */

@media(max-width:992px){

    .hero h1{

        font-size:42px;
    }

    .hero p{

        font-size:17px;
    }

    .service-grid,
    .portfolio-grid,
    .testimonial-grid,
    .timeline{

        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    /* NAVBAR */

    .navbar{

        padding:20px;
        flex-direction:column;
        gap:15px;
    }

    .nav-links{

        flex-wrap:wrap;

        justify-content:center;

        gap:15px;

        padding:0;
    }

    /* HERO */

    .hero{

        height:auto;

        padding:140px 20px 100px;
    }

    .hero h1{

        font-size:34px;

        line-height:1.3;
    }

    .hero p{

        font-size:16px;
    }

    .hero-content{

    position:relative;

    z-index:5;

    max-width:900px;
}
    /* TRUST */

    .trust-grid{

        flex-direction:column;

        gap:30px;
    }

    /* SERVICES */

    .service-grid{

        grid-template-columns:1fr;
    }

    .service-card{

        padding:30px;
    }

    /* PORTFOLIO */

    .portfolio-grid{

        grid-template-columns:1fr;
    }

    .portfolio-card{

        height:250px;
    }

    /* TIMELINE */

    .timeline{

        grid-template-columns:1fr;
    }

    /* TESTIMONIAL */

    .testimonial-grid{

        grid-template-columns:1fr;
    }

    .testimonial-card{

        padding:30px;
    }

    /* CTA */

    .cta h2{

        font-size:30px;

        line-height:1.4;
    }

    /* WHATSAPP */

    .wa-float{

        right:15px;
        bottom:15px;

        padding:14px 18px;

        font-size:14px;
    }

}

@media(max-width:480px){

    .hero h1{

        font-size:28px;
    }

    .section-title h2{

        font-size:30px;
    }

    .btn-primary{

        width:100%;

        text-align:center;
    }

    .timeline-item,
    .service-card,
    .testimonial-card{

        padding:25px;
    }

}

/* ================================= */
/* MOBILE MENU */
/* ================================= */

.menu-toggle{
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}


/* ================================= */
/* MOBILE NAVBAR */
/* ================================= */

@media(max-width: 991px){

    /* NAVBAR */
    .navbar{
        padding: 14px 0;
        background: rgba(7,18,38,0.95);
        backdrop-filter: blur(10px);
    }

    .nav-container{
        width: 92%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* LOGO */
    .logo img{
        width: 95px;
    }

    /* HAMBURGER */
    .menu-toggle{
        display: block;
        font-size: 28px;
        color: white;
        cursor: pointer;
        z-index: 1001;
    }

    /* HIDE DESKTOP */
    .contact-btn{
        display: none;
    }

    .lang-switch{
        display: none;
    }

    /* MOBILE MENU */
    .nav-links{
        position: fixed;
        top: 0;
        right: -100%;

        width: 280px;
        height: 100vh;

        background: #0b1e3b;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        padding: 110px 35px;
        gap: 28px;

        transition: 0.4s ease;
        z-index: 1000;
    }

    /* ACTIVE */
    .nav-links.active{
        right: 0;
    }

    /* MENU */
    .nav-links li{
        width: 100%;
        list-style: none;
    }

    .nav-links li a{
        color: white;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
    }

    /* DROPDOWN */
    .dropdown-menu{
        position: relative;
        top: 12px;
        left: 0;

        width: 100%;

        background: rgba(255,255,255,0.06);

        border-radius: 12px;

        padding: 10px 0;

        display: none;

        opacity: 1;
        visibility: visible;
    }

    .dropdown.active .dropdown-menu{
        display: block;
    }

    .dropdown-menu li a{
        padding: 12px 18px;
        display: block;
        font-size: 15px;
    }

}
/* ANIMATION */

@keyframes menuFade{

    from{

        opacity:0;

        transform:translateY(-10px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }

}

/* ================================= */
/* NAVBAR SCROLL EFFECT */
/* ================================= */

/* ================================= */
/* PREMIUM NAVBAR SCROLL */
/* ================================= */

.navbar.scrolled{
    background: rgba(8, 22, 46, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* TEXT MENU */

.navbar.scrolled .logo img{

    filter:none;
}

.navbar.scrolled .nav-links a{

    color:#0A1F44;
}

.navbar.scrolled .lang-switch{

    color:#0A1F44;
}



/* HOVER */

.navbar.scrolled .nav-links a:hover{

    color:#2563eb;
}

.navbar.scrolled .nav-links a::after{

    background:#2563eb;
}

/* NAVBAR HOVER LIGHT */

.navbar::before{

    content:'';

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.04),
    transparent);

    opacity:0;

    transition:.5s;
     pointer-events:none;
}

/* ================================= */
/* FAQ */
/* ================================= */

.faq{

    padding:100px 8%;

    background:#f8fafc;
}

.faq-container{

    max-width:900px;

    margin:auto;

    margin-top:60px;
}

.faq-item{

    background:white;

    margin-bottom:20px;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);

    transition:0.3s;
}

.faq-question{

    padding:25px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;
}

.faq-question h3{

    margin:0;

    font-size:18px;

    color:#0A1F44;
}

.faq-question span{

    font-size:30px;

    font-weight:bold;

    color:#0A1F44;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:0.4s ease;

    padding:0 30px;
}

.faq-answer p{

    color:#475569;

    line-height:1.8;

    padding-bottom:25px;
}

.faq-item.active .faq-answer{

    max-height:300px;
}

.faq-item.active .faq-question span{

    transform:rotate(45deg);
}

/* ================================= */
/* LOADING SCREEN */
/* ================================= */

.loader-wrapper{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:#07162f;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:opacity 1s ease,
               visibility 1s ease;
}

.loader{

    text-align:center;
}

.loader-circle{

    width:80px;
    height:80px;

    border:4px solid rgba(255,255,255,0.1);

    border-top:4px solid gold;

    border-radius:50%;

    margin:auto;

    animation:spin 1s linear infinite;
}

.loader h2{

    margin-top:25px;

    color:white;

    letter-spacing:2px;

    font-size:24px;
}

/* HIDE */

.loader-hidden{

    opacity:0;

    visibility:hidden;
}

/* ANIMATION */

@keyframes spin{

    100%{

        transform:rotate(360deg);
    }

}

/* ================================= */
/* PORTFOLIO MODAL */
/* ================================= */

.portfolio-modal{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:rgba(0,0,0,0.9);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;
}

.portfolio-modal img{

    max-width:90%;

    max-height:90vh;

    border-radius:15px;

    animation:zoomIn .4s ease;
}

.close-modal{

    position:absolute;

    top:30px;
    right:40px;

    color:white;

    font-size:50px;

    cursor:pointer;
}

@keyframes zoomIn{

    from{

        transform:scale(.7);

        opacity:0;
    }

    to{

        transform:scale(1);

        opacity:1;
    }

}


/* ================================= */
/* SMOOTH SECTION */
/* ================================= */

section{

    transition:all .5s ease;
}

/* ================================= */
/* HERO ANIMATION */
/* ================================= */

@keyframes gradientMove{

    0%{

        background-position:0% 50%;
    }

    50%{

        background-position:100% 50%;
    }

    100%{

        background-position:0% 50%;
    }

}

/* ================================= */
/* HERO GLOW */
/* ================================= */

.hero::before{

    content:'';

    position:absolute;

    width:600px;
    height:600px;

    background:rgba(59,130,246,0.18);

    border-radius:50%;

    filter:blur(120px);

    top:-180px;
    left:-150px;

    animation:floatGlow 8s ease-in-out infinite;
}

.hero::after{

    content:'';

    position:absolute;

    width:400px;
    height:400px;

    background:rgba(255,255,255,0.06);

    border-radius:50%;

    filter:blur(90px);

    bottom:-100px;
    right:-100px;

    animation:floatGlow 10s ease-in-out infinite;
}

@keyframes floatGlow{

    0%{

        transform:translateY(0px);
    }

    50%{

        transform:translateY(30px);
    }

    100%{

        transform:translateY(0px);
    }

}

/* ================================= */
/* CORPORATE HERO MODERN */
/* ================================= */

.corporate-hero{

    position:relative;

    min-height:65vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:140px 20px 100px;

    overflow:hidden;

    background:
    linear-gradient(
    rgba(7,22,47,0.75),
    rgba(10,31,68,0.75)
    ),

    url('/images/corporate-hero.jpg');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    color:white;
}

/* GRID EFFECT */

.corporate-hero::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(255,255,255,0.06);

    border-radius:50%;

    filter:blur(100px);

    top:-150px;
    left:-150px;
}
/* GLOW EFFECT */

.corporate-hero::after{

    content:'';

    position:absolute;

    width:600px;
    height:600px;

    background:rgba(59,130,246,0.15);

    border-radius:50%;

    filter:blur(120px);

    top:-200px;
    right:-150px;

    z-index:1;
}


/* LABEL */

.corporate-content span{

    color:#7dd3fc;

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:20px;
}

/* TITLE */

.corporate-content h1{

    font-size:58px;

    line-height:1.2;

    font-weight:700;

    max-width:850px;

    margin:auto;

    margin-bottom:25px;
}

/* DESCRIPTION */

.corporate-content p{

    max-width:700px;

    margin:auto;

    font-size:19px;

    line-height:1.8;

    color:#dbe4f0;

    margin-bottom:40px;
}

/* BUTTON */

.corporate-hero .btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    border-radius:14px;

    background:#5fa8c7;

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(95,168,199,.25);
}

.corporate-hero .btn-primary:hover{

    transform:translateY(-5px);

    background:white;

    color:#0A1F44;
}

/* MOBILE */

@media(max-width:768px){
    .corporate-hero{

    min-height:55vh;

    padding:120px 20px 80px;
}

.corporate-content h1{

    font-size:38px;
}

.corporate-content p{

    font-size:16px;
}

    
    .corporate-content h1{

        font-size:42px;

        line-height:1.3;
    }

    .corporate-content p{

        font-size:16px;

        line-height:1.8;
    }

  .navbar.scrolled .logo img{

    filter:none;
}

}

/* INTRO */

.corporate-intro{

    padding:120px 8%;

    background:white;
}

.corporate-service-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;
}

.corporate-image img{

    width:100%;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

.corporate-text h2{

    font-size:48px;

    color:#0A1F44;

    margin-bottom:25px;
}

.corporate-text p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:25px;
}

.corporate-text ul{

    list-style:none;

    padding:0;
}

.corporate-text ul li{

    margin-bottom:15px;

    color:#0A1F44;

    font-weight:500;
}

/* CTA */

/* ================================= */
/* CTA SECTION FIX */
/* ================================= */

.cta{

    position:relative;

    padding:120px 20px;

    background:#ffffff;

    text-align:center;

    overflow:hidden;

    z-index:5;
}

.cta h2{

    font-size:48px;

    color:#0A1F44;

    line-height:1.4;

    margin-bottom:35px;
}

.cta .btn-primary{

    margin-top:10px;
}

/* MOBILE */

@media(max-width:768px){

    .cta{

        padding:90px 20px;
    }

    .cta h2{

        font-size:32px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .corporate-grid,
    .corporate-service-grid{

        grid-template-columns:1fr;
    }

    .corporate-content h1{

        font-size:42px;
    }

    .corporate-text h2{

        font-size:34px;
    }

    .corporate-cta h2{

        font-size:34px;
    }

}

/* ================================= */
/* UMKM / CORPORATE CTA FIX */
/* ================================= */

.corporate-cta{

    position: relative;

    padding: 120px 20px;

    background: white;

    text-align: center;

    overflow: hidden;

    z-index: 10;
}

.corporate-cta h2{

    font-size: 48px;

    line-height: 1.4;

    color: #0A1F44;

    max-width: 850px;

    margin: auto;

    margin-bottom: 35px;
}

.corporate-cta .btn-primary{

    display: inline-flex;

    justify-content: center;

    align-items: center;
}

/* MOBILE */

@media(max-width:768px){

    .corporate-cta{

        padding: 90px 20px;
    }

    .corporate-cta h2{

        font-size: 32px;
    }

}

.corporate-hero .btn-primary{

    margin:auto;
}

/* CORPORATE GRID FIX */

.corporate-service-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;
}

.corporate-card{

    background:white;

    padding:40px 30px;

    border-radius:24px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,0.06);

    transition:0.4s ease;
}

.corporate-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.corporate-card h3{

    font-size:28px;

    color:#0A1F44;

    margin-bottom:18px;
}

.corporate-card p{

    font-size:17px;

    line-height:1.8;

    color:#64748b;
}

/* MOBILE */

@media(max-width:768px){

    .corporate-grid{

        grid-template-columns:1fr;
    }

}



.contact-hero{

    position:relative;

    min-height:65vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:140px 20px 100px;

    overflow:hidden;

    background:
    linear-gradient(
    rgba(7,22,47,0.75),
    rgba(10,31,68,0.75)
    ),

    url('/images/contact-hero.jpg');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    color:white;
}

.contact-hero::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(255,255,255,0.08);

    border-radius:50%;

    filter:blur(100px);

    top:-150px;
    left:-150px;
}

.contact-hero-content{

    position:relative;

    z-index:2;
}

.contact-hero-content{

    max-width:800px;
}

.contact-hero-content span{

    letter-spacing:3px;

    color:#7dd3fc;

    font-size:14px;

    text-transform:uppercase;
}

.contact-hero-content h1{

    font-size:64px;

    margin:20px 0;
}

.contact-hero-content p{

    font-size:20px;

    line-height:1.8;

    color:#dbe4f0;
}

/* ================================= */
/* CONTACT PAGE FIX */
/* ================================= */

.contact-section{

    padding:80px 7%;

    background:#f5f7fb;
}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:35px;

    align-items:start;
}

/* TITLE */

.contact-left h2,
.contact-right h2{

    font-size:22px;

    color:#0A1F44;

    margin-bottom:10px;

    font-weight:700;
}

.contact-subtitle{

    font-size:15px;

    color:#64748b;

    margin-bottom:28px;

    line-height:1.7;
}

/* CARD */

.contact-card{

    background:white;

    border:1px solid #e5e7eb;

    border-radius:20px;

    padding:24px;

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:20px;

    transition:0.3s;
}

.contact-card:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.contact-card span{

    display:block;

    font-size:14px;

    color:#64748b;

    margin-bottom:4px;
}

.contact-card h3{

    font-size:16px;

    color:#0A1F44;

    font-weight:600;
}

/* ICON */

.contact-icon{

    width:58px;
    height:58px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-size:22px;

    flex-shrink:0;
}

.contact-icon.blue{
    background:#2563eb;
}

.contact-icon.green{
    background:#10b981;
}

.contact-icon.orange{
    background:#f59e0b;
}

/* WA BUTTON */

.wa-contact-btn{

    width:100%;

    height:68px;

    background:#22c55e;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    text-decoration:none;

    color:white;

    font-size:16px;

    font-weight:600;

    margin-top:10px;

    transition:0.3s;
}

.wa-contact-btn:hover{

    background:#16a34a;
}

/* INFO */

.contact-bottom-info{

    display:flex;

    gap:24px;

    margin-top:28px;

    color:#64748b;

    font-size:14px;
}

.contact-bottom-info span{

    display:flex;

    align-items:center;

    gap:8px;
}

/* RIGHT */

.contact-right{

    background:white;

    padding:40px;

    border-radius:28px;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

/* FORM */

.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:18px;
}

.form-group{

    margin-bottom:18px;
}

.form-group input,
.form-group textarea{

    width:100%;

    border:1px solid #e5e7eb;

    background:#f8fafc;

    border-radius:16px;

    padding:18px 20px;

    font-size:15px;

    font-family:'Poppins',sans-serif;

    outline:none;

    transition:0.3s;
}

.form-group input:focus,
.form-group textarea:focus{

    border-color:#0A1F44;

    background:white;
}

.form-group textarea{

    height:140px;

    resize:none;
}

/* BUTTON */

.send-btn{

    width:100%;

    height:70px;

    border:none;

    background:#183b6b;

    color:white;

    border-radius:18px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    transition:0.3s;
}

.send-btn:hover{

    background:#0A1F44;
}

/* PRIVACY */

.privacy-text{

    text-align:center;

    margin-top:22px;

    color:#64748b;

    font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

    .contact-wrapper{

        grid-template-columns:1fr;
    }

    .form-grid{

        grid-template-columns:1fr;
    }

    .contact-right{

        padding:30px;
    }

}
.contact-card{
    text-decoration:none;
}
.contact-card{
    cursor:pointer;
}

/* ================================= */
/* UMKM HERO */
/* ================================= */

.umkm-hero{

    background:
    linear-gradient(
    rgba(7,22,47,0.75),
    rgba(10,31,68,0.75)
    ),

    url('/images/umkm-hero.jpg');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;
}

/* ================================= */
/* UMKM CARD */
/* ================================= */

.umkm-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    margin-top:60px;
}

.umkm-card{

    background:white;

    border-radius:24px;

    padding:45px 30px;

    text-align:center;

    transition:0.4s ease;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);

    min-height:320px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;
}

.umkm-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,0.10);
}

/* ICON */

.umkm-icon{

    width:85px;
    height:85px;

    border-radius:50%;

    background:#0A1F44;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:28px;

    transition:0.4s;
}

.umkm-card:hover .umkm-icon{

    background:#5fa8c7;

    transform:scale(1.08);
}

/* TITLE */

.umkm-card h3{

    font-size:24px;

    color:#0A1F44;

    margin-bottom:18px;
}

/* TEXT */

.umkm-card p{

    font-size:16px;

    line-height:1.9;

    color:#64748b;
}

/* MOBILE */

@media(max-width:992px){

    .umkm-grid{

        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .umkm-grid{

        grid-template-columns:1fr;
    }

}

section{

    position:relative;

    z-index:1;
}

/* ================================= */
/* DROPDOWN MENU */
/* ================================= */

.dropdown{

    position:relative;
}

.dropdown > a{

    display:flex;

    align-items:center;

    gap:8px;
}

.dropdown-menu{

   position:absolute;

    top:120%;

    left:0;

    min-width:240px;

    background:white;

    border-radius:18px;

    padding:10px;

    list-style:none;

    opacity:0;

    visibility:hidden;

    transform:translateY(10px);

    transition:0.3s ease;

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.dropdown-menu li{

    width:100%;
}

.dropdown-menu a{

   display:block;

    padding:14px 18px;

    border-radius:12px;

    color:#0A1F44 !important;

    text-decoration:none;

    font-size:15px;

    transition:0.3s;
}

.dropdown-menu a:hover{

    background:#f1f5f9;

    transform:translateX(4px);
}

/* SHOW DROPDOWN */

.dropdown.active .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

@media(max-width:768px){

    .logo img{

        height:45px;
    }

}


.title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}


.filter button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background: #0A1F44;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}


.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    padding: 10px;
}

.card p {
    padding: 0 10px 15px;
    color: #666;
}

.filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter button{

    padding:14px 34px;

    border:none;

    border-radius:999px;

    background:#f1f5f9;

    color:#64748b;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:0.3s ease;
}

/* HOVER */

.filter button:hover{

    background:#0A1F44;

    color:white;
}

/* ACTIVE */

.filter button.active{

    background:#0A1F44;

    color:white;
}



.card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.tags {
    margin-top: 10px;
}

.tags span {
    display: inline-block;
    background: #f1f1f1;
    padding: 5px 10px;
    margin: 3px;
    border-radius: 10px;
    font-size: 12px;
}

/* ================================= */
/* KATALOG HERO */
/* ================================= */

.catalog-hero{

    position:relative;

    min-height:70vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:140px 20px 100px;

    overflow:hidden;

    background:
    linear-gradient(
    rgba(7,22,47,0.75),
    rgba(10,31,68,0.75)
    ),
    url('/images/catalog-hero.jpg');

    background-size:cover;

    background-position:center;

    color:white;
}

.catalog-content{

    position:relative;

    z-index:2;

    max-width:900px;
}

.catalog-content span{

    letter-spacing:3px;

    color:#7dd3fc;

    font-size:14px;

    font-weight:600;
}

.catalog-content h1{

    font-size:64px;

    line-height:1.2;

    margin:20px 0;
}

.catalog-content p{

    font-size:20px;

    line-height:1.8;

    color:#dbe4f0;

    margin-bottom:40px;
}

/* SEARCH */

.catalog-search{

    max-width:650px;

    margin:auto;

    background:white;

    height:72px;

    border-radius:60px;

    display:flex;

    overflow:hidden;

    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.catalog-search input{

    flex:1;

    border:none;

    padding:0 25px;

    font-size:16px;

    outline:none;
}

.catalog-search button{

    width:80px;

    border:none;

    background:#0A1F44;

    color:white;

    font-size:20px;

    cursor:pointer;
}

/* ================================= */
/* INDUSTRY SECTION */
/* ================================= */

.industry-section{

    padding:80px 5%;

    background:#f8fafc;
}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

    margin-top:50px;
}

/* CARD */

.industry-card{

    background:#fff;

    border:1px solid #dfe7ef;

    border-radius:28px;

    padding:34px 38px;

    transition:0.35s ease;

    box-shadow:none;
}

.industry-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,0.04);
}

.industry-icon{

    width:72px;
    height:72px;

    border-radius:22px;

    background:#eef4f7;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;
}

.industry-icon i{

    font-size:30px;

    color:#5b9ab2;
}

.industry-card h3{

    font-size:28px;

    font-weight:700;

    line-height:1.35;

    color:#0A1F44;

    margin-bottom:18px;
}

.industry-card p{

    font-size:16px;

    line-height:1.8;

    color:#64748b;

    margin-bottom:28px;

    max-width:95%;
}

.industry-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;
}

.industry-tags span{

    background:#f1f5f9;

    color:#64748b;

    padding:8px 16px;

    border-radius:999px;

    font-size:14px;

    font-weight:500;
}

/* MOBILE */

@media(max-width:992px){

    .industry-grid{

        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .industry-card{

        padding:30px;
    }

    .industry-card h3{

        font-size:28px;
    }

    .industry-card p{

        font-size:16px;
    }

}

/* ================================= */
/* KATALOG GRID */
/* ================================= */

.catalog-section{

    padding:100px 8%;

    background:white;
}

.filter{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

    margin-bottom:50px;
}

.filter button{

    border:none;

    background:#f1f5f9;

    padding:14px 26px;

    border-radius:40px;

    cursor:pointer;

    font-weight:600;

    transition:0.3s;
}

.filter button:hover{

    background:#0A1F44;

    color:white;
}

.grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.card{

    background:white;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.06);

    transition:0.4s;
}

.card:hover{

    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.card h3{

    padding:25px 25px 10px;

    color:#0A1F44;
}

.card p{

    padding:0 25px;

    color:#64748b;

    line-height:1.8;
}

.tags{

    padding:25px;

    display:flex;

    flex-wrap:wrap;

    gap:10px;
}

.tags span{

    background:#eef2ff;

    color:#0A1F44;

    padding:8px 14px;

    border-radius:30px;

    font-size:13px;
}

/* MOBILE */

@media(max-width:992px){

    .industry-grid{

        grid-template-columns:repeat(3,1fr);
    }

    .grid{

        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .catalog-content h1{

        font-size:42px;
    }

    .industry-grid{

        grid-template-columns:1fr 1fr;
    }

    .grid{

        grid-template-columns:1fr;
    }

    .catalog-search{

        height:60px;
    }

}

/* CTA */
.cta-section{
    padding: 60px 20px;
    background: #f7f8fa;
}

.cta-box{
    max-width: 1100px;
    margin: auto;
    background: linear-gradient(135deg,#183b6b,#4f9ab7);
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.cta-box h2{
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
}

.cta-box p{
    font-size: 18px;
    opacity: .95;
    margin-bottom: 35px;
}

.cta-buttons{
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary{
    padding: 14px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary{
    background: white;
    color: #183b6b;
}

.btn-primary:hover{
    transform: translateY(-2px);
}

.btn-secondary{
    border: 1px solid rgba(255,255,255,.5);
    color: #183b6b;
}

.btn-secondary:hover{
    background: rgba(255,255,255,.1);
}

/* ================================= */
/* MATERIAL SECTION */
/* ================================= */

.material-section{

     padding:90px 6%;

    background:#f8fafc;
}



.material-grid{

    display:grid;

    grid-template-columns:repeat(3, 320px);

    justify-content:center;

    gap:28px;

    margin-top:50px;
}

/* CARD */

.material-card{

    background:white;

    border:1px solid #dbe4f0;

    border-radius:26px;

    padding:35px 24px;

    text-align:center;

    min-height:300px;

    transition:0.4s ease;
}

.material-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* ICON */

.material-icon{

    width:72px;
    height:72px;

    border-radius:22px;

    margin:auto;

    margin-bottom:24px;
}

.material-icon i{

    font-size:28px;
}

.material-icon i{

    font-size:38px;

    color:#4b91a8;
}

/* TITLE */

.material-card h3{

    font-size:22px;

    line-height:1.3;

    margin-bottom:16px;
}

/* TEXT */

.material-card p{

     font-size:15px;

    line-height:1.7;

    color:#64748b;
}

/* MOBILE */

@media(max-width:992px){

    .material-grid{

        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .material-card{

        padding:40px 30px;
    }

    .material-card h3{

        font-size:28px;
    }

    .material-card p{

        font-size:16px;
    }

}

/* ============================= */
/* PRODUK BUNGKUSIN STYLE CLEAN */
/* ============================= */

.produk-section {
    padding: 80px 20px;
    background: #f5f7fa;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.produk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.produk-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    text-decoration: none;
    color: #0A1F44;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.produk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.produk-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.produk-card p {
    font-size: 14px;
    color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .produk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .produk-grid {
        grid-template-columns: 1fr;
    }
} 
/* =========================================
ABOUT HERO
========================================= */

/* FIX ABOUT HERO IMAGE */

.about-hero{

    height: 480px;

    position: relative;

    background:
    linear-gradient(
    rgba(10,31,68,.72),
    rgba(10,31,68,.72)
    ),
    url('/images/herokami.jpg');

    background-size: cover;
    background-position: center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    overflow:hidden;
}

.about-hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

    padding:0 20px;
}

/* TITLE */

.about-hero-content h1{

    font-size:52px;

    font-weight:700;

    line-height:1.2;

    color:#ffffff;

    margin-bottom:22px;

    letter-spacing:-1px;
}

/* DESCRIPTION */

.about-hero-content p{

    font-size:18px;

    line-height:1.9;

    color:#dbe4f0;

    font-weight:400;

    max-width:700px;

    margin:auto;
}

/* MOBILE */

@media(max-width:768px){

    .about-hero{

        height:420px;
    }

    .about-hero-content h1{

        font-size:34px;

        line-height:1.3;
    }

    .about-hero-content p{

        font-size:16px;

        line-height:1.8;
    }

}

/* =========================================
ABOUT INFO
========================================= */

.about-info{
    padding:100px 7%;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.about-card{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:32px;
    text-align:center;
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.about-icon{
    width:65px;
    height:65px;
    background:#eef7fb;
    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto;
    margin-bottom:30px;
}

.about-icon i{
    font-size:24px;
    color:#4b8ca7;
}

.about-card h3{
    font-size:24px;
    line-height:1.3;
    margin-bottom:25px;
    color:#0f172a;
}

.about-card p{
    font-size:16px;
    line-height:1.8;
    color:#64748b;
}

.team-section{

    width: 100%;

    height: 500px;

    background:
    linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)),
    url('/images/team1.jpg');

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 40px;
}


/* CONTENT */

.team-overlay{

    max-width: 800px;

    color: white;
}

.team-overlay h2{

    font-size: 52px;

    margin-bottom: 20px;

    font-weight: 700;
}

.team-overlay p{

    font-size: 20px;

    line-height: 1.8;

    color: rgba(255,255,255,0.9);
}


/* MOBILE */

@media(max-width:768px){

    .team-section{

        height: 400px;
    }

    .team-overlay h2{

        font-size: 38px;
    }

    .team-overlay p{

        font-size: 17px;
    }
}

/* ================================= */
/* ABOUT CTA */
/* ================================= */

.about-cta{

    padding:60px 7%;

    background:#f8fafc;
}

.cta-box{

    max-width:1000px;

    margin:auto;

    background:
    linear-gradient(135deg,#17365f,#4b9bb5);

    border-radius:28px;

    padding:55px 35px;

    text-align:center;

    color:white;

    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* TITLE */

.cta-box h2{

    font-size:34px;

    line-height:1.4;

    margin-bottom:16px;

    font-weight:700;
}

/* TEXT */

.cta-box p{

    font-size:16px;

    color:#dbeafe;

    margin-bottom:28px;

    line-height:1.8;
}

/* BUTTON WRAPPER */

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:14px;

    flex-wrap:wrap;
}

/* BUTTON */

.cta-primary,
.cta-secondary{

    padding:13px 26px;

    border-radius:12px;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    transition:.3s;
}

/* PRIMARY */

.cta-primary{

    background:white;

    color:#17365f;
}

/* SECONDARY */

.cta-secondary{

    border:1px solid rgba(255,255,255,.4);

    color:white;
}

/* HOVER */

.cta-primary:hover,
.cta-secondary:hover{

    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

    .cta-box{

        padding:45px 25px;
    }

    .cta-box h2{

        font-size:26px;
    }

    .cta-box p{

        font-size:15px;
    }

}

/* RIGHT NAVBAR */

.nav-right{
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 20px;
}

/* BUTTON */

.contact-btn{

    background:white;

    color:#0A1F44;

    padding:14px 24px;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    transition:.3s ease;
}

.contact-btn:hover{
    transform: translateY(-2px);
}

/* TRANSLATE */

.lang-switch{
    display: flex;
    align-items: center;
    gap: 8px;

    color: white;
    font-weight: 600;
}

.lang-switch select{
    background: transparent;
    border: none;
    color: white;
    outline: none;
    font-weight: 600;
    cursor: pointer;
}

.lang-switch option{
    color: black;
}

.contact-btn{
    background: white;
    color: #16335B;

    padding: 16px 28px;

    border-radius: 16px;
    text-decoration: none;

    font-weight: 600;
    font-size: 15px;

    transition: 0.3s ease;
}

/* ================================= */
/* NAVBAR */
/* ================================= */

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    transition: 0.3s ease;
}

/* SAAT SCROLL */
.navbar.scrolled{
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* CONTAINER */
.nav-container{
    width: 92%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* LOGO */
.logo img{
    width: 120px;
    display: block;
}

/* MENU TENGAH */
.nav-links{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 42px;

    list-style: none;
}

/* LINK */
.nav-links li{
    position: relative;
}

.nav-links li a{
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

/* ACTIVE */
.nav-links li a.active-nav{
    background: rgb(255, 255, 255);
    padding: 10px 18px;
    border-radius: 14px;
    color: #0A1F44;
}

/* HOVER */
.nav-links li a:hover{
    color: #73d0ff;
}


/* HUBUNGI KAMI */
.contact-btn{
    background: white;
    color: #16335B;
    padding: 14px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

/* SAAT NAVBAR SCROLL */
.navbar.scrolled .contact-btn{
    background: #4ca6df;
    color: white;
}

/* DROPDOWN */
.dropdown-menu{
    position: absolute;
    top: 45px;
    left: 0;

    min-width: 230px;

    background: white;
    border-radius: 18px;
    padding: 12px 0;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;

    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.dropdown.active .dropdown-menu{
    opacity: 1;
    visibility: visible;
    top: 52px;
}

.dropdown-menu li{
    list-style: none;
}

.dropdown-menu li a{
    display: block;
    padding: 13px 22px;
    color: #111;
    font-size: 14px;
}

.dropdown-menu li a:hover{
    background: #f4f8fb;
    color: #3498db;
}

/* =========================
MOBILE MENU STYLE BUNGKUSIN
========================= */

.mobile-menu{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:78vh;
    background:#fff;
    z-index:99999;

    border-bottom-left-radius:24px;
    border-bottom-right-radius:24px;

    transform:translateY(-120%);
    transition:.45s ease;

    overflow-y:auto;
    overflow-x:hidden;

    box-shadow:0 10px 40px rgba(0,0,0,.12);
}

.mobile-menu.active{
    transform:translateY(0);
}

/* HEADER */

.mobile-top{
    height:88px;
    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:linear-gradient(
        90deg,
        #17345f,
        #0e2648
    );

    position:sticky;
    top:0;
    z-index:10;
}

.mobile-top img{
    height:42px;
    object-fit:contain;
}

.close-menu{
    color:#fff;
    font-size:26px;
    cursor:pointer;
    font-weight:300;
}

/* MENU */

.mobile-links{
    list-style:none;
    padding:24px 22px 10px;
    margin:0;
}

.mobile-links li{
    margin-bottom:18px;
}

.mobile-links li a{
    display:block;
    font-size:16px;
    font-weight:500;
    color:#17345f;
    text-decoration:none;

    padding:14px 0;
}

/* MENU UTAMA */

.mobile-links > li > a{
    text-decoration:none;
    color:#16345c;
    font-size:16px;
    font-weight:500;
    line-height:1.4;
}

/* ACTIVE */

.mobile-links > li:first-child > a{
    background:#edf3f5;
    color:#4b93b8;
    padding:11px 14px;
    border-radius:14px;
    display:block;
}

/* TITLE */

.mobile-title{
    font-size:16px;
    font-weight:600;
    color:#17345f;

    margin-top:22px;
    margin-bottom:8px;
}

/* SUBMENU */

.sub-link{
    padding-left:18px !important;
    font-size:15px !important;
    color:#3c4b64 !important;
}

/* BOTTOM */

.mobile-bottom{
    padding:22px;
    margin-top:10px;

    border-top:1px solid #ececec;

    display:flex;
    align-items:center;
    gap:14px;

    position:sticky;
    bottom:0;

    background:#fff;
}

/* LANGUAGE */

.mobile-lang{
    display:flex;
    align-items:center;
    gap:10px;
    color:#16345c;
    font-size:15px;
    font-weight:500;
    white-space:nowrap;
    cursor:pointer;
}

.mobile-lang i{
    font-size:18px;
}

/* BUTTON */

.mobile-contact{
    flex:1;
    background:#183763;
    color:white !important;
    text-decoration:none;
    text-align:center;
    padding:13px 18px;
    border-radius:14px;
    font-size:15px;
    font-weight:600;
}

/* =========================
RESPONSIVE NAVBAR
========================= */

@media(max-width:991px){

    /* NAVBAR */

    .navbar{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        z-index:9999;
        background:transparent;
        transition:.35s ease;
        padding:0;
    }

    /* SAAT SCROLL */

    .navbar.scrolled{
        background:rgba(255,255,255,.96);
        backdrop-filter:blur(14px);
        box-shadow:0 4px 20px rgba(0,0,0,.06);
    }

    /* CONTAINER */

    .nav-container{
        height:84px;
        padding:0 20px;
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    /* LOGO */

    .logo img{
        height:75px;
        object-fit:contain;
        transition:.3s;
    }

    /* MENU DESKTOP HILANG */

    .nav-links,
    .contact-btn,
    .lang-switch{
        display:none !important;
    }

    /* HAMBURGER */

    .menu-toggle{
        display:flex !important;
        align-items:center;
        justify-content:center;
        width:42px;
        height:42px;
        border-radius:10px;
        cursor:pointer;
        transition:.3s;
    }

    .menu-toggle i{
        font-size:24px;
        color:white;
        transition:.3s;
    }

    /* SAAT SCROLL */

    .navbar.scrolled .menu-toggle i{
        color:#17345f;
    }

}

/* DESKTOP */

@media(min-width:992px){

    .mobile-menu{
        display:none !important;
    }

}


/* MOBILE NAVBAR */

@media(max-width:991px){

    .navbar{
        background:transparent;
        transition:.35s ease;
    }

    .navbar.scrolled{
        background:rgba(255,255,255,.96);
        backdrop-filter:blur(14px);
        box-shadow:0 4px 18px rgba(0,0,0,.06);
    }

    .navbar.scrolled .menu-toggle i{
        color:#17345f;
    }

    .menu-toggle i{
        color:#fff;
        transition:.3s;
    }

}

/* ============================= */
/* MOBILE MENU - BUNGKUSIN STYLE */
/* ============================= */

.mobile-menu{
    background:#ffffff;
    border-bottom-left-radius:24px;
    border-bottom-right-radius:24px;
}

/* HEADER */

.mobile-top{
    height:88px;
    padding:0 22px;
    background:#14345d;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.mobile-top img{
    height:34px;
    object-fit:contain;
}

/* CLOSE */

.close-menu i{
    color:white;
    font-size:18px;
    font-weight:500;
}

/* LINKS */

.mobile-links{
    padding:22px 24px 0;
}

/* MENU UTAMA */

.mobile-links li a{
    font-size:15px;
    font-weight:500;
    color:#16345d;
    text-decoration:none;
    display:block;
    padding:10px 0;
    font-family:'Poppins', sans-serif;
    letter-spacing:-0.2px;
}

/* ACTIVE MENU */

.mobile-links li:first-child a{
    background:#eef3f5;
    border-radius:14px;
    padding:14px 16px;
    color:#4a91bb;
}

/* TITLE */

.mobile-title{
    font-size:15px;
    font-weight:500;
    color:#16345d;
    margin-top:18px;
    margin-bottom:4px;
    font-family:'Poppins', sans-serif;
}

/* SUB MENU */

.sub-link{
    font-size:14px !important;
    font-weight:400 !important;
    color:#17345f !important;
    padding:8px 0 8px 18px !important;
    opacity:.95;
}

/* BOTTOM */

.mobile-bottom{
    margin-top:18px;
    padding:18px 24px 22px;
    border-top:1px solid #ececec;
    gap:14px;
}

/* LANGUAGE */

.mobile-lang{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    color:#17345f;
    font-weight:500;
}

.mobile-lang i{
    font-size:17px;
}

/* BUTTON */

.mobile-contact{
    flex:1;
    height:54px;
    background:#1d3f6e;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:white;
    font-size:15px;
    font-weight:600;
    font-family:'Poppins', sans-serif;
}

/* SPACING */

.mobile-links li{
    list-style:none;
}

.success-alert{
    background: #d1fae5;
    color: #065f46;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo{
    margin-bottom: 20px;
}

.footer-logo img{
    width: 190px;
    height: auto;
    display: block;
}

/* ================================= */
/* FOOTER LOGO ALIGN */
/* ================================= */

.footer-company{

    display:flex;

    flex-direction:column;

    justify-content:flex-start;
}

.footer-logo{

    margin-bottom:22px;

    display:flex;

    align-items:center;
}

.footer-logo img{

    width:170px;

    height:auto;

    object-fit:contain;

    display:block;
}

/* ================================= */
/* FOOTER FIX ALIGN */
/* ================================= */

.footer-col{

    display:flex;

    flex-direction:column;

    justify-content:flex-start;
}

    .footer-company{

        margin-top:-10px;
    }

.footer-logo{

    margin-bottom:-5px;
}

.footer-logo img{

    width:160px;

    display:block;

    filter:
    brightness(0)
    invert(1);

    opacity:0.95;
}

.footer-company p{

    margin-top:-8px;

    line-height:2;

    max-width:320px;
}

.footer-col h3{

    margin-top:0;

    margin-bottom:26px;
}

.hero-section {
    height: 50vh;
    background: url('/images/hero-packaging.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* efek gelap biar teks jelas */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 10px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 25px;
    opacity: 0.9;
}