/* Index Page Specific Styles */

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content .sub-heading {
    font-size: 24px;
    font-weight: 300;
}

.hero-content .tagline {
    font-size: 28px;
    font-weight: 400;
    margin-top: 10px;
}

.services-solutions {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.services-solutions-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.services-solutions-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.services-solutions-content p {
    font-size: 18px;
    color: #666;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.service-card-icon {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
}

.map-section {
    background: #fff;
    padding: 80px 0;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.map-image img {
    max-width: 100%;
    border-radius: 8px;
}

.map-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.experience-banner {
    background-color: #f9f9f9;
    padding: 20px 0;
    text-align: center;
}

.experience-banner h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-box i {
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #333;
}

.stat-box p {
    font-size: 16px;
    color: #666;
}

.commitment-section {
    padding: 80px 0;
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.commitment-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.commitment-icon {
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 25px;
}

.commitment-title {
    font-size: 24px;
    margin-bottom: 15px;
}
