/* About Page Styles */

/* Hero Section */
.about-hero {
    /* Path to your background image */
    background-image: linear-gradient(rgba(30, 40, 93, 0.7), rgba(30, 40, 93, 0.7)), url('../images/hero/about.jfif');
    
    /* Ensures the image covers the entire section beautifully */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Padding to give the section height and space (adjust as needed) */
    padding: 100px 0; 
    
    /* Center the text elements inside the hero */
    text-align: center;
    
}

/* Optional styling to make sure your text stands out over the image */
.about-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-hero .hero-subtitle {
    color: #f0f2f5;
    font-size: 1.25rem;
    font-weight: 400;
}
/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e285d;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #1e285d;
    margin: 15px auto 0;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 20px;
    text-align: center;
}

/* Service & Technology Section */
.service-technology-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.service-technology-section .section-title {
    text-align: center;
    margin-bottom: 15px;
    display: inline-block;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px auto 0;
    max-width: 1200px;
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #1e285d;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 4px 4px 0px 0px #1e285d;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0px 0px #1e285d;
}

.service-icon {
    margin-bottom: 20px;
    display: inline-block;
}

.service-icon svg {
    width: 60px;
    height: 60px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e285d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-info-card {
    background: linear-gradient(135deg, #1e285d 0%, #2a3a7a 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 4px 4px 0px 0px #1e285d;
}

.contact-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-text {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact-website {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-hero .hero-title {
        font-size: 40px;
    }

    .about-hero .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }

    .about-hero .hero-title {
        font-size: 32px;
    }

    .about-hero .hero-subtitle {
        font-size: 16px;
    }

    .about-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .about-text {
        font-size: 15px;
    }

    .service-technology-section {
        padding: 60px 0;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .contact-info-section {
        padding: 40px 0;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 13px;
    }
}
