﻿
#HeroBanner
{
    width: 63%;
    margin-block-start: 0;
}

.home-container
{
    padding-left: 120px !important;
    padding-right: 120px !important;
}

#HeroHead
{
    font-family: "DM Sans", sans-serif;
    font-size: 60px;
    line-height: 1.01;
}

#HeroP
{
    margin: 0;
    text-align: start;
    opacity: 1;
    color: #829094;
}

#HeroImgContainer
{
    margin-left: auto;
}

#HeroImg
{
    width: 500px;
    margin-top: -50px;
    animation: floatUpDown 4s ease-in-out infinite;
}


@keyframes floatUpDown
{
    0%
    {
        transform: translateY(0px);
    }

    50%
    {
        transform: translateY(-20px);
    }

    100%
    {
        transform: translateY(0px);
    }
}

.service-card
{
    background-color: rgba(255, 255, 255, 0.02) !important; /* translucent glassy feel */
    border: 1px solid rgba(255, 255, 255, 0.08) !important; /* subtle border */
    border-radius: 16px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover
{
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card i
{
    color: var(--theme-blue); /* bright neon-ish accent */
}

.service-card h5
{
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card p
{
    color: #dddddd;
    font-size: 0.95rem;
}

.hero-container
{
    padding-block-end: 30px !important;
}

.about-us-section
{
    background: radial-gradient(at center center, #333644 0%, #021623 70%);
}

.text-accent
{
    color: var(--theme-blue);
}

.bg-gradient
{
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(0,0,0,0.2));
    border: 1px solid rgba(255,255,255,0.08);
}

.vision-card, .mission-card
{
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.why-us-section
{
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.calculator-section
{
    /*background: rgba(255, 255, 255, 0.02);*/
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.calculator-section input.form-control,
.calculator-section select.form-select
{
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.calculator-section input.form-control:focus,
.calculator-section select.form-select:focus
{
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 255, 208, 0.2);
    border-color: #00ffd0;
}

.summary-card
{
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
}

.calculator-inputs
{
    background-color: transparent !important;
    border: 1px solid var(--theme-blue) !important;
}

/* Force dropdown item background & text color */
.calculator-inputs option
{
    background-color: #021623; /* match your page background */
    color: #ffffff;
}

/* Optional hover/focus state for clarity */
.calculator-inputs option:hover,
.calculator-inputs option:checked
{
    background-color: #0d2e3a;
    color: #00ffd0;
}


.partners-section
{
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
}

.partner-logo
{
    max-width: 120px;
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover
{
    transform: scale(1.05);
    opacity: 1;
}

.testimonials-section
{
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.testimonial-card
{
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
}


.partner-ticker-wrapper
{
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.partner-ticker
{
    animation: scrollTicker 30s linear infinite;
    white-space: nowrap;
    gap: 60px;
}

.partner-ticker img
{
    height: auto;
    max-height: 60px;
    margin: 0 30px;
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-ticker img:hover
{
    transform: scale(1.05);
    opacity: 1;
}

.partner-ticker-wrapper
{
    overflow: hidden;
    position: relative;
}

.partner-ticker .ticker-slide
{
    animation: tickerScroll 30s linear infinite;
    gap: 3rem;
}

.partner-logo
{
    height: 40px;
    margin-right: 3rem;
    object-fit: contain;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.partner-logo:hover
{
    transform: scale(1.05);
    opacity: 1;
}

@keyframes tickerScroll
{
    0%
    {
        transform: translateX(0%);
    }

    100%
    {
        transform: translateX(-50%);
    }
}

.full-width-section
{
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: hidden; /* prevents content overflow causing scroll */
}

body
{
    overflow-x: hidden; 
}

.full-width-section .inner-container
{
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.cta-section
{
    min-height: 500px;
    overflow: hidden;
}

.cta-bg
{
    background-image: url('/images/home/cta-bg.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transform: scale(1.05);
}

.cta-overlay
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.cta-section .container
{
    z-index: 3;
}

/* Testimonial carousel buttons - clean and wide */
.carousel-control-prev,
.carousel-control-next
{
    width: 3.5rem;
    height: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover
{
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

/* Move buttons farther outside container */
.carousel-control-prev
{
    left: -60px; /* Push left */
}

.carousel-control-next
{
    right: -60px; /* Push right */
}

/* Improve icon look */
.carousel-control-prev-icon,
.carousel-control-next-icon
{
    background-size: 60% 60%;
    filter: brightness(0) invert(1);
}

/* Allow overflow to show buttons outside container */
#testimonialCarousel
{
    overflow: visible;
    position: relative;
}

.app-mockup-card img
{
    border-bottom: 1px solid rgba(255,255,255,0.1);
    object-fit: cover;
    max-height: 400px;
}

.app-screenshots-section
{
    border: 1px solid rgba(255,255,255,0.08);
}

.mockup-inner-card
{
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.mockup-img
{
    object-fit: contain;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-form input,
.contact-form textarea
{
    color: #fff;
    background-color: rgba(255,255,255,0.03) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder
{
    color: rgba(255,255,255,0.5) !important;
}

.contact-form
{

}
.header-section--style4.header-fixed
{
    background: #0d2e3a !important;
}

.btn-theme
{
    background: var(--theme-blue) !important;
}

.custom-modal-content
{
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
}

.modal-backdrop.show
{
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.header-bar--style2 span
{
    background: var(--theme-blue) !important;
}