/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #FFF9ED;
}

.about-section + .about-section {
    margin-top: -50px;
}



.about-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Hero Text */
.hero-text {
    text-align: center;
    max-width: 900px;
    font-style: normal;
    margin: 0 auto 60px;
    padding: 0 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-text p {
    font-size: 24px;
    line-height: 1.5;
    color: #000000;
}

.hero-text strong {
    color: #000000 !important;
}

/* About Content */
.about-heading {
    font-size: 42px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-left: 90px;
    margin-top: 20px
}

.about-subheading {
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-left: 90px;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-left: 90px;
}

.about-card .card-body {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #0033cc 0%, #0066ff 100%);
}

.about-image {
    width: 70%;
    height: 70%;
    margin-left: auto;
    object-fit: cover;
    opacity: 1;
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Vision Mission Promise Cards */
.vision-mission-promise {
    margin-top: 80px;
}

.feature-card {
    background: none;
    padding: 30px;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    transition: none;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 22px;
    color: #000000;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-heading {
        font-size: 32px;
        padding-left: 20px;
    }
    
    .about-subheading {
        padding-left: 20px;
    }
    
    .about-description {
        padding-left: 20px;
    }
    
    .hero-text p {
        font-size: 20px;
    }
    
    .about-image {
        margin-top: 40px;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 1406px) and (min-width: 992px) {
    .about-heading {
        font-size: 32px;
        padding-left: 20px;
    }
    
    .about-subheading {
        padding-left: 20px;
    }
    
    .about-description {
        padding-left: 20px;
        margin-bottom: 20px;
    }
    
    .hero-text p {
        font-size: 20px;
    }
    
    .about-image {
        margin-top: 40px;
    }
}


@media (max-width: 767px) {
    .about-heading {
        font-size: 28px;
        padding-left: 0;
    }
    
    .about-subheading {
        padding-left: 0;
    }
    
    .about-description {
        padding-left: 0;
    }
    
    .vision-mission-promise .col-md-4 {
        margin-bottom: 30px;
    }
    
    .vision-mission-promise .col-md-4:last-child {
        margin-bottom: 0;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .about-image {
        margin-bottom: 0 !important;
        margin-top: 30px !important;
    }
    
    .col-lg-6 .about-image {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 30px !important;
    }
    
    .about-animate[style*="height: 600px"] {
        margin-top: 30px !important;
    }
}

@media (max-width: 480px) {
    .about-heading {
        font-size: 24px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .about-image {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        height: auto !important;
        margin-top: 30px !important;
    }
    
    .about-animate {
        margin-top: 30px !important;
        margin-bottom: 0 !important;
        height: auto !important;
        padding-top: 30px !important;
    }
    
    .about-section + .about-section {
        margin-top: -30px !important;
    }
}