/* about-style.css */

/* 1. Section Background & Navbar Gap */
.about-section {
    background-color: #0a1f44 !important; /* Navy Dark Blue */
    min-height: 100vh;
    padding-top: 160px !important; /* Gap from navbar */
    padding-bottom: 80px;
}

/* 2. Glassmorphism Card Style */
.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* 3. Distinct Image Section Background */
.about-image-column {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.about-img {
    max-height: 380px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid #ffffff;
}

/* 4. Typography */
.about-title {
    color: #ffffff !important;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #3498db;
}

.about-subtitle {
    color: #3498db;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-top: 25px;
    margin-bottom: 15px;
}

.about-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-size: 1.1rem;
}

/* 5. Styled Button */
.btn-about {
    background: #3498db;
    color: #ffffff !important;
    border: none;
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-about:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}