/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

/* Header Section */
.about-header {
    position: relative;
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.8);
}

.about-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-top: 30px;
    color: #007bff;
    z-index: 2;
    position: relative;
}

/* About Container */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 50px auto;
    gap: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-text {
    flex: 1;
    padding: 20px;
}

.about-text h2 {
    font-size: 28px;
    color: #007bff;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 5px solid #007bff;
    transition: all 0.3s ease;
}

.about-text h2:hover {
    color: #0056b3;
    border-left-color: #0056b3;
}

.about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.features-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #007bff;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-box {
    background: rgba(255, 255, 255, 0.4);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        padding: 25px;
        gap: 40px;
    }

    .about-header {
        height: 45vh;
    }

    .about-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }

    .about-text, .about-image {
        text-align: center;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-title {
        font-size: 28px;
        margin-top: 20px;
    }

    .features-section h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .about-header {
        height: 35vh;
    }

    .about-title {
        font-size: 24px;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .about-text p {
        font-size: 15px;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-box {
        padding: 20px;
    }
}
