/* Base Styles */
@import url('style.css');

/* GeM Banner */
.gem-banner {
    background: linear-gradient(rgba(0, 50, 95, 0.8), rgba(0, 50, 95, 0.8)), 
                url('../images/gem-banner-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 8rem 1rem;
    position: relative;
    margin-bottom: 4rem;
}

.banner-overlay {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gem-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.gem-banner .banner-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* GeM Intro */
.gem-intro {
    padding: 4rem 10%;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    padding: 1.5rem;
}

.number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0066cc;
    display: block;
}

/* Services Grid */
.service-categories {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-600);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gem-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    background: rgba(253, 177, 3, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card ul {
    text-align: left;
    margin: 0;
    padding: 0 0 0 1.25rem;
    flex-grow: 1;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: var(--neutral-700);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
}

.service-card li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* Process Steps */
.gem-process {
    padding: 4rem 10%;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
    position: relative;
}

.step-number {
    background: #0066cc;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* Startup Section */
.gem-startups {
    background: #e6f2ff;
    padding: 4rem 10%;
}

.gem-startups ul {
    text-align: left;
    max-width: 800px;
    margin: 2rem auto;
}

/* FAQ */
.faq {
    padding: 4rem 10%;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Process Section */
.process-section {
    background-color: var(--background-light);
}

/* Page Hero */
.page-hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 5rem 0 3rem 0;
    position: relative;
}

/* FAQ Section */
.faq-section {
    background-color: var(--background-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }
    .stats {
        flex-direction: column;
    }
}