@import url('https://fonts.googleapis.com/css2?family=Kufam:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Krona+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Kufam", sans-serif;
    overflow-x: hidden;
    background: black;
    scroll-behavior: smooth;
}

.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: bold;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #fff !important;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.navbar-nav .nav-link:hover {
    color: #9AFF9A !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #9AFF9A;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler-icon {
    margin-right: 1rem !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover {
    transform: scale(1.1);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        border-radius: 8px;
        padding: 15px;
        margin-top: 10px;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        margin: 8px 0;
    }
}


/*.hero-section start */

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding-top: 100px; /* offset for fixed navbar */
    padding-bottom: 50px;
    overflow: hidden;
    color: white;
}

.hero-section .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.hero-title span {
    display: inline-block;
}

.hero-title .krada {
    background: linear-gradient(93.89deg, #BBFF00 12.44%, #8DDBFF 85.37%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-description {
    max-width: 720px;
    color: #ccc;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: "Krona One", sans-serif;
    opacity: 0.9;
}

.hero-section .img-fluid {
    transition: transform 0.5s ease;
    filter: drop-shadow(0 0 15px rgba(198, 255, 0, 0.3));
    max-width: 100%;
    height: auto;
}

.hero-section .img-fluid:hover {
    transform: translateY(-10px);
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 80px;
        text-align: center;
    }

    .hero-section .row {
        flex-direction: column-reverse;
    }

    .hero-section .col-lg-4 {
        margin-bottom: 2rem;
    }

    .hero-section .img-fluid {
        max-width: 80%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        text-align: center;
        margin: 0 auto 2rem;
        font-size: 0.9rem;
        max-width: 90%;
    }

    .global-btn {
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title span {
        font-size: inherit;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-section .img-fluid {
        max-width: 85%;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .hero-section .img-fluid {
        max-width: 90%;
    }

    .global-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}


/*hero section end */



.global-btn {
    background: linear-gradient(to right, #c6ff00, #00e5ff);
    font-weight: 700;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    color: #000;
    cursor: pointer;
    position: relative;
    z-index: 1;
    box-shadow: 5px 5px 0 #86c3d0;
    animation: pulse-shadow 2s infinite;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
}

.global-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.global-btn:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0 #66b3c0;
    color: #000;
}

.global-btn:hover::before {
    left: 100%;
}

.global-btn:active {
    transform: translateY(1px);
    box-shadow: 3px 3px 0 #86c3d0;
}

@media (max-width: 575.98px) {
    .global-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}




.linkup-btn {
    background: linear-gradient(to right, #c6ff00, #00e5ff);
    font-weight: 700;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    color: #000;
    cursor: pointer;
    position: relative;
    z-index: 1;
    box-shadow: 5px 5px 0 #86c3d0;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
}

.linkup-btn svg {
    transition: transform 0.3s ease;
}

.linkup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.linkup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0 #66b3c0;
    color: #000;
}

.linkup-btn:hover svg {
    transform: scale(1.1);
}

.linkup-btn:hover::before {
    left: 100%;
}

.linkup-btn:active {
    transform: translateY(1px);
    box-shadow: 3px 3px 0 #86c3d0;
}

@media (max-width: 767.98px) {
    .linkup-btn {
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 15px;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 575.98px) {
    .linkup-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}


@keyframes pulse-shadow {
    0% {
        box-shadow: 5px 5px 0 #86c3d0, 0 0 0 0 rgba(0, 229, 255, 0.5);
    }
    70% {
        box-shadow: 5px 5px 0 #86c3d0, 0 0 0 15px rgba(0, 229, 255, 0);
    }
    100% {
        box-shadow: 5px 5px 0 #86c3d0, 0 0 0 0 rgba(0, 229, 255, 0);
    }
}





/*footer css*/
.footer {
    background-color: #000;
    padding: 40px 20px;
    font-family: 'Krona One', sans-serif;
    font-weight: 200;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.footer h5 {
    color: #fff;
}

.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: 20px;
    color: #fcf9f9;
    font-size: 13px;
}


@media (max-width: 1199.98px) {
    .footer {
        padding: 60px 0 20px;
    }
}

@media (max-width: 991.98px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-heading {
        font-size: 16px;
    }
    
    .footer-description,
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-col {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links li:hover {
        transform: none;
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    .footer-description,
    .footer-links a,
    .footer-bottom {
        font-size: 12px;
    }
    
    .footer-heading {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
    }
    
    .footer-bottom {
        margin-top: 30px;
    }
}


.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #b4f12e;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 22px;
    color: #000;
    display: none;
    z-index: 999;
}

.scroll-top:hover {
    background-color: #a2db2f;
}



.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    border-radius: 5px; /* optional, matches image corners */
    pointer-events: none;
}



.neon-divider {
    width: 100%;
    height: 4px;
    background: #BBFF00;
    position: relative;
    z-index: 1;
}


@keyframes neon-pulse {
    0% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 0.7;
    }
}





/*.rocket-invaders-section start */


.rocket-invaders-section {
    padding: 150px 0;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    color: white;
}

.rocket-invaders-section .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.rocket-invaders-section .container {
    position: relative;
    z-index: 1;
}

/* Title Image */
.rocket-invaders-section .rocket-invaders-title-img {
    max-width: 100%;
    height: auto;
}

/* Description */
.rocket-invaders-section .section-description {
    font-size: 14px;
    line-height: 1.6;
    font-family: "Krona One", sans-serif;
}

/* App Badges Styling */
.rocket-invaders-section .app-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.rocket-invaders-section .app-badge {
    width: 130px;
    filter: drop-shadow(0 0 8px #a2db2f);
    transition: transform 0.3s ease;
}

.rocket-invaders-section .app-badge:hover {
    transform: translateY(-5px);
}

/* Button */
.rocket-invaders-section .global-btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #fff;
    color: #1A1A1A;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rocket-invaders-section .global-btn:hover {
    background-color: #a2db2f;
    color: #000;
}

@media (max-width: 991.98px) {
    .rocket-invaders-section .container {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 100vh;
        padding-top: 15vh;
    }

    .rocket-invaders-section {
        padding: 120px 20px;
    }

    .rocket-invaders-section .col-lg-5,
    .rocket-invaders-section .col-lg-7 {
        text-align: center;
        margin-bottom: 40px;
    }

    .rocket-invaders-section .section-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 12px;

    }

    .rocket-invaders-section .app-links {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .rocket-invaders-section .app-links a {
        margin: 0 !important;
    }

    .rocket-invaders-section .rocket-invaders-title-img {
        max-width: 90%;
        margin: 0 auto 20px auto;
    }

    .rocket-invaders-section .global-btn {
        font-size: 0.95rem;
    }
}


@media (max-width: 575.98px) {
    .rocket-invaders-section {
        padding: 0px 0px;
    }

    .rocket-invaders-section .section-description {
        font-size: 12px;
    }

    .rocket-invaders-section .app-badge {
        width: 100px;
    }
}


@media (max-width: 767.98px) {
    .rocket-invaders-section .container {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 100vh;
        padding-top: 10vh;
    }
}



/*.rocket-invaders-section end */






/* Pinominos section css start */
.pinominos-section {
    padding: 150px 0;
    color: white;
    overflow: hidden;
    position: relative;
}

.pinominos-section .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.pinominos-bottom-left {
    position: relative;
    z-index: 2;
    text-align: left;
}

.pinominos-bottom-left .section-description {
    font-size: 12px;
    max-width: 400px;
    color: #ccc;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: "Krona One", sans-serif;
}

.pinominos-section .app-links {
    justify-content: flex-start !important;*
flex-direction: row;
    gap: 15px;
}

.pinominos-section .app-badge {
    width: 130px;
    filter: drop-shadow(0 0 8px #a2db2f);
    transition: transform 0.3s ease;
}

.pinominos-section .app-badge:hover {
    transform: translateY(-5px);
}

.pinominos-right-video video {
    width: 100%;
    max-width: 300px;
    height: auto;
    z-index: 2;
    position: relative;
    float: right;
}

/* Responsive styles */
@media (max-width: 991px) {
    .pinominos-section {
        padding: 100px 0;
    }

    .pinominos-bottom-left {
        text-align: center;
    }

    .pinominos-bottom-left .section-description {
        margin: 0 auto 30px auto;
    }

    .pinominos-section .row {
        flex-direction: column-reverse;
    }

    .pinominos-right-video {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .pinominos-right-video video {
        width: auto;
        height: 450px;
        max-height: 80vh;
        object-fit: contain;
    }

    .pinominos-section .app-links {
        justify-content: center !important;
    }
}

@media (max-width: 575px) {
    .pinominos-right-video video {
        height: 400px;
    }
}

/* Pinominos section css end */





/* ready to enter section css start */

.ready-to-enter-section {
    background-color: #0d0d0d;
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    text-align: center;
}

.ready-to-enter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(162, 219, 47, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.ready-to-enter-section .container {
    position: relative;
    z-index: 2;
}

.ready-to-enter-section h2 {
    color: #a2db2f;
    font-family: "Kufam", sans-serif;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(162, 219, 47, 0.5);
    transition: all 0.5s ease;
    font-size: 50px;
}

.ready-to-enter-section:hover h2 {
    text-shadow: 0 0 15px rgba(162, 219, 47, 0.8);
}

.ready-to-enter-section p.lead {
    max-width: 100%;
    margin: 0 auto 2rem auto;
    color: #ccc;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Krona One", sans-serif;
    transition: all 0.3s ease;
}

.ready-to-enter-section:hover p.lead {
    color: #ddd;
}

@media (max-width: 991.98px) {
    .ready-to-enter-section h2 {
        font-size: 2.2rem;
    }

    .ready-to-enter-section p.lead {
        font-size: 1.05rem;
        max-width: 90%;
    }
}

@media (max-width: 767.98px) {
    .ready-to-enter-section h2 {
        font-size: 2rem;
    }

    .ready-to-enter-section p.lead {
        font-size: 1rem;
        max-width: 95%;
    }

    .ready-to-enter-section .d-none.d-md-block {
        display: none !important;
    }

    .linkup-btn {
        min-width: 100%;
        font-size: 1rem;
        padding: 12px 20px;
    }

    .d-flex.flex-column.flex-sm-row {
        flex-direction: column !important;
        gap: 15px;
    }
}

@media (max-width: 575.98px) {
    .ready-to-enter-section {
        padding: 60px 15px;
    }

    .ready-to-enter-section h2 {
        font-size: 1.8rem;
    }

    .ready-to-enter-section p.lead {
        font-size: 0.95rem;
    }

    .linkup-btn {
        font-size: 0.95rem;
        min-width: 100%;
        padding: 10px 18px;
    }
}

/* ready to enter section css end */



/* Neon Borders for the section */
.neon-border-top,
.neon-border-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    background: #a2db2f;
    box-shadow: 0 0 15px #a2db2f, 0 0 25px #a2db2f;
    z-index: 1;
}

.neon-border-top {
    top: 0; /* Position at the top of the section */
}

.neon-border-bottom {
    bottom: 0; /* Position at the bottom of the section */
}


/* Krada App Buttons */
.btn-krada-app {
    background-color: #a2db2f; /* Neon green background */
    color: #000; /* Black text */
    font-weight: bold;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 0 15px #a2db2f, inset 0 0 5px rgba(255,255,255,0.5); /* Glow effect */
    transition: all 0.4s ease;
    min-width: 200px; /* Ensure consistent width */
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-krada-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.4s ease;
}

.btn-krada-app:hover::before {
    left: 100%;
}

.btn-krada-app i {
    font-size: 1.3em; /* Icon size */
    transition: all 0.3s ease;
}

.btn-krada-app:hover i {
    transform: scale(1.1);
}

.btn-krada-app:hover {
    background-color: #90c728; /* Slightly darker green on hover */
    box-shadow: 0 0 25px #a2db2f, inset 0 0 8px rgba(255,255,255,0.7);
    transform: translateY(-3px) scale(1.05); /* Subtle lift effect */
}

.btn-krada-app:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 0 15px #a2db2f, inset 0 0 5px rgba(255,255,255,0.5);
}






/* News section CSS start */

.news-section {
    min-height:auto;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #0d0d0d;
    max-width: 100%;


}

.heading-line {
    height: 2px;
    width: 60px;
    background: #a2db2f;
    border-radius: 2px;
    opacity: 0.8;
}

.latest-news-text {
    font-family: "Kufam", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    color: white;
}

.news-press-title {
    color: #fff;
    font-weight: 700;
    font-size: 3rem;
    font-family: "Kufam", sans-serif;
    margin-bottom: 2rem;
}

.news-press-title .text-neon-green {
    color: #b6ff4d;
}

.news-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, box-shadow 0.4s ease;
    cursor: pointer;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(166, 255, 0, 0.2);
}

.news-img {
    width: 100%;
    height: auto;
    min-height: 150px;
    max-height: 380px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px;
    color: black;
    background: linear-gradient(90deg, rgba(137,255,0,0.85) 0%, rgba(20,20,20,0.85) 100%);
    backdrop-filter: blur(4px);
    font-weight: bold;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.news-card:hover .news-overlay {
    transform: translateY(0);
}

.news-overlay button {
    background: #000;
    color: #fff;
    border: none;
    padding: 4px 8px;
    font-size: 12px;
    margin-bottom: 6px;
}

.news-overlay p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

/* Hover fallback for touch devices */
@media (hover: none) and (pointer: coarse) {
    .news-overlay {
        transform: translateY(0) !important;
    }

    .news-card:hover .news-overlay {
        transform: translateY(0) !important;
    }

    .news-img {
        transform: scale(1) !important;
    }
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .news-section {
        min-height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .news-img {
        min-height: 220px;
        max-height: 260px;
    }

    .news-press-title {
        font-size: 2.1rem;
    }

    .heading-line {
        width: 36px;
    }

    .news-overlay {
        background: linear-gradient(90deg, rgba(137,255,0,0.85) 0%, rgba(20,20,20,0.85) 100%);

        color: white;
    }

    .news-overlay p {
        font-size: 0.85rem;
    }

    .news-overlay button {
        font-size: 11px;
    }
}

@media (max-width: 767.98px) {
    .news-section {
        min-height: auto;
    }

    .news-card {
        margin-bottom: 1.5rem;
    }

    .news-overlay {
        padding: 15px;
    }
}

@media (max-width: 575.98px) {
    .news-press-title {
        font-size: 1.8rem;
    }

    .latest-news-text {
        font-size: 0.9rem;
    }

    .news-overlay p {
        font-size: 0.8rem;
    }
}

/* News section CSS end */







/* Testimonial Section */
.testimonial-section {
    padding: 150px 0;
    color: white;
    overflow: hidden;
    position: relative;
}


.testimonial-section .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.testimonial-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header h2 {
    font-size: 1.2rem;
    color: #c6ff00;
    letter-spacing: 2px;
}

.testimonial-header p {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
}

.testimonial-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 80px;
}

.testimonial-cards {
    position: relative;
    width: 72%;
    min-height: 280px;
}

.testimonial-card {
    position: absolute;
    width: 70%;
    padding: 50px;
    background-color: rgba(26, 26, 26, 0.9);
    border-radius: 10px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    clip-path: polygon(50px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 50px);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card:nth-child(1) {
    transform: rotate(-5deg);
    z-index: 3;
}

.testimonial-card:nth-child(2) {
    transform: rotate(-3deg);
    top: 20px;
    left: 20px;
    opacity: 0.7;
    z-index: 2;
}

.testimonial-card:nth-child(3) {
    transform: rotate(-1deg);
    top: 40px;
    left: 40px;
    opacity: 0.5;
    z-index: 1;
}

.testimonial-card.active {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    z-index: 4;
    opacity: 1;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-author-info {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c6ff00;
    transition: all 0.3s ease;
}

.testimonial-card.active .testimonial-author-image img {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(198, 255, 0, 0.5);
}

.testimonial-position {
    color: #999;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-side-rating {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
}

.side-rating-value {
    font-size: 150px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 10px;
    background: linear-gradient(to right, #c6ff00, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.side-rating-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #c6ff00;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.client-rating {
    font-size: 1rem;
    color: #c6ff00;
    text-align: right;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    margin-top: 120px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #666;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #c6ff00;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(198, 255, 0, 0.7);
}

.testimonial-card.transitioning {
    z-index: 5 !important;
    transition: all 0.5s ease, z-index 0s;
}

/* Responsive Layout */
@media (max-width: 1199.98px) {
    .testimonial-card {
        width: 80%;
        padding: 40px;
    }
    
    .side-rating-value {
        font-size: 120px;
    }
}

@media (max-width: 991.98px) {
    .testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial-container {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }

    .testimonial-cards {
        width: 100%;
        margin-bottom: 40px;
        min-height: 320px;
    }

    .testimonial-side-rating {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .side-rating-value {
        font-size: 5rem;
    }

    .testimonial-header h2 {
        font-size: 1rem;
    }

    .testimonial-header p {
        font-size: 2rem;
    }

    .testimonial-content {
        font-size: 1rem;
    }

    .testimonial-indicators {
        margin-top: 60px;
    }

    .testimonial-card {
        clip-path: polygon(30px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 30px);
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-section {
        padding: 40px 0;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-content {
        font-size: 0.9rem;
    }
    
    .testimonial-author {
        font-size: 1rem;
    }
    
    .testimonial-position {
        font-size: 0.8rem;
    }
    
    .testimonial-author-image img {
        width: 50px;
        height: 50px;
    }
    
    .side-rating-value {
        font-size: 4rem;
    }
}

@media (max-width: 575.98px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-content {
        font-size: 0.85rem;
    }
    
    .testimonial-author-info {
        gap: 0.5rem;
    }
    
    .testimonial-author-image img {
        width: 40px;
        height: 40px;
    }
    
    .side-rating-value {
        font-size: 3.5rem;
    }
    
    .client-rating {
        font-size: 0.9rem;
    }
}


/* terms */

.terms-section {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34, 197, 94, 0.25), transparent 70%), #000000;


  color: #ffffff;
  padding: 60px 0;
  margin-top: 40px;
}

.terms-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* .terms-section h2 .text-green,
.terms-section .text-green {
  color: #b6ff2b;
} */

.terms-section h5 {
  margin-top: 30px;
  font-weight: 600;
  /* color: #b6ff2b; */
}

.terms-section p,
.terms-section li {
  font-size: 14px;
  line-height: 1.8;
}

.terms-section ul {
  padding-left: 20px;
}
.section-animate {
    opacity: 0;
    transform: scale(0.95);
    transition: all .5s ease-in;
    will-change: opacity, transform;
}

.section-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}




/*modal css */
.hover-container {
    position: relative;
}

/* Hide the app store badges by default */
.store-modal .hover-container .app-badges {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    white-space: nowrap;
    margin-top: 10px;
}

/* Show badges on hover */
.store-modal .hover-container:hover .app-badges {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Style the app badges */
.store-modal .app-badge {
    height: 40px;
    width: auto;
    transition: transform 0.2s ease;
}

.store-modal .app-badge:hover {
    transform: scale(1.05);
}

/* Add some spacing between badges */
.store-modal  .app-badges a:not(:last-child) {
    margin-right: 10px;
}

/* Navbar brand image hover effect */
.navbar-brand img {
    transition: transform 0.3s ease;
}

.store-modal .hover-container:hover .navbar-brand img {
    transform: scale(1.05);
}

/* Arrow pointing up from the tooltip */
.store-modal .app-badges::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}


