/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Orbitron', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, 
        #001F3F 0%, 
        #003366 25%, 
        #0052B4 50%, 
        #D70000 75%, 
        #FF8C00 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(0, 31, 63, 0.95);
    box-shadow: 0 5px 30px rgba(0, 210, 255, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 210, 255, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.5));
}

.logo h1 {
    font-size: 1.8rem;
    background: linear-gradient(45deg, #00d2ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo p {
    font-size: 0.9rem;
    color: #a0d2ff;
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(0, 210, 255, 0.2);
    color: #00d2ff;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.btn-login {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.6);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #00d2ff;
    padding: 5px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 60px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    margin: 100px 20px 40px;
    border: 1px solid rgba(0, 210, 255, 0.2);
    box-shadow: inset 0 0 50px rgba(0, 210, 255, 0.1),
                0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto 50px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 900;
    background: linear-gradient(45deg, #ffffff, #00d2ff, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #d1e8ff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 250px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #00d2ff;
    border: 2px solid #00d2ff;
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 210, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 20px;
    min-width: 180px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 210, 255, 0.3);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.3);
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
}

.stat-card p {
    color: #a0d2ff;
    font-size: 1.1rem;
}

/* Section Styles */
.section {
    padding: 100px 20px;
    background: rgba(0, 20, 40, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 40px 20px;
    border: 1px solid rgba(0, 210, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                inset 0 0 40px rgba(0, 210, 255, 0.05);
}

.bg-light {
    background: rgba(255, 255, 255, 0.1);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #ffffff, #00d2ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #a0d2ff;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Programme Cards */
.programme-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 210, 255, 0.3);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    padding: 20px;
    border-radius: 20px;
    background: rgba(0, 210, 255, 0.1);
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.card h4 {
    color: #00d2ff;
    margin: 25px 0 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card p {
    color: #d1e8ff;
    line-height: 1.8;
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
    margin-top: 20px;
    padding-left: 0;
}

.card ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.card ul li:last-child {
    border-bottom: none;
}

/* Steps */
.steps {
    max-width: 900px;
    margin: 60px auto;
}

.step {
    display: flex;
    gap: 40px;
    margin-bottom: 70px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 25px;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.5);
    font-family: 'Orbitron', sans-serif;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #00d2ff;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Payment Details */
.payment-details {
    background: rgba(0, 0, 0, 0.3);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.payment-details h4 {
    color: #00d2ff;
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-info p {
    margin: 15px 0;
    font-size: 1.2rem;
    color: #ffffff;
    display: flex;
    gap: 10px;
}

.note {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 199, 44, 0.2), rgba(255, 140, 0, 0.2));
    border-left: 5px solid #FFC72C;
    color: #FFD700;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Forms */
.registration-form,
#loginForm {
    background: rgba(0, 0, 0, 0.3);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #00d2ff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 210, 255, 0.3);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d2ff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    background: rgba(0, 210, 255, 0.1);
}

.btn-block {
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    padding: 20px;
    margin-top: 20px;
}

/* Checklist */
.checklist p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 18px 0;
    font-size: 1.2rem;
    color: #ffffff;
    padding: 15px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid #00d2ff;
}

.checklist i {
    font-size: 1.4rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 210, 255, 0.3);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00d2ff;
}

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-card p {
    color: #d1e8ff;
    margin: 10px 0;
    line-height: 1.6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(0, 20, 40, 0.95);
    padding: 50px;
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(0, 210, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 210, 255, 0.3);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #00d2ff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(0, 210, 255, 0.2);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: #00d2ff;
    margin-bottom: 15px;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-note {
    margin-top: 25px;
    font-size: 0.95rem;
    color: #a0d2ff;
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.5);
    z-index: 1000;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.7);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 80px 20px 40px;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 210, 255, 0.3);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.footer-logo .logo {
    background: rgba(0, 210, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #a0d2ff;
    margin: 5px 0;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #00d2ff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    color: #00d2ff;
    padding-left: 10px;
    border-bottom-color: rgba(0, 210, 255, 0.3);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    color: rgba(255, 255, 255, 0.9);
}

.footer-ai h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #00d2ff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-ai p {
    color: #a0d2ff;
    margin: 12px 0;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .programme-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 31, 63, 0.98);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        gap: 20px;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 210, 255, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 350px;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .programme-cards {
        grid-template-columns: 1fr;
    }
    
    .section {
        margin: 20px 10px;
        padding: 60px 15px;
    }
    
    .hero {
        margin: 80px 10px 30px;
        padding: 40px 15px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-card {
        min-width: 140px;
        padding: 20px;
    }
    
    .stat-card h3 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card {
        padding: 25px;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 100px;
        right: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
}

/* ==== NEW LOGO STYLING ==== */
.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.5));
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
}

/* Make logo smaller on mobile phones */
@media (max-width: 768px) {
    .logo-img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 45px;
        height: 45px;
    }
}