/* Custom MUMSA High School Styles - Professional Design */

/* Quick Navigation */
.quick-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.quick-link {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.quick-link:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.quick-link i {
    font-size: 1rem;
}

/* Section Actions */
.section-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.back-to-top {
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-top:hover {
    background: rgba(44, 62, 80, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.section-nav {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.section-nav:hover {
    background: rgba(243, 156, 18, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
}

.back-to-top i,
.section-nav i {
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quick-nav {
        gap: 10px;
    }
    
    .quick-link {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
    
    .section-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .back-to-top,
    .section-nav {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }
}

/* Achievement Summary Cards */
.achievement-summary {
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
}

.achievement-summary:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.summary-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    flex-shrink: 0;
}

.summary-content {
    flex: 1;
}

.summary-content h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.summary-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.view-more-btn {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.4);
}

.view-more-btn:hover {
    background: rgba(243, 156, 18, 0.3);
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
}

.view-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .achievement-summary {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .summary-content h3 {
        font-size: 1rem;
    }
    
    .summary-content p {
        font-size: 0.85rem;
    }
    
    .view-more-btn {
        width: 100%;
        justify-content: center;
        max-width: 200px;
        font-size: 0.7rem;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .achievement-summary {
        padding: 15px;
    }
    
    .summary-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .summary-content h3 {
        font-size: 0.9rem;
    }
    
    .summary-content p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
}

/* Competitive Achievements Section - Professional Design */
.achievements-section {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #34495e 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.achievements-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
}

.achievement-card {
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}

.champions-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.achievement-icon {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 25px;
    opacity: 0.9;
}

.achievement-title {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.4rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.achievement-list {
    padding-left: 0;
    margin-bottom: 30px;
    list-style: none;
}

.achievement-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.achievement-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
}

.stat-text {
    font-size: 1rem;
    margin-left: 15px;
    opacity: 0.8;
    font-weight: 400;
}

.achievement-btn {
    font-weight: 600;
    border-radius: 4px;
    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: #f39c12;
    color: white;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.achievement-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    background: #e67e22;
}

/* Professional Typography */
.achievements-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: none;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.achievements-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.winning-formula-title {
    color: #f39c12;
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 1.3rem;
    letter-spacing: -0.2px;
}

.formula-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.formula-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

.formula-icon {
    color: #f39c12;
    margin-bottom: 20px;
    opacity: 0.9;
}

.formula-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.1px;
}

.formula-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.achievements-cta {
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    background: transparent;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.achievements-cta:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* Professional Stats Animation */
.stats-counter {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.pulse-animation {
    animation: pulse 3s infinite ease-in-out;
}

/* Professional Button Standards */
.btn {
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    padding: 12px 25px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-primary {
    background: #f39c12;
    color: white;
}

.btn-primary:hover {
    background: #e67e22;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-light {
    background: #f8f9fa;
    color: #333;
}

.btn-light:hover {
    background: #e9ecef;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-warning {
    background: #f39c12;
    color: white;
}

.btn-warning:hover {
    background: #e67e22;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-info {
    background: #17a2b8;
    color: white;
}

.btn-info:hover {
    background: #138496;
}

/* Button Sizes */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Link Styling - Make links look like buttons */
a {
    color: #f39c12;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #e67e22;
    text-decoration: none;
}

/* Button Links - Links that should look like buttons */
.btn-link {
    background: #f39c12;
    color: white;
    border-radius: 4px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-link:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.btn-link.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-link.btn-secondary:hover {
    background: #5a6268;
}

.btn-link.btn-light {
    background: #f8f9fa;
    color: #333;
}

.btn-link.btn-light:hover {
    background: #e9ecef;
}

.btn-link.btn-outline {
    background: transparent;
    color: #f39c12;
    border: 2px solid #f39c12;
}

.btn-link.btn-outline:hover {
    background: #f39c12;
    color: white;
}

/* Active Button States */
.btn:active,
.btn-link:active,
.btn.active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.btn-link:active,
.btn-link.active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Site Button Override */
.site-btn {
    background: #f39c12;
    border: none;
    border-radius: 4px;
    padding: 12px 25px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.site-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.site-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Professional Header */
.header-section .hf-item {
    display: inline-block;
    margin-right: 30px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 4px;
    border-left: 3px solid #f39c12;
    transition: all 0.3s ease;
}

.header-section .hf-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.header-section .hf-item i {
    margin-right: 12px;
    color: #f39c12;
    font-size: 1.1rem;
}

.header-section .hf-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.header-section .hf-item span {
    color: #2c3e50;
    font-weight: 600;
    margin-right: 5px;
}

/* Professional Navigation */
.nav-section {
    background: #1a2332;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-section .main-menu {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-section .main-menu li {
    display: inline-block;
    margin-right: 35px;
    position: relative;
}

.nav-section .main-menu li:last-child {
    margin-right: 0;
}

.nav-section .main-menu li a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    position: relative;
    text-decoration: none;
    display: block;
}

.nav-section .main-menu li a:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f39c12;
    transition: width 0.3s ease;
}

.nav-section .main-menu li a:hover {
    color: white;
    background: rgba(255,255,255,0.05);
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-section .main-menu li a:hover:before {
    width: 100%;
}

.nav-section .main-menu li.active a {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-section .main-menu li.active a:before {
    width: 100%;
}

.nav-section .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-section .nav-right a {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.nav-section .nav-right a:hover {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
    transform: translateY(-2px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-section {
        padding: 15px 0;
    }
    
    .nav-section .container {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }
    
    .nav-section .main-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin: 0;
        padding: 0;
    }
    
    .nav-section .main-menu li {
        margin: 0;
        display: block;
    }
    
    .nav-section .main-menu li a {
        font-size: 0.85rem;
        padding: 6px 8px;
        text-align: center;
    }
    
    .nav-section .main-menu li a:hover,
    .nav-section .main-menu li.active a {
        padding: 6px 8px;
    }
    
    .nav-section .nav-right {
        gap: 15px;
    }
    
    .nav-section .nav-right a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Professional Hero Slider */
.hs-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hs-subtitle {
    font-size: 1.1rem;
    margin-top: 20px;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Professional Facilities Gallery */
.facility-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Landscape Cards (2:1 ratio) */
.facility-card.landscape {
    height: 300px;
}

.facility-card.landscape .facility-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Portrait Cards (3:4 ratio) */
.facility-card.portrait {
    height: 400px;
}

.facility-card.portrait .facility-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Square Cards (1:1 ratio) */
.facility-card.square {
    height: 250px;
}

.facility-card.square .facility-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Original Dimension Cards */
.facility-card.original {
    height: auto;
}

.facility-card.original .facility-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Facility Overlay */
.facility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.8), rgba(230, 126, 34, 0.9));
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.facility-card:hover .facility-overlay {
    opacity: 1;
}

.facility-info {
    padding: 20px;
    color: white;
}

.facility-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.facility-info p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facility-card.landscape,
    .facility-card.portrait,
    .facility-card.square {
        height: 250px;
    }
    
    .facility-overlay {
        opacity: 0.8;
    }
    
    .facility-info {
        padding: 15px;
    }
    
    .facility-info h3 {
        font-size: 1rem;
    }
    
    .facility-info p {
        font-size: 0.8rem;
    }
}

/* Professional Explore Section */
.counter-section {
    background: linear-gradient(135deg, #1a2332, #2c3e50);
    padding: 80px 0;
    position: relative;
}

.counter-section h2 {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.counter-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.explore-btn {
    background: #f39c12;
    border: none;
    border-radius: 4px;
    padding: 12px 30px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.explore-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-image {
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    height: 200px;
    object-fit: cover;
}

.gallery-image:hover {
    transform: scale(1.02);
}

.carousel-control-prev,
.carousel-control-next {
    background: rgba(0,0,0,0.5);
    border-radius: 4px;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    transition: background 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0,0,0,0.7);
}

.carousel-indicators button {
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: background 0.3s ease;
}

.carousel-indicators button.active {
    background: #f39c12;
}

/* Professional Footer */
.footer-section {
    background: #0f1419;
    padding: 60px 0 20px;
    color: rgba(255,255,255,0.8);
}

.footer-widget h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.footer-widget p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-widget .contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget .contact li {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    border-left: 3px solid #f39c12;
    transition: all 0.3s ease;
}

.footer-widget .contact li:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.footer-widget .contact li p {
    margin: 0;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.footer-widget .contact i {
    color: #f39c12;
    margin-right: 12px;
    font-size: 1rem;
    width: 20px;
    display: inline-block;
}

.newsletter-section {
    background: #1a2332;
    padding: 40px 0;
}

.newsletter-section h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.newsletter input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 12px 20px;
    color: white;
    font-size: 0.95rem;
}

.newsletter input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter button {
    background: #f39c12;
    border: none;
    border-radius: 4px;
    padding: 12px 25px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.newsletter button:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.copyright {
    background: #0a0d11;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright p {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 0.9rem;
}

.copyright a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #e67e22;
}

/* Professional We Are Section */
.full-courses-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.course-item {
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.course-item:hover {
    transform: translateY(-5px);
}

.course-info {
    padding: 30px;
}

.course-info p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Professional Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #1a2332, #2c3e50);
    padding: 80px 0;
    color: white;
}

.why-choose-section h2 {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.why-choose-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    border-left: 3px solid #f39c12;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.features-list li:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #f39c12;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(243, 156, 18, 0.1);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image {
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    max-width: 100%;
}

/* Professional Team Cards */
.team-card {
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.team-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.activity-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    aspect-ratio: 16/9;
}

.team-card:hover .activity-image {
    transform: scale(1.05);
}

.team-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f39c12;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.team-role {
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-description {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.team-contact {
    margin-top: 15px;
}

/* Value Cards with Images Below */
.value-card-with-image {
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.value-card-with-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-image-top {
    height: 200px;
    overflow: hidden;
}

.value-top-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    aspect-ratio: 16/9;
}

.value-card-with-image:hover .value-top-image {
    transform: scale(1.05);
}

.value-content-below {
    padding: 30px;
    text-align: center;
}

.value-card-with-image .value-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.value-card-with-image .category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    position: relative;
}

.value-card-with-image .value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.value-card-with-image .value-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .value-image-top {
        height: 150px;
    }
    
    .value-content-below {
        padding: 20px;
    }
    
    .value-card-with-image .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .value-card-with-image .value-title {
        font-size: 1rem;
    }
    
    .value-card-with-image .value-description {
        font-size: 0.85rem;
    }
}
.value-card-with-bg {
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.value-card-with-bg:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-content-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
    padding: 30px;
    border-radius: 4px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.value-card-with-bg .value-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.value-card-with-bg .value-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.value-card-with-bg .value-description {
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    font-size: 0.85rem;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.value-card {
    background: white;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Value Image Container */
.value-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
}

.value-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.value-card:hover .value-image {
    transform: scale(1.05);
}

.value-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    position: relative;
    z-index: 2;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.value-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Professional Feature List */
.features-list-container {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    border: none;
    border-left: none;
    border-radius: 0;
    color: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
    border-radius: 4px;
    padding: 15px;
}

.features-list li:before {
    display: none;
}

.feature-icon {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-text p {
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* Featured Image Container */
.featured-image-container {
    height: 100%;
}

.image-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    height: 400px;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover .featured-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.8), rgba(230, 126, 34, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.overlay-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.overlay-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.overlay-text p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Info Cards */
.info-cards {
    margin-top: 20px;
}

.info-card {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.info-icon {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* School Introduction Card */
.school-intro-card {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.intro-description {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Additional Benefits Section */
.additional-benefits-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.benefit-card {
    background: white;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.benefit-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .additional-benefits-section {
        padding: 40px 0;
    }
    
    .benefit-card {
        margin-bottom: 20px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .benefit-content h4 {
        font-size: 1rem;
    }
    
    .benefit-content p {
        font-size: 0.85rem;
    }
}
@media (max-width: 768px) {
    .team-card,
    .value-card,
    .info-card {
        margin-bottom: 20px;
    }
    
    .features-list li {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .image-card {
        height: 300px;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .overlay-content {
        padding: 15px;
    }
    
    .overlay-text h3 {
        font-size: 1.1rem;
    }
}
@media (max-width: 768px) {
    .header-section .hf-item {
        display: block;
        margin-bottom: 15px;
    }
    
    .nav-section {
        padding: 15px 0;
    }
    
    .nav-section .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-section .main-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-section .main-menu li {
        margin: 0;
    }
    
    .achievement-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    
    .achievements-title {
        font-size: 1.8rem;
    }
    
    .formula-item {
        margin-bottom: 20px;
    }
    
    .achievements-section {
        padding: 60px 0;
    }
    
    .counter-section {
        padding: 60px 0;
    }
    
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .why-choose-section {
        padding: 60px 0;
    }
    
    .full-courses-section {
        padding: 60px 0;
    }
}
