/* About Page Styles */

#about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/ChatGPT\ Image\ Feb\ 25\,\ 2026\,\ 10_10_02\ PM.png') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
}

#about-hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#about-hero .lead {
    font-size: 2rem;
    opacity: 0.9;
}

.content-section {
    padding: 80px 0;
}

.alternate-bg {
    background-color: #383838;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-align: left;
}

.about-text h2 span {
    color: #28a7e9;
    font-weight: 700;
}

.about-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
}

.about-image-container {
    height: 400px;
    width: 400px;
    padding: 20px;
    background: #404040;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    filter: drop-shadow(0 0 10px rgba(40, 167, 233, 0.3));
    object-fit: cover;

}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #444;
    border-radius: 10px;
    width: 30%;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: #505050;
}

.stat-item i {
    font-size: 2.5rem;
    color: #28a7e9;
    display: block;
    margin-bottom: 10px;
}

.stat-item span {
    font-weight: 600;
    font-size: 1.4rem;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #aaa;
    margin-bottom: 50px;
}

/* Service Box Premium */
.service-box-premium {
    background: #404040;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 5px solid transparent;
}

.service-box-premium:hover {
    transform: translateY(-10px);
    background: #4a4a4a;
    border-bottom: 5px solid #28a7e9;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #28a7e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: #fff;
}

.service-box-premium h3 {
    margin-bottom: 15px;
    font-weight: 700;
}

.service-box-premium ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.service-box-premium ul li {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #ccc;
}

.service-box-premium ul li i {
    color: #28a7e9;
    margin-right: 10px;
}

/* Why Me Styles */
.why-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.why-icon {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(40, 167, 233, 0.2);
    margin-right: 20px;
    line-height: 1;
}

.why-content h4 {
    font-size: 2rem;
    color: #28a7e9;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-content p {
    font-size: 1.5rem;
    color: #bbb;
}

.premium-cta {
    background: #28a7e9;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
}

.premium-cta:hover {
    background: #1e8bcc;
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 5px 20px rgba(40, 167, 233, 0.4);
}

/* Mobile Adjustments */
@media (max-width: 767px) {


    .about-image-container {
        height: 300px;
        width: 100%;
    }


    .about-img {

        object-fit: contain;

    }

    #about-hero h1 {
        font-size: 3.5rem;
    }

    .about-text h2 {
        font-size: 2.8rem;
        margin-top: 30px;
    }

    .stat-item {
        width: 48%;
    }

    .service-box-premium {
        margin-bottom: 30px;
    }
}