/* About Us Page Styles */

/* General Styles */
.about-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

/* Hero Section */
.about-hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../Assests/Banner-1.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.about-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-primary-btn, .about-secondary-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-primary-btn {
    background-color: #31458C;
    color: white;
}

.about-secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.about-primary-btn:hover {
    background-color: #253670;
    transform: translateY(-3px);
}

.about-secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Features Section */
.about-features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.about-feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-10px);
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon img {
    max-width: 100%;
    max-height: 100%;
}

.about-feature-icon i {
    font-size: 36px;
    color: #31458C;
}

.about-feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.about-feature-description {
    color: #666;
    line-height: 1.6;
}

/* Experience Section */
.about-experience-section {
    padding: 80px 0;
}

.about-experience-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 20px;
    align-items: center;
}

.about-experience-content .about-section-title {
    text-align: left;
}

.about-section-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-stat-item {
    display: flex;
    align-items: center;
}

.about-stat-icon {
    width: 50px;
    height: 50px;
    background-color: #31458C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.about-stat-icon i {
    color: white;
    font-size: 20px;
}

.about-stat-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.about-stat-info p {
    color: #666;
    margin: 5px 0 0;
}

.about-experience-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.about-products-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about-products-description {
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Team Section */
.about-team-section {
    padding: 80px 0;
}

.about-team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-team-member {
    text-align: center;
}

.about-team-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid #f0f0f0;
}

.about-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-team-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.about-team-position {
    color: #666;
}

/* Blogs Section */
.about-blogs-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-blogs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-blog-card:hover {
    transform: translateY(-10px);
}

.about-blog-image {
    position: relative;
    height: 200px;
}

.about-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #31458C;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.about-blog-content {
    padding: 20px;
}

.about-blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.about-blog-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-blog-link {
    display: inline-block;
    color: #31458C;
    font-weight: 600;
    text-decoration: none;
}

.about-blog-link:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-features-container,
    .about-team-grid,
    .about-blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-experience-container {
        grid-template-columns: 1fr;
    }
    
    .about-stats-container {
        grid-template-columns: 1fr;
    }
    
    .about-team-grid,
    .about-blogs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-features-container {
        grid-template-columns: 1fr;
    }
    
    .about-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}