.bgbanner {
    /* background: url('../images/homepagebg.jpeg'); */
    background-repeat: no-repeat;
    background-size: cover;
    /* background: linear-gradient(to bottom, 
    var(--clr-primary) 0%, 
    white 100%
  ); */
}

.articlebanner {
    /* background-color: white; */
    background-repeat: no-repeat;
    background-size: cover;
    height: 75vh;
    background: linear-gradient(to bottom,
            var(--clr-primary) 0%,
            var(--clr-surface) 100%);
}

/* .bannerContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
} */
#banner1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 90vh;
    /* background: linear-gradient(to bottom, 
    var(--clr-primary) 0%, 
    white 100%
  ); */
    padding: 3%;
}

.banner1-in {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: url('../images/homepagebg.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 80vw;
    height: 100%;
    border-radius: 30px;
}

@media (max-width:575px) {
    .banner1-in {
        width: 85vw;
    }

    #banner1 {
        height: 60vh;
        margin: 20px 0;
    }
}

.banner1-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(from var(--clr-primary) r g b / 55%);
    backdrop-filter: blur(4px);
    height: 100%;
    width: 100%;
    border-radius: 30px;
}

@media (max-width:575px) {
    .banner1-in {
        width: 95vw;
        height: 60vh;
    }

    .banner1 {
        height: 45vh
    }
}


.articlebanner-in {
    height: 75vh;
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
    /* background: linear-gradient(to bottom, 
    var(--clr-primary) 0%, 
    var(--clr-surface) 100%
  ); */
    background: transparent;
}

.articlebanner-in * {
    color: var(--clr-on-primary);
}



#banner2 {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    background-color: #0b4550ab;
    height: 90vh;
    overflow: scroll;
    display: flex;
    padding-top: 10vh;
    /* padding-bottom:20vh */
    /* background: linear-gradient(to top, 
    var(--clr-primary) 0%, 
    var(--clr-secondary) 100%
  ); */
}

.homebtn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 205, 230);
    color: #0B4450;
    font-size: 1.5rem;
    border-radius: 10px;
    box-shadow: #063039;
    margin: 5px;
    padding: 8px;
    transition-duration: 0.3s;
}

.homebtn:hover {
    background-color: #c86d99;
    color: white;
}

.homebtn-yellow {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 250, 182);
    color: #0B4450;
    font-size: 1.5rem;
    border-radius: 10px;
    box-shadow: #063039;
    margin: 5px;
    padding: 8px;
    transition-duration: 0.3s;
}

.homebtn-yellow:hover {
    background-color: #aea743;
    color: white;
}

.homebtn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    color: #0B4450;
    font-size: 1.5rem;
    border-radius: 10px;
    box-shadow: #063039;
    margin: 5px;
    padding: 8px;
    transition-duration: 0.3s;
}

.homebtn2:hover {
    background-color: #0B4450;
    color: white;
}

.homebtn-sm {
    text-align: center;
    background-color: rgb(255, 205, 230);
    color: #0B4450;
    border-radius: 8px;
    margin: 5px;
    padding: 3px;
    transition-duration: 0.3s;
}

.homebtn-sm:hover {
    background-color: #0B4450;
    color: white;
}

.homebtn-sm2 {
    text-align: center;
    background-color: var(--clr-on-secondary);
    color: var(--clr-secondary);
    border-radius: 0.4rem;
    border: 1px solid var(--clr-secondary);
    transition-duration: 0.3s;
    box-shadow: 0 0 0.3rem -0.1rem var(--clr-secondary);
    padding: 10px;
}

.homebtn-sm2:hover {
    background-color: var(--clr-secondary-dark);
}

.separation-lg {
    padding-bottom: 20px;
    width: 100%;
}

.bannerbox {
    max-width: 40vw;
    color: rgb(251, 251, 251);
    transition-duration: 0.3s;
    padding: 20px;
    margin: 20px;
    background-color: rgba(255, 196, 238, 0.153);
    border-radius: 30px;
    backdrop-filter: blur(3px);
    box-shadow: 5px 5px rgba(0, 0, 0, 0.3);
    perspective: 1000px;
    /* Defines the viewing distance for the 3D effect */
    display: none;
}

.bannerbox:hover {
    transform: scale(1.05) translateY(-5px);
    /* Scale up and move slightly up */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Enhanced shadow */
}

.featurebox {
    max-width: 40vw;
    color: rgb(10, 13, 69);
    transition-duration: 0.3s;
    padding: 20px;
    margin: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 5px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    text-align: center;
}

.featurebox:hover {
    transform: scale(1.05) translateY(-5px);
    /* Scale up and move slightly up */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Enhanced shadow */
}

.articlebox {
    color: rgb(10, 13, 69);
    transition-duration: 0.3s;
    padding: 20px;
    margin: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 5px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    text-align: center;
}

.articlebox:hover {
    transform: scale(1.05) translateY(-5px);
    /* Scale up and move slightly up */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Enhanced shadow */
}


.homeheader {
    color: var(--clr-on-primary);
    font-size: 6rem;
    font-weight: bold;
}

.homesubheader {
    color: var(--clr-on-primary);
    text-align: center;
    font-size: 2rem
}


.homesubsubheader {
    color: var(--clr-on-primary);
    text-align: center;
    font-size: 1.5rem
}

@media (max-width:1080px) {
    .bannerbox {
        max-width: 80vw;
        display: none;
    }

    .homeheader {
        font-size: 2.5rem;
    }

    .homesubheader {
        font-size: 1.7rem;
    }

    .homesubsubheader {
        font-size: 1.3 rem;
    }

}

@media (max-width:480px) {
    .homeheader {
        font-size: 2.5rem;
    }

    .homesubheader {
        font-size: 1.7rem;
    }

    .homesubsubheader {
        font-size: 1.1rem;
        padding-top: 5%;
    }
}

@media (min-width:1080px) {
    /* #bannerbtn {
        display: none;
    } */
}

.articleheader {
    color: var(--clr-on-surface);
    font-size: 3rem;
    font-weight: bold;
    text-align: left;
    margin: 3% 0;
}

.articlesubheader {
    color: var(--clr-on-surface);
    text-align: left;
    font-size: 1.5rem;
    margin: 3% 0;
}

.articlesubsubheader {
    color: var(--clr-on-surface);
    text-align: left;
    font-size: 1.2rem;
    margin: 3% 0;
}

@media (max-width:1080px) {

    .articleheader {
        font-size: 2.0rem;
    }

    .articlesubheader {
        font-size: 1.7rem;
    }

    .articlesubsubheader {
        font-size: 1.3rem;
    }

}

@media (max-width:480px) {
    .articleheader {
        font-size: 2.0rem;
    }

    .articlesubheader {
        font-size: 1.7rem;
    }

    .articlesubsubheader {
        font-size: 1.3rem;
    }
}

@media (min-width:1080px) {
    /* #bannerbtn {
        display: none;
    } */
}



.bannerbox:hover {
    color: white;
}

#bannerbtn {
    background-color: white;
    color: #0B4450;
    font-size: 1.5rem;
    border-radius: 10px;
    box-shadow: #063039;
    margin: 5px;
    padding: 8px;
    transition-duration: 0.3s;
}

#bannerbtn:hover {
    background-color: #0B4450;
    color: white;
}

/* footer styles */
:root {
    --bg: #222222;
    --fg: #ffffff;
    --muted: #bbbbbb;
    --accent: #4dd0e1;
    --maxw: 1200px;
    --gap: 20px;
}



/* Footer */
footer.site-footer {
    background: var(--bg);
    color: var(--fg);
}

.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 32px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap);
}

.footer-col h3 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: var(--fg);
}

.footer-col p,
.footer-col a,
.footer-col li,
.footer-col address,
.footer-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-col a {
    color: var(--fg);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-col a:hover,
.footer-col a:focus {
    color: var(--accent);
    border-bottom-color: var(--accent);
    outline: none;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

address {
    font-style: normal;
    white-space: pre-line;
}

.footer-sep {
    height: 1px;
    background: #333333;
    margin: 8px 0 0 0;
    border: 0;
}

.footer-note {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    font-size: 0.9rem;
    color: var(--muted);
}

.legal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.legal a {
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px dotted #555;
}

.legal a:hover,
.legal a:focus {
    color: var(--accent);
    border-bottom-color: var(--accent);
    outline: none;
}



/* Responsive layout */
@media (min-width: 600px) {
    .footer-inner {
        padding: 36px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    #banner2 {
        display: none;
    }
}

@media (min-width: 900px) {
    .footer-inner {
        padding: 40px 32px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-note {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

}

.homeimages img {
    width: 100%
}

@media (max-width: 575px) {
    .homeimages img {
        width: 50%
    }
}

/* Enhanced Stats Section */
.stats-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--clr-primary), transparent);
    border-radius: 50%;
}

.stats-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 32px rgba(30, 90, 168, 0.15);
}

.stats-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 0.95rem;
    color: var(--clr-primary);
    opacity: 0.85;
}

/* Feature Cards Enhancement */
.feature-card {
    height: 100%;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--clr-primary);
}

.feature-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/* Investors Section */
.investors-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(from var(--clr-primary) r g b / 3%) 0%, rgba(from var(--clr-primary) r g b / 1%) 100%);
    border-radius: 16px;
}

.investor-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    height: 200px;
}

.investor-logo-container:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.investor-logo-container img {
    max-width: 100%;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 2rem;
    height: auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--clr-primary);
    transition: all 0.3s ease;
    height: 90%;
    width: 450px;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: var(--clr-primary);
    margin-bottom: 0.25rem;
}

.testimonial-title {
    font-size: 0.9rem;
    color: #666;
}

.star-rating {
    color: #ffc107;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Video Section */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Screenshots Section */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.screenshot-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.screenshot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1rem 1rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-card:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-title {
    font-weight: bold;
    font-size: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Animation Classes */
.fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.fadeInUp-delay-1 {
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.fadeInUp-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.fadeInUp-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scaleIn {
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}