/* ============================================================
   ABOUT.CSS - About Page Styles
   ============================================================
   Page-specific styles for about.html
   
   Main stylesheet: style.css
   Contains styles for team sections, company history,
   values display, and about-page specific layouts.
   ============================================================ */

/* Team member cards */
.team-member-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.team-member-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-member-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* About section highlights */
.about-highlight-box {
    padding: 25px 20px;
    border-left: 4px solid var(--primary);
    background: #f9f9f9;
    margin-bottom: 20px;
}

.about-highlight-box h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.about__content .about__text {
    background: linear-gradient(135deg, #007bff 0%, #0056d6 55%, #003f9a 100%);
    border-radius: 30px;
    padding: 56px 44px;
    box-shadow: 0 24px 70px rgba(0, 123, 255, 0.18);
    margin: 0 auto 35px auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    max-width: 100%;
    text-align: center;
}

.about__content .about__text:before,
.about__content .about__text:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.about__content .about__text:before {
    width: 160px;
    height: 160px;
    top: -50px;
    right: -50px;
}

.about__content .about__text:after {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: -20px;
}

.about__content .about__text h4 {
    font-size: 2.6rem;
    line-height: 1.04;
    margin-bottom: 22px;
    color: #ffffff;
    font-weight: 800;
}

.about__content .about__text p {
    font-size: 1.18rem;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.9;
    margin-bottom: 0;
    font-weight: 600;
}

/* Vision, Mission, Objectives, Values boxes */
.about__item {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.about__item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e5a96, #2a7ab8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about__item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(30, 90, 150, 0.18), 0 0 20px rgba(30, 90, 150, 0.08);
}

.about__item:hover:before {
    transform: scaleX(1);
}

.about__item:hover h4 {
    color: #1e5a96;
    transform: scale(1.05);
}

.about__item h4 {
    color: #1e5a96;
    font-weight: 900;
    margin-bottom: 15px;
    font-size: 22px;
    transition: all 0.3s ease;
}

.about__icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(30, 90, 150, 0.08);
    color: #1e5a96;
    font-size: 24px;
    margin-bottom: 18px;
}

.about__item p {
    color: #555555;
    font-size: 16px;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.about__item:hover p {
    color: #333333;
}

.about-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-values-list li {
    color: #555555;
    font-size: 16px;
    line-height: 2;
    padding-left: 20px;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.about__item:hover .about-values-list li {
    color: #1e5a96;
    transform: translateX(4px);
}

.about-values-list li:before {
    content: "•";
    color: #1e5a96;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact widget specific to about page */
.contact-widget-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contact-widget-item h4 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-widget-item p {
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}
