/* General Styles */
:root {
    --primary-color: #0066cc;
    --danger-color: #ED1C24;
    --dark-blue: #001233;
    --feature-card: #D1D3D4;
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    font-family: Roboto, "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}

.bg-black {
    background-color: #000 !important;
}

.btn-danger {
    background-color: var(--danger-color);
    border-color: var(--danger-color);
    color: #ffffff;
}



/* Hero Carousel Section */

.herohome-title {
    font-size: 64px !important;
    line-height: 1.2 !important;
    margin-bottom: 2rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.g-4 {
    row-gap: 24px !important;
}

.g-8 {
    column-gap: 56px !important;
    row-gap: 24px !important;

}

.center_items {
    justify-content: center !important;
    align-items: center !important;
}

.hero-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
    padding: 0 1rem !important;
}


#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

#heroCarousel {
    height: 100%;
    width: 100%;
}

#heroCarousel .carousel-inner {
    height: 100%;
}

#heroCarousel .carousel-item {
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero-bg.jpg') center/cover;
}

#heroCarousel .hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}


.hero-subtitle2 {
    font-size: 36px;
    line-height: 1.6;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle3 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 75px 0;
}

#features {
    padding: 6rem 0;
}

.display-3 {
    font-size: 96px;
    font-weight: 700;
    color: var(--danger-color);
    text-shadow: 5px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-muted {
    --bs-text-opacity: 1;
    color: #dee2e6 !important;
}



.get-started-btn {
    font-size: 1.25rem;
    padding: 1rem 3rem;
    border-radius: 4px;
    text-transform: none;
    transition: all 0.3s ease;
    background-color: var(--danger-color);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.5);
    background-color: #d73535;
    color: #ffffff;
}

/* Carousel Indicators */
#heroCarousel .carousel-indicators {
    bottom: 30px;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--danger-color);
    transform: scale(1.2);
}

/* Carousel Fade Effect */
#heroCarousel.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

#heroCarousel.carousel-fade .carousel-item.active,
#heroCarousel.carousel-fade .carousel-item-next.carousel-item-start,
#heroCarousel.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

#heroCarousel.carousel-fade .active.carousel-item-start,
#heroCarousel.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s;
}

/* Individual slide backgrounds */
.carousel-item:nth-child(1) .hero-slide {
    background: url('../images/v2/hero_slide_bg.png') center/cover;
}

.carousel-item:nth-child(2) .hero-slide {
    background: url('../images/v2/hero_slide_bg.png') center/cover;
}

.carousel-item:nth-child(3) .hero-slide {
    background: url('../images/v2//hero_slide_bg.png') center/cover;
}

/* Features Section */
.feature-card {
    background: var(--feature-card) !important;
    padding: 3rem 2rem !important;
    border-radius: 15px !important;
    text-align: center !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
    border: 1.5px solid #ED1C24 !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #7a7a7a;
}

.icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
    color: #ffffff;
}

/* Stats Section */
.stat-card {
    max-width: 300px !important;
    border-radius: 15px !important;
    padding: 16px 24px !important;
    height: fit-content !important;
}

.stat-card p {
    font-size: 24px !important;
    font-weight: 700;
    line-height: 28px;
    color: black;
}

.stat-card span {
    font-size: 24px !important;
    font-weight: 500;
    color: black;
}

.stat-card small {
    color: black;

}

.stat-card:hover {
    transform: translateY(-5px);
    background: #7a7a7a;
}

/* Zero Trust Section */
#zero-trust {
    padding: 6rem 0;
    background: #000000;
}

.zero-trust-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    background: transparent;

}

.circle-icon {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    background: #e8e9ea;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    border: 1.5px solid var(--danger-color);
}

.circle-icon>span {
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-icon .zero-trust-title {
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials styling */

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    row-gap: 24px;
    column-gap: 300px;
}

.testimonial-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-logo {
    width: 60px;
    height: 60px;
    margin-right: 1.5rem;
    border-radius: 8px;
    background: #ffffff;
    padding: 8px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333333;
}

.testimonial-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    max-width: 300px;
    text-decoration: none;
}


.testimonial-text:hover {
    color: var(--danger-color);
}

.zero-trust-card:hover .circle-icon {
    background: #ffffff;
    color: #0066cc;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.zero-trust-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    transition: all 0.3s ease;
    padding: 0 0.5rem;
}

.zero-trust-card:hover .zero-trust-title {
    color: #000000;
}

.circle-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

#zero-trust .herohome-title {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

#zero-trust .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.1rem;
}

/* CTA Section */
#cta {
    padding-bottom: 64px;
}

.customer-slider {
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    background: #dee2e6;
    border-radius: 15px;
    margin-top: 80px;
    margin-bottom: 140px;
}

.slide-track {
    display: flex;
    width: calc(200px * 16);
    /* 8 logos × 2 for the loop */
    animation: scroll 30s linear infinite;
}

.slide {
    width: 200px;
    padding: 0 20px;
    flex-shrink: 0;
}



.slide img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.3s ease;
}

.slide img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 8));
        /* 8 logos */
    }
}

/* CTA Buttons Styling */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.brandSubtitle {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* Footer Styling */
footer {
    border-top: 1px solid #333;
}

.funded-by-section .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

/* Learn More Button Styling */
.btn-outline-light {
    background-color: var(--danger-color) !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 12px 10px !important;
    border-radius: 10px !important;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {


    #hero {
        height: 50vh !important;
    }

    .herohome-title {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-content {
        padding: 0 2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-subtitle2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-subtitle3 {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .get-started-btn {
        font-size: 1rem;
        padding: 0.6rem 2rem;
    }

    #heroCarousel .carousel-indicators button {
        display: none;
    }

    .stat-card {
        margin-bottom: 1rem;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .feature-card {
        padding: 2rem 1.5rem !important;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .stat-card {
        max-width: 100%;
        margin: 0 30px;
    }

    .circle-icon {
        width: 200px;
        height: 200px;
        margin: 0 auto 0rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 200px;
    }

    .herohome-title {
        font-size: 1.5rem !important;
    }

    .hero-subtitle3 {
        margin: 35px 0;
    }

    .testimonial-item {
        display: flex;
        align-items: center;
        padding-left: 10px;
        margin-bottom: 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .testimonial-logo {
        margin-right: 0;
        margin-bottom: 1rem;
        margin-right: 15px;
    }

    .testimonial-text {
        font-size: 1.2rem !important;
    }

    .zero-trust-card {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle2 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle3 {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
        margin: 0 30px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }



}