* {
    margin: 0;
    padding: 0;
    font-family: 'Inter';
}

body {
    margin: 0;
    background-color: #000;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    padding-top: 60px;
}

/* HOME PAGE */

.navbar {
    background-color: #000000;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    z-index: 1000;
    transition: top 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    padding: 16px;
}

.navbar .icon {
    display: none;
}

.nav-links a.active {
    color: white;
    font-weight: 900;
    background: red;
    border-radius: 20px;
}


.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #000000a7;
    color: white;
    width: 100px;
    top: 100%;
    left: 0;
    background-color: #000000a7;
    display: none;
    list-style: none;
}

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

nav img {
    width: 140px;
}


.nav-links {
    text-align: right;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    padding: 6px 24px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #AC0101;
}


.showteam:hover .dropdown {
    display: block;
}


.showteam:hover .dropdown {
    display: block;
}

.showteam .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000000a7;
    color: white;
    list-style-type: none;
    padding: 10px;
    margin: 0;
    min-width: 100px;
    z-index: 1000;
}

nav .fa {
    display: none;
}

.showteam ul {
    text-align: center;
}

.showteam {
    position: relative;
}

.showteam ul li {
    padding-top: 10px;
    padding-bottom: 10px;
}

.showteam ul li a {
    font-size: 0.75rem;
}

.footer {
    padding: 50px;
    display: flex;
    justify-content: space-around;
    background-color: #000000;
    color: #fff;
    align-items: center;
}

.cnts {
    font-size: 18px;
    padding: 10px 0;
}

.socials {
    font-size: 22px;
    padding-top: 20px;
    font-weight: 900;
}


.logo a img {
    padding-top: 10px;
}

.logo a img {
    padding-top: 30px;
}

.copyright {
    background-color: black;
    text-align: center;
    color: #fff;
    padding: 10px 0;
    font-size: 10px;
}

@media (max-width: 1100px) {

    .nav-links a,
    .dropdown-container {
        display: none;
    }

    .navbar .icon {
        float: right;
        display: block;
    }

    .navbar.responsive {
        position: relative;
    }

    .navbar.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .navbar.responsive .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .navbar.responsive .nav-links a,
    .navbar.responsive .dropdown-container {
        display: block;
        text-align: left;
        width: 100%;
    }

    .navbar.responsive .dropdown {
        position: relative;
        background-color: #333;
    }

    .footer {
        flex-direction: column;
        padding: 1rem;
    }

    .footer .logo a img {
        padding-top: 10px;
    }

}

main {
    padding-left: 10%;
    padding-right: 10%;
    background-color: #000000;
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin: 20px;
}

.section {
    width: fit-content;
    padding: 20px;
    text-align: center;
}

.section:not(:last-child) {
    border-right: 2px solid white;
}

.section h2 {
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
}
.section h3 {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #c12121;
    text-align: center;
}


.section p {
    font-size: 21px;
    line-height: 1.5;
    color: #fff;
    text-align: left;
}

.apply-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

.apply-btn {
    background-color: red;
    color: white;
    padding: 10px 20px;
    font-size: 25px;
    border: none;
    border-radius: 5px;
}

.apply-btn:hover {
    background-color: darkred;
}

.recruitment {
    font-size: 90px;
    text-align: center;
    color: #c00b0b;
    font-weight: bolder;
    padding-top: 20px;
}
.card-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    transition: transform 0.3s;
    margin: 30px;
}

.info-card:hover {
    transform: translateY(-10px);
}

.card-thumbnail {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    margin-top: 20px;
}

.card-details {
    padding: 30px;
    text-align: center;
    background-color: #B70000;
}

.card-details h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: white;
    margin-bottom: 30px;
}

.learn-btn {
    text-decoration: none;
    padding: 10px 20px;
    background-color: black;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.learn-btn:hover {
    background-color: #444;
}
    
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        align-items: center;

    }

    .section {
        width: 90%;
        margin-bottom: 20px;
        padding-left: 20px;
        text-align: center;
        border-right: none;
        border-bottom: 2px solid white;
    }

    .section:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .section h2 {
        font-size: 20px;
    }

    .section p {
        font-size: 14px;
    }

    .section:not(:last-child) {
        border-right: none;
    }

    .recruitment {
        font-size: 30px;
    }
    .card-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .card-details h2 {
        font-size: 25px;
        margin-bottom: 15px;
    }
    .info-card {
        width: 90%; 
        margin-bottom: 20px;
    }

    .card-thumbnail {
        height: 180px; 
    }

    .card-details {
        padding: 20px; 
    }

    .learn-btn {
        padding: 10px 25px;
    }
}
