@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sunflower:wght@300;500;700&family=Satisfy&display=swap");

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --primary: #0065f8;
    --secondary: #01c676;
    --light: #ffffff;
    --light-blue: #eef4ff;
    --dark: #000000;
    --gradiant-blue: linear-gradient(
        180deg,
        #45b8ee 0%,
        #1f87f7 60%,
        #0b5bef 100%
    );
    --font-sunflower: "Sunflower", sans-serif;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}

body {
    color: var(--dark);
    background: var(--light-blue);
    font-family: var(--font-sunflower);
    font-weight: 300;
    line-height: 1.2;
}

.f-sunflower {
    font-family: var(--font-sunflower);
}

.f-satisfy {
    font-family: "Satisfy", cursive;
}

a {
    color: #4154f1;
    text-decoration: none;
}

a:hover {
    color: #717ff5;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sunflower);
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}

.fs-10 {
    font-size: 10px;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.bg-primary {
    background: var(--primary);
    color: var(--light);
}
.txt-primary {
    color: var(--primary);
}

.bg-blue-gradient {
    color: var(--light);
    background: var(--gradiant-blue);
}

.rounded-60 {
    border-radius: 60px;
}

.w-fit {
    width: fit-content;
}

.py-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.pt-6 {
    padding-top: 6rem !important;
}

.pt-6 {
    padding-top: 6rem !important;
}
.pt-7 {
    padding-top: 7rem !important;
}
.pt-8 {
    padding-top: 8rem !important;
}
.pt-9 {
    padding-top: 9rem !important;
}
.pb-6 {
    padding-bottom: 6rem !important;
}
.pb-7 {
    padding-bottom: 7rem !important;
}
.pb-8 {
    padding-bottom: 8rem !important;
}
.pb-9 {
    padding-bottom: 9rem !important;
}

.py-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
}

.text-justify {
    text-align: justify;
}

.header-title h3 {
    display: inline-block;
    color: var(--primary);
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 1rem;
}

.header-title h3::before {
    content: "";
    background: var(--secondary);
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.header-title h4 {
    display: inline-block;
    color: var(--primary);
    position: relative;
    padding-bottom: 5px;
}

.header-title h4::before {
    content: "";
    background: var(--secondary);
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.container-1558 {
    max-width: 1558px;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

.rounded-click {
    padding: 8px 15px;
    border-radius: 60px;
}

.bg-side-container .container-1558::before {
    content: "";
    background-image: url(../img/bg-transparent-ongkir.png);
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    top: -2rem;
    left: -11rem;
    width: 117rem;
    height: 100%;
    z-index: -1;
    transform: rotate(360deg);
    opacity: 0.8;
}

.bg-side-container .container-1558::after {
    content: "";
    background: linear-gradient(
        to top,
        #eef4ff 0%,
        rgba(238, 244, 255, 0) 100%
    );
    width: 100%;
    height: 20rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.bg-bottom-container .container-1558::before {
    content: "";
    background-image: url(../img/bg-transparent-ongkir.png);
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    top: -7rem;
    left: 0;
    width: 100rem;
    height: 108rem;
    z-index: -1;
    transform: rotate(90deg);
    opacity: 0.8;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 75px;
    z-index: 99999;
    background: var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 7px;
    transition: all 0.4s;
    border: 2px solid #fff;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
    transition: all 0.4s;
}

.back-to-top:hover i {
    transform: scale(1.3);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    color: var(--dark);
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 57px;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol a {
    color: var(--dark);
    transition: 0.3s;
}

.breadcrumbs ol a:hover {
    text-decoration: underline;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
    color: #7f7f7f;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #8894f6;
    content: "/";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
    transition: all 0.5s;
    z-index: 997;
    background: var(--light);
}

@media (max-width: 991px) {
    .header .navmain {
        width: 100%;
        justify-content: space-between;
    }
}

.header.header-scrolled {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
    line-height: 0;
}

.header .logo img {
    max-height: 70px;
    margin-right: 25px;
}

@media (max-width: 600px) {
    .header .logo img {
        max-height: 40px;
    }
}

.header .call-us {
    background: var(--primary);
    color: var(--light);
    padding: 0.5rem 5rem 0.5rem 2.5rem;
    position: relative;
    border-radius: 50px;
}

.header .call-us .span-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background: #fff;
    color: var(--primary);
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.header .call-us .fa-circle-chevron-right {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--light);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.tab-content-nav {
    width: 100%;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 3;
}

.tab-content-nav .nav-link:hover,
.tab-content-nav .nav-link.active,
.tab-content-nav .nav-link.act {
    color: var(--light);
    background: var(--gradiant-blue);
}

.tab-content-nav .nav-link:hover img,
.tab-content-nav .nav-link.active img,
.tab-content-nav .nav-link.act img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.tab-content-nav .nav-icon-link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 12px !important;
    height: 12px;
    background: linear-gradient(180deg, #45b8ee 0%, #1f87f7 60%, #0b5bef 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    z-index: -1;
    opacity: 0;
}

.tab-content-nav .nav-icon-link:hover::before,
.tab-content-nav .nav-icon-link.active::before,
.tab-content-nav .nav-icon-link.act::before {
    right: -8px;
    opacity: 1;
}

.tab-content-nav.tab-content-nav-parent .nav-link {
    background: #dfeafff2;
}

.tab-content-nav.tab-content-nav-parent .nav-link.active,
.tab-content-nav.tab-content-nav-parent .nav-link.act,
.tab-content-nav.tab-content-nav-parent .nav-link:hover {
    background: var(--gradiant-blue);
}

.tab-content-nav.tab-content-nav-parent .nav-link.active::after,
.tab-content-nav.tab-content-nav-parent .nav-link.act::after {
    display: none !important;
}

.tab-ctn .nav-link:hover::before,
.tab-ctn .nav-link.active::before,
.tab-ctn .nav-link.act::before {
    display: none !important;
}

.tab-ctn .nav-link.active::after,
.tab-ctn .nav-link.act::after {
    display: none !important;
}

.tab-content-nav .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: unset;
    gap: 8px;
    background: #e9e9ed;
}
.tab-content-nav .nav-link .card-image::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: -5px;
    opacity: 0.2;
    z-index: 0;
}

.tab-content-nav .nav-link .card-image.blue-bg::before {
    background: var(--primary);
}
.tab-content-nav .nav-link .card-image.green-bg::before {
    background: var(--secondary);
}

.tab-content-nav .nav-link.act .card-image::before,
.tab-content-nav .nav-link:hover .card-image::before {
    display: none;
}

.tab-content-nav .nav-link img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
    transition: 0.15s ease-in-out;
}

.tab-content-nav .nav-link .fa-angle-right {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.tab-content.tab-parent {
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    position: relative;
    z-index: 2;
    margin-left: 5px;
}

.tab-content.tab-parent.tab-parent2 {
    margin-left: 40px;
}

@media (min-width: 991px) {
    .tab-content-nav {
        width: 250px;
    }

    .tab-content.tab-parent {
        background: #eef4ffe8;
    }

    .tab-content.tab-parent.tab-parent2 {
        background: #eef4ffe8;
        margin-left: 0;
        box-shadow: none;
    }
    .tab-content-nav .nav-link::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -32px;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background: #dfeaffe0;
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        z-index: 3;
        display: none;
    }

    .tab-content-nav .nav-link.active::after {
        display: block;
    }
}

/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

@media (min-width: 991px) {
    .navbar li + li {
        margin-left: 10px;
    }
}

.navbar .nav-link.scrollto,
.navbar .nav-link.scrollto:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 15px;
    font-family: var(--font-sunflower);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    z-index: 99;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    bottom: 0px;
    left: 0;
    background-color: var(--secondary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    z-index: 2;
}

.navbar .nav-link.scrollto:hover::before,
.navbar .nav-link.scrollto.active::before,
.navbar .nav-link.scrollto.act::before,
.navbar .nav-link.scrollto.active:focus::before,
.navbar li:hover > .nav-link.scrollto::before {
    width: 100%;
    visibility: visible;
}

.navbar .nav-link.scrollto::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0;
    z-index: -1;
    background-color: transparent;
    transition: all 0.3s ease-in-out 0s;
}

.navbar .nav-link.scrollto:hover::after,
.navbar .nav-link.scrollto.active::after,
.navbar .nav-link.scrollto.act::after,
.navbar .nav-link.scrollto.active:focus::after,
.navbar li:hover > .nav-link.scrollto::after {
    background-color: #eef4ff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #dfeafff2;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul .nav-link {
    padding: 10px;
    text-transform: none;
    font-weight: 600;
    font-size: 13px;
    border: 0;
    border-radius: 10px;
    width: 100%;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }

    .tab-content.tab-parent {
        margin-left: 20px;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #012970;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    transition: 0.3s;
    z-index: 9999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--dark);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
    color: var(--light);
    padding-top: 5rem;
}

.hero .content-hero {
    margin-top: 5rem;
    width: 100%;
}

.hero .card-count-hero {
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
}

.hero .card-count-hero .mitra {
    background: #8effa1;
    box-shadow: 0px 1px 8px 0px rgb(0, 0, 0, 0.6);
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: bold;
}

.hero .card-link-hero {
    background: #000000a8;
    padding: 10px 15px;
    border-radius: 50px;
    color: var(--light);
    display: flex;
    justify-content: space-between;
}

/*--------------------------------------------------------------
# tracking-home
--------------------------------------------------------------*/
.tracking-home .card-tab-home {
    background: #eef4ff;
    padding: 1.5rem;
    box-shadow: -7px 8px 20px 0 rgba(0, 0, 0, 0.1);
    margin-top: -160px;
    border-radius: 10px;
}

.tracking-home .card-tab-home .nav-tabs {
    overflow: hidden;
    border-radius: 8px;
}

.tracking-home .card-tab-home .nav-item {
    width: 50%;
}

.tracking-home .card-tab-home .nav-link {
    background: #dddddd;
    color: #00000075;
    width: 100%;
    border-radius: 0;
    font-size: 14px;
}

.tracking-home .card-tab-home .nav-link.active {
    background: var(--secondary);
    color: var(--light);
}

.tracking-home .side-content .card-box .card-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*--------------------------------------------------------------
# Client-home
--------------------------------------------------------------*/
.client-home h4::before {
    content: "";
    background: var(--secondary);
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.client-home .card-img {
    width: 100%;
    height: 80px;
    max-width: 100%;
    max-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.client-home .card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*--------------------------------------------------------------
# Our Services Home
--------------------------------------------------------------*/
.our-services-home .card-box {
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
    height: 100%;
}
.our-services-home .card-box .card-img {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
}
.our-services-home .card-box .card-img img {
    max-height: 25px;
}

@media only screen and (min-width: 992px) {
    .our-services-home .card-box {
        padding: 1rem 2rem;
    }

    .our-services-home .card-box .card-img {
        width: 90px;
        height: 90px;
    }

    .our-services-home .card-box .card-img img {
        max-height: 35px;
    }
}
/*--------------------------------------------------------------
# Why Us Home
--------------------------------------------------------------*/

/* .why-us-home .why-us-slider {
    height: 500px;
} */

.why-us-home .swiper-container {
    position: static;
}

.why-us-home .swiper-slide {
    transition: all 0.3s ease-in-out;
}

.why-us-home .swiper-slide.swiper-slide-next {
    margin-left: 3rem;
}

.why-us-home .card-box .card-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 5px solid var(--primary);
}

.why-us-home .card-box .card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    .why-us-home .card-box .card-img {
        width: 70px;
        height: 70px;
    }

    .why-us-home .swiper-slide.swiper-slide-next {
        margin-left: 0;
    }
}

/* Base (mobile) - Horizontal */
.why-us-home .why-us-slider {
    height: auto; /* atau min-height: 220px; sesuai tinggi card kamu */
}

/* Desktop - Vertical */
@media (min-width: 992px) {
    .why-us-home .why-us-slider {
        height: 520px; /* sesuaikan dengan tinggi 3 card vertikal */
    }
}

/* Opsional: biar lebih rapi di mobile */
@media (max-width: 991px) {
    .why-us-home .swiper-slide {
        width: 100% !important; /* pastikan card full width */
    }
}

/*--------------------------------------------------------------
# Call Us
--------------------------------------------------------------*/
.call-us .container-1558 {
    background-image: url(../img/call-us.png);
    background-size: cover;
    background-position: center;
}

.call-us .container-1558::before {
    content: "";
    background: var(--gradiant-blue);
    width: 22 rem;
    height: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
}

.call-us .card-people img {
    width: 18rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us .container-1558 {
    background-image: url(../img/bg-transparent.png);
    background-size: cover;
    background-position: center;
}

.bg-bottom .container-1558 {
    position: relative;
    overflow: hidden;
}

.bg-bottom .container-1558::before {
    content: "";
    background-image: url(../img/bg-transparent-ongkir.png);
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    top: -2rem;
    left: -11rem;
    width: 117rem;
    height: 100%;
    z-index: -1;
    transform: rotate(360deg);
    opacity: 0.8;
}

.bg-bottom img {
    width: 100%;
    background-size: cover;
    background-position: center;
}

.container-1558.bg-count {
    background-image: url(../img/call-us.png);
    background-size: cover;
    background-position: center;
}
/*--------------------------------------------------------------
# Blog Home
--------------------------------------------------------------*/
.blog-home .card-box {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--primary) !important;
}

.blog-home .card-box:hover {
    box-shadow: 6px 6px 17.3px 0 rgba(0, 0, 0, 0.25);
    background: var(--gradiant-blue);
    color: var(--light) !important;
}

.blog-home .card-box .card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}
.blog-home .card-box .card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-home .card-box:hover .card-img img {
    transform: scale(1.2);
}

.blog-home .card-box .card-content {
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.blog-home .card-box .card-content::before {
    content: "";
    background: var(--secondary);
    opacity: 0.1;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    position: absolute;
    bottom: -15px;
    left: -160px;
    z-index: 0;
}

.blog-home .card-box:hover .card-content::before {
    background: var(--light-blue);
}

.blog-home .card-box:hover .card-content h4 {
    color: var(--light);
}

.blog-home .card-box:hover .card-content a {
    background: var(--light);
    color: var(--primary);
    box-shadow: 6px 6px 17.3px 0 rgba(0, 0, 0, 0.25);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .card-box {
    border-radius: 10px;
    position: relative;
    padding: 4rem 1.5rem 1.5rem;
}

.testimonials .swiper-slide .card-box {
    transition: all 0.3s ease-in-out;
    transform: scale(0.8);
}

.testimonials .swiper-slide.swiper-slide-active .card-box {
    background: linear-gradient(90deg, #3facff 13%, #0065f8 76%);
    position: relative;
    color: var(--light);
    transform: scale(1);
}
.testimonials .swiper-slide.swiper-slide-active .card-box::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 15px;
    width: 80px;
    height: 70px;
    background: var(--primary);
    clip-path: polygon(0% 0%, 100% 0, 50% 100%);
    z-index: -1;
}

.testimonials .card-box::before {
    content: "";
    background-image: url(../img/kutip.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 35px;
    right: 25px;
    width: 30px;
    height: 30px;
    z-index: 0;
}

.testimonials .card-box .card-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}
.testimonials .card-box .card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials .card-box .card-company p {
    font-size: 14px;
}

.testimonials .swiper-slide.swiper-slide-active .card-box .card-company p {
    font-size: 17px;
}

.testimonials .card-box .card-company span {
    font-size: 13px;
}

.testimonials .swiper-slide.swiper-slide-active .card-box .card-company span {
    font-size: 15px;
}

.testimonials .card-box .card-desk {
    font-size: 12px;
}
.testimonials .swiper-slide.swiper-slide-active .card-box .card-desk {
    font-size: 14px;
}

.testimonials .swiper-container {
    position: static;
}

.testimonials .swiper-button-prev {
    background-color: var(--gradiant-blue);
    left: 35%;
    top: 85%;
    background-size: 44px 90px;
    width: 55px;
}
.testimonials .swiper-button-next {
    background-color: var(--gradiant-blue);
    right: 35%;
    top: 85%;
    background-size: 44px 90px;
    width: 55px;
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    background-image: url(../img/bg-footer.png);
    background-size: cover;
    background-position: center;
    color: var(--light);
}

.footer .footer-main .card-logo img {
    filter: brightness(0) invert(1);
}

.footer .footer-main .address {
    background: #26a16f;
    color: var(--light);
    padding: 4px 10px;
    border-radius: 5px;
    display: flex;
}

.footer .footer-main ul {
    list-style: none;
}

.footer .footer-main ul li {
    margin-bottom: 1rem;
}

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

.footer .footer-main iframe {
    width: 100%;
    height: 300px;
    border-radius: 20px;
}

.footer-bottom {
    background: #2f2f2f;
    padding: 15px 0;
}

.footer-bottom .social-links a {
    font-size: 14px;
    margin-right: 20px;
    transition: 0.3s;
    background: #fff;
    color: var(--dark);
    padding: 10px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.footer-bottom .social-links a:hover {
    background: var(--primary);
    color: var(--light);
    transform: scale(1.4);
}

.footer-bottom .copyright a {
    color: var(--light);
    transition: 0.3s;
}

.footer-bottom .copyright a:hover {
    color: var(--primary);
}

@media only screen and (min-width: 768px) {
    .footer-bottom .copyright {
        font-size: calc(0.5rem + 0.6vw);
    }
}

/*--------------------------------------------------------------
# Visi
--------------------------------------------------------------*/
.visi::before {
    content: "";
    background-image: url(../img/img-visi.png);
    background-position: 100% 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 51rem;
    height: 25rem;
    background-repeat: no-repeat;
    background-size: 77%;
    opacity: 0.1;
}

.visi::after {
    content: "";
    background: var(--primary);
    clip-path: polygon(80% 0, 100% 0, 100% 100%, 50% 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30rem;
    height: 17rem;
    z-index: 0;
    display: initial;
}

.visi p {
    position: relative;
    z-index: 1;
}

.card-misi {
    padding: 20px 20px 40px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: linear-gradient(135deg, #4da3df, #1f6ed4);
    color: #fff;
    margin-top: -20px;
    box-shadow: 0px 1px 8px 0px rgb(0, 0, 0, 0.6);
}

.card-misi .icon-arrow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease-in-out;
    width: 45px;
    height: 45px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    margin-top: 10px;
}

.card-misi:hover .icon-arrow {
    left: 75%;
}

.card-misi .text-misi {
    line-height: 1.6;
    font-weight: 500;
}

.gallery .card-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.gallery .card-box .card-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: auto;
    padding: 10px 10px 15px;
    background: rgba(0, 101, 248, 0.62);
    color: white;
    transition: all 0.3s ease-in-out;
}

.gallery .card-box:hover .card-content {
    bottom: 0;
}
