/**
 * COMBINED CSS FILE
 * This file combines all CSS from the project
 * Generated from 18 individual CSS files
 * 
 * Files included:
 * - about-page.css
 * - blog-page.css
 * - contact-page.css
 * - courses-page.css
 * - curriculum-page.css
 * - facility-page.css
 * - Faculty-page.css
 * - foundation-courses-page.css
 * - gallery-page.css
 * - management-page.css
 * - neet-longterm-page.css
 * - non-teaching-staff-page.css
 * - pcmb-page.css
 * - pcmcs-page.css
 * - principal_message-page.css
 * - style.css (base styles)
 * - teaching-staff-page.css
 * - testimonial-page.css
 */


/* ========================================
   about-page.css
   ======================================== */

/* ===== about Page Styles ===== */

.page-hero {
    padding: 140px 0 60px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}
.page-hero h1 { font-size: 3rem; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { opacity: 0.8; font-size: 1.2rem; }

.about-page { padding: 60px 0; background: var(--white); }
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}
.about-page-text h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}
.about-page-text h2 span { color: var(--orange); }
.about-page-text p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 15px;
}
.about-page-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}
.about-page-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-size: 0.9rem;
}
.about-page-features i { color: var(--orange); }
.about-page-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.philosophy-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 50px;
    border-left: 4px solid var(--orange);
}
.philosophy-box h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}
.philosophy-box p {
    color: var(--text);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.vm-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.vision-box, .mission-box {
    background: var(--light-bg);
    padding: 35px 30px;
    border-radius: var(--radius);
}
.vm-icon {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.vm-icon i { color: var(--white); font-size: 1.5rem; }
.vision-box h3, .mission-box h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.vision-box ul, .mission-box ul {
    list-style: none;
}
.vision-box ul li, .mission-box ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text);
}
.vision-box ul li::before, .mission-box ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

@media (max-width: 768px) {
    .about-page-grid { grid-template-columns: 1fr; }
    .about-page-features { grid-template-columns: 1fr; }
    .vm-section { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2rem; }
}

/* ========================================
   blog-page.css
   ======================================== */

/* ===== blog Page Styles ===== */

/* ========== BLOG PAGE ========== */
.blog-page {
    padding: 60px 0;
    background: var(--light-bg);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--orange);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.blog-date-badge .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}
.blog-date-badge .month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}
.blog-category {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--orange);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-content h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin: 12px 0 10px;
    line-height: 1.4;
}
.blog-content p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.blog-meta span {
    color: var(--gray);
    font-size: 0.8rem;
}
.blog-meta i {
    color: var(--orange);
    margin-right: 4px;
}
.read-more {
    background: none;
    border: none;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: var(--transition);
}
.read-more:hover {
    color: var(--orange-dark);
    gap: 12px;
}

/* ========== BLOG MODAL ========== */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    animation: modalFadeIn 0.4s ease;
}
.blog-modal.active {
    display: block;
}
.blog-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}
.blog-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: var(--radius);
    max-width: 800px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.4s ease;
}
.modal-close {
    position: sticky;
    top: 10px;
    right: 10px;
    float: right;
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 10;
    margin: 10px 10px 0 0;
}
.modal-close:hover {
    transform: rotate(90deg);
    color: var(--orange);
}

.modal-body {
    padding: 0 0 30px;
}
.modal-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
}
.modal-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}
.modal-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.modal-text {
    padding: 30px 35px;
}
.modal-text h2 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.modal-text p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 15px;
}
.modal-text h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin: 25px 0 15px;
}
.modal-text ul {
    padding-left: 20px;
    margin-bottom: 15px;
}
.modal-text li {
    color: var(--text);
    margin-bottom: 8px;
}

.modal-nav {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 20px;
}
.modal-prev, .modal-next {
    background: var(--white);
    border: 2px solid var(--orange);
    color: var(--orange);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}
.modal-prev:hover, .modal-next:hover {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.05);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .modal-image {
        height: 220px;
    }
    .modal-text {
        padding: 20px;
    }
    .modal-text h2 {
        font-size: 1.4rem;
    }
    .modal-date {
        padding: 8px 14px;
    }
    .modal-date .day {
        font-size: 1.4rem;
    }
}

/* ========================================
   contact-page.css
   ======================================== */

/* ===== contact Page Styles ===== */

.contact-page { 
    padding: 60px 0; 
    background: var(--light-bg); 
}

/* ===== CONTACT GRID ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.info-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.info-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--orange);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}
.info-card:hover .info-icon {
    background: var(--orange);
}
.info-icon i {
    font-size: 1.8rem;
    color: var(--orange);
    transition: var(--transition);
}
.info-card:hover .info-icon i {
    color: var(--white);
}

.info-card h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.info-card p {
    color: var(--text);
    line-height: 1.6;
}
.info-card a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}
.info-card a:hover { 
    color: var(--orange); 
}

/* ===== SOCIAL CARD ===== */
.social-card {
    padding-bottom: 15px;
}
.social-card .info-icon {
    background: rgba(249, 115, 22, 0.08);
}
.social-card .info-icon i {
    color: var(--orange);
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0 20px;
    flex-wrap: wrap;
}
.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    min-width: 60px;
}
.social-icon i {
    font-size: 1.4rem;
}
.social-label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}
.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.social-icon.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-icon.youtube {
    background: #ff0000;
}
.social-icon.youtube:hover {
    background: #cc0000;
}
.social-icon.facebook {
    background: #1877f2;
}
.social-icon.facebook:hover {
    background: #0d65d9;
}
.social-icon.twitter {
    background: #1da1f2;
}
.social-icon.twitter:hover {
    background: #0d8bd9;
}

/* WhatsApp Groups */
.whatsapp-groups {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}
.whatsapp-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(37, 211, 102, 0.06);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(37, 211, 102, 0.12);
    transition: var(--transition);
}
.whatsapp-group:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
}
.whatsapp-group > i {
    color: #25d366;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.group-info {
    flex: 1;
    text-align: left;
}
.group-name {
    display: block;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}
.group-members {
    display: block;
    color: var(--gray);
    font-size: 0.75rem;
}
.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.75rem;
    border-radius: 50px;
    flex-shrink: 0;
}
.btn-whatsapp:hover {
    background: #128c7e;
    color: var(--white);
    transform: scale(1.05);
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

/* ===== MAP SECTION ===== */
.map-section {
    background: var(--white);
    padding: 35px 40px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.map-section h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.map-section h3 i {
    color: var(--orange);
    margin-right: 10px;
}
.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    .info-card {
        padding: 20px 15px;
    }
    .info-icon {
        width: 50px;
        height: 50px;
    }
    .info-icon i {
        font-size: 1.4rem;
    }
    .info-card h3 {
        font-size: 1rem;
    }
    .social-icon {
        padding: 6px 10px;
        min-width: 50px;
    }
    .social-icon i {
        font-size: 1.1rem;
    }
    .social-label {
        font-size: 0.5rem;
    }
    .whatsapp-group {
        padding: 10px 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .group-name {
        font-size: 0.8rem;
    }
    .map-section {
        padding: 25px;
    }
    .map-wrapper iframe {
        height: 250px;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .info-card {
        padding: 20px;
    }
    .social-icons {
        gap: 6px;
    }
    .social-icon {
        padding: 5px 8px;
        min-width: 45px;
        border-radius: 8px;
    }
    .social-icon i {
        font-size: 1rem;
    }
    .whatsapp-group {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .group-info {
        text-align: center;
    }
    .map-wrapper iframe {
        height: 200px;
    }
    .map-section {
        padding: 20px;
    }
    .map-section h3 {
        font-size: 1.1rem;
    }
}

/* ===== CONNECT WITH US SECTION ===== */
.connect-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--orange-light) 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0 30px;
    color: var(--white);
}
.connect-header {
    text-align: center;
    margin-bottom: 32px;
}
.connect-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.connect-header h2 i {
    color: var(--accent);
    margin-right: 10px;
}
.connect-header p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}
.connect-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.panel-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 16px;
}
.panel-title i { margin-right: 6px; }

/* Social buttons */
.social-links-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    color: var(--white);
}
.social-btn i { font-size: 1.2rem; }
.social-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366); }
.social-btn.youtube   { background: #FF0000; }
.social-btn.facebook  { background: #1877F2; }
.social-btn.twitter   { background: #1DA1F2; }

/* WhatsApp group buttons */
.wa-groups-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wa-group-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 12px 16px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}
.wa-group-btn:hover {
    background: rgba(255,255,255,0.18);
    transform: translateX(4px);
}
.wa-icon {
    width: 38px; height: 38px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.wa-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.wa-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}
.wa-members {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}
.wa-join {
    background: #25D366;
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Map section */
.map-section {
    margin-top: 10px;
}
.map-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}
.map-section h3 i { color: var(--accent); margin-right: 8px; }
.map-wrapper iframe { border-radius: 16px; display: block; }

/* Responsive */
@media (max-width: 768px) {
    .connect-body { grid-template-columns: 1fr; }
    .connect-section { padding: 24px 18px; }
}

/* ========================================
   courses-page.css
   ======================================== */

/* ===== courses Page Styles ===== */

.courses-detail { padding: 60px 0; background: var(--light-bg); }
.course-detail {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}
.course-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
}
.course-detail-icon {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.course-detail-icon i { color: var(--white); font-size: 1.8rem; }
.course-detail-header h2 { font-size: 2rem; color: var(--dark); }
.course-detail-header p { color: var(--gray); }
.course-detail-body p { color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.course-detail-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}
.info-item {
    background: var(--light-bg);
    padding: 12px 16px;
    border-radius: 8px;
}
.info-item strong { color: var(--dark); display: block; font-size: 0.8rem; }
.info-item span { color: var(--text); font-size: 0.95rem; }
.course-detail-tags { display: flex; gap: 10px; margin: 15px 0 25px; flex-wrap: wrap; }
.course-detail-tags span {
    padding: 5px 18px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.course-detail h3 { color: var(--dark); font-size: 1.2rem; margin-bottom: 15px; }
.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.career-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}
.career-item i { font-size: 2rem; color: var(--orange); margin-bottom: 10px; }
.career-item h4 { color: var(--dark); font-size: 1rem; margin-bottom: 5px; }
.career-item p { color: var(--gray); font-size: 0.85rem; }
.academic-excellence {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.academic-excellence h3 {
    font-size: 1.5rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 30px;
}
.excellence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.excellence-item h4 { color: var(--orange); font-size: 1.1rem; margin-bottom: 12px; }
.excellence-item ul { list-style: none; }
.excellence-item ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text);
    font-size: 0.9rem;
}
.excellence-item ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
}

@media (max-width: 768px) {
    .course-detail { padding: 25px; }
    .course-detail-header { flex-direction: column; text-align: center; }
    .course-detail-info { grid-template-columns: 1fr; }
    .career-grid { grid-template-columns: 1fr; }
    .excellence-grid { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2rem; }
}

/* ========================================
   curriculum-page.css
   ======================================== */


/* ===== College Curriculum intro card ===== */
.curriculum-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--orange-light) 100%) !important;
    color: var(--white);
    border-left: none;
}
.curriculum-section h2 {
    color: var(--white) !important;
    border-bottom-color: var(--accent) !important;
}
.curriculum-section h2 i { color: var(--accent) !important; }
.curriculum-content p { color: rgba(255,255,255,0.88) !important; }
.curriculum-content strong { color: var(--white) !important; }

/* Highlight cards for facts inside College Curriculum */
.curriculum-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.curriculum-highlight-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: background 0.2s;
}
.curriculum-highlight-card:hover { background: rgba(255,255,255,0.2); }
.curriculum-highlight-card i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}
.curriculum-highlight-card strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white) !important;
    margin-bottom: 4px;
}
.curriculum-highlight-card span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 600px) {
    .curriculum-highlights { grid-template-columns: 1fr 1fr; }
}
/* ===== curriculum Page Styles ===== */

/* ========== CURRICULUM PAGE ========== */
.curriculum-page {
    padding: 60px 0;
    background: var(--light-bg);
}

.curriculum-section,
.learning-section,
.exam-section,
.post-exam-section,
.counselling-section,
.beyond-classroom {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.curriculum-page h2 {
    color: var(--dark);
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
}
.curriculum-page h2 i {
    color: var(--primary);
    margin-right: 12px;
}

.curriculum-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 15px;
}
.curriculum-content strong {
    color: var(--dark);
}

.section-desc {
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.8;
}
.section-desc strong {
    color: var(--dark);
}

/* Period Grid */
.period-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}
.period-card {
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.period-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.period-number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.1;
    position: absolute;
    top: 10px;
    right: 15px;
}
.period-1 {
    background: rgba(249, 115, 22, 0.08);
    border: 2px solid rgba(249, 115, 22, 0.2);
}
.period-2 {
    background: rgba(251, 191, 36, 0.08);
    border: 2px solid rgba(251, 191, 36, 0.2);
}
.period-3 {
    background: rgba(52, 211, 153, 0.08);
    border: 2px solid rgba(52, 211, 153, 0.2);
}
.period-card h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.period-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}
.period-card strong {
    color: var(--dark);
}

.games-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light-bg);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}
.games-info i {
    color: var(--orange);
    font-size: 1.5rem;
}
.games-info p {
    color: var(--text);
    font-size: 1rem;
}
.games-info strong {
    color: var(--dark);
}

.events-info h4 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.event-item {
    background: var(--light-bg);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
}
.event-term {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.event-item span:last-child {
    display: block;
    color: var(--text);
    font-size: 0.9rem;
}

/* Exam Grid */
.exam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.exam-card {
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}
.exam-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.exam-day {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.exam-monday {
    background: rgba(239, 68, 68, 0.08);
    border: 2px solid rgba(239, 68, 68, 0.2);
}
.exam-monday .exam-day {
    background: #ef4444;
}
.exam-friday {
    background: rgba(249, 115, 22, 0.08);
    border: 2px solid rgba(249, 115, 22, 0.2);
}
.exam-friday .exam-day {
    background: var(--orange);
}
.exam-saturday {
    background: rgba(59, 130, 246, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.2);
}
.exam-saturday .exam-day {
    background: #3b82f6;
}
.exam-card h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.exam-card p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 8px;
}
.exam-card strong {
    color: var(--dark);
}

/* Post Exam */
.post-exam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.post-exam-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}
.post-exam-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.post-exam-item i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 12px;
}
.post-exam-item h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.post-exam-item p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Counselling */
.counselling-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}
.counselling-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 20px 0;
}
.counselling-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}
.counselling-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.counselling-item i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 12px;
}
.counselling-item h3 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 8px;
}
.counselling-item p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.counselling-note {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--orange);
    font-style: italic;
}

/* Beyond Classroom */
.beyond-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.beyond-item {
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}
.beyond-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.beyond-item i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
}
.beyond-item h3 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 8px;
}
.beyond-item p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
}
.beyond-item strong {
    color: var(--dark);
}
.lsd {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.2);
}
.lsd i {
    color: var(--orange);
}
.isc {
    background: rgba(52, 211, 153, 0.08);
    border-color: rgba(52, 211, 153, 0.2);
}
.isc i {
    color: #10b981;
}
.sc {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.2);
}
.sc i {
    color: #f59e0b;
}
.care {
    background: rgba(236, 72, 153, 0.08);
    border-color: rgba(236, 72, 153, 0.2);
}
.care i {
    color: #ec4899;
}

/* Stats */
.curriculum-stats {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.stats-grid-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.stat-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-bg);
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.stat-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.stat-mini i {
    font-size: 2rem;
    color: var(--orange);
}
.stat-mini .stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}
.stat-mini .stat-label {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .period-grid {
        grid-template-columns: 1fr 1fr;
    }
    .exam-grid {
        grid-template-columns: 1fr 1fr;
    }
    .post-exam-grid {
        grid-template-columns: 1fr 1fr;
    }
    .counselling-grid {
        grid-template-columns: 1fr 1fr;
    }
    .beyond-grid {
        grid-template-columns: 1fr 1fr;
    }
    .events-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-grid-mini {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .curriculum-section,
    .learning-section,
    .exam-section,
    .post-exam-section,
    .counselling-section,
    .beyond-classroom {
        padding: 25px;
    }
    .period-grid {
        grid-template-columns: 1fr;
    }
    .exam-grid {
        grid-template-columns: 1fr;
    }
    .post-exam-grid {
        grid-template-columns: 1fr;
    }
    .counselling-grid {
        grid-template-columns: 1fr;
    }
    .beyond-grid {
        grid-template-columns: 1fr;
    }
    .events-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid-mini {
        grid-template-columns: 1fr;
    }
    .curriculum-page h2 {
        font-size: 1.3rem;
    }
}

/* ========================================
   facility-page.css
   ======================================== */

/* ===== facility Page Styles ===== */

.facilities-page { padding: 60px 0; background: var(--light-bg); }
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.facility-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.facility-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.facility-image { height: 220px; overflow: hidden; }
.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.facility-item:hover .facility-image img { transform: scale(1.05); }
.facility-info { padding: 20px; }
.facility-info h3 { color: var(--dark); font-size: 1.1rem; margin-bottom: 8px; }
.facility-info p { color: var(--text); font-size: 0.9rem; line-height: 1.6; }

@media (max-width: 992px) { .facilities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .facilities-grid { grid-template-columns: 1fr; } .page-hero h1 { font-size: 2rem; } }

/* ========================================
   Faculty-page.css
   ======================================== */

/* ===== Faculty Page Styles ===== */

/* ========== PAGE HERO ========== */
.page-hero {
    padding: 140px 0 60px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}
.page-hero h1 { font-size: 3rem; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { opacity: 0.8; font-size: 1.2rem; }

/* ========== FILTER ========== */
.faculty-filter-section {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.filter-btn {
    padding: 8px 22px;
    border: 2px solid var(--orange);
    background: transparent;
    color: var(--orange);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--orange);
    color: var(--white);
}

/* ========== FACULTY PAGE ========== */
.faculty-page {
    padding: 60px 0;
    background: var(--light-bg);
}

.faculty-category {
    margin-bottom: 50px;
}
.category-title {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}
.category-title span {
    color: var(--orange);
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Faculty Card */
.faculty-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}
.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.faculty-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.faculty-card:hover .faculty-image img {
    transform: scale(1.05);
}

.faculty-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px 15px 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}
.faculty-card:hover .faculty-social {
    opacity: 1;
    transform: translateY(0);
}
.faculty-social a {
    width: 35px;
    height: 35px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.faculty-social a:hover {
    background: var(--white);
    color: var(--orange);
    transform: scale(1.1);
}

.faculty-info {
    padding: 20px;
}
.faculty-info h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.designation {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3px;
}
.qualification {
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 8px;
}
.experience {
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 5px;
}
.experience i {
    color: var(--orange);
    margin-right: 5px;
}
.specialization {
    color: var(--text);
    font-size: 0.8rem;
    background: var(--light-bg);
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-block;
}

/* ========== FACULTY STATS ========== */
.faculty-stats {
    padding: 60px 0;
    background: var(--white);
}
.faculty-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}
.fstat-card {
    text-align: center;
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--radius);
    transition: var(--transition);
}
.fstat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.fstat-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 10px;
}
.fstat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}
.fstat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ========== JOIN TEAM ========== */
.join-team {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
}
.join-content {
    text-align: center;
    color: var(--white);
}
.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.join-content h2 span {
    color: var(--orange);
}
.join-content p {
    opacity: 0.8;
    margin-bottom: 25px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .faculty-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faculty-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    .category-title {
        font-size: 1.4rem;
    }
    .faculty-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .faculty-image {
        height: 180px;
    }
    .filter-tabs {
        gap: 6px;
    }
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    .faculty-stats-grid {
        grid-template-columns: 1fr;
    }
    .faculty-image {
        height: 220px;
    }
    .join-content h2 {
        font-size: 1.8rem;
    }
}

/* ========================================
   foundation-courses-page.css
   ======================================== */

/* ===== foundation-courses Page Styles ===== */

/* Same styles as pcmb.php */
.course-detail-page {
    padding: 60px 0;
    background: var(--light-bg);
}
.course-detail-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}
.course-overview {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 30px;
}
.course-banner-icon {
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.course-banner-icon i {
    font-size: 2.5rem;
    color: var(--white);
}
.course-overview h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 15px;
}
.course-overview p {
    color: var(--text);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}
.course-quick-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.quick-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--dark);
}
.quick-item i {
    color: var(--orange);
}
.course-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.course-info-box {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.course-info-box h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.course-info-box h3 i {
    color: var(--orange);
    margin-right: 10px;
}
.course-info-box ul {
    list-style: none;
}
.course-info-box ul li {
    padding: 8px 0;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.course-info-box ul li:last-child {
    border-bottom: none;
}
.course-info-box ul li strong {
    color: var(--dark);
}
.career-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.career-option {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
}
.career-option i {
    font-size: 1.5rem;
    color: var(--orange);
    margin-top: 3px;
}
.career-option h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 3px;
}
.career-option p {
    color: var(--text);
    font-size: 0.9rem;
}
.learning-approach {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.learning-approach h3 {
    color: var(--dark);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.approach-item {
    text-align: center;
}
.approach-item i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 10px;
}
.approach-item h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 8px;
}
.approach-item p {
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.6;
}
.features-highlight {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.features-highlight h3 {
    color: var(--dark);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.feature-box {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.feature-box i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 10px;
}
.feature-box h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 8px;
}
.feature-box p {
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.6;
}
.course-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--white);
}
.course-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.course-cta p {
    opacity: 0.9;
    margin-bottom: 25px;
}
.course-cta .btn-primary {
    background: var(--white);
    color: var(--orange-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.course-cta .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}
@media (max-width: 992px) {
    .course-grid-two {
        grid-template-columns: 1fr;
    }
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .course-overview {
        padding: 25px;
    }
    .course-quick-info {
        gap: 15px;
    }
    .course-cta {
        padding: 30px;
    }
}

/* ========================================
   gallery-page.css
   ======================================== */

/* ===== gallery Page Styles ===== */

.gallery-page { padding: 60px 0; background: var(--light-bg); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    aspect-ratio: 1 / 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 20px 15px 15px;
    font-weight: 500;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .page-hero h1 { font-size: 2rem; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ========================================
   management-page.css
   ======================================== */

/* ===== management Page Styles ===== */

/* ========== MANAGEMENT PAGE ========== */
.management-page {
    padding: 60px 0;
    background: var(--light-bg);
}
.management-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.management-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.management-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.management-image {
    height: 280px;
    overflow: hidden;
}
.management-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.management-card:hover .management-image img {
    transform: scale(1.05);
}
.management-info {
    padding: 25px;
    text-align: center;
}
.management-info h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.management-info .designation {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
}
.management-info .qualification {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 5px 0;
}
.management-info .experience {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.85rem;
}
.management-desc {
    margin: 15px 0;
}
.management-desc p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
}
.management-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.management-social a {
    width: 38px;
    height: 38px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
}
.management-social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========== MANAGEMENT STATS ========== */
.management-stats {
    padding: 60px 0;
    background: var(--white);
}
.mstats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}
.mstat-card {
    text-align: center;
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--radius);
    transition: var(--transition);
}
.mstat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.mstat-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 10px;
}
.mstat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}
.mstat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ========== CURRICULUM ========== */
.curriculum-section {
    padding: 60px 0;
    background: var(--light-bg);
}
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.curriculum-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.curriculum-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom: 4px solid var(--orange);
}
.curriculum-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 15px;
}
.curriculum-card h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.curriculum-card p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mstats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .management-grid {
        grid-template-columns: 1fr;
    }
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    .mstats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .management-image {
        height: 220px;
    }
}
@media (max-width: 480px) {
    .mstats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   neet-longterm-page.css
   ======================================== */

/* ===== neet-longterm Page Styles ===== */

/* Same styles as pcmb.php with additional features */
.course-detail-page {
    padding: 60px 0;
    background: var(--light-bg);
}
.course-detail-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}
.course-overview {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 30px;
}
.course-banner-icon {
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.course-banner-icon i {
    font-size: 2.5rem;
    color: var(--white);
}
.course-overview h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 15px;
}
.course-overview p {
    color: var(--text);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}
.course-quick-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.quick-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--dark);
}
.quick-item i {
    color: var(--orange);
}
.course-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.course-info-box {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.course-info-box h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.course-info-box h3 i {
    color: var(--orange);
    margin-right: 10px;
}
.course-info-box ul {
    list-style: none;
}
.course-info-box ul li {
    padding: 8px 0;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.course-info-box ul li:last-child {
    border-bottom: none;
}
.course-info-box ul li strong {
    color: var(--dark);
}
.career-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.career-option {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
}
.career-option i {
    font-size: 1.5rem;
    color: var(--orange);
    margin-top: 3px;
}
.career-option h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 3px;
}
.career-option p {
    color: var(--text);
    font-size: 0.9rem;
}
.learning-approach {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.learning-approach h3 {
    color: var(--dark);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.approach-item {
    text-align: center;
}
.approach-item i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 10px;
}
.approach-item h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 8px;
}
.approach-item p {
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.6;
}
.exam-prep {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.exam-prep h3 {
    color: var(--dark);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
}
.exam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.exam-item h4 {
    color: var(--orange);
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.exam-item ul {
    list-style: none;
}
.exam-item ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text);
    font-size: 0.9rem;
}
.exam-item ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
}
.features-highlight {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.features-highlight h3 {
    color: var(--dark);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.feature-box {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.feature-box i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 10px;
}
.feature-box h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 8px;
}
.feature-box p {
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.6;
}
.course-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--white);
}
.course-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.course-cta p {
    opacity: 0.9;
    margin-bottom: 25px;
}
.course-cta .btn-primary {
    background: var(--white);
    color: var(--orange-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.course-cta .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}
@media (max-width: 992px) {
    .course-grid-two {
        grid-template-columns: 1fr;
    }
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .exam-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .course-overview {
        padding: 25px;
    }
    .course-quick-info {
        gap: 15px;
    }
    .course-cta {
        padding: 30px;
    }
}

/* ========================================
   non-teaching-staff-page.css
   ======================================== */

/* ===== non-teaching-staff Page Styles ===== */

/* ========== NON-TEACHING STAFF ========== */
.non-teaching-page {
    padding: 60px 0;
    background: var(--light-bg);
}
.staff-category {
    margin-bottom: 50px;
}
.category-title {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}
.category-title span {
    color: var(--orange);
}
.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.staff-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}
.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.staff-image {
    height: 180px;
    overflow: hidden;
}
.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.staff-card:hover .staff-image img {
    transform: scale(1.05);
}
.staff-info {
    padding: 20px;
}
.staff-info h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.staff-info .designation {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
}
.staff-info .qualification {
    color: var(--gray);
    font-size: 0.8rem;
    margin: 5px 0;
}
.staff-info .experience {
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 500;
}
.staff-info .experience i {
    color: var(--orange);
    margin-right: 5px;
}
.staff-info .specialization {
    color: var(--text);
    font-size: 0.8rem;
    background: var(--light-bg);
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 8px;
}

/* ========== STAFF STATS ========== */
.non-teaching-stats {
    padding: 60px 0;
    background: var(--white);
}
.ntstats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}
.ntstat-card {
    text-align: center;
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--radius);
    transition: var(--transition);
}
.ntstat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.ntstat-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 10px;
}
.ntstat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}
.ntstat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ntstats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: 1fr 1fr;
    }
    .staff-image {
        height: 150px;
    }
}
@media (max-width: 480px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }
    .staff-image {
        height: 180px;
    }
    .ntstats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   pcmb-page.css
   ======================================== */

/* ===== pcmb Page Styles ===== */

.course-detail-page {
    padding: 60px 0;
    background: var(--light-bg);
}
.course-detail-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}
.course-overview {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 30px;
}
.course-banner-icon {
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.course-banner-icon i {
    font-size: 2.5rem;
    color: var(--white);
}
.course-overview h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 15px;
}
.course-overview p {
    color: var(--text);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}
.course-quick-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.quick-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--dark);
}
.quick-item i {
    color: var(--orange);
}

.course-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.course-info-box {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.course-info-box h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.course-info-box h3 i {
    color: var(--orange);
    margin-right: 10px;
}
.course-info-box ul {
    list-style: none;
}
.course-info-box ul li {
    padding: 8px 0;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.course-info-box ul li:last-child {
    border-bottom: none;
}
.course-info-box ul li strong {
    color: var(--dark);
}
.career-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.career-option {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
}
.career-option i {
    font-size: 1.5rem;
    color: var(--orange);
    margin-top: 3px;
}
.career-option h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 3px;
}
.career-option p {
    color: var(--text);
    font-size: 0.9rem;
}

.learning-approach {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.learning-approach h3 {
    color: var(--dark);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.approach-item {
    text-align: center;
}
.approach-item i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 10px;
}
.approach-item h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 8px;
}
.approach-item p {
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.6;
}

.exam-prep {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.exam-prep h3 {
    color: var(--dark);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
}
.exam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.exam-item h4 {
    color: var(--orange);
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.exam-item ul {
    list-style: none;
}
.exam-item ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text);
    font-size: 0.9rem;
}
.exam-item ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
}

.course-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--white);
}
.course-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.course-cta p {
    opacity: 0.9;
    margin-bottom: 25px;
}
.course-cta .btn-primary {
    background: var(--white);
    color: var(--orange-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.course-cta .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}

@media (max-width: 992px) {
    .course-grid-two {
        grid-template-columns: 1fr;
    }
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .exam-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
    .course-overview {
        padding: 25px;
    }
    .course-quick-info {
        gap: 15px;
    }
    .course-cta {
        padding: 30px;
    }
}

/* ========================================
   pcmcs-page.css
   ======================================== */

/* ===== pcmcs Page Styles ===== */

/* Same styles as pcmb.php - reuse */
.course-detail-page {
    padding: 60px 0;
    background: var(--light-bg);
}
.course-detail-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}
.course-overview {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 30px;
}
.course-banner-icon {
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.course-banner-icon i {
    font-size: 2.5rem;
    color: var(--white);
}
.course-overview h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 15px;
}
.course-overview p {
    color: var(--text);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}
.course-quick-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.quick-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--dark);
}
.quick-item i {
    color: var(--orange);
}
.course-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.course-info-box {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.course-info-box h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.course-info-box h3 i {
    color: var(--orange);
    margin-right: 10px;
}
.course-info-box ul {
    list-style: none;
}
.course-info-box ul li {
    padding: 8px 0;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.course-info-box ul li:last-child {
    border-bottom: none;
}
.course-info-box ul li strong {
    color: var(--dark);
}
.career-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.career-option {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
}
.career-option i {
    font-size: 1.5rem;
    color: var(--orange);
    margin-top: 3px;
}
.career-option h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 3px;
}
.career-option p {
    color: var(--text);
    font-size: 0.9rem;
}
.learning-approach {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.learning-approach h3 {
    color: var(--dark);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.approach-item {
    text-align: center;
}
.approach-item i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 10px;
}
.approach-item h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 8px;
}
.approach-item p {
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.6;
}
.exam-prep {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.exam-prep h3 {
    color: var(--dark);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
}
.exam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.exam-item h4 {
    color: var(--orange);
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.exam-item ul {
    list-style: none;
}
.exam-item ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text);
    font-size: 0.9rem;
}
.exam-item ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
}
.course-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--white);
}
.course-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.course-cta p {
    opacity: 0.9;
    margin-bottom: 25px;
}
.course-cta .btn-primary {
    background: var(--white);
    color: var(--orange-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.course-cta .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}
@media (max-width: 992px) {
    .course-grid-two {
        grid-template-columns: 1fr;
    }
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .exam-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
    .course-overview {
        padding: 25px;
    }
    .course-quick-info {
        gap: 15px;
    }
    .course-cta {
        padding: 30px;
    }
}

/* ========================================
   principal_message-page.css
   ======================================== */

/* ===== principal_message Page Styles ===== */

/* ========== MESSAGE PAGE ========== */
.message-page {
    padding: 60px 0;
    background: var(--white);
}

.message-wrapper {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 50px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Side - Image */
.message-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.message-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 25px 20px 20px;
    text-align: center;
}
.image-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}
.image-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.image-qualification {
    background: var(--orange);
    color: var(--white);
    padding: 12px 15px;
    border-radius: 10px;
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Right Side - Content */
.message-content {
    padding: 10px 0;
}

.message-tag {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--orange);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.message-header h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 5px;
}
.message-header h2 span {
    color: var(--orange);
}
.qualification {
    color: var(--gray);
    font-size: 0.95rem;
}

.message-body {
    margin-top: 25px;
}
.message-body p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 18px;
}

.message-quote {
    background: var(--light-bg);
    padding: 25px 30px;
    border-radius: var(--radius);
    position: relative;
    margin: 25px 0;
    border-left: 4px solid var(--orange);
}
.message-quote i {
    color: var(--orange);
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: 15px;
    right: 20px;
}
.message-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark);
    font-weight: 500;
    margin: 0;
}

.message-signature {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.signature-line {
    width: 60px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 15px;
}
.signature-text h3 {
    color: var(--dark);
    font-size: 1.3rem;
}
.signature-text p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}
.signature-date {
    font-style: italic;
    margin-top: 5px !important;
}

/* ========== STATS MINI ========== */
.message-stats {
    padding: 60px 0;
    background: var(--light-bg);
}
.stats-grid-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}
.stat-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.stat-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.stat-mini i {
    font-size: 2rem;
    color: var(--orange);
}
.stat-mini .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}
.stat-mini .stat-label {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ========== OTHER MESSAGES ========== */
.other-messages {
    padding: 60px 0;
    background: var(--white);
}
.other-messages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.other-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}
.other-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: var(--shadow);
}
.other-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 15px;
}
.other-card h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.other-card p {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
}
.other-card p i {
    font-size: 0.8rem;
    margin: 0 0 0 5px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .message-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
    .message-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
    .stats-grid-mini {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .other-messages-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    .message-header h2 {
        font-size: 1.8rem;
    }
    .message-quote p {
        font-size: 1rem;
    }
    .message-image-wrapper {
        max-width: 250px;
    }
    .stats-grid-mini {
        grid-template-columns: 1fr;
    }
    .other-messages-grid {
        grid-template-columns: 1fr;
    }
    .stat-mini {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .message-content {
        padding: 0;
    }
    .message-quote {
        padding: 20px;
    }
}

/* ========================================
   style.css
   ======================================== */

/* ========== VARIABLES ========== */
:root {
    --orange: #161D6F;
    --orange-dark: #0d1247;
    --orange-light: #2a3494;
    --orange-glow: #98DED9;
    --yellow: #98DED9;
    --yellow-light: #C7FFD8;
    --yellow-dark: #7bc4bf;
    --dark: #0f172a;
    --dark-light: #161D6F;
    --dark-card: #1a1a2e;
    --white: #ffffff;
    --light-bg: #F6F6F6;
    --text-dark: #0f172a;
    --text: #334155;
    --gray: #94a3b8;
    --primary: #161D6F;
    --accent: #98DED9;
    --accent-light: #C7FFD8;
    --shadow: 0 20px 60px rgba(22, 29, 111, 0.15);
    --shadow-hover: 0 30px 80px rgba(22, 29, 111, 0.25);
    --radius: 16px;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; }
ul { list-style: none; }
main {
    padding-top: 0;
    min-height: 100vh;
}

/* ========== LOADER CONTAINER ========== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;  /* ✅ NEW: Prevent content overflow */
}

/* ========== LOADER CONTENT (CENTER CONTAINER) ========== */
.loader-content {
    text-align: center;
    max-width: 300px;      /* ✅ NEW: Reasonable max width */
    width: 90%;            /* ✅ NEW: Responsive width */
    padding: 20px;         /* ✅ NEW: Padding for mobile */
}

/* ========== LOADER LOGO/IMAGE ========== */
.loader-logo {
    width: 60px;           /* ✅ NEW: Actual size control */
    height: 60px;          /* ✅ NEW: Perfect square */
    margin: 0 auto 25px;   /* ✅ UPDATED: Reasonable margin */
    display: flex;         /* ✅ NEW: Better image handling */
    align-items: center;
    justify-content: center;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-logo img {         /* ✅ NEW: Image sizing */
    width: 100%;
    height: 100%;
    object-fit: contain;   /* ✅ NEW: Proper scaling */
}

/* ========== LOADER PROGRESS BAR ========== */
.loader-bar {
    width: 100%;           /* ✅ CHANGED: 100% for responsiveness */
    max-width: 250px;      /* ✅ NEW: Max width cap */
    height: 3px;           /* ✅ UPDATED: Thinner, cleaner */
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 20px;   /* ✅ UPDATED: Responsive spacing */
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);  /* ✅ NEW: Glow effect */
}

/* ========== LOADER TEXT ========== */
.loader-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;     /* ✅ UPDATED: Better default */
    letter-spacing: 2px;
    font-weight: 500;      /* ✅ NEW: Slightly bolder */
    margin: 0;             /* ✅ NEW: Reset margin */
    animation: fadeInOut 2s ease-in-out infinite;  /* ✅ NEW: Better animation */
}

/* ✅ NEW ANIMATIONS */
@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.08);
        opacity: 0.9;
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* ✅ NEW: Fade out animation */
.loader.fade-out {
    animation: fadeOutLoader 0.5s ease-out forwards;
}

@keyframes fadeOutLoader {
    0% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

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

/* ✅ NEW: Tablets (768px and below) */
@media (max-width: 768px) {
    .loader-content {
        max-width: 280px;
    }
    .loader-logo {
        width: 50px;
        height: 50px;
        margin: 0 auto 20px;
    }
    .loader-bar {
        max-width: 200px;
        height: 3px;
        margin: 0 auto 18px;
    }
    .loader-text {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
}

/* ✅ NEW: Small phones (480px and below) */
@media (max-width: 480px) {
    .loader-content {
        max-width: 250px;
        width: 85%;
        padding: 15px;
    }
    .loader-logo {
        width: 45px;
        height: 45px;
        margin: 0 auto 18px;
    }
    .loader-bar {
        max-width: 180px;
        height: 2px;
        margin: 0 auto 15px;
    }
    .loader-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
        margin-top: 5px;
    }
}

/* ✅ NEW: Very small phones (360px and below) */
@media (max-width: 360px) {
    .loader-logo {
        width: 40px;
        height: 40px;
        margin: 0 auto 15px;
    }
    .loader-bar {
        max-width: 160px;
        height: 2px;
        margin: 0 auto 12px;
    }
    .loader-text {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
}

/* ✅ NEW: Landscape mode optimization */
@media (max-height: 500px) {
    .loader-content {
        padding: 10px;
    }
    .loader-logo {
        width: 40px;
        height: 40px;
        margin: 0 auto 15px;
    }
    .loader-text {
        font-size: 0.75rem;
    }
}

/* ✅ NEW: Dark mode support */
@media (prefers-color-scheme: dark) {
    .loader {
        background: linear-gradient(135deg, #0f172a 0%, #1a2f5a 100%);
    }
}

/* ✅ NEW: Retina display optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .loader-progress {
        box-shadow: 0 0 8px rgba(255, 140, 0, 0.4);
    }
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    background: var(--primary);
    box-shadow: 0 2px 20px rgba(22, 29, 111, 0.3);
}
.header > .container {
    height: 100%;
    width: 100%;
}
.header.scrolled {
    background: rgba(22, 29, 111, 0.97);
    backdrop-filter: blur(20px);
    height: 58px;
    box-shadow: 0 5px 30px rgba(22, 29, 111, 0.35);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    width: 42px;
    height: 42px;
    //background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 1rem;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    transition: var(--transition);
}
.header.scrolled .logo-name { color: var(--white); }
.logo-tagline {
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.header.scrolled .logo-tagline { color: var(--accent); }

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-list {
    display: flex;
    gap: 3px;
    align-items: center;
}
.nav-item { position: relative; }
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 8px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
}
.header.scrolled .nav-item > a { color: var(--white); }
.nav-item > a:hover,
.nav-item.active > a {
    background: rgba(255,255,255,0.15);
    color: var(--yellow);
}
.header.scrolled .nav-item > a:hover,
.header.scrolled .nav-item.active > a {
    background: rgba(255,255,255,0.15);
    color: var(--accent);
}
.dropdown-arrow {
    font-size: 0.55rem !important;
    transition: var(--transition);
}
.nav-item:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 180px;
    background: var(--white);
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 8px 20px;
    color: var(--text);
    font-size: 0.85rem;
    transition: var(--transition);
}
.dropdown li a:hover {
    background: rgba(22, 29, 111, 0.08);
    color: var(--primary);
    padding-left: 24px;
}

.nav-cta .btn { padding: 6px 18px; font-size: 0.8rem; }

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 22px;
    position: relative;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--white);
    position: absolute;
    left: 0;
    transition: var(--transition);
}
.header.scrolled .menu-toggle span { background: var(--white); }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
    background: var(--white);
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
    background: var(--white);
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    z-index: 1002;
}
.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    width: 0%;
    transition: width 0.3s ease;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--orange);
}
.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--orange);
    transform: translateY(-3px);
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.sub-title {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(249, 115, 22, 0.08);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: 2.4rem;
    color: var(--dark);
}
.section-header h2 span { color: var(--orange); }
.section-header p { color: var(--gray); font-size: 1rem; }


/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--orange-light) 100%);
    padding: 100px 0 50px;
    margin-top: var(--header-height);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(152,222,217,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero h1 span { color: var(--accent); }
.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding: 30px 0 40px;
}
.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    animation: floatParticle 20s linear infinite;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}
.hero-shapes {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.hero-shape-1 {
    width: 300px; height: 300px;
    background: var(--orange);
    top: -80px; right: -80px;
    animation: floatShape 15s ease-in-out infinite;
}
.hero-shape-2 {
    width: 250px; height: 250px;
    background: var(--yellow);
    bottom: -40px; left: -40px;
    animation: floatShape 12s ease-in-out infinite reverse;
}
.hero-shape-3 {
    width: 150px; height: 150px;
    background: var(--orange-light);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: floatShape 18s ease-in-out infinite;
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -25px); }
}
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content { color: var(--white); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 16px;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
    margin-bottom: 16px;
}
.hero-badge .dot {
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}
.hero-content h1 span { color: var(--yellow); }
.hero-content p {
    font-size: 1.05rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 450px;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.hero-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    opacity: 0.9;
}
.hero-features i { color: var(--yellow); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    padding: 10px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.08);
    animation: floatCard 4s ease-in-out infinite;
}
.floating-card i { color: var(--yellow); }
.c1 { top: 8%; right: -5%; animation-delay: 0s; }
.c2 { bottom: 18%; left: -5%; animation-delay: 1.5s; }
.c3 { top: 35%; right: -8%; animation-delay: 3s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 60px; fill: var(--white); }

/* ========== STATS ========== */
.stats {
    padding: 60px 0;
    background: var(--light-bg);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.stat-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--orange);
    box-shadow: var(--shadow);
}
.stat-icon {
    width: 50px; height: 50px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.stat-icon i { font-size: 1.5rem; color: var(--orange); }
.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark);
    display: block;
}
.stat-label { color: var(--gray); font-size: 0.85rem; }

/* ========== INTEGRATED ========== */
.integrated {
    padding: 60px 0;
    background: var(--white);
}
.integrated-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.integrated-card {
    background: var(--light-bg);
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}
.integrated-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: var(--shadow-hover);
}
.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    opacity: 0.1;
}
.card-icon {
    width: 60px; height: 60px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 12px;
    transition: var(--transition);
}
.integrated-card:hover .card-icon {
    background: var(--orange);
}
.card-icon i {
    font-size: 1.6rem;
    color: var(--orange);
    transition: var(--transition);
}
.integrated-card:hover .card-icon i { color: var(--white); }
.integrated-card h3 { color: var(--dark); font-size: 1.05rem; margin-bottom: 8px; }
.integrated-card p { color: var(--text); font-size: 0.85rem; }

/* ========== ABOUT ========== */
.about {
    padding: 60px 0;
    background: var(--yellow-light);
}
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-image img { width: 100%; display: block; }
.about-badge {
    position: absolute;
    bottom: 25px; right: 25px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 12px 20px;
    border-radius: 10px;
    color: var(--white);
    text-align: center;
}
.about-badge span { display: block; font-size: 1.8rem; font-weight: 700; }
.about-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.about-content h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 16px;
}
.about-content h2 span { color: var(--orange); }
.about-content p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
}
.about-highlights span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--dark);
}
.about-highlights i { color: var(--orange); }

/* ========== WHY CHOOSE ========== */
.why-choose {
    padding: 60px 0;
    background: var(--white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--light-bg);
    padding: 25px 18px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: var(--shadow);
}
.feature-icon {
    width: 48px; height: 48px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.feature-icon i { font-size: 1.3rem; color: var(--orange); }
.feature-card h3 { color: var(--dark); font-size: 0.95rem; margin-bottom: 4px; }
.feature-card p { color: var(--text); font-size: 0.8rem; }

/* ========== COURSES ========== */
.courses {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
}
.courses .section-header h2 { color: var(--white); }
.courses .section-header p { color: rgba(255,255,255,0.7); }
.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.course-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.course-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
    border-color: var(--orange);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.course-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.course-badge.featured { 
    background: var(--yellow); 
    color: var(--dark);
}
.course-icon {
    width: 70px; height: 70px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}
.course-card:hover .course-icon {
    background: var(--orange);
    transform: scale(1.05);
}
.course-icon i { 
    font-size: 2.2rem; 
    color: var(--orange);
    transition: var(--transition);
}
.course-card:hover .course-icon i {
    color: var(--white);
}
.course-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 6px;
}
.course-sub { 
    color: rgba(255,255,255,0.8); 
    font-size: 0.9rem; 
    margin-bottom: 12px;
    font-weight: 500;
}
.course-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 18px;
}
.course-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 14px;
}
.course-meta span {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 500;
}
.course-meta i { 
    color: var(--yellow); 
    margin-right: 4px;
}
.course-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.course-tags span {
    padding: 4px 14px;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}
.course-tags span:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.course-card .btn {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3);
    padding: 10px 24px;
    font-size: 0.85rem;
}
.course-card .btn:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

/* ========== CTA ========== */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}
.cta-content {
    text-align: center;
}
.cta-badge {
    display: inline-block;
    padding: 4px 16px;
    background: var(--yellow);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 12px;
}
.cta-content h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 12px;
}
.cta-content h2 span { color: var(--yellow); }
.cta-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}
.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-content .btn-primary {
    background: var(--yellow);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.cta-content .btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
}

/* ========== QUICK CONTACT ========== */
.quick-contact {
    position: fixed;
    right: 15px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}
.quick-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.quick-btn:hover {
    transform: scale(1.1);
}
.quick-btn .tooltip {
    position: absolute;
    right: 54px;
    background: var(--dark);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.quick-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}
.quick-btn.phone { background: linear-gradient(135deg, #34d399, #10b981); }
.quick-btn.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.quick-btn.email { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.quick-btn.back-top { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.quick-btn.back-top.show { display: flex; }

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: var(--white);
}
.footer-top { padding: 50px 0 30px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.brand-icon {
    width: 42px;
    height: 42px;
   // background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: var(--white);
}
.footer-brand h3 { font-size: 1.2rem; }
.footer-brand span { font-size: 0.75rem; color: var(--yellow); }
.footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 0.9rem;
}
.social-link:hover {
    background: var(--orange);
    transform: translateY(-3px);
}
.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--orange);
}
.footer-links li,
.footer-contact li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 0.85rem;
}
.footer-links a:hover { color: var(--yellow); padding-left: 5px; }
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.footer-contact i { color: var(--orange); margin-top: 2px; font-size: 0.9rem; }
.footer-contact span {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}
.footer-contact p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--yellow); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 16px 0;
    text-align: center;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}
.footer-bottom span { color: var(--orange); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto 25px; max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-features { justify-content: center; }
    .floating-card { display: none; }
    .about-wrapper { grid-template-columns: 1fr; }
    .about-content { text-align: center; }
    .about-highlights { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav {
        position: fixed;
        top: 0; left: -100%;
        width: 80%; max-width: 300px;
        height: 100vh;
        background: var(--white);
        padding: 70px 20px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        overflow-y: auto;
        transition: left 0.4s ease;
        box-shadow: 0 0 40px rgba(0,0,0,0.1);
    }
    .nav.active { left: 0; }
    .nav-list { flex-direction: column; gap: 3px; width: 100%; }
    .nav-item { width: 100%; }
    .nav-item > a {
        color: var(--text);
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    .nav-item > a:hover,
    .nav-item.active > a {
        background: rgba(249, 115, 22, 0.08);
        color: var(--orange);
    }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-left: 16px;
        display: none;
        background: transparent;
    }
    .nav-item.dropdown-open .dropdown { display: block; }
    .dropdown li a { color: var(--text); padding: 6px 16px; font-size: 0.85rem; }
    .nav-cta { margin-top: 16px; width: 100%; }
    .nav-cta .btn { width: 100%; text-align: center; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 0.95rem; }
    .hero-buttons .btn { padding: 10px 20px; font-size: 0.85rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-number { font-size: 2rem; }
    .stat-card { padding: 20px 15px; }
    
    /* Mobile - 2 cards in a row */
    .integrated-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    .integrated-card { 
        padding: 20px 15px; 
    }
    .integrated-card h3 { font-size: 0.95rem; }
    .integrated-card p { font-size: 0.8rem; }
    .card-number { font-size: 2rem; }
    .card-icon { width: 50px; height: 50px; }
    .card-icon i { font-size: 1.3rem; }
    
    .features-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    .feature-card { padding: 18px 12px; }
    .feature-card h3 { font-size: 0.85rem; }
    .feature-card p { font-size: 0.75rem; }
    .feature-icon { width: 40px; height: 40px; }
    .feature-icon i { font-size: 1rem; }
    
    .courses-grid { grid-template-columns: 1fr; }
    .course-card { padding: 30px 20px; }
    .course-card h3 { font-size: 1.5rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .footer-top { padding: 40px 0 20px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .quick-contact { right: 12px; bottom: 70px; gap: 8px; }
    .quick-btn { width: 40px; height: 40px; font-size: 0.9rem; }
    .section-header h2 { font-size: 2rem; }
    .about-content h2 { font-size: 1.8rem; }
    .cta-content h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-number { font-size: 1.6rem; }
    
    /* Small mobile - still 2 columns for small cards */
    .integrated-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
    }
    .integrated-card { 
        padding: 16px 12px; 
    }
    .integrated-card h3 { font-size: 0.85rem; }
    .integrated-card p { font-size: 0.75rem; }
    .card-number { font-size: 1.6rem; }
    .card-icon { width: 42px; height: 42px; }
    .card-icon i { font-size: 1.1rem; }
    
    .features-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
    }
    .feature-card { padding: 14px 10px; }
    .feature-card h3 { font-size: 0.8rem; }
    .feature-card p { font-size: 0.7rem; }
    .feature-icon { width: 36px; height: 36px; }
    .feature-icon i { font-size: 0.9rem; }
    
    .section-header h2 { font-size: 1.6rem; }
    .section-header p { font-size: 0.85rem; }
    .about-content h2 { font-size: 1.5rem; }
    .about-content p { font-size: 0.85rem; }
    .about-highlights span { font-size: 0.8rem; }
    .cta-content h2 { font-size: 1.6rem; }
    .logo-name { font-size: 1rem; }
    .logo-icon { width: 36px; height: 36px; font-size: 0.85rem; }
    .loader-bar { width: 200px; }
}

/* Fix for very small screens - keep 2 columns */
@media (max-width: 380px) {
    .integrated-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
    .integrated-card { 
        padding: 14px 10px; 
    }
    .integrated-card h3 { font-size: 0.8rem; }
    .integrated-card p { font-size: 0.7rem; }
    .features-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
    .feature-card { padding: 12px 8px; }
}
/* ========== TICKER ========== */
.ticker-wrapper {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    padding: 10px 0;
    margin-top: var(--header-height);
    border-bottom: 2px solid var(--accent);
    overflow: hidden;
}
.ticker-container {
    overflow: hidden;
    white-space: nowrap;
}
.ticker-content {
    display: inline-flex;
    align-items: center;
    animation: tickerScroll 25s linear infinite;
}
.ticker-label {
    background: var(--orange);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}
.ticker-text {
    display: inline-flex;
    gap: 50px;
}
.ticker-text span {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}
@keyframes tickerScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ========== POPUP ========== */
.enquiry-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    animation: popupFadeIn 0.5s ease;
}
.enquiry-popup.active { display: block; }
.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}
.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    max-width: 450px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    animation: popupSlideIn 0.5s ease;
}
.popup-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}
.popup-close:hover { color: var(--orange); transform: rotate(90deg); }
.popup-header { text-align: center; margin-bottom: 25px; }
.popup-icon {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.popup-icon i { color: var(--white); font-size: 2rem; }
.popup-header h2 { color: var(--dark); font-size: 1.5rem; }
.popup-header p { color: var(--gray); font-size: 0.9rem; }
.popup-form .form-group { margin-bottom: 15px; }
.popup-form input, .popup-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
}
.popup-form input:focus, .popup-form select:focus {
    border-color: var(--orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.popup-form .btn {
    width: 100%;
    justify-content: center;
}
.popup-note {
    text-align: center;
    margin-top: 15px;
    color: var(--gray);
    font-size: 0.8rem;
}
.popup-note i { color: var(--orange); }

@keyframes popupFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes popupSlideIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

@media (max-width: 480px) {
    .popup-content { padding: 30px 20px; }
    .ticker-label { font-size: 0.7rem; padding: 3px 10px; }
    .ticker-text span { font-size: 0.75rem; }
}
/* ========== ADDITIONS FROM FIXES GUIDE ========== */
/* ========== MOBILE HEADER MENU COLORS FIX ========== */
@media (max-width: 768px) {
    .nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary);
        z-index: 999;
        padding: 20px 0;
        overflow-y: auto;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-item > a {
        color: var(--white) !important;
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.95rem;
    }

    .nav-item > a:hover {
        background: rgba(152, 222, 217, 0.2);
        color: var(--accent) !important;
    }

    .nav-item.active > a {
        background: var(--accent);
        color: var(--primary) !important;
    }

    /* Dropdown menu styling for mobile */
    .dropdown {
        background: rgba(0, 0, 0, 0.2);
        flex-direction: column;
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transition: all 0.3s ease;
    }

    .dropdown-open .dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }

    .dropdown li a {
        color: var(--white) !important;
        padding: 10px 40px;
        font-size: 0.9rem;
    }

    .dropdown li a:hover {
        background: rgba(152, 222, 217, 0.3);
        color: var(--accent) !important;
    }

    .nav-cta {
        padding: 15px 20px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* ========== TESTIMONIALS SLIDER STYLES ========== */
.testimonials-slider {
    position: relative;
}

.testimonials-slider .swiper-wrapper {
    display: flex;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(22, 29, 111, 0.1);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.testimonial-quote {
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-quote i {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-quote p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(22, 29, 111, 0.1);
    padding-top: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.testimonial-author p {
    color: var(--gray);
    font-size: 0.85rem;
}

.rating {
    color: #ffc107;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: -50px;
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

.swiper-pagination {
    position: relative;
    bottom: -30px;
}

.swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
}

/* ========== HERO SECTION STYLES ========== */
.page-hero {
    //background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(152, 222, 217, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(199, 255, 216, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-hero h1 span {
    color: var(--accent);
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.page-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 30px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .testimonials-slider {
        padding: 20px 0;
    }

    .swiper-button-next,
    .swiper-button-prev {
        top: auto;
        bottom: 5px;
    }
}

/* ========================================
   teaching-staff-page.css
   ======================================== */

/* ===== teaching-staff Page Styles ===== */

/* ========== TEACHING STAFF ========== */
.teaching-staff-page {
    padding: 60px 0;
    background: var(--light-bg);
}
.staff-category {
    margin-bottom: 50px;
}
.category-title {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}
.category-title span {
    color: var(--orange);
}
.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.staff-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}
.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.staff-image {
    height: 200px;
    overflow: hidden;
}
.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.staff-card:hover .staff-image img {
    transform: scale(1.05);
}
.staff-info {
    padding: 20px;
}
.staff-info h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.staff-info .designation {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
}
.staff-info .qualification {
    color: var(--gray);
    font-size: 0.8rem;
    margin: 5px 0;
}
.staff-info .experience {
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 500;
}
.staff-info .experience i {
    color: var(--orange);
    margin-right: 5px;
}
.staff-info .specialization {
    color: var(--text);
    font-size: 0.8rem;
    background: var(--light-bg);
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 8px;
}

/* ========== STAFF STATS ========== */
.staff-stats {
    padding: 60px 0;
    background: var(--white);
}
.sstats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}
.sstat-card {
    text-align: center;
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--radius);
    transition: var(--transition);
}
.sstat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.sstat-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 10px;
}
.sstat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}
.sstat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sstats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: 1fr 1fr;
    }
    .staff-image {
        height: 160px;
    }
}
@media (max-width: 480px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }
    .staff-image {
        height: 200px;
    }
    .sstats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   testimonial-page.css
   ======================================== */

/* ===== testimonial Page Styles ===== */

.testimonials-page { padding: 60px 0; background: var(--light-bg); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.testimonial-quote { margin-bottom: 25px; }
.testimonial-quote i {
    color: var(--orange);
    font-size: 2rem;
    opacity: 0.2;
    margin-bottom: 15px;
}
.testimonial-quote p {
    font-style: italic;
    line-height: 1.8;
    color: var(--dark);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}
.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange);
}
.testimonial-author h4 { color: var(--dark); font-size: 1.1rem; margin-bottom: 3px; }
.testimonial-author p { color: var(--gray); font-size: 0.9rem; }
.rating { color: #fbbf24; font-size: 0.9rem; letter-spacing: 2px; }

@media (max-width: 992px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } .page-hero h1 { font-size: 2rem; } }

/* Testimonials page grid - 2 col on tablet, 3 on desktop */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

.section-padding { padding: 70px 0; }

/* ================================================
   ALL MESSAGES PAGE  (messages.php)
   ================================================ */

.all-messages-page {
    padding: 70px 0;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Individual message card */
.all-msg-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}
.all-msg-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

/* Reversed layout — image on right */
.all-msg-card--reverse {
    grid-template-columns: 1fr 280px;
}
.all-msg-card--reverse .all-msg-image {
    order: 2;
}
.all-msg-card--reverse .all-msg-body {
    order: 1;
}

/* Left image panel */
.all-msg-image {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}
.all-msg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.all-msg-card:hover .all-msg-image img {
    transform: scale(1.05);
}
.all-msg-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.all-msg-card--reverse .all-msg-badge {
    left: auto;
    right: 20px;
}

/* Right content panel */
.all-msg-body {
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.all-msg-tag {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--orange);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.all-msg-meta h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.2;
}
.all-msg-meta h2 span {
    color: var(--orange);
}
.all-msg-qual {
    color: var(--gray);
    font-size: 0.88rem;
    margin: 0;
}

.all-msg-text p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.95rem;
}
.all-msg-text p:last-child {
    margin-bottom: 0;
}

.all-msg-quote {
    background: var(--light-bg);
    border-left: 4px solid var(--orange);
    border-radius: 0 10px 10px 0;
    padding: 18px 20px;
    position: relative;
    margin: 16px 0;
}
.all-msg-quote i {
    color: var(--orange);
    font-size: 1.4rem;
    opacity: 0.2;
    position: absolute;
    top: 12px;
    right: 16px;
}
.all-msg-quote p {
    font-style: italic;
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem !important;
    margin: 0 !important;
}

/* Footer row: signature + link */
.all-msg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    flex-wrap: wrap;
    gap: 14px;
}

.all-msg-sig {
    display: flex;
    align-items: center;
    gap: 14px;
}
.sig-bar {
    width: 4px;
    height: 40px;
    background: var(--orange);
    border-radius: 4px;
    flex-shrink: 0;
}
.all-msg-sig strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
}
.all-msg-sig span {
    color: var(--gray);
    font-size: 0.83rem;
}

.all-msg-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.all-msg-link:hover {
    background: var(--orange-dark);
    gap: 12px;
    color: var(--white);
}
.all-msg-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

/* Responsive */
@media (max-width: 992px) {
    .all-msg-card,
    .all-msg-card--reverse {
        grid-template-columns: 1fr;
    }
    .all-msg-card--reverse .all-msg-image,
    .all-msg-card--reverse .all-msg-body {
        order: unset;
    }
    .all-msg-image {
        min-height: 280px;
    }
    .all-msg-badge,
    .all-msg-card--reverse .all-msg-badge {
        left: 20px;
        right: auto;
    }
    .all-msg-body {
        padding: 30px;
    }
    .all-msg-meta h2 {
        font-size: 1.6rem;
    }
}
@media (max-width: 600px) {
    .all-messages-page {
        padding: 40px 0;
        gap: 30px;
    }
    .all-msg-image {
        min-height: 220px;
    }
    .all-msg-body {
        padding: 22px 20px;
    }
    .all-msg-meta h2 {
        font-size: 1.4rem;
    }
    .all-msg-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .all-msg-link {
        width: 100%;
        justify-content: center;
    }
}
