/* Modern Hero Section Styles with Teal-Purple Theme */
:root {
    --primary-teal: #3fb0ac;
    --secondary-purple: #6a4c93;
    --accent-light: #8be9fd;
    --text-light: #f8f9fa;
    --text-dark: #333333;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-purple));
}

/* Particles Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Glass Container */
.hero-glass-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    gap: 40px;
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    padding: 30px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Hero Content */
.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content .subheading {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.hero-content .highlight {
    color: var(--accent-light);
    position: relative;
    display: inline-block;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--accent-light);
    bottom: 5px;
    left: 0;
    z-index: -1;
    opacity: 0.3;
    border-radius: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.primary-btn {
    background-color: var(--accent-light);
    color: var(--text-dark);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 233, 253, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.secondary-btn:hover {
    background-color: var(--text-light);
    color: var(--secondary-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 400px;
}

.custom-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.logo-container:hover .custom-logo img {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
}

.logo-text {
    text-align: center;
}

.logo-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.logo-text h2 span {
    color: var(--accent-light);
}

.logo-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-glass-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content .subheading {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 5% 60px;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content .subheading {
        font-size: 1.1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .custom-logo {
        width: 150px;
        height: 150px;
    }
    
    .logo-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .subheading {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
    }
}
