*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#main-navigation {
    background-color: rgba(51, 51, 51, 0.7);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.register{
    margin-left: 600px;
    background-color: #ff6600;
    color: white;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;

}
.register:hover {
    background-color: #e65c00;
}
.logo {
    height: 50px;
    width: auto;
}

.nav-list {
    list-style-type: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-list li a:hover {
    background-color: #555;
    color:tomato
}

.landing-page {
    font-family: Arial, sans-serif;
    background-image: url('../bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
} 

.cta-button{
    background-color: #ff6600;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    margin-top: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-button:hover{
    background-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}
#about, #services, #contact {
    padding: 80px 20px;
    text-align: center;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Spacer for scrolling */
.spacer {
    height: 50vh;
}

/* Footer Styles */
footer {
    background-color: rgba(51, 51, 51, 0.95);
    color: white;
    padding: 50px 20px 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #ff6600;
    font-size: 20px;
}

.footer-section p {
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6600;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a:hover {
    color: #ff6600;
}

.social-links i {
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}
/* About Hero */
.about-hero{
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(11, 61, 145, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.about-hero p {
    font-size: 22px;
    color: #ffd700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* About Content */
.about-content{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.95);
    max-width: 1200px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-text h2{
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 28px;
}

.about-text p{
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

/* Stats */
.about-stats{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card{
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    border-radius: 10px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}

.stat-card h3 {
    font-size: 20px;
    font-weight: bold;
}

.badge{
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffd700;
    color: #333;
    padding: 0.5rem 0.8rem;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Team Section */
.team{
    padding: 4rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    max-width: 1200px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.team h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
}

.team-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.team-card{
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.team-card img{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.team-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.team-card p {
    color: #ff6600;
    font-weight: bold;
}

/* Responsive */
@media (max-width:768px){
    .about-content{
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .team-grid{
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero p {
        font-size: 18px;
    }
}