body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: white;
    color: white;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 60px;
}

header nav ul {
    float: right;
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: auto; /* Align navigation to the right */
}

header nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 1.1em;
    position: relative;
}

header nav ul li a:hover {
    color: #f07f3e;
    transition: color 0.3s ease-in-out;
}

header nav ul li a::after {
    content: '';
    width: 0;
    height: 2px;
    background-color: #f07f3e;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease-in-out;
}

header nav ul li a:hover::after {
    width: 100%;
}

.hero {
    background-color: #0a1f44;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero h1 span {
    color: #f07f3e;
}

.hero p {
    margin: 20px 0;
    font-size: 1.2em;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-buttons .btn {
    background-color: #f07f3e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    flex: 1;
    padding-right: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.hero-buttons .btn:hover {
    background-color: #d96c2c;
}

#about {
    background-color: white;
    padding: 40px 0;
    text-align: center;
}

#about h2 {
    color: #f07f3e;
    font-size: 2em;
    margin-bottom: 20px;
}

#about .about-content {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#about img {
    width: 300px;
    border-radius: 10px;
}
#about .about-text {
    text-align: justify;
}

#team {
    background-color: #0a1f44;
    color: white;
    padding: 40px 0;
    text-align: center;
}

#team h2 {
    color: #f07f3e;
    font-size: 2em;
    margin-bottom: 20px;
}

.team-members {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    padding: 20px;
    border-top: 2px solid #f07f3e;
    border-bottom: 2px solid #f07f3e;
}

.team-member{
    text-align: center;
    max-width: 300px;
    padding: 20px;
    
    border: 2px solid white;
    border-radius: 10px;
    background-color: #182a53;
    transition: 0.6s;
    box-shadow: 5px 5px 5px white;
}
.team-member:hover{
    color: black;
   background-color: white;
   box-shadow: 5px 5px 5px rgb(215, 88, 88);
   size: 1000px;
}
.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

.team-member h3 {
    margin-top: 10px;
    font-size: 1.3em;
    color: #f07f3e;
}
.team-member:hover{
    transition: 0.6s;

}

.team-member p {
    text-align: justify;
    margin-top: 10px;
    font-size: 1em;

    line-height: 1.5;
}
footer {
    background-color: white;
    color: #333;
    padding: 30px 0;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-left img {
    height: 80px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.footer-right {
    display: flex;
    gap: 50px;
}

.footer-column h4 {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links li a,
.footer-contact li {
    color: #333;
    text-decoration: none;
    font-size: 1em;
}

.footer-contact li i {
    margin-right: 10px;
    color: #f07f3e;
}

.footer-contact li i.fa-map-marker {
    vertical-align: top;
}

footer a:hover {
    text-decoration: underline;
}

/* Animation */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.animate-img {
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 1s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}