/* ---- HERO SECTION ---- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #192D52 0%, #2B4A73 50%, #1A2B4A 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
}

.hero-section .logo {
    margin-bottom: 40px;
}

.hero-section .logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.hero-title {
    font-size: 96px;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 24px;
    line-height: 1;
}

.hero-subtitle {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 32px;
    line-height: 1.1;
}

.hero-description {
    font-size: 28px;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
}

/* ---- ABOUT SECTION ---- */
.about-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #192D52;
}

.about-subtitle {
    font-size: 1.25rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #666;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #192D52;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: #333;
}

.stat-description {
    color: #666;
    font-size: 0.9rem;
}

/* ---- INDUSTRIES SECTION ---- */
.industries-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #192D52;
}

.industries-subtitle {
    font-size: 1.125rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #666;
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.industry-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #192D52;
}

.industry-description {
    color: #666;
    line-height: 1.6;
}

/* ---- VALUE SECTION ---- */
.value-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #192D52;
}

.value-subtitle {
    font-size: 1.125rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #666;
    line-height: 1.6;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-heading {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #192D52;
}

.value-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* ---- VALUE/TRANSFORMATION SECTION ---- */
.transformation-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.1;
    text-align: center;
    color: #192D52;
}

.transformation-subtitle {
    font-size: 1.3125rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 4rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #666;
}

.cta-button {
    display: block;
    background: #ffc800;
    color: #192D52;
    padding: 1.25rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1875rem;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    letter-spacing: -0.5px;
    text-align: center;
    margin: 2rem auto 0;
    width: fit-content;
}

.cta-button:hover {
    background: #e6b400;
    color: #192D52;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 200, 0, 0.3);
    text-decoration: none;
}

/* ---- TEAM SECTION ---- */
.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #192D52;
    text-align: center;
    margin-bottom: 1rem;
}

.team-subtitle {
    font-size: 1.25rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.team-member {
    margin-bottom: 3rem;
    text-align: center;
}

.team-member img {
    width: 14rem;
    height: 14rem;
    border: 0.5rem solid rgba(25, 45, 82, 0.1);
}

.team-member h4 {
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: #192D52;
}
/* ---- CONTACT SECTION ---- */
.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #192D52;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.6;
}

/* ---- FORMS ---- */
#contact .form-group {
    margin-bottom: 1.5rem;
}

#contact .form-control {
    background-color: #fff;
    border: 1px solid #ced4da;
    color: #192D52;
    font-size: 1.125rem;
    padding: 0.75rem;
    min-height: 3rem;
}

#contact .form-control:focus {
    border-color: #ffc800;
    box-shadow: 0 0 0 0.2rem rgba(255, 200, 0, 0.25);
}

#contact textarea.form-control {
    height: 15rem;
    resize: vertical;
}