
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    
}



.topnav {
    background-color: rgba(246, 93, 0, 0.95);
   
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.topnav.scrolled {
    padding: 5px 5%;
    background-color: rgba(246, 93, 0, 0.98);
}

.nav-items {
    display: flex;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0px;
}

.logo svg {
    height: 80px;
    width: 70px;
    transition: all 0.3s ease;
    
    
}

.scrolled .logo svg {
    height: 60px;
}

.logo p {
    color: #f1f1f1;
    font-size: 40px;
    padding: 5px;
    margin-left: 0px;
    transition: all 0.3s ease;
}

.scrolled .logo p {
    font-size: 32px;
}

.topnav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
}

.topnav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.topnav a:hover::after {
    width: 80%;
}

.topnav a:hover {
    background-color: rgba(255, 163, 27, 0.2);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .topnav {
        padding: 5px 4%;
    }
    
    .nav-items {
        gap: 10px;
    }
    
    .logo svg {
        display: none; /* Hide the image on mobile */
    }
    
    .logo p {
        font-size: 28px;
        margin-left: 0;
    }
    
    .scrolled .logo p {
        font-size: 24px;
    }
    
    .topnav a {
        padding: 8px 10px;
        font-size: 14px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .topnav {
        flex-direction: column;
        padding: 5px 2%;
    }
    
    .nav-items {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
    
    .logo p {
        font-size: 24px;
    }
    
    .scrolled .logo p {
        font-size: 22px;
    }
    
    .topnav a {
        padding: 6px 8px;
        font-size: 12px;
    }
}

.containerr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin: 2rem 0;
}

.description {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f3bd0c;
    color: white;
}

tr:nth-child(even) {
    background-color: #f5f5f5;
}

.status {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
}

.complete {
    background-color: #f65d00;
    color: white;
}

.incomplete {
    background-color: #c75b5b;
    color: white;
}

h2 {
    margin-bottom: 1rem;
    color: #333;
}

.slider {
    margin: 80px;
    position: relative;
    width: 90%;
    height: 700px;
    overflow: hidden;
    justify-content: center;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    
}

.text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 5px;
    max-width: 80%;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.footer {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
padding: 40px 0;
font-family: Arial, sans-serif;
text-align: center;
    justify-content: center;

}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.footer h3 {
font-size: 24px;
margin-bottom: 20px;
font-weight: bold;
}

.footer p {
line-height: 1.6;
margin-bottom: 15px;

}

.social-media a {
    display: inline-block;
    margin-right: 25px;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-media a:hover {
    transform: translateY(-5px);
    color: #f65d00;
}