/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.image-container {
    text-align: center;
    display: flex;
    animation: fadeIn 2s ease-in;
    height: 80%;
}

.image-container img {
    width: 100%;
    height: 658px;
}

.roles {
    text-align: center;
    font-size: 18px;
    margin: 20px 0;
    animation: fadeInUp 2s ease-in;
}

.roles a {
    color: #007bff;
    text-decoration: none;
    margin: 0 10px;
}

.roles span {
    color: #6c757d;
}

.roles a:hover {
    color: #003366;
    font-weight: bold;
}

.description {
    text-align: center;
    margin: 20px 0;
    animation: fadeInUp 2s ease-in 0.5s;
}

.description h2 {
    font-size: 24px;
    color: #003366;
    margin-bottom: 10px;
}

.description p {
    font-size: 18px;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    animation: fadeIn 2s ease-in 1s;
}

.header-image {
    width: 100%;
    height: 50%;
}

.content {
    padding: 20px;
}

.content p {
    font-size: 0.9rem;
    line-height: 1.2;
    color: #333;
}

.image-section {
    margin-top: 20px;
    text-align: center;
    animation: fadeInUp 2s ease-in 1.5s;
}

.content-image {
    width: 100%;
    height: auto;
}

/* Final Content Section */
.final-content {
    background-color: #fefaf5;
    padding: 50px 20px;
    text-align: center;
    animation: fadeIn 2s ease-in 2s;
    height: 500px;
}

.final-content-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-left: 100px;
    margin-right: 100px;
    animation: fadeInUp 2s ease-in 2.5s;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    height: 500px;
    text-align: left;
    margin-bottom: 20px;
    margin-right: 50px;
    margin-left: 40px;
    animation: slideUp 1.5s ease-out;
}

.card-img {
    width: 100%;
    height: 75%;
    display: block;
}

.card-text {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 10px;
    padding: 15px;
    color: #333;
    font-size: 1rem;
    text-align: center;
}

.card-date {
    margin-bottom: 50px;
    padding: 0 15px 15px;
    color: #6E1F61;
    font-size: 0.875rem;
    display: block;
    text-align: center;
}

/* Footer Section */
.final-content-footer {
    background-color: #d4c9c9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 0px;
    text-align: center;
}

.final-content-footer h2 {
    margin: 0;
    font-size: 2.5rem;
    color: darkblue;
    margin-bottom: 5px;
    font-weight: bold;
}



.social-icons {
    margin-bottom: 10px;
}

.footer-link {
    font-size: 2rem;
    margin: 0 5px;
    text-decoration: none;
    transition: transform 0.3s;
}

.footer-link:hover {
    transform: scale(1.1);
}

/* Specific colors for each icon */
.footer-link i.fa-facebook-f {
    color: #3b5998;
}

.footer-link i.fa-twitter {
    color: #00acee;
}

.footer-link i.fa-instagram {
    color: #C13584;
}

.footer-link i.fa-youtube {
    color: #FF0000;
}


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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    z-index: 1000;
}

.navbar {
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
    box-shadow: none;
}

.navbar-toggler {
    position: absolute;
    top: 20px;
    left: 5px;
    z-index: 1100;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
}

.navbar-toggler-icon {
    background-color: #2a9ae5;
    width: 30px;
    height: 2px;
    display: block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    background-color: #2a9ae5;
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    transition: none;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-collapse {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    width: 200px;
    padding: 10px;
    border-radius: 10px;
    background-color: transparent;
}

.navbar-collapse.show {
    display: block;
}

.navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 15px;
    margin-left: -22%;
}

.navbar .navbar-nav .nav-item {
    margin: 0;
    color: #2a9ae5;
    text-align: left;
}

.container {
    padding: 10px;
    border-radius: 10px;
    margin-top: 280px;
    margin-left: 0;
    text-align: left;
}

h1 {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
    text-align: left;
}

.typed {
    font-size: 35px;
    font-weight: 500;
    text-align: left;
}

.line {
    white-space: nowrap;
    margin-top: 50px;
    height: 40px;
    overflow: hidden;
    font-size: 30px;
    font-weight: lighter;
    margin: 0;
    text-align: left;
}

.navbar-dark .navbar-nav .nav-link {
    color: #2a9ae5;
}

.nav-link:hover {
    color: rgba(157, 0, 255, 0.5);
}

.additional-content {
    background-color: #333;
    color: white;
    padding: 30px;
    width: 100%;
    text-align: center;
}

.container11 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.image-section {
    max-width: 40%;
    margin-top: 40px;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content {
    max-width: 60%;
}

.content p {
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 15px;
    color: black;
    text-align: justify;
}

.footer ul {
    margin-top: 20px;
    padding-left: 20px;
}

.footer ul li {
    margin-bottom: 10px;
    font-size: 1em;
}

header ul, header ol, header a {
    text-decoration: none;
    list-style: none;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 10px;
    }

    .final-content-cards {
        margin-left: 50px;
        margin-right: 50px;
    }

    .card {
        margin-right: 50px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 10px;
    }

    .image-section {
        max-width: 50%;
    }

    .content {
        max-width: 50%;
    }

    .final-content-cards {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .image-section {
        max-width: 100%;
    }
    .i{
        height: 250px !important;
    }

    .content {
        max-width: 100%;
    }

    .navbar-collapse {
        width: 100%;
        top: 10px;
    }

    .navbar-toggler {
        left: 1px;
    }

    .navbar-toggler-icon {
        width: 25px;
        height: 2px;
    }
    .navbar .navbar-nav .nav-item {
        margin: 0;
        color: #2a9ae5;
        text-align: left;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 25px;
    }

    .final-content-cards {
        margin-left: 0;
        margin-right: 0;
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        margin-left: 0 !important;
    }
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 50%;
        display: flex;
        align-items: center;
        padding: 10px;
        z-index: 1000;
    }
    
    .navbar {
        position: relative;
        display: flex;
        justify-content: flex-start;
    }
    
    .navbar-toggler:focus, .navbar-toggler:hover {
        outline: none;
        box-shadow: none;
    }
    
    .navbar-toggler {
        position: absolute;
        top: 10px;
        left: 5px;
        z-index: 1100;
        background-color: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
    }
    
    .navbar-toggler-icon {
        background-color: #2a9ae5;
        width: 30px; /* Reduced width */
        height: 2px;
        display: block;
        position: relative;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        background-color: #2a9ae5;
        width: 20px; /* Reduced width */
        height: 2px;
        position: absolute;
        left: 0;
    }
    
    .navbar-toggler-icon::before {
        top: -6px; /* Adjusted spacing */
    }
    
    .navbar-toggler-icon::after {
        top: 6px; /* Adjusted spacing */
    }
    
    
    .navbar-collapse {
        display: none;
        position: absolute;
        top: 100px;
        left: 26px;
        width: 300px; /* Adjusted width for better responsiveness */
        padding: 5px;
        border-radius: 10px;
        background-color: transparent;
    }
    
    .navbar-collapse.show {
        display: block;
    }
    
    .navbar .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
        
    }
    
    
    
    
    .navbar .navbar-nav .nav-item {
        margin: 0;
        color: #2a9ae5;
        text-align: left;
        font-size: 15px; /* Increased font size */
        letter-spacing: 0px; 
        padding: 5px 0px; /* Added padding for space between words */
    }
    .navbar-toggler-icon {
        background-color: #2a9ae5;
        width: 20px; /* Reduced width */
        height: 2px; /* Reduced height */
        display: block;
        position: relative;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        background-color: #2a9ae5;
        width: 20px; /* Reduced width */
        height: 2px; /* Reduced height */
        position: absolute;
        left: 0;
    }
    
    .navbar-toggler-icon::before {
        top: -6px; /* Adjusted spacing */
    }
    
    .navbar-toggler-icon::after {
        top: 6px; /* Adjusted spacing */
    }
    .final-content{
        height: auto;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 36px;
    }

    .typed {
        font-size: 24px;
    }

    .line {
        font-size: 20px;
    }

    .navbar-collapse {
        top: 10px;
    }

    .container11 {
        flex-direction: column;
        align-items: center;
    }

    .image-section {
        max-width: 100%;
    }

    .content {
        max-width: 100%;
    }

    .card {
        width: 100%;
        height: auto;
    }
}

