/* Global Styles */
:root {
    --primary: #2c5aa0;
    --secondary: #f5a623;
    --dark: #333;
    --light: #f9f9f9;
    --gray: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
}

/* .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
} */
.container{
    padding: 0px;
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: #1d4377;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
}

.btn-secondary:hover {
    background: #e0951f;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0px;
}
.logo{
    height: 100px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    /* padding: 20px 0; */
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin-bottom: 0px;
}

/* .nav-links li {
    margin-left: 30px;
} */

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}
.colums{
    display: flex;
    /* justify-content: center; */
    /* gap: 20px; */
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-infoo {
    list-style: none;
}

.contact-infoo li {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
}

.contact-infoo i {
    margin-right: 10px;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.newsletter input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    font-size: 0.9rem;
}
.enroll{
    display: block;
    background-color: black;
    color: white;
    border-radius: 5px;
}





/* Responsive Styles */
@media (max-width: 768px) {
    .logo{
        height: 80px;
    }
    .enroll{
        display: block;
        a{
            padding: 5px;
        }
    }
    .nav-links {
        position: fixed;
        padding: 0;
        top: 80px;
        left: -100%;
        width: 100%;
        /* height: calc(100vh - 80px); */
        background: white;
        flex-direction: column;
        align-items: center;
        /* padding: 40px 0; */
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}



@media (max-width: 1300px){
.colums{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
}