
/* About Section - Clean Modern Design */
.about-about-section {
    min-height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.about-about-section .about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: black;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: black;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Content Grid */
.about-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Content Card */
.about-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    border: 2px solid #4f46e5;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
    padding: 2.5rem;
}

.about-text:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.about-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

/* Points List */
.about-points {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
}

.about-points li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-points li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
}

/* Button */
.btnn.btn-primary.about-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    align-self: flex-start;
}

/* Right Info Card */
.about-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    position: sticky;
    top: 80px;
}

.about-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    color: black;
}

.about-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* 🔥 ICON TOP, TEXT BELOW (FINAL FIX) */
.about-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    gap: 0.6rem;
}

.about-card-item:last-child {
    border-bottom: none;
}

.about-card-icon {
    font-size: 1.9rem;
    margin-bottom: 0.2rem;
}

.about-card-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .about-about-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .about-about-section {
        padding: 60px 0;
    }

    .about-text,
    .about-card {
        padding: 1.75rem;
        border-radius: 12px;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .about-content {
        gap: 5rem;
    }
}
