/* --- ABOUT PAGE MAIN BACKGROUND --- */
.about-page-wrapper {
    background: linear-gradient(135deg, #ffeb99 0%, #ffcc00 100%); /* Premium bright yellow gold layout background */
    padding: 60px 6%;
}

.about-main-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    background-color: transparent;
    margin-bottom: 50px;
}

/* --- LEFT SIDE: IMAGE FRAME --- */
.about-image-column {
    display: flex;
    justify-content: center;
}

.traditional-frame {
    border: 4px solid #4a0404;
    border-radius: 25px 4px 25px 4px; /* Image layout curves style */
    padding: 8px;
    background-color: #fffdec;
    box-shadow: 0 15px 35px rgba(74, 4, 4, 0.2);
    overflow: hidden;
    max-width: 100%;
}

.about-img-file {
    width: 100%;
    height: auto;
    border-radius: 18px 2px 18px 2px;
    display: block;
    object-fit: cover;
}

/* --- RIGHT SIDE: CONTENT STYLE --- */
.about-text-column {
    padding: 10px;
}

.about-title {
    font-family: 'Cinzel', serif;
    color: #4a0404; /* Dark Traditional Maroon heading */
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.ornate-divider {
    color: #4a0404;
    font-size: 0.9rem;
    margin: 5px 0 25px 0;
    letter-spacing: 2px;
}

.about-description-paragraphs p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2b0101;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 400;
}

.highlight-text {
    color: #d62828; /* Sharp Red Accent colors inside content */
    font-weight: 700;
}

/* --- BOTTOM STRIP: 4 BADGES LAYOUT --- */
.about-badges-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    border-top: 2px dashed rgba(74, 4, 4, 0.2);
    padding-top: 40px;
    margin-top: 20px;
}

.badge-card {
    text-align: center;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-icon-circle {
    background-color: #a81414; /* Red round button style backgrounds */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 15px;
    box-shadow: 0 6px 15px rgba(168, 20, 20, 0.3);
    border: 2px solid #ffcc00;
    transition: 0.3s ease;
}

.badge-card:hover .badge-icon-circle {
    transform: translateY(-5px);
    background-color: #4a0404;
}

.badge-card h4 {
    color: #4a0404;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.badge-card p {
    color: #380202;
    font-size: 0.88rem;
    font-weight: 500;
}

/* --- RESPONSIVE OPTIMIZATION --- */
@media (max-width: 992px) {
    .about-main-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-title {
        font-size: 2.8rem;
        text-align: center;
    }
    .ornate-divider {
        text-align: center;
    }
}

@media (max-width: 500px) {
    .about-page-wrapper {
        padding: 40px 4%;
    }
}


















/* --- SOCIAL FOLLOW CONTAINER --- */
.social-follow-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align rakhne ke liye, center chahiye to center likhein */
    /* gap: 8px; */
    font-family: 'Poppins', sans-serif; /* Ya aapka jo bhi main font ho */
}

/* "Follow Us" Text Style */
.follow-text-heading {
    /* font-size: 1.1rem;
    font-weight: 200;
    color: #333333; 
    letter-spacing: 0.5px;
    margin: 0; */
        color: #666;
    font-size: 0.75rem;

}

/* Icons ki Row */
.social-icons-wrapper {
    display: flex;
    gap: 8px; /* Icons ke beech ka gap */
    align-items: center;
}

/* Individual Icon Button Style */
.social-icon-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f5f5f5; /* Light grey background */
    color: #555555; /* Default icon color */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* --- HOVER EFFECTS (Social Media Brands Colors) --- */
.social-icon-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon-btn.facebook:hover {
    background-color: #1877F2;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon-btn.youtube:hover {
    background-color: #FF0000;
    color: #ffffff;
    transform: translateY(-3px);
}

































/* ==================== METHODOLOGY SECTION ==================== */
.methodology-section {
    margin-top: 40px;
    margin-bottom: 50px;
}

.methodology-title {
    font-family: 'Cinzel', serif;
    color: #4a0404;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1.5px;
}

.methodology-divider {
    text-align: center;
    color: #4a0404;
    margin: 5px 0 35px 0;
    font-size: 0.9rem;
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Mission & Vision Pill Badges */
.mv-block {
    margin-bottom: 25px;
}

.mv-badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #a81414, #730606);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    margin-bottom: 15px;
}

.mv-badge-btn i {
    font-size: 1.2rem;
}

.mv-desc {
    color: #2b0101;
    line-height: 1.7;
    font-size: 1rem;
    text-align: justify;
}

.vision-bullet-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.vision-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2b0101;
    font-size: 0.98rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.vision-bullet-list li i {
    color: #d62828;
    margin-top: 3px;
}

.vision-footer-note {
    font-weight: 700;
    color: #d62828;
    font-style: italic;
    margin-top: 15px;
}

/* Curved Image Frame */
.methodology-image-col {
    display: flex;
    justify-content: center;
}

.curved-photo-frame {
    border: 4px solid #4a0404;
    border-radius: 120px 0 120px 0;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    background-color: #ffffff;
}

.methodology-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==================== TESTIMONIAL RED STRIP ==================== */
.testimonial-red-strip {
    background: linear-gradient(135deg, #800000 0%, #4a0000 100%);
    color: #ffffff;
    padding: 40px 6%;
    border-radius: 15px;
    position: relative;
    margin: 50px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.testimonial-content-wrapper {
    display: flex;
    align-items: center;
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-avatar {
    width: 150px;
    height: 150px;
    min-width: 150px;
    border-radius: 50%;
    border: 4px solid #ffcc00;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text h2 {
    color: #ffcc00;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #f1f1f1;
}

.testimonial-highlight {
    color: #ffeb99;
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.5;
}

.quote-mark {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 204, 0, 0.25);
}

.quote-left { top: 15px; left: 20px; }
.quote-right { bottom: 15px; right: 20px; }

/* ==================== 24x7 SUPPORT SECTION ==================== */
.support-cards-wrapper {
    background-color: #fff8d6;
    border: 2px solid #ffcc00;
    border-radius: 20px;
    padding: 40px 25px 25px 25px;
    position: relative;
    margin: 60px 0 40px 0;
}

.support-header-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #a81414, #610000);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 8px 35px;
    border-radius: 30px;
    border: 2px solid #ffcc00;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.support-card {
    text-align: center;
    padding: 10px;
}

.support-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #a81414, #730606);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
    margin: 0 auto 15px auto;
    border: 2px solid #ffcc00;
    box-shadow: 0 4px 10px rgba(168,20,20,0.2);
}

.support-card h4 {
    color: #4a0404;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.support-card p {
    color: #3b0202;
    font-size: 0.88rem;
    line-height: 1.4;
}

/* ==================== BOTTOM FEATURES BANNER ==================== */
.bottom-features-strip {
    background: linear-gradient(135deg, #6b0000 0%, #3d0000 100%);
    border-radius: 15px;
    padding: 35px;
    color: #ffffff;
    margin-top: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 35px;
    align-items: center;
}

.features-gallery-grid {
    display: flex;
    gap: 15px;
}

.main-gallery-img {
    flex: 1.5;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #ffcc00;
}

.sub-gallery-imgs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sub-gallery-imgs img, .main-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.sub-gallery-imgs img {
    border: 2px solid #ffcc00;
    height: 121px;
}

.features-list-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon-badge {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    border: 2px solid #ffcc00;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #ffcc00;
    background: rgba(255, 255, 255, 0.05);
}

.feature-item-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-item-info p {
    color: #ffd699;
    font-size: 0.95rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .methodology-grid, .testimonial-content-wrapper, .features-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .testimonial-avatar {
        margin: 0 auto;
    }

    .feature-item-row {
        flex-direction: column;
        text-align: center;
    }
}