/* ============================================================
   Director Page Premium Styles
   ============================================================ */

:root {
    --primary-purple: #800080;
    --dark-purple: #3c003c;
    --light-bg: #fcfcfc;
}

.director-hero {
    background: linear-gradient(rgba(128, 0, 128, 0.85), rgba(60, 0, 60, 0.95)), url('../images/Batch2.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
}

.director-hero h1 {
    font-size: 3.5rem;
    font-weight: 850;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -1px;
}

.director-profile-section {
    padding: 80px 0;
    background: #fff;
}

.director-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(128, 0, 128, 0.15);
}

.director-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-purple);
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 850;
    line-height: 1;
}

.director-content h2 {
    font-size: 2.8rem;
    font-weight: 850;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif !important;
}

.director-content .lead-text {
    font-size: 1.25rem;
    color: var(--primary-purple);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.director-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    background: #f8f0f8;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #8000801a;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 15px 35px rgba(128, 0, 128, 0.1);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    display: block;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.director-vision-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.vision-quote-box {
    background: var(--primary-purple);
    color: #fff;
    padding: 60px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.vision-quote-box i.quote-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 10rem;
    opacity: 0.1;
    color: #fff;
}

.vision-quote-box h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.vision-quote-box p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
}

@media (max-width: 991px) {
    .director-content {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .director-hero h1 {
        font-size: 2.5rem;
    }

    .director-content h2 {
        font-size: 2.2rem;
    }

    .vision-quote-box {
        padding: 40px 30px;
    }
}