/* --- ANIMATION STYLES --- */

/* Initial state for elements that will be animated */
/* They start invisible and shifted to the side */
.scroll-animate.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* The state when the element becomes visible */
/* JS adds the .visible class, triggering the transition */
.scroll-animate.visible {
    opacity: 1;
    transform: translateX(0);
}


/* --- YOUR EXISTING STYLES (with glass-effect added) --- */
.about-page-hero {
    padding: 20px 0; /* <-- Maine top aur bottom padding 20px kar di hai */
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 5px;
}

.about-page-hero .iso-tag {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.about-intro-section {
    padding-top: 50px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.intro-text-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.highlight-quote {
    font-style: italic;
    font-weight: 600;
    padding: 15px;
    border-left: 5px solid var(--secondary-color);
    background: rgba(0, 86, 179, 0.05);
    border-radius: 5px;
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-intro-section .stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}

.about-intro-section .stat-card {
    padding: 20px;
    text-align: center;
}

.about-intro-section .stat-card p {
    font-size: 1rem;
    font-weight: bold;
    margin: 10px 0 0 0;
}
.about-intro-section .stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.quality-materials-section {
    background-color: var(--bg-color);
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.policy-card, .materials-card {
    padding: 30px;
}

.materials-card ul {
    list-style: none;
    padding-left: 0;
}

.materials-card ul li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.materials-card ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .intro-grid, .quality-grid {
        grid-template-columns: 1fr;
    }
    .about-page-hero h1 {
        font-size: 1.5rem;
    }
    .intro-text-content h2 {
        font-size: 1.5rem;
    }
    .quality-materials-section h2 {
        font-size: 1.5rem;
    }
}
/* Header ke extra space ko hatane ke liye */
header.hero-section {
    min-height: auto; /* Agar koi min-height set hai to use hatayein */
    height: auto;     /* Agar koi height set hai to use hatayein */
    padding-bottom: 0; /* Header ke neeche ki padding ko bilkul khatam kar dein */
}