/* Main Page Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.75), rgba(0, 85, 128, 0.75)),
                url('../img/happy_people_01.jpg') center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 204, 102, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 136, 204, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero h2 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn {
    background: #00cc66;
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: bold;
    box-shadow: 0 6px 25px rgba(0, 204, 102, 0.4);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btn:hover {
    background: #00a854;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 204, 102, 0.5);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-light {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-with-bg {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(248, 249, 250, 0.88)),
                url('../img/unnamed.jpg') center/cover fixed;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #0088cc, #00cc66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.section-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    text-align: center;
    color: #666;
}

/* Who We Are */
.about-section {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    font-size: 18px;
    line-height: 1.9;
    text-align: center;
}

.about-text p {
    margin-bottom: 25px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #0088cc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* Fields of Employment */
.fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.field-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.field-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0088cc, #00cc66);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.field-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.field-card:hover::before {
    transform: scaleX(1);
}

.field-icon {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0088cc, #00cc66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.field-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0088cc;
}

.field-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Services */
.services-section {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.services-list {
    margin-top: 30px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border-left: 4px solid #00cc66;
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-icon {
    color: #00cc66;
    font-size: 28px;
    margin-right: 20px;
    margin-top: 2px;
}

.service-text {
    font-size: 17px;
    line-height: 1.7;
}

.alert-box {
    background: linear-gradient(135deg, #fff3cd, #ffe8a1);
    border-left: 5px solid #ffc107;
    padding: 25px;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.alert-box strong {
    color: #856404;
    font-size: 18px;
}

.financial-benefits {
    background: linear-gradient(135deg, #00cc66 0%, #00a854 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin: 50px 0;
    box-shadow: 0 15px 40px rgba(0, 204, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.financial-benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.financial-benefits h3 {
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.salary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.salary-item {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}

.salary-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
}

.salary-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.financial-note {
    margin-top: 18px;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.75), rgba(0, 85, 128, 0.75)),
                url('../img/happy_people_02.jpg') center/cover fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 204, 102, 0.2) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-btn {
    background: #00cc66;
    color: white;
    padding: 20px 70px;
    border: none;
    border-radius: 30px;
    font-size: 22px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: bold;
    box-shadow: 0 8px 30px rgba(0, 204, 102, 0.4);
}

.cta-btn:hover {
    background: #00a854;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 204, 102, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .fields-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section,
    .services-section {
        padding: 30px 20px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-btn {
        padding: 15px 40px;
        font-size: 18px;
    }
}
