/********** Template CSS **********/
:root {
    --primary: #e80844;
    --secondary: #dc3545;
    --accent: #ff4500;
    --dark: #000000;
    --light: #f5f5f5;
    --text-secondary: #cccccc;
}

@font-face {
    font-family: 'The Last Shuriken';
    src: url('../fonts/TheLastShuriken.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html,
body {
    overflow-x: hidden;
    /* background-color: var(--dark); */
     /* background-color: #e80844;  */
     
     color: var(--light);
    /* color: var(--text);
    line-height: 1.6; */
    /* background: #000000; */
    
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(232, 8, 68, 1) 50%, rgba(0, 0, 0, 1) 100%);
    /* background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(232, 8, 68, 1) 50%, rgba(0, 0, 0, 1) 100%);  */
}

/* Flames Animation */
.flames-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: -1;
    opacity: 0.7;
}

.flame {
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 20% 20%;
    background: linear-gradient(to top, var(--primary), var(--accent), #ff0000);
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--accent);
    animation: flicker 3s infinite alternate;
}

.bg-gradients{
    /* background: linear-gradient(180deg,rgba(232, 8, 68, 1) 47%, rgba(0, 0, 0, 1) 71%, rgba(232, 8, 68, 1) 100%); */
    background: linear-gradient(307deg, rgb(232 8 68 / 7%) 47%, rgba(0, 0, 0, 1) 71%, rgba(232, 8, 68, 1) 100%
100%
);
    
}
.shadow-box{
    box-shadow: 0px 0px 14px 3px rgb(9 9 9 / 60%)
}
.bg-c {
    background: #000000; /* fallback */
}

.video-bg {
    position: relative;
    width: 100%;
    height: 100vh; /* Full section */
    overflow: hidden;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    /* width: auto; */
    /* height: auto; */
    transform: translate(-50%, -50%);
    /* z-index: 3; */
    object-fit: cover;
    /* Fade bagian bawah */
    mask-image: linear-gradient(to bottom, #e80844 80%, #00000000 100%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000000ba 20%, transparent 100%);
    /* z-index: 1; */
}

@keyframes flicker {
    0%, 100% { 
        transform: scaleY(1) translateY(0);
        opacity: 0.8;
    }
    50% { 
        transform: scaleY(1.1) translateY(-5px);
        opacity: 1;
    }
}
.border-bottom-me{
    border-bottom: 1px solid rgb(255 255 255 / 26%);
}

.icon-rounded {
    width: 100%;
    height: 200px;     
    border-radius: 50%;          /* warna background */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;          /* seperti img-fluid rounded-circle */
}

.icon-rounded i {
    font-size: 98px;           /* ukuran icon */
    color: white;
}

.img-menu {
    height: 200px;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* Animasi berkedip untuk gambar */
.spinner-blink {
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.spinner-shadow {
    filter: drop-shadow(0 0 15px rgba(232, 8, 68, 0.8));
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.text-identitas{
    color: #e80844;
}
/*** Heading ***/
h1,
.fw-bold {
    font-family: 'The Last Shuriken', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    color: #ff96b2;
    text-transform: uppercase;

    /* efek tambahan */
    text-shadow: 0 0 8px rgba(232, 8, 68, 0.7);
    /* font-weight: 700 !important; */
}

h2,
.fw-bold {
    font-family: 'The Last Shuriken', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #000000;
    text-transform: uppercase;

    /* efek tambahan */
    /* text-shadow: 0 0 8px rgba(232, 8, 68, 0.7); */
    /* font-weight: 700 !important; */
    /* padding: 3rem;
    background:    url("../img/bg-label.svg") no-repeat center;
    background-size: contain; */
}

h3,
h4,
.fw-semi-bold {
    /* font-family: 'The Last Shuriken', sans-serif; */
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    /* font-family: 'The Last Shuriken', sans-serif; */
    font-weight: 500 !important;
}
.text-suriken {
    font-family: 'The Last Shuriken', sans-serif;
}

/*** Button ***/
.btn {
    
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.small-demo {
    background: #fff;
    box-shadow: 0px 8px 12px 1px rgba(0, 0, 0, 0.49);
    -moz-box-shadow: 0px 8px 12px 1px rgba(0, 0, 0, 0.49);
    -webkit-box-shadow: 0px 8px 12px 1px rgba(0, 0, 0, 0.49);
    width: 100%;
    float: right;
}

.small-demo .caption {
    padding: 10px;
    color: #212121;
    font-size: 0.875rem;
}

.small-demo a {
    max-width: 33.3333333333333333333%;
    float: left;
    /* margin: 1px; */
    padding: 3px;
    /* overflow: hidden; */
}

.small-demo img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    -webkit-transition: -webkit-transform .35s ease;
    -moz-transition: -moz-transform .35s ease;
    -o-transition: -o-transform .35s ease;
    -ms-transition: -ms-transform .35s ease;
    transition: transform .35s ease;
}

.small-demo a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.3);
    border-radius: 20px;
}

#modal-container {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: 1;

    &.one {
        transform: scaleY(0.01) scaleX(0);
        animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;

        .modal-background {
            .modal {
                transform: scale(0);
                animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
            }
        }

        &.out {
            transform: scale(1);
            animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;

            .modal-background {
                .modal {
                    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
                }
            }
        }
    }

    .modal-background {
        display: table-cell;
        background: rgba(0, 0, 0, 0.8);
        text-align: center;
        vertical-align: middle;

        .modal {
            background: white;
            padding: 50px;
            width: auto;
            height: auto;
            display: inline-block;
            border-radius: 3px;
            font-weight: 300;
            position: relative;

            h2 {
                font-size: 25px;
                line-height: 25px;
                margin-bottom: 15px;
            }

            p {
                font-size: 18px;
                line-height: 22px;
            }

            .modal-svg {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                border-radius: 3px;

                rect {
                    stroke: #fff;
                    stroke-width: 2px;
                    stroke-dasharray: 778;
                    stroke-dashoffset: 778;
                }
            }
        }
    }
}


@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes fadeIn {
    0% {
        background: rgba(0, 0, 0, 0);
    }

    100% {
        background: rgba(0, 0, 0, 0.7);
    }
}

@keyframes fadeOut {
    0% {
        background: rgba(0, 0, 0, 0.7);
    }

    100% {
        background: rgba(0, 0, 0, 0);
    }
}









@keyframes modalFadeIn {
    0% {
        background-color: transparent;
    }

    100% {
        background-color: white;
    }
}

@keyframes modalFadeOut {
    0% {
        background-color: white;
    }

    100% {
        background-color: transparent;
    }
}

@keyframes modalContentFadeIn {
    0% {
        opacity: 0;
        top: -20px;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

@keyframes modalContentFadeOut {
    0% {
        opacity: 1;
        top: 0px;
    }

    100% {
        opacity: 0;
        top: -20px;
    }
}






/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    z-index: 99;
    color: var(--light);
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(232, 8, 68, 0) 100%);
}

.navbar a {
    color: var(--light);
}

.navbar-nav {
    /* margin-left: auto; */
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

/*** Nav Link ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 20px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: 0.5s;
}

/*** Sticky Navbar ***/
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.sticky-top.navbar-light .navbar-toggler {
    color: var(--dark) !important;
    border: 0px;
}

/*** Hover + Active Color ***/
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 14px; /* posisi garis */
    width: 0%;
    height: 5px;
    background: var(--secondary);
    border-radius: 50px; /* <— rounded underline */
    transition: width 0.3s ease;
}

/* Efek hover */
.navbar-light .navbar-nav .nav-link:hover::after {
    width: 20%;
}

/* Efek ketika ACTIVE */
.navbar-light .navbar-nav .nav-link.active::after {
    width: 100%;
}



.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.sticky-top.navbar-light .navbar-brand h5 {
    color: var(--dark);
    font-size: small;
    font-style: normal;
}


.navbar-light .navbar-brand .logo-image {
    background-image: url(../img/logo.svg);
    background-size: contain;
    height: 50px;
    width: 190px;
    transition: .5s;
    background-position: center;
}

.sticky-top.navbar-light .navbar-brand .logo-image {
    background-image: url(../img/logo2.svg);
    margin-top: 10px;
    background-size: contain;
    height: 40px;
    width: 150px;
    transition: .5s;
    background-position: center;
}

.navbar-light .navbar-toggler {
    color: #ffffff;
}


@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        width: 100%;
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        /* padding: 10px 0; */
        margin-left: 20px;
        /* color: var(--dark) !important; */
    }

    .navbar-light .navbar-brand h1 {
        color: var(--secondary);
    }

    .navbar-light .navbar-brand h5 {
        color: var(--light);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    /* .navbar-light .navbar-toggler .navbar-brand h5 {
    color: var(--dark);
} */

    .navbar-light .navbar-brand .logo-image {
        /* max-height: 45px; */
        background-image: url(../img/logo.svg);
        background-size: contain;
        height: 40px;
        width: 150px;
        transition: .5s;
        background-position: center;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        /* border-bottom: 1px solid rgba(256, 256, 256, .1); */
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }


    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--utama);
    }

    .sticky-top.navbar-light .navbar-brand h5 {
        color: var(--dark);
        font-size: x-small;
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/*** Hero Header ***/
/* Hero Section */
.hero-header {
    position: relative;
    height: 100%;
    margin-bottom: 4rem;
    padding: 7rem 0;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }

    .navbar-light .navbar-collapse {
        background-color: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link {
        color: var(--dark) !important;
    }
}


/*** Section Title ***/
.section-title{
    font-family: 'The Last Shuriken', sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    /* font-weight: 700; */
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* padding: 1rem;
    background:    url("../img/bg-label.svg") no-repeat center/contain; */
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 5px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--dark),
    /* url("../img/bg-label.svg"); */
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Fact ***/
.fact {
    margin: 6rem 0;
    background: url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position: left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/
.service-item {
    position: relative;
    /* padding: 30px 30px; */
    background: #ffffff52;
    border: solid 1px #ffffff69;
    overflow: hidden;
    transition: .5s;
}

.service-item h5 {
    font-size: 18px;
    font-weight: 500px;
}

.service-item:hover {
    margin-top: -15px;
    box-shadow: 0 0 10px rgba(251, 229, 229, 0.598);
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item :hover img {
    transform: scale(1.1);
}

.service-item:hover .service-img {
    color: var(--dark);
    /* background: url(../img/blob-white.png) center center no-repeat; */
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item:hover i {
    color: var(--secondary);
}

.service-item a {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a {
    color: var(--dark);
    /* background: var(--secondary); */
}

.service-item:hover a {
    bottom: 0;
}

.artikel h4 {
    font-size: 20px;
    margin: 0px;
}

.artikel span {
    font-size: 14px;
    color: #9b9b9b;
}

.artikel p {
    margin-top: 10px;
}

.img-belive {
    height: 40px;
    margin: 25px;
}

/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--light);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(205, 36, 70, 0.69);
    transition: .5s;
    /* filter: drop-shadow(0 0 15px rgba(232, 8, 68, 0.8)); */
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background: url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position: left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/

.con .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9b9b9b;
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.fcon .btn.btn-social:hover {
    color: var(--primary);
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;

    background-image:linear-gradient(to top, #000000 20%, #00000000 100%),
        /* url("../img/bg-top.png"), */
        url("../img/map.png");

    background-position:
        center top,
        center top,
        center center;

    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat;

    background-size:
        cover,
        auto,
        cover;

    background-blend-mode: normal;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.726);
    color: #FFFFFF;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}