:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
}





/* About Hero Section */
/* .about-hero {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(37, 99, 235, 0.9)), 
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1') center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
} */

/* Stats Section */
.stats-section {
    background-color: var(--light);
    text-align: center;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e76f51;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 20px;
    background-color: #f7f9fc;
    position: relative;
    z-index: 1;
}

.why-choose-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.left-content {
    flex: 1 1 50%;
}

.left-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    gap: 15px;
}

.card i {
    font-size: 24px;
    color: #0d6efd;
    flex-shrink: 0;
    margin-top: 5px;
}

.card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.card p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

.right-content {
    flex: 1 1 40%;
    text-align: center;
}

.right-content img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-choose-section .container {
        flex-direction: column;
    }

    .right-content img {
        max-height: unset;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


.about-us {
  padding: 60px 20px;
  background-color: #fdfdfd;
}

.about-title {
  text-align: center;
  font-size: 28px;
  color: #e76f51;
  margin-bottom: 30px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  color: #2d3e50;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 20px;
}


