
/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

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

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

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

.btn-md-square {
    width: 44px;
    height: 44px;
}

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

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
    color: #fff !important;
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-secondary), 0.25) !important;
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0%  {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}

    25% {border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;}

    50% {border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;}

    75% {border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;}

    100% {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}
}
/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.sticky-top .navbar-light .navbar-brand img.custom-logo-rn {
    max-height: 40px !important;
}

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

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.navbar-logo {
    max-height: 60px;
    width: auto;
    display: block;
}

.navbar.navbar-expand-lg .btn-primary{
    background-color: #08CB00;
    border-color: #08CB00;
    color: #fff;
}

.navbar.navbar-expand-lg .btn-primary:hover{
    background-color: #06A000;
    border-color: #06A000;
    color: #fff;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Carousel Header Start ***/
.header-carousel .carousel-item {
    position: relative;
    min-height: 700px;
}

.header-carousel .carousel-item > img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 17, 51, 0.55), rgba(0, 17, 51, 0.55));
    display: flex;
    align-items: center;
}

.header-carousel .carousel-caption .btn-primary {
    background-color: #08CB00;
    border-color: #08CB00;
    color: #fff;
}

.header-carousel .carousel-caption .btn-primary:hover {
    background-color: #06A000;
    border-color: #06A000;
    color: #fff;
}

.header-carousel .carousel-content h1 {
    font-weight: 800;
    line-height: 1.2;
    max-width: 850px;
}

.header-carousel .carousel-content p {
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.hero-car-img {
    width: 480px;
    height: 300px;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .header-carousel .carousel-item,
    .header-carousel .carousel-item > img {
        min-height: 600px;
        height: 600px;
    }

    .header-carousel .carousel-content {
        text-align: center;
    }

    .header-carousel .carousel-content h1 {
        font-size: 2rem;
    }

    .hero-car-img {
        max-height: 260px;
    }
}

@media (max-width: 767.98px) {
    .header-carousel .carousel-item,
    .header-carousel .carousel-item > img {
        min-height: 520px;
        height: 520px;
    }

    .header-carousel .carousel-content h1 {
        font-size: 1.5rem;
    }

    .header-carousel .carousel-content p {
        font-size: 1rem !important;
    }

    .hero-car-img {
        max-height: 200px;
    }
}
/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    
}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%; 
    bottom: 0; 
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item p {
    line-height: 1.5;
    text-align: justify;
    font-size: 16px;
    color: #6c757d;
}

.about .about-item .text-primary{
    color: var(--bs-primary) !important;
}

.about .about-item .brand-name{
    color: var(--bs-primary) !important;
    font-weight: 600;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}
/*** About End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(22, 32, 142, 0.3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.categories .text-primary {
    color: var(--bs-primary) !important;
}

.categories .categories-content .text-dark{
    font-size: large;
    color: #000000;
}

.categories .categories-content .btn-primary{
    background: #08CB00;
    border: 1px solid #08CB00;
}

.categories .categories-content .btn-primary:hover{
    background: #06A000;
    border: 1px solid #06A000;
}
/*** Cars Categories End ***/

/*** Review Start ***/
.review-section {
    background: #ffffff;
    overflow: hidden;
}

.review-section .text-primary {
    color: var(--bs-primary) !important;
}

.review-section .container {
    position: relative;
}

/* Carousel */
.review-carousel {
    position: relative;
    padding: 0 18px;
}

.review-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.review-carousel .owl-item {
    display: flex;
    height: auto;
}

.review-carousel .owl-item .review-card {
    width: 100%;
}

/* Card */
.review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 15px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.35s ease;
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bs-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.review-card:hover::before {
    transform: scaleX(1);
}

/* Top */
.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary), #ff6b81);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.review-user-info {
    flex: 1;
    min-width: 0;
}

.review-user-info h5 {
    margin-bottom: 4px;
    color: #0b1c39;
    font-size: 1.05rem;
    font-weight: 700;
}

.review-user-info span {
    display: block;
    color: #6c757d;
    font-size: 0.92rem;
    line-height: 1.5;
}

.review-quote {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(234, 0, 30, 0.08);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

/* Stars */
.review-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 14px !important;
    color: #ffc107;
    font-size: 0.95rem;
    line-height: 1;
}

/* Title + Text */
.review-title {
    color: #0b1c39;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 14px;
    min-height: 58px;
}

.review-text {
    color: #6c757d;
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.review-card .full-text {
    display: none;
}

.review-card.active .full-text {
    display: block;
}

.review-card.active .short-text {
    display: none;
}

/* Proof Image */
.review-proof {
    position: relative;
    margin-top: 18px;
    margin-bottom: 18px;
    border-radius: 14px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.review-proof-label {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--bs-primary);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    line-height: 1;
}

.review-proof img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.review-card:hover .review-proof img {
    transform: scale(1.03);
}

/* Footer */
.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 6px;
    flex-wrap: wrap;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(234, 0, 30, 0.08);
    color: var(--bs-primary);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
}

.review-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    color: var(--bs-primary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.review-toggle-btn:hover {
    color: #0b1c39;
}

.review-toggle-btn i {
    transition: transform 0.3s ease;
}

.review-card.active .review-toggle-btn i {
    transform: rotate(90deg);
}

.review-carousel .owl-nav {
    position: static;
    transform: none;
    margin-top: 20px;
    text-align: center;
    pointer-events: auto;
}

.review-carousel .owl-nav .owl-prev,
.review-carousel .owl-nav .owl-next {
    position: static;
    display: inline-flex !important;
    width: 48px;
    height: 48px;
    margin: 0 6px;
    border-radius: 50% !important;
    background: var(--bs-primary) !important;
    color: #ffffff !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.review-carousel .owl-nav .owl-prev:hover,
.review-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
}

/* Tablet */
@media (max-width: 1199.98px) {
    .review-carousel .owl-nav {
        left: -12px;
        right: -12px;
    }
}

@media (max-width: 991.98px) {
    .review-carousel {
        padding: 0 10px;
    }

    .review-card {
        padding: 24px;
    }

    .review-title {
        font-size: 1.15rem;
        min-height: auto;
    }

    .review-proof img {
        height: 190px;
    }

    .review-carousel .owl-nav {
        left: -8px;
        right: -8px;
    }

    .review-carousel .owl-nav .owl-prev,
    .review-carousel .owl-nav .owl-next {
        width: 44px;
        height: 44px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .review-section .pb-5 {
        padding-bottom: 2rem !important;
    }

    .review-carousel {
        padding: 0;
    }

    .review-card {
        padding: 20px;
        border-radius: 16px;
    }

    .review-top {
        gap: 12px;
        margin-bottom: 16px;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.1rem;
    }

    .review-user-info h5 {
        font-size: 1rem;
    }

    .review-user-info span {
        font-size: 0.85rem;
    }

    .review-quote {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.85rem;
    }

    .review-stars {
        font-size: 0.9rem;
        margin-bottom: 12px !important;
    }

    .review-title {
        font-size: 1.08rem;
        line-height: 1.45;
        margin-bottom: 12px;
    }

    .review-text {
        font-size: 0.94rem;
        line-height: 1.75;
    }

    .review-proof {
        margin-top: 16px;
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .review-proof img {
        height: 175px;
    }

    .review-proof-label {
        top: 10px;
        left: 10px;
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .review-badge {
        font-size: 0.84rem;
    }

    .review-toggle-btn {
        font-size: 0.9rem;
    }

    .review-carousel .owl-nav {
        position: static;
        transform: none;
        margin-top: 18px;
        text-align: center;
        pointer-events: auto;
    }

    .review-carousel .owl-nav .owl-prev,
    .review-carousel .owl-nav .owl-next {
        position: static;
        display: inline-flex !important;
        margin: 0 6px;
        width: 42px;
        height: 42px;
    }
}
/*** Review End ***/


/*** Team / Driver Gallery Start ***/
.team {
    background: #ffffff;
}

.team .text-primary {
    color: var(--bs-primary) !important;
}

.team .team-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    transition: 0.4s ease;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(234, 0, 30, 0.08);
}

.team .team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
    border-color: rgba(234, 0, 30, 0.18);
}

.team .team-photo-only {
    padding: 0;
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.team .team-item .team-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.team .team-item:hover .team-img img {
    transform: scale(1.08);
}

.team .team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 17, 51, 0.68), rgba(0, 17, 51, 0.08));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: 0.35s ease;
}

.team .team-item:hover .team-photo-overlay {
    opacity: 1;
}

.team .team-photo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(42, 54, 218, 0.25);
    transform: translateY(10px);
    transition: 0.35s ease;
}

.team .team-item:hover .team-photo-badge {
    transform: translateY(0);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    opacity: 0;
    transition: 0.35s ease;
}

.team .team-item:hover .team-img::after {
    opacity: 1;
}

/* Optional staggered effect on desktop */
@media (min-width: 1200px) {
    .team .row > div:nth-child(2),
    .team .row > div:nth-child(5) {
        margin-top: 24px;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .team .team-item .team-img img {
        height: 360px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .team .team-item {
        border-radius: 18px;
    }

    .team .team-item .team-img,
    .team .team-item .team-img::after {
        border-radius: 18px;
    }

    .team .team-item .team-img img {
        height: 320px;
    }

    .team .team-photo-overlay {
        opacity: 1;
        padding: 18px;
    }

    .team .team-photo-badge {
        font-size: 0.82rem;
        padding: 8px 14px;
        transform: translateY(0);
    }
}
/*** Team / Driver Gallery End ***/

/*** Documentation Start ***/
.documentation {
    background: #ffffff;
}

.documentation .text-primary {
    color: var(--bs-primary) !important;
}

.documentation-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
    gap: 20px;
}

.documentation-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #f8f9fa;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.documentation-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.documentation-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(31, 111, 240, 0.35), rgba(11, 28, 57, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: 0.4s ease;
}

.documentation-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.documentation-item:hover::before {
    opacity: 1;
}

.documentation-item:hover img {
    transform: scale(1.08);
}

.documentation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 17, 51, 0.55), rgba(0, 17, 51, 0.08));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.35s ease;
}

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

.documentation-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(40, 33, 179, 0.28);
    transform: translateY(12px);
    transition: 0.35s ease;
}

.documentation-item:hover .documentation-icon {
    transform: translateY(0);
}

/* Variasi layout */
.documentation-item.item-small {
    grid-column: span 1;
    grid-row: span 1;
}

.documentation-item.item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.documentation-item.item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.documentation-item.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Tablet */
@media (max-width: 991.98px) {
    .documentation-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 16px;
    }

    .documentation-item.item-large,
    .documentation-item.item-wide {
        grid-column: span 2;
    }

    .documentation-item.item-tall {
        grid-column: span 1;
        grid-row: span 2;
    }

    .documentation-item.item-small {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .documentation-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 14px;
    }

    .documentation-item,
    .documentation-item.item-small,
    .documentation-item.item-wide,
    .documentation-item.item-tall,
    .documentation-item.item-large {
        grid-column: span 1;
        grid-row: span 1;
        height: 240px;
        border-radius: 18px;
    }

    .documentation-item::before {
        border-radius: 18px;
    }

    .documentation-overlay {
        opacity: 1;
        padding: 16px;
    }

    .documentation-icon {
        width: 46px;
        height: 46px;
        font-size: 1rem;
        transform: translateY(0);
    }
}

/*** Documentation End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.owner-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.owner-image {
    width: 170px;
    height: 170px;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.owner-role {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    font-weight: 500;
}

.owner-content {
    position: relative;
}

.owner-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.owner-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.owner-info-item i {
    min-width: 20px;
    font-size: 1rem;
}

.owner-info-item a {
    text-decoration: none;
    transition: 0.3s ease;
}

.owner-info-item a:hover {
    color: var(--bs-primary) !important;
}

@media (max-width: 767.98px) {
    .owner-card {
        padding: 2rem !important;
    }

    .owner-image {
        width: 130px;
        height: 130px;
    }

    .owner-info-item {
        align-items: flex-start;
        padding: 12px 14px;
    }
}

/*** Contact End ***/


/*** Cental Features ***/
.cental-features {
    background: #f5f5f5;
}

.cental-features .text-primary {
    color: var(--bs-primary) !important;
}

.cental-features .feature-side {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cental-features .feature-box {
    gap: 0;
}

.cental-features .feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.cental-features .feature-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #001133;
    margin-bottom: 16px;
}

.cental-features .feature-content p {
    font-size: 1 rem;
    line-height: 1.8;
    color: #6c757d;
}

.cental-features .feature-car-image img {
    max-width: 100%;
    width: 500px;
}

@media (max-width: 991.98px) {
    .cental-features .feature-side,
    .cental-features .feature-side.text-lg-end {
        text-align: center !important;
    }

    .cental-features .feature-box,
    .cental-features .feature-box.justify-content-lg-end {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        margin: 0 0 5px 0;
    }

    .cental-features .feature-content,
    .cental-features .feature-content.me-4,
    .cental-features .feature-content.ms-4 {
        margin: 1px 0 0 0 !important;
    }

    .cental-features .feature-box .feature-icon {
        order: 1 !important;
    }

    .cental-features .feature-box .feature-content {
        order: 2 !important;
    }   

    .cental-features .feature-car-image {
        margin: 10px 0;
    }
}
@media (min-width: 991.98px) {
    .cental-features .feature-icon {
        width: 90px;
        height: 90px;
        min-width: 90px;
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .cental-features .feature-content h3 {
        font-size: 1.5rem;
    }

    .cental-features .feature-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .cental-features .feature-icon {
        width: 90px;
        height: 90px;
        min-width: 90px;
        font-size: 28px;
    }
}

/*** RN Counter Section ***/
.rn-counter-section {
    position: relative;
    background: linear-gradient(rgba(0, 17, 51, 0.82), rgba(0, 17, 51, 0.82)),
                url("../img/fact-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.rn-counter-item {
    padding: 20px 10px;
}

.rn-counter-icon {
    width: 90px;
    height: 120px;
    min-width: 130px;
    border-radius: 32px;
    background: var(--bs-primary);
    color: #0d2341;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    box-shadow: #000000;
}

.rn-counter-number {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.1;
    transition: 0.3s ease;
}

.rn-counter-text {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 991.98px) {
    .rn-counter-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .rn-counter-icon {
        width: 110px;
        height: 110px;
        min-width: 110px;
        font-size: 42px;
        border-radius: 28px;
    }

    .rn-counter-number {
        font-size: 3rem;
    }

    .rn-counter-text {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .rn-counter-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .rn-counter-item {
        padding: 15px 8px;
    }

    .rn-counter-icon {
        width: 90px;
        height: 90px;
        min-width: 90px;
        font-size: 32px;
        border-radius: 24px;
        margin-bottom: 20px !important;
    }

    .rn-counter-number {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .rn-counter-text {
        font-size: 1rem;
        line-height: 1.5;
    }
}
/*** RN Counter Section End ***/

/*** RT Product Start ***/
.rt-product-section {
    background: #ffffff;
}

.rt-text-primary {
    color: var(--bs-primary) !important;
}

.rt-product-card {
    position: relative;
    height: 100%;
    border: 1px solid var(--bs-secondary);
    border-radius: 16px;
    background: #ffffff;
    transition: 0.4s ease;
    overflow: hidden;
}

.rt-product-card:hover {
    transform: translateY(-8px);
    border-color: var(--bs-primary);
    box-shadow: 0 0 40px rgba(5, 0, 20, 0.16);
}

.rt-product-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rt-product-image-wrap {
    background: var(--bs-light);
    overflow: hidden;
}

.rt-product-image-wrap img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    transition: 0.4s ease;
}

.rt-product-card:hover .rt-product-image-wrap img {
    transform: scale(1.05);
}

.rt-product-body {
    background: var(--bs-light);
    text-align: center;
    flex-grow: 1;
    border-top: 4px solid #ffffff;
}

.rt-product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 1.5rem;
}

.rt-product-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rt-product-meta-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 14px;
    text-align: left;
}

.rt-product-meta-item span {
    color: #000000;
    font-size: large;
    line-height: 1.5;
}

.rt-meta-icon {
    color: var(--bs-primary);
    font-size: 1rem;
    min-width: 18px;
}

.rt-product-card .btn-primary{
    background-color: #08CB00;
    border-color: #08CB00;
    color: #fff;
}

.rt-product-card .btn-primary:hover{
    background-color: #06A000;
    border-color: #06A000;
    color: #fff;
}

.wallpaper-banner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.wallpaper-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .rt-product-image-wrap img {
        height: 220px;
    }

    .rt-product-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .rt-product-image-wrap img {
        height: 200px;
    }

    .rt-product-body {
        padding: 1.25rem !important;
    }

    .rt-product-title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }

    .rt-product-meta-item {
        padding: 10px 12px;
    }

    .rt-product-meta-item span {
        font-size: 0.92rem;
    }
}
/*** RT Product End ***/

/*** RN Service Start ***/
.rn-service-pricelist {
    background: rgba(13, 1, 33, 0.04);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 22px;
}

.rn-service-pricelist h6 {
    color: #0b1c39;
    font-weight: 700;
    margin-bottom: 14px;
}

.rn-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(11, 28, 57, 0.12);
    font-size: 1.1rem;
    font-weight: 700;
}

.rn-price-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rn-price-row span {
    color: #6c757d;
    font-size: 0.96rem;
    line-height: 1.5;
}

.rn-price-row strong {
    color: var(--bs-primary);
    font-size: 0.98rem;
    font-weight: 700;
    white-space: nowrap;
}

.rn-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rn-service-image {
    height: 260px;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

.rn-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rn-service-section .text-primary {
    color: var(--bs-primary) !important;
}

.rn-service-section .rn-service-content .btn-primary{
    background-color: #08CB00;
    border-color: #08CB00;
    color: #fff;
}

.rn-service-section .rn-service-content .btn-primary:hover{
    background-color: #06A000;
    border-color: #06A000;
    color: #fff;
}

.rn-service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rn-service-content h4{
    margin-top: 10px;
}
@media (max-width: 767.98px) {
    .rn-price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .rn-price-row strong {
        white-space: normal;
    }
}
/*** RN Service End ***/

/*** RN YouTube Section Start ***/
.rn-youtube-section {
    background: linear-gradient(180deg, rgba(18, 2, 157, 0.03) 0%, rgba(3, 53, 140, 0.02) 100%);
    overflow: hidden;
}

.rn-youtube-media {
    position: relative;
}

.rn-youtube-image-wrap {
    position: relative;
    border-radius: 30px;
    overflow: visible;
}

.rn-youtube-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(20, 2, 89, 0.14);
}

.rn-youtube-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(rgba(0, 17, 51, 0.14), rgba(0, 17, 51, 0.18));
    pointer-events: none;
}

.rn-youtube-play {
    position: absolute;
    left: 50%;
    bottom: -65px;
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 5;
}

.rn-youtube-rotating-text {
    position: absolute;
    inset: 0;
    animation: rnYoutubeSpin 10s linear infinite;
    fill: var(--bs-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rn-youtube-play-core {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 16px 36px rgba(235, 234, 238, 0.897);
    position: relative;
    z-index: 2;
    transition: 0.35s ease;
}

.rn-youtube-play:hover .rn-youtube-play-core {
    transform: scale(1.08);
}

.rn-youtube-play:hover .rn-youtube-rotating-text {
    animation-duration: 6s;
}

@keyframes rnYoutubeSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rn-youtube-content {
    padding: 10px 0 10px 10px;
}

.rn-youtube-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(4, 34, 118, 0.1);
    color: var(--bs-primary);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

.rn-youtube-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.3;
    color: #0b1c39;
}

.rn-youtube-title span {
    color: var(--bs-primary);
}

.rn-youtube-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: #6c757d;
}

.rn-youtube-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rn-youtube-point {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(5, 18, 106, 0.08);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.rn-youtube-point i {
    color: var(--bs-primary);
    font-size: 1rem;
}

.rn-youtube-point span {
    color: #0b1c39;
    font-weight: 500;
}

.rn-youtube-outline-btn {
    background: transparent;
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    transition: 0.35s ease;
}

.rn-youtube-outline-btn:hover {
    background: var(--bs-primary);
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .rn-youtube-section {
        padding-bottom: 7rem !important;
    }

    .rn-youtube-image-wrap img {
        height: 430px;
    }

    .rn-youtube-content {
        padding: 40px 0 0;
        text-align: center;
    }

    .rn-youtube-points {
        text-align: left;
    }

    .rn-youtube-title {
        font-size: 2rem;
    }

    .rn-youtube-play {
        bottom: -58px;
        width: 150px;
        height: 150px;
    }

    .rn-youtube-rotating-text {
        font-size: 14px;
        top: -5%;
        left: -7%;
    }

    .rn-youtube-play-core {
        width: 84px;
        height: 84px;
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .rn-youtube-section {
        padding-bottom: 6rem !important;
    }

    .rn-youtube-image-wrap,
    .rn-youtube-image-wrap img,
    .rn-youtube-image-wrap::after {
        border-radius: 20px;
    }

    .rn-youtube-image-wrap img {
        height: 280px;
    }

    .rn-youtube-play {
        width: 128px;
        height: 128px;
        bottom: -48px;
    }

    .rn-youtube-rotating-text {
        font-size: 16px;
        letter-spacing: 1px;
        top: -17%;
        left: -16%;
    }

    .rn-youtube-play-core {
        width: 72px;
        height: 72px;
        font-size: 1.5rem;
    }

    .rn-youtube-title {
        font-size: 1.5rem;
    }

    .rn-youtube-desc {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .rn-youtube-actions .btn,
    .rn-youtube-outline-btn {
        width: 100%;
        margin-right: 0 !important;
    }
}
/*** RN YouTube Section End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

.whatsapp-float {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 99;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

@media (max-width: 767.98px) {
    .whatsapp-float {
        right: 30px;
        bottom: 30px;
        width: 70px;
        height: 70px;
        font-size: 40px;
    }
}

/*** Partner Section Start ***/
.partner-section {
    background: #ffffff;
}

.partner-section .text-primary {
    color: var(--bs-primary) !important;
}

.partner-single-item {
    background: linear-gradient(135deg, rgba(4, 3, 81, 0.05) 0%, rgba(11, 28, 57, 0.03) 100%);
    border: 1px solid rgba(4, 6, 100, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.partner-single-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
    border-color: rgba(4, 6, 74, 0.2);
}

.partner-single-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
}

.partner-single-item:hover .partner-single-logo {
    transform: scale(1.05);
}

.partner-single-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-single-content h4 {
    color: var(--bs-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.partner-single-content p {
    color: #6c757d;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 767.98px) {
    .partner-single-item {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .partner-single-logo {
        width: 140px;
        height: 140px;
        padding: 22px;
        margin-bottom: 20px;
    }

    .partner-single-logo img {
        max-height: 65px;
    }

    .partner-single-content h4 {
        font-size: 1.2rem;
    }

    .partner-single-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}
/*** Partner Section End ***/