/* index.css specific rules */

/* Animated Gradient Overlay for Hero */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.45) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Glassmorphism for the executive word */
.executive-word {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(10, 25, 47, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.executive-word:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.12);
}

.executive-word p {
    font-size: 1.15rem;
}

/* CTA Section containing photo2 */
.cta-section {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(10, 25, 47, 0.05));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.cta-image {
    flex: 1;
    min-width: 300px;
}

.cta-image img {
    width: 100%;
    border-radius: 15px;
    border: 3px solid var(--gold);
    box-shadow: 0 15px 35px rgba(10, 25, 47, 0.1);
    transition: transform 0.3s ease;
}

.cta-image img:hover {
    transform: scale(1.03);
}
