/* Hero Section */
/* Hero Section Container */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden; /* Important to hide video overflow */
}

/* The actual Video styling */
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2; /* Sends video to the back */

    filter: blur(4px); /* Adjust the '8px' to make it more or less blurry */
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover; /* Ensures video fills the space without stretching */
}

/* Dark Overlay to ensure white text pops */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(102, 53, 0, 0.9), rgba(167, 97, 0, 0)); /* Corporate Blue with 60% transparency */
    z-index: -1; /* Sits between the video and the text */
}

/* Ensure text stays on top */
.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    margin-top: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* Adds extra readability */
}

h2 {
    text-align: center;
    padding-bottom: 15px;
    font-size: 2rem;
}

.hero-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
}

.btn-link {
    color: black;
}

.section-title { text-align: center; margin-bottom: 40px; font-size: 2.5rem; color: var(--primary-color); }

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-item {
    background: #fff;
    padding: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s;
}

.pillar-item:hover { transform: translateY(-10px); border-color: var(--secondary-color); }
.pillar-item i { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; }
.center-btn { text-align: center; margin-top: 40px; }

/* Mobile adjustments for Video */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1rem;
    }

    .pillar-item {
        padding: 20px;
    }
}
/* Pillars Section */
