/* Custom About Page Styles */

/* Hero Section */
.about-hero-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.about-hero-content .hero-subtitle {
    color: #46A6B9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.about-hero-content .hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1A1A1A;
}

.about-hero-content .hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-hero-img {
    position: relative;
    z-index: 1;
}

.about-hero-img img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-hero-img::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    background-color: #f0f7f9;
    border-radius: 20px;
    z-index: -1;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.mission-card {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #46A6B9;
}

.mission-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.mission-text {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

/* Services Grid */
.about-services-section {
    padding: 100px 0;
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1A1A1A;
}

.service-card-modern {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(70, 166, 185, 0.15);
    border-color: #46A6B9;
}

.service-card-modern .icon-box {
    width: 70px;
    height: 70px;
    background-color: #eefbfd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card-modern:hover .icon-box {
    background-color: #46A6B9;
}

.service-card-modern .icon-box img {
    width: 35px;
    transition: all 0.3s ease;
    filter: invert(58%) sepia(11%) saturate(1636%) hue-rotate(144deg) brightness(93%) contrast(89%);
    /* Matches #46A6B9 somewhat */
}

.service-card-modern:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.service-card-modern h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.service-card-modern p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.read-more-btn {
    color: #46A6B9;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more-btn i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.read-more-btn:hover {
    color: #358a9b;
}

.read-more-btn:hover i {
    margin-left: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-hero-content .hero-title {
        font-size: 36px;
    }

    .about-hero-img {
        margin-top: 50px;
    }
}