/* ========== ACADEMIC PHILOSOPHY PAGE STYLES ========== */

/* ========== ACADEMICS AND INNOVATION SECTION ========== */
.academics-innovation-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d2d2d;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle strong {
    color: #2d2d2d;
    font-weight: 700;
}

/* Innovation Cards */
.innovation-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #f39c12;
}

.innovation-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.innovation-icon i {
    font-size: 2.5rem;
    color: white;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1) rotate(10deg);
}

.innovation-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.innovation-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ========== NEP 2020 SECTION ========== */
.nep-section {
    padding: 100px 0;
    background: white;
}

/* NEP Circle Container */
.nep-focus-wrapper {
    margin: 60px 0;
}

.nep-circle-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 700px;
    margin: 0 auto;
}

/* Center Content */
.nep-center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.nep-center-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.nep-center-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Circle Background Rings */
.nep-circle-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(125, 46, 63, 0.03);
    z-index: 0;
}

.nep-circle-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: rgba(125, 46, 63, 0.02);
    z-index: 0;
}

/* NEP Icons Positioned in Circle */
.nep-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #7d2e3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(125, 46, 63, 0.2);
}

.nep-icon.highlighted {
    background: #f39c12;
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
}

.nep-icon i {
    font-size: 2rem;
    color: white;
}

.nep-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 30px rgba(125, 46, 63, 0.4);
}

.nep-icon.highlighted:hover {
    box-shadow: 0 10px 40px rgba(243, 156, 18, 0.5);
}

/* Icon Positions - Hexagonal Layout */
.nep-icon-1 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.nep-icon-2 {
    top: 10%;
    right: 15%;
}

.nep-icon-3 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.nep-icon-4 {
    bottom: 10%;
    right: 15%;
}

.nep-icon-5 {
    bottom: 10%;
    left: 15%;
}

.nep-icon-6 {
    top: 10%;
    left: 15%;
}

/* NEP Detail Cards */
.nep-detail-card {
    margin: 80px 0;
}

/* ========== CTA SECTION ========== */
.philosophy-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7d2e3f 0%, #5a1f2e 100%);
    position: relative;
    overflow: hidden;
}

.philosophy-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #f39c12;
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: white;
    color: #000;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets and Below */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .innovation-card {
        margin-bottom: 20px;
    }

    .nep-circle-container {
        height: 600px;
        max-width: 600px;
    }

    .nep-center-content {
        width: 320px;
        height: 320px;
        padding: 40px;
    }

    .nep-center-title {
        font-size: 1.5rem;
    }

    .nep-center-description {
        font-size: 0.9rem;
    }

    .nep-circle-container::before {
        width: 450px;
        height: 450px;
    }

    .nep-circle-container::after {
        width: 550px;
        height: 550px;
    }

    .nep-icon {
        width: 70px;
        height: 70px;
    }

    .nep-icon i {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .academics-innovation-section,
    .nep-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .innovation-icon {
        width: 80px;
        height: 80px;
    }

    .innovation-icon i {
        font-size: 2rem;
    }

    .innovation-title {
        font-size: 1.1rem;
    }

    .innovation-description {
        font-size: 0.9rem;
    }

    .nep-circle-container {
        height: 500px;
        max-width: 500px;
    }

    .nep-center-content {
        width: 260px;
        height: 260px;
        padding: 30px;
    }

    .nep-center-title {
        font-size: 1.25rem;
    }

    .nep-center-description {
        font-size: 0.85rem;
    }

    .nep-circle-container::before {
        width: 370px;
        height: 370px;
    }

    .nep-circle-container::after {
        width: 450px;
        height: 450px;
    }

    .nep-icon {
        width: 60px;
        height: 60px;
    }

    .nep-icon i {
        font-size: 1.5rem;
    }

    /* Adjust icon positions for mobile */
    .nep-icon-1 {
        top: 50%;
        left: -5px;
    }

    .nep-icon-2 {
        top: 5%;
        right: 10%;
    }

    .nep-icon-3 {
        top: 50%;
        right: -5px;
    }

    .nep-icon-4 {
        bottom: 5%;
        right: 10%;
    }

    .nep-icon-5 {
        bottom: 5%;
        left: 10%;
    }

    .nep-icon-6 {
        top: 5%;
        left: 10%;
    }

    .philosophy-cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .cta-btn {
        padding: 14px 30px;
        font-size: 0.875rem;
    }
}

/* Extra Small Devices */
@media (max-width: 575px) {
    .nep-circle-container {
        height: 450px;
        max-width: 400px;
    }

    .nep-center-content {
        width: 220px;
        height: 220px;
        padding: 25px;
    }

    .nep-center-title {
        font-size: 1.1rem;
    }

    .nep-center-description {
        font-size: 0.8rem;
    }

    .nep-circle-container::before {
        width: 310px;
        height: 310px;
    }

    .nep-circle-container::after {
        width: 380px;
        height: 380px;
    }

    .nep-icon {
        width: 50px;
        height: 50px;
    }

    .nep-icon i {
        font-size: 1.25rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.innovation-icon {
    animation: float 3s ease-in-out infinite;
}

.innovation-card:nth-child(1) .innovation-icon {
    animation-delay: 0s;
}

.innovation-card:nth-child(2) .innovation-icon {
    animation-delay: 0.5s;
}

.innovation-card:nth-child(3) .innovation-icon {
    animation-delay: 1s;
}

.innovation-card:nth-child(4) .innovation-icon {
    animation-delay: 1.5s;
}

/* Pulse animation for highlighted NEP icons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1.15);
        box-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
    }
    50% {
        transform: scale(1.25);
        box-shadow: 0 12px 40px rgba(243, 156, 18, 0.6);
    }
}

.nep-icon.highlighted {
    animation: pulse 2s ease-in-out infinite;
}