body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: white;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    padding: 10px 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
    /* Shadow effect */
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    /* Light border for extra effect */
    z-index: 1000;
}


.nav-links a {
    font-family: 'Poppins', Bookman Old Style;
    /* Change this to your preferred font */
    font-size: 15px;
    /* Adjust size as needed */
    font-weight: bold;
    /* You can change to normal, lighter, etc. */
    text-transform: uppercase;
    /* Optional: Makes text uppercase */
}

.nav-links b {
    font-family: 'Poppins', Bookman Old Style;
    /* Change this to your preferred font */
    font-size: 15px;
    /* Adjust size as needed */
    font-weight: bold;
    /* You can change to normal, lighter, etc. */
    text-transform: uppercase;
    /* Optional: Makes text uppercase */
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 70px;
    height: auto;
    margin-right: 15px;
}

.logo {
    font-family: 'Monotype Corsiva', cursive;
    font-size: 35px;
    color: white;
    margin: 0;
    padding-bottom: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links b {
    color: #ffcc00;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links b:hover {
    color: #ffcc00;
}

.nav-links a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

/* Apply Segoe UI font to the About Us section */
.about-us {
    font-family: 'Segoe UI', sans-serif;
    color: white;
    /* Change color as needed */
    text-align: justify;
    line-height: 1.6;
}

/* Style for headings */
.about-us h1,
.about-us h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-align: center;
    color: #FFD700;
    /* Golden color, adjust as needed */
}

* {
    box-sizing: border-box
}

/* Main Content */
main {
    padding: 65px 50px 50px;
    max-width: 1200px;
    margin: auto;
}

h1 {
    margin: 0;
    padding: 15px;
    color: #ffcc00;
    font-size: 40px;
}

.about-container {
    display: flex;
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
    height: 65vh;
    /* Adjust height as needed */
}

.about-container img {
    max-width: 100%;
    /* Ensures the image is responsive */
    height: 400px;
    /* Maintains aspect ratio */
}

.soft-edge {
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgb(182, 181, 181),
        0px 0px 40px rgb(248, 248, 248) inset;
    /* Inner glow effect */
}

h2 {
    color: #ffcc00;
    font-size: 25px;
}

.text {
    color: #000000;
    font-size: 18px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

strong {
    color: #ffcc00;
}

ul {
    padding-left: 20px;
}

ul li {
    margin: 10px 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    position: relative;
    bottom: 0;
    width: 100%;
}

.logo-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: normal;
}

footer a:hover {
    text-decoration: underline;
}

/* Page Load Animation */
.page {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Parent container for slideshow & stepper */
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Left Side - Slideshow */
.slideshow-container {
    width: 50%;
    max-width: 600px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px #ffcc0030, 0 0 40px #ffcc001e, 0 0 60px #ffcc001d; /* Glowing effect */
    border: 2px solid #ffcc0047; /* Optional: Golden border */
}

/* Slideshow Styles */
.mySlides {
    display: none;
}

.slideshow-container img {
    border-radius: 15px;
    /* Adjust radius as needed */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.013);
    /* Optional shadow for nice effect */
    width: 100%;
    display: block;
}

/* Animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}


.animated-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: 20px;
    /* Adjust to fit under the slideshow */
}

.animated-text {
    font-size: 24px;
    font-weight: bold;
    color: yellow;
    max-width: 80%;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 2s ease-in-out;
}

.animated-text.show {
    opacity: 1;
    transform: translateX(0);
}


.egs-objectives-text {
    flex: 1;
    min-width: 320px;
    background-color: #1c1c1c;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}


/* Make slideshow full width on load */
.slideshow-container.fullscreen {
    width: 100vw;
    height: 75vh;
    position: relative;
    overflow: hidden;
    transition: width 0.8s ease-in-out, height 0.8s ease-in-out, max-width 0.8s ease-in-out;
    border-radius: 20px;
}

/* Shrunk style after scroll */
.slideshow-container.shrunk {
    width: 100%;
    height: auto;
    max-width: 600px;
    transition: width 0.8s ease-in-out, height 0.8s ease-in-out, max-width 0.8s ease-in-out;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 204, 0, 0.2);
    transform: scale(0.98);
}

/* Container vertical layout for fullscreen view */
.content-container.fullscreen-mode {
    flex-direction: column;
    align-items: center;
    transition: width 0.8s ease-in-out, height 0.8s ease-in-out, max-width 0.8s ease-in-out;
    border-radius: 20px;
}

/* Default horizontal layout */
.content-container.default-mode {
    flex-direction: row;
    align-items: flex-start;
    
}
