:root {
    --primary-color: #0d6efd;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.navbar-brand img.logo {
    height: 40px;
    width: auto;
}

/* Section Spacing */
.section-spacer {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .section-spacer {
        padding: 2.5rem 0;
    }
}

/* Carousel */
#vaultx-carousel {
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    margin: 0 auto 4rem;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-inner {
    border-radius: 1rem;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.carousel-item {
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item .card {
    height: 100%;
    border: none;
    background: transparent;
}

.carousel-item img, 
.carousel-item video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

/* Video Section */
.vision-section {
    margin: 4rem auto;
    max-width: 900px;
}

/* Partners Section */
.partners-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.partner-card {
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.partner-card img {
    height: 120px;
    object-fit: contain;
    padding: 1.5rem;
}

.partner-card .card-body {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 2.5rem 0;
    margin-top: auto;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    #vaultx-carousel {
        height: 60vh;
        min-height: 450px;
    }
    
    .carousel-caption {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    #vaultx-carousel {
        height: 50vh;
        min-height: 400px;
    }
    
    .carousel-caption h3 {
        font-size: 1.25rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .partner-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    #vaultx-carousel {
        height: 45vh;
        min-height: 350px;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
}
#Intro{
    padding-top: 5%;
}
#Intro-p{
    font-style: italic;
}