/* Modern About Page Styles */
.hero-section {
    padding: 140px 0 60px; /* Adjusted top padding for navbar */
    text-align: center;
}
.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
}
.hero-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 15px auto 0;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #00a8e6;
}
.value-box {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.value-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.value-box .icon {
    font-size: 48px;
    color: #00a8e6;
    margin-bottom: 20px;
}
.value-box h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.modern-counter-box {
    text-align: center;
}
.modern-counter-box .counter {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00a8e6;
}
.modern-counter-box p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 5px;
}
.team-member {
    text-align: center;
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.team-member h5 {
    font-weight: 600;
}
.team-member span {
    color: #6c757d;
    font-style: italic;
}
.cta-section {
    padding: 80px 0;
    background-color: #00a8e6;
    color: #fff;
}
.cta-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
}
.cta-section .button {
    background-color: #fff;
    color: #00a8e6;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.cta-section .button:hover {
    background-color: #2c3e50;
    color: #fff;
}

/* Why Us Section Styles */
.why-us-box {
    display: flex !important;
    align-items: flex-start !important;
    padding: 30px !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    height: 100% !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-us-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.why-us-box .icon-wrapper {
    flex-shrink: 0 !important;
    margin-right: 20px !important;
}
.why-us-box .icon-wrapper i {
    font-size: 36px !important;
    color: #00a8e6 !important;
    line-height: 1 !important;
}
.why-us-box .text-wrapper {
    flex-grow: 1 !important;
}
.why-us-box .text-wrapper h5 {
    font-weight: 600 !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
}

/* Introduction Section Title Size */
.introduction-section h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

.gradient-text {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: #00a8e6;
}
