/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* About Page Section Styles */
.about-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03) 0%, rgba(46, 204, 113, 0.03) 100%);
    border-radius: 15px;
}

.about-section h1 {
    font-size: 2.8rem;
    color: #1a3a52;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
    color: #34495e;
    font-weight: 500;
}

/* About Cards Container */
.about-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

/* About Card Styles */
.about-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.about-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.3);
}

.about-card:hover::before {
    transform: scaleX(1);
}

/* Card Icon Styles */
.card-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.15) rotateZ(5deg);
}

.card-icon::before {
    content: attr(data-icon);
    display: block;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Card Title */
.card-title {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.about-card:hover .card-title {
    color: #3498db;
}

/* Card Content */
.card-content {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    font-weight: 500;
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Button Styles */
.btn {
    display: inline-block;
    background: white;
    color: #3498db;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #2c3e50;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
        border-radius: 10px;
    }
    
    .about-section h1 {
        font-size: 2.2rem;
    }
    
    .about-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .about-card {
        width: 100%;
        max-width: 500px;
        padding: 30px 25px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 25px 15px;
        border-radius: 8px;
    }
    
    .about-section h1 {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-content {
        font-size: 0.95rem;
    }
    
    .card-icon {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .about-card {
        padding: 25px 20px;
    }
}