/* ==========================
   NAVBAR
========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(10px);
    z-index:9999;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.35s;

}

.nav-wrapper{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img{
    width:90px;
    height:auto;
    display:block;
    padding:8px 0;

}

.logo:hover img{
    transform:translateY(-2px) scale(1.05);

}

nav ul{
    display: flex;
    gap: 35px;
}

nav a{
    color:#0B3A75;
    font-weight:600;
    transition:.3s;

}

nav a:hover{
    color:#F2B705;

}

nav a.active{
    color:#F2B705;
    font-weight:700;

}

nav.active{
    display:block;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

nav.active ul{
    flex-direction:column;
    gap:0;

}

nav.active li{
    border-bottom:1px solid #eeeeee;

}

nav.active a{
    display:block;
    padding:18px 25px;

}

.navbar.scrolled{
    background:#ffffff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

/* ==========================
   HERO
========================== */

.hero{
    min-height:100vh;
    padding-top:120px;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
    overflow:hidden;
    isolation:isolate;

    background:linear-gradient(
    135deg,
    #ffffff 0%,
    #f7faff 45%,
    #eef5ff 100%
);
}

.hero-left{
    animation:fadeUp .9s ease;
}

.hero-right{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    animation:fadeUp 1.2s ease;
}

.hero-right{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* animation: fadeUp 1.2s ease; */
}

/* ---------- Left ---------- */

.hero-left h1{
    font-size:64px;
    font-weight:800;
    line-height:1.15;
    color:#0B3A75;
    margin-bottom:25px;

}

.hero-left h1 span{
    display:block;
    color:#F2B705;

}

.hero-left p{
    font-size:20px;
    line-height:1.9;
    color:#555;
    max-width:520px;
    margin-bottom:45px;

}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    margin-bottom:20px;
    border-radius:50px;
    background:#FFF4D4;
    color:#B8860B;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

}

.hero-buttons{
    display:flex;
    gap:18px;
    align-items:center;

}

.btn-secondary{
    display:inline-block;
    padding:16px 40px;
    border-radius:50px;
    border:2px solid #0B3A75;
    color:#0B3A75;
    font-weight:700;
    transition:.35s;

}

.btn-secondary:hover{
    background:#0B3A75;
    color:#fff;

}

/* ---------- Right ---------- */


.hero-right::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:#F2B705;
    opacity:.10;
    z-index:1;
}

.hero-right img{
    width:430px;
    position:relative;
    z-index:2;
    animation:floating 4s ease-in-out infinite;
}

/* ==========================
   HERO DECORATION
========================== */

.hero-shape{

    position:absolute;
    border-radius:50%;
    z-index:-1;

}

.hero-shape-1{

    width:420px;
    height:420px;

    background:rgba(242,183,5,.08);

    top:-120px;
    right:-120px;

}

.hero-shape-2{

    width:260px;
    height:260px;

    background:rgba(11,58,117,.05);

    bottom:50px;
    left:-80px;

}

.hero-shape-3{

    width:120px;
    height:120px;

    background:rgba(242,183,5,.15);

    bottom:120px;
    right:25%;

}

.hero-content{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
    width:100%;
}
/* ==========================
   BUTTON
========================== */

.btn-primary{
    display: inline-block;
    padding: 18px 42px;
    background: #F2B705;
    color: #111;
    border-radius: 50px;
    font-weight: 700;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(242,183,5,.25);
}

.btn-primary:hover{
    background: #0B3A75;
    color: #fff;
    transform: translateY(-4px);
}

.hero-features{
    display:flex;
    gap:25px;
    margin-top:35px;
    flex-wrap:wrap;

}

/* ==========================
   HERO WAVE
========================== */

.hero-content{
    position:relative;
    z-index:2;
}

.hero-wave{
    z-index:1;
}

.hero-wave svg{
    display:block;
    width:100%;
    height:90px;

}

.feature-item{
    display:flex;
    align-items:center;
    font-size:15px;
    font-weight:600;
    color:#0B3A75;

}

/* ==========================
   SCROLL DOWN
========================== */

.scroll-down{
    margin-top: 45px;
    font-size: 34px;
    color: #F2B705;
    animation: bounce 2s infinite;
}

/* ==========================
   ABOUT
========================== */

.about{
    padding:100px 0;
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    display:inline-block;
    padding:8px 20px;
    background:#FFF4D4;
    color:#B8860B;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-title h2{
    font-size:42px;
    color:#0B3A75;
    margin-bottom:20px;
}

.section-title p{
    max-width:750px;
    margin:auto;
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:60px;

}

.about-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
    border:1px solid #EEF2F7;

}

.about-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(11,58,117,.15);

}

.about-card .icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#0B3A75;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
}

.about-card .icon i{
    transition:.35s;
}

.about-card .icon::after{
    content:"";
    position:absolute;

}

.about-card:hover .icon{
    background:#F2B705;

}

.about-card:hover .icon i{
    color:#0B3A75;
    transform:scale(1.15);

}

.about-card h3{
    color:#0B3A75;
    font-size:22px;
    margin-bottom:18px;
    text-align:center;
    line-height:1.4;

}

.about-card p{
    color:#666;
    line-height:1.9;
    text-align:justify;

}

/* ==========================
   MOBILE MENU
========================== */

.menu-toggle{
    display:none;
    font-size:34px;
    cursor:pointer;
    color:#0B3A75;
    user-select:none;

}



/* ==========================
   OBJECTIVES
========================== */

.objectives{
    padding:100px 0;
    background:#fff;

}

.timeline{
    position:relative;
    max-width:850px;
    margin:60px auto 0;
    padding-left:40px;
    border-left:3px solid #E8E8E8;

}

.timeline-item{
    position:relative;
    margin-bottom:50px;

}

.timeline-item:last-child{
    margin-bottom:0;

}

.timeline-dot{
    position:absolute;
    left:-52px;
    top:8px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#F2B705;
    border:4px solid #fff;
    box-shadow:0 0 0 3px #0B3A75;

}

.timeline-content{
    background:#fff;
    padding:25px;
    border-radius:16px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;

}

.timeline-content:hover{
    transform:translateY(-6px);

}

.timeline-content h3{
    color:#0B3A75;
    margin-bottom:10px;

}

.timeline-content p{
    color:#666;
    line-height:1.8;

}

/* ==========================
   PROCESS
========================== */

.process{
    padding:100px 0;
    background:#f8fbff;

}

.process-grid{
    display:flex;
    flex-direction:column;
    gap:25px;
    margin-top:60px;

}

.process-card{
    display:flex;
    align-items:flex-start;
    gap:30px;
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:var(--transition);
    border:1px solid #EEF2F7;
    text-align:center;
	border-left:6px solid #F2B705;

}

.process-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(11,58,117,.15);

}

.process-card h3{
    color:#0B3A75;
    margin-bottom:10px;
    font-size:24px;

}

.process-card h3::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#F2B705;
    margin:15px auto 0;
    border-radius:10px;

}

.process-card p{
    color:#666;
    line-height:1.9;

}

.process-icon{
    width:120px;
    height:120px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;

}

.process-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.35s;

}

.process-card:hover .process-icon img{
    transform:scale(1.08);

}

.process-card > div:last-child{
    max-width:700px;
    margin:auto;

}
/* ==========================
   BENEFITS
========================== */

.benefits{
    padding:100px 0;
    background:#ffffff;

}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;

}

.benefit-card{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;

}

.benefit-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(11,58,117,.15);

}

.benefit-card i{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#0B3A75;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:42px;

}

.benefit-card h3{
    color:#0B3A75;
    margin-bottom:15px;

}

.benefit-card p{
    color:#666;
    line-height:1.8;

}

/* ==========================
   BACK TO TOP
========================== */

.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#0B3A75;
    color:#fff;
    font-size:28px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s;
    z-index:9999;

}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);

}

.back-to-top:hover{
    background:#F2B705;
    color:#111;
    transform:translateY(-5px);

}

/* ==========================
   STAGGER ANIMATION
========================== */

.about-card,
.process-card,
.benefit-card,
.timeline-item{

    opacity:0;
    transform:translateY(40px);
    transition:all .7s ease;

}

.reveal.active .about-card,
.reveal.active .process-card,
.reveal.active .benefit-card,
.reveal.active .timeline-item{

    opacity:1;
    transform:translateY(0);

}

/* Delay */

.reveal.active .about-card:nth-child(1),
.reveal.active .process-card:nth-child(1),
.reveal.active .benefit-card:nth-child(1),
.reveal.active .timeline-item:nth-child(1){

    transition-delay:.10s;

}

.reveal.active .about-card:nth-child(2),
.reveal.active .process-card:nth-child(2),
.reveal.active .benefit-card:nth-child(2),
.reveal.active .timeline-item:nth-child(2){

    transition-delay:.25s;

}

.reveal.active .about-card:nth-child(3),
.reveal.active .process-card:nth-child(3),
.reveal.active .benefit-card:nth-child(3),
.reveal.active .timeline-item:nth-child(3){

    transition-delay:.40s;

}

.reveal.active .process-card:nth-child(4),
.reveal.active .timeline-item:nth-child(4){

    transition-delay:.55s;

}

/* ==========================
   FAQ
========================== */

.faq{
    padding:100px 0;
    background:#f8fbff;

}

.faq-list{
    max-width:850px;
    margin:60px auto 0;

}

.faq-item{
    background:#fff;
    border-radius:18px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.faq-question{
    width:100%;
    padding:24px 30px;
    border:none;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    font-weight:700;
    color:#0B3A75;
    cursor:pointer;

}

.faq-question span{
    font-size:28px;
    transition:.3s;

}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;

}

.faq-answer p{
    padding:0 30px 25px;
    color:#666;
    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active .faq-question span{

    transform:rotate(45deg);

}


/* ==========================
   CONTACT
========================== */

.contact{
    background:var(--white);

}

.contact-wrapper{
    margin-top:60px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;

}

.contact-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:var(--bg);
    padding:25px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:var(--transition);

}

.contact-item:hover{
    transform:translateY(-5px);

}

.contact-item i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--primary);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;

}

.contact-item h3{
    margin-bottom:8px;
    color:var(--primary);

}

.contact-item p{
    color:var(--text);

}

.contact-map iframe{
    width:100%;
    height:100%;
    min-height:420px;
    border:0;
    border-radius:var(--radius);
    box-shadow:var(--shadow);

}

/* ==========================
   CTA
========================== */

.cta{
    padding:100px 0;

}

.cta-box{
    background:linear-gradient(135deg,var(--primary),#154b91);
    border-radius:30px;
    text-align:center;
    padding:80px 40px;
    color:var(--white);
    box-shadow:var(--shadow);

}

.cta-box span{
    display:inline-block;
    margin-bottom:30px;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    font-size:15px;
    letter-spacing:1px;

}

.cta-box h2{
    color:var(--white);
    font-size:46px;
    margin-bottom:20px;

}

.cta-box p{
    color:rgba(255,255,255,.9);
    max-width:700px;
    margin:0 auto 35px;

}

.cta .btn{
    background:var(--secondary);
    color:var(--dark);
    font-weight:bold;

}

.cta .btn:hover{
    background:#FFD54A;
    transform:translateY(-5px);

}

.cta-logo{
    width:150px;
    height:auto;
    display:block;
    margin:0 auto 25px;
    transition:var(--transition);

}

.cta-logo:hover{
    transform:scale(1.05);

}


/* ==========================
   FOOTER
========================== */

.footer{

    background:#0B3A75;

    color:#fff;

    padding:70px 0 25px;

}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.2fr 1fr;
    gap:40px;

}

.footer-logo{
    width:90px;
    margin-bottom:20px;

}

.footer h3,
.footer h4{
    color:#fff;
    margin-bottom:18px;

}

.footer p{
    color:rgba(255,255,255,.85);
    line-height:1.8;

}

.footer-links ul li{
    margin-bottom:12px;

}

.footer-links a{
    color:rgba(255,255,255,.85);
    transition:.3s;

}

.footer-links a:hover{
    color:#F2B705;
    padding-left:6px;

}

.footer-contact p{
    margin-bottom:12px;

}

.footer-contact i{
    color:#F2B705;
    margin-right:8px;

}

.social-icons{
    display:flex;
    gap:12px;

}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    transition:.3s;

}

.social-icons a:hover{
    background:#F2B705;
    color:#0B3A75;
    transform:translateY(-5px);

}

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;

}

/* ==========================
   eligible
========================== */

.eligible{
    padding:100px 0;
    background:#fff;

}

.eligible-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;

}

.eligible-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
    text-align:center;
    transition:.35s;
    border:1px solid #EEF2F7;

}

.eligible-card:hover{
    transform:translateY(-8px);

}

.eligible-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#0B3A75;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:42px;

}

.eligible-card h3{
    color:#0B3A75;
    margin-bottom:18px;

}

.eligible-card p{
    color:#666;
    line-height:1.9;

}

.eligible-note{
    margin-top:50px;
    background:#FFF4D4;
    border-left:6px solid #F2B705;
    padding:25px 30px;
    border-radius:15px;
    display:flex;
    align-items:center;
    gap:20px;

}

.eligible-note i{
    font-size:36px;
    color:#B8860B;

}

/* ==========================
   benefit
========================== */

.benefit-tagline{
    margin-top:50px;
    text-align:center;

}

.benefit-card i{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#0B3A75;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:42px;
    transition:.35s;

}

.benefit-tagline p{
    max-width:700px;
    margin:auto;
    line-height:1.9;
    color:#666;

}

.benefit-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(11,58,117,.15);

}

.benefit-card:hover i{
    background:#F2B705;
    color:#0B3A75;

}

.benefit-tagline{
    margin-top:60px;
    text-align:center;

}

.benefit-tagline i{
    font-size:42px;
    color:#F2B705;
    margin-bottom:20px;

}

.benefit-tagline p{
    max-width:700px;
    margin:auto;
    line-height:1.9;
    color:#666;

}
/* ========================================
   PAGE HEADER
======================================== */

.page-header{
    position:relative;
    padding:45px 0;
    color:#fff;
    text-align:center;
    background:url("../img/banner-bg.jpg") center center;
    background-size:cover;
    overflow:hidden;

}

.page-header::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(11,58,117,.90),
        rgba(11,58,117,.72)
    );
    z-index:1;
}

.page-header .container{
    position:relative;
    z-index:2;

}

.page-header h1{
    font-size:46px;
    font-weight:700;
    color:#fff;
    margin:0;
    line-height:1.2;

}

.page-header-desc{
    max-width:750px;
    margin:0 auto;
    color:rgba(255,255,255,.9);
    line-height:1.7;
    font-size:18px;

}

.page-header-title{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-bottom:12px;

}

.header-logo{
    width:90px;
    height:auto;
    transition:.35s;

}

.header-logo:hover{
    transform:scale(1.05);

}

.logo-left{
    width:85px;

}

.logo-right{
    width:70px;

}
/* ========================================
   VIDEO GALLERY
======================================== */

.video-gallery{
    padding:70px 0 100px;
    background:#f8f9fb;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.video-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #E8EEF5;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:all .35s ease;

}

.video-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
	border-color:#0B3A75;
	box-shadow:0 20px 45px rgba(0,0,0,.12),
	0 0 0 3px rgba(11,58,117,.08);	

}

.video-thumb{
    position:relative;
    display:block;
    overflow:hidden;
    cursor:pointer;
	background:#e9ecef;

}

.video-thumb img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    display:block;
    transition:.45s;

}

.video-card:hover .video-thumb::after{
    opacity:1;

}

.play-button{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:54px;
    height:54px;
    border-radius:50%;
	background:rgba(255,255,255,.25);
	backdrop-filter:blur(6px);
	border:1px solid rgba(255,255,255,.4);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    font-weight:bold;
    line-height:1;
    transition:.35s;
    box-shadow:0 8px 20px rgba(0,0,0,.25);

}

.video-thumb::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.12);
    opacity:0;
    transition:.35s;
    z-index:1;

}

.video-thumb::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        #e9ecef 25%,
        #f8f9fa 50%,
        #e9ecef 75%
    );
    background-size:200% 100%;
    animation:loading 1.2s infinite;

}


.video-card h3{
    padding:18px;
    font-size:18px;
    font-weight:600;
    color:#0B3A75;
    line-height:1.5;
    text-align:center;

}


.video-thumb img{
    position:relative;
    z-index:2;

}

/* ========================================
   VIDEO MODAL
======================================== */

.video-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:20px;

}

.video-modal.active{
    display:flex;

}

.video-modal-content{
    position:relative;
    width:100%;
    max-width:1000px;
	opacity:0;
	transform:scale(.9);
	transition:.35s;	

}

.video-modal iframe{
    width:100%;
    aspect-ratio:16/9;
    border:none;
    border-radius:15px;
    background:#000;

}

.close-video{
    position:absolute;
    right:-10px;
    top:-45px;
    color:#fff;
    font-size:40px;
    cursor:pointer;
    transition:.3s;

}

.close-video:hover{
    color:#ff4b4b;

}

.video-modal.active .video-modal-content{
    opacity:1;
    transform:scale(1);

}


/*==================================================
GALERI VIDEO HOMEPAGE
==================================================*/

.video-home{
    padding:100px 0;
    background:#f8f9fc;

}

.video-home-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;

}

.video-home-card{
    display:block;
    text-decoration:none;

}

.video-home-thumb{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
	aspect-ratio:16/9;	

}

.video-home-thumb img{
    width:100%;
    display:block;
    transition:.4s;
	height:100%;
	object-fit:cover;	

}

.video-home-thumb:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.video-home-thumb:hover img{
    transform:scale(1.08);

}

.video-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#1f3bb3;
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:7px 14px;
    border-radius:50px;
    z-index:5;

}

.video-home-button{
    text-align:center;
    margin-top:45px;

}

/*=====================================
GALERI GAMBAR
======================================*/

.gallery-home{
    padding:100px 0;
    background:#ffffff;

}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;

}

.gallery-last-row{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:25px;

}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    aspect-ratio:1/1;

}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;

}

.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.gallery-item:hover img{
    transform:scale(1.08);

}

