/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #36454F; /* Charcoal text */
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    background-color: #ffffff; /* White background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #800020; /* Burgundy */
    color: #ffffff; /* White text */
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 25px;
    margin-bottom: 1rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #800020; /* Burgundy */
    margin: 0;
}

/* Main Content Grid */
.main-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* Feature Styles */
.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #800020; /* Burgundy */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* White */
    font-size: 1.25rem;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #36454F; /* Charcoal */
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #6c757d;
    line-height: 1.6;
}

/* Center Image */
.center-image {
    display: flex;
    justify-content: center;
}

.worker-image {
    width: 300px;
    height: 480px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(54, 69, 79, 0.15); /* Charcoal shadow */
}

/* Stats Section */
.stats-section {
    margin-top: 2rem;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(54, 69, 79, 0.15); /* Charcoal shadow */
}

.stats-left {
    background-color: #000000e3;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-right {
    background-color: #800020; /* Burgundy */
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.stats-left .stat-icon {
    color: #ffffff; /* White */
}

.stats-right .stat-icon {
    color: #ffffff; /* White */
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stats-left .stat-number {
    color: #ffffff; /* White */
}

.stats-right .stat-number {
    color: #ffffff; /* White */
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.stats-left .stat-label {
    color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
}

.stats-right .stat-label {
    color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .features-left,
    .features-right {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 2rem 0;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stats-left,
    .stats-right {
        padding: 2rem;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .worker-image {
        width: 250px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .worker-image {
        width: 200px;
        height: 250px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

/* Vision, Mission & Values Section */
.vmv-section {
  padding: 4rem 0;
  background-color: #f8f9fa; /* Light gray background */
}

.vmv-header {
  text-align: center;
  margin-bottom: 3rem;
}

.vmv-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #800020; /* Burgundy */
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 25px;
  margin-bottom: 1rem;
}

.vmv-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #36454F; /* Charcoal */
  margin-bottom: 0.5rem;
}

.vmv-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.vmv-box {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(54, 69, 79, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vmv-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(54, 69, 79, 0.15);
}

.vmv-icon {
  font-size: 2.5rem;
  color: #800020;
  margin-bottom: 1rem;
}

.vmv-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #36454F;
  margin-bottom: 0.5rem;
}

.vmv-text {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .vmv-title {
    font-size: 2rem;
  }
}
