/* body css */
/* Style for the background video section */
.background-video-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full height of the viewport */
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the container without distorting aspect ratio */
    z-index: -1; /* Places the video behind the content */
}

/* Content on top of the background video */
.content {
    position: relative;
    z-index: 1; /* Ensures the content stays on top of the video */
    text-align: center;
    color: rgb(23, 23, 23); /* White text for contrast */
    padding: 20px;
}

/* Optional: Text and heading styles */
h1 {
    font-size: 3em;
}

p {
    font-size: 1.5em;
}


/* body {
    height: 100vh;
    margin: 0;
    background-image: url(Img/Background\ img.jpg);
    min-width: 20vh;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
} */

/* Header Css */
nav {
    background-color: rgba(145, 142, 136, 0.2); /* Initial background with opacity */
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    margin: 20px auto;
    width: fit-content;
    box-shadow: 0 4px 6px rgba(209, 188, 104, 0.448);
    transition: all 0.3s ease-in-out; /* Smooth transition for all properties */
}

nav:hover {
    background-color: rgba(235, 180, 71, 0.7); /* Change background on hover */
    transform: translateY(-5px); /* Move nav up a little on hover */
    box-shadow: 0 8px 12px rgba(174, 160, 3, 0.6); /* Increase shadow for effect */
}

/* Optional: Adding a smooth pulse effect for emphasis */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* Slightly increase size */
    }
    100% {
        transform: scale(1);
    }
}

nav:active {
    animation: pulse 0.5s ease-out; /* Pulse effect on click */
}



nav ul {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: normal;
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: rgb(45, 46, 46);
    text-decoration: none;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

nav ul li a:hover {
    background-color: #067b52;
    transform: scale(1.1);
}
/* Media Query for Small Screens (Mobile Devices) */
@media screen and (max-width: 498px) {
    nav {
        padding: 10px 15px; /* Adjust padding for smaller screens */
    }

    nav ul {
        flex-direction: column;  /* Stack the navbar items vertically */
        align-items: center;  /* Center align the navbar items */
        padding: 0;
        margin: 0;
    }

    nav ul li {
        margin: 8px 0;  /* Space between navbar items */
    }

    nav ul li a {
        font-size: 16px;  /* Increase font size for better readability */
        width: 100%;  /* Make each link take the full width */
        text-align: center;  /* Center the text inside the link */
        padding: 12px;  /* Add padding for easy clicking */
    }
}



/* topic */
.topic {
    font-family: "Luckiest Guy", cursive;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    color: #fff;
    font-size:4.rem;
}

.slogan {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    position: relative;
    text-align: center;
    color: #fff;
    font-size: medium;
}

.description {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    position: relative;
    text-align: center;
    color: #fff;
    margin-left: 30%;
    margin-right: 30%;
    font-size: small;
}

.Pathseekers {
    background-color: rgba(30, 31, 32, 0.0);
    margin-right: 10%;
    margin-left: 10%;
    border-radius: 10%
}



.moredetailsbtn button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #067b52;
    /* Button color */
    color: #fff;
    /* Text color */
    border: none;
    border-radius: 5px;
    /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 74vh;
    margin-bottom: 5%;

}

button:hover {
    background-color: #045a3f;
    /* Change color on hover */
}

@media screen and (max-width: 498px) {
    .topic {
        font-size: 2rem; /* Adjust font size for smaller screens */
    }

    .slogan {
        font-size: small; /* Reduce font size */
        padding: 10px; /* Add some spacing for better readability */
    }

    .description {
        font-size: x-small; /* Further reduce font size */
        margin-left: 5%;
        margin-right: 5%; /* Reduce margins for better fit */
    }

    .Pathseekers {
        margin-left: 5%;
        margin-right: 5%; /* Reduce margins for smaller screens */
    }

    .moredetailsbtn button {
        font-size: 14px; /* Adjust button font size */
        padding: 8px 16px; /* Adjust button padding */
        margin-left: auto;
        margin-right: auto;
        display: block; /* Center align the button */
    }
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* section1 */
.section1{
    margin-top: 10%;
}

/* section2 */
.section2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f1f1f1;
}

.Careerpath {
    display: flex;
    width: 100%;
    gap: 20px; /* Space between text and image */
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.topic1 h1 {
    display: flex;
    flex-wrap: wrap;
    font-size: 2rem;
    margin-bottom: 10px;
    margin-left: 20vh;
    font-size: 3rem; 
}

.topic1 p {
    font-size: 1rem;
    margin-bottom: 20px;
    margin-left: 20vh; 
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.moredetailsbtn1 button {
    padding: 10px 20px;
    background-color: #067b52;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 20vh;
}

.moredetailsbtn button:hover {
    background-color: #045b3b;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.v1 {
    width: 50%;
    max-width: 500px;
    height:40% ;
    max-height: none;
    height: auto;
    border-radius: 10%; /* Optional for rounded corners */
    margin-right: 30vh;
}
@media screen and (max-width: 498px) {
    .section1 {
        margin-top: 5%; /* Reduce margin for smaller screens */
        text-align: center; /* Center-align text */
    }

    .section2 {
        flex-direction: column; /* Stack elements vertically */
        padding: 10px; /* Adjust padding */
        text-align: left; /* Align text to the left */
    }

    .Careerpath {
        flex-direction: column; /* Stack text and image */
        gap: 15px; /* Adjust spacing */
    }

    .content {
        align-items: flex-start; /* Align text to the left */
        text-align: left; /* Left-align content */
        padding: 0 10px; /* Add some horizontal padding */
        background-color: #fff; /* Add white background for the text */
        border-radius: 10px; /* Rounded corners */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
        margin-bottom: 15px; /* Spacing below content */
    }

    .topic1 h1 {
        font-size: 1.8rem; /* Adjust font size */
        margin: 10px 0; /* Add vertical margin */
    }

    .topic1 p {
        font-size: 1rem; /* Adjust font size */
        margin-bottom: 10px; /* Add spacing */
        margin-left: 0%;
    }

    .moredetailsbtn1 button {
        font-size: 0.9rem; /* Adjust font size */
        padding: 8px 16px; /* Adjust padding */
        margin: 10px auto; /* Center-align button */
        display: block; /* Ensure proper alignment */
    }

    .image-container {
        justify-content: center; /* Center the image */
        margin: 0 auto; /* Center horizontally */
    }

    .v1 {
        width: 80%; /* Adjust video size */
        max-width: 100%; /* Ensure it fits within the screen */
        height: auto; /* Maintain aspect ratio */
        border-radius: 5%; /* Reduce border radius */
        margin: 10px 0; /* Add margin for spacing */
    }
}

/* section3 */
/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff9eb; /* Cream color background */
}

.section3 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    height: 100vh; /* Full viewport height */
    background-color: #fff9eb; /* Cream color */
}

.left-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    width: 50%;
    max-width: 500px;
    height:40% ;
    max-height: none;
    height: auto;
    border-radius: 10px; 

}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
}

.right-content {
    flex: 1;
    padding: 20px;
}

.right-content .topic2 h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
}

.right-content .details2 {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.right-content .moredetailsbtn2 button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #067b52;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.right-content .moredetailsbtn2 button:hover {
    background-color: #045b3b;
}

.moredetailsbtn2 button:hover {
    background-color: #045b3b;
}


.section3{
    background-color: antiquewhite;
}
@media screen and (max-width: 498px) {
    .section3 .container {
        display: flex;
        flex-direction: column; /* Stack content vertically */
        justify-content: center; /* Center content */
        align-items: center; /* Align content to the center */
        padding: 20px;
        height: auto; /* Allow height to adjust based on content */
        background-color: #fff9eb; /* Cream color */
    }

    .right-content {
        order: 1; /* Display text content first */
        width: 100%; /* Full width for the text box */
        text-align: center; /* Center-align text and button */
        background-color: #fff9eb; /* Cream background for the box */
        padding: 20px; /* Add padding for spacing */
        margin: 0 auto 20px; /* Center box and add space below */
        border-radius: 10px; /* Rounded corners */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
    }

    .right-content .topic2 h1 {
        font-size: 1.5em; /* Adjust font size for smaller screens */
        color: #333;
        margin-bottom: 10px; /* Space below the heading */
    }

    .right-content .details2 {
        font-size: 1em; /* Adjust font size */
        color: #555;
        line-height: 1.6; /* Maintain readability */
        margin-bottom: 15px; /* Space below the paragraph */
    }

    .right-content .moredetailsbtn2 button {
        padding: 10px 15px; /* Adjust padding for smaller screens */
        font-size: 1em; /* Adjust font size */
        color: #fff;
        background-color: #067b52;
        border: none;
        border-radius: 5px; /* Rounded button corners */
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .right-content .moredetailsbtn2 button:hover {
        background-color: #045b3b; /* Darker green on hover */
    }

    .left-content {
        order: 2; /* Display video second */
        width: 100%; /* Full width for smaller screens */
        text-align: center; /* Center-align content */
    }

    .video-container {
        width: 90%; /* Reduce width for small screens */
        max-width: 400px; /* Restrict maximum video width */
        margin: 20px 0; /* Add vertical spacing */
    }

    .video-container video {
        width: 100%; /* Fit video to container */
        height: auto; /* Maintain aspect ratio */
        border-radius: 10px; /* Rounded corners */
    }
}

/* section4 */
.section4 {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height for centering */
    background-color: #f9f9f9; /* Optional background color */
}

.Resources {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.content {
    flex: 1;
    text-align: left;
}

.topic4 h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    margin-left: 20vh;
    font-size: 3rem; 
}

.topic4 p {
    font-size: 1rem;
    margin-bottom: 20px;
    margin-left: 20vh;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.moredetailsbtn3 button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #067b52;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 20vh;
}

.moredetailsbtn3 button:hover {
    background-color: #045b3b;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.v3 {
    width: 50%;
    max-width: 500px;
    height:40% ;
    max-height: none;
    height: auto;
    border-radius: 10%; /* Optional for rounded corners */
    margin-right: 10%;
}


/* Basic body styling */
html, body {
    height: 100%;
    margin: 0;
}
@media screen and (max-width: 498px) {
    .section4 {
        padding: 10px; /* Adjust padding for smaller screens */
        min-height: auto; /* Allow height to adjust based on content */
        background-color: #f9f9f9; /* Optional background color */
    }

    .Resources {
        flex-direction: column; /* Stack elements vertically */
        gap: 20px; /* Adjust space between content and image */
        align-items: center; /* Center-align the content */
        width: 100%; /* Full width */
    }

    .content {
        text-align: left; /* Align text to the left */
        padding: 10px; /* Add padding inside content */
    }

    .topic4 h1 {
        font-size: 1.8rem; /* Adjust font size for smaller screens */
        margin-left: 0; /* Remove left margin */
        margin-bottom: 10px; /* Adjust spacing */
        text-align: center; /* Center-align the title */
    }

    .topic4 p {
        font-size: 1rem; /* Adjust font size */
        margin-bottom: 10px; /* Adjust spacing */
        margin-left: 0; /* Remove left margin */
        text-align: center; /* Center-align the paragraph */
    }

    .moredetailsbtn3 button {
        padding: 8px 16px; /* Adjust padding */
        font-size: 0.9rem; /* Adjust font size */
        margin-left: 0; /* Remove left margin */
        margin-top: 10px; /* Add spacing between text and button */
        display: block; /* Ensure button is block-level */
        background-color: #067b52;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .moredetailsbtn3 button:hover {
        background-color: #045b3b; /* Change background on hover */
    }

    .image-container {
        width: 100%; /* Full width for smaller screens */
        justify-content: center; /* Center the image */
        margin: 0 auto; /* Center horizontally */
    }

    .v3 {
        width: 80%; /* Reduce image size */
        max-width: 100%; /* Ensure it fits within screen */
        height: auto; /* Maintain aspect ratio */
        border-radius: 5%; /* Optional for rounded corners */
        margin-right: 0; /* Remove right margin */
    }
}

/* Basic body styling */
html, body {
    height: 100%;
    margin: 0;
}

.marquee1 {
    background-image: url(Img/MArquee.jpg); /* Background for the entire section */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    opacity: 0.7; /* Adjust opacity of the background */
}

/* Styling for marquee container */
.marquee-container {
    display: flex;
    justify-content: center;  /* Centers the marquee horizontally */
    align-items: center;      /* Centers the marquee vertically */
    padding: 20px 0;
}

/* Marquee text styling */
marquee {
    font-size: 6rem;  /* Increased font size */
    color: rgba(97, 94, 94, 0.551);   /* Text color with opacity */
    padding: 10px;    /* Padding around text */
    font-weight: bold;  /* Bold text */
    text-transform: uppercase;  /* Uppercase text */
    border-radius: 10px;  /* Rounded corners */
}

/* Horizontal line styling */
.line {
    border: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.5); /* Light white border */
    margin: 20px 0;
}
@media screen and (max-width: 498px) {
    .marquee1 {
        background-size: cover;  /* Keep the background responsive */
        padding: 10px;  /* Reduce padding for smaller screens */
        opacity: 0.7; /* Retain opacity */
    }

    .marquee-container {
        flex-direction: column; /* Stack content vertically */
        padding: 10px 0;  /* Reduce padding */
        justify-content: center; /* Ensure vertical centering */
        align-items: center; /* Ensure horizontal centering */
    }

    marquee {
        font-size: 3rem;  /* Reduce font size for smaller screens */
        color: rgba(97, 94, 94, 0.551);   /* Keep the same text color */
        padding: 5px;    /* Reduce padding around text */
        font-weight: bold;
        text-transform: uppercase;
        border-radius: 10px;
        width: 100%; /* Ensure the marquee takes up the full width */
    }

    .line {
        border-top: 1px solid rgba(255, 255, 255, 0.5); /* Thinner line */
        margin: 10px 0;  /* Reduce margin */
    }
}

/* Basic styling for the Q&A section */
.qa-section {
    padding: 40px 20px;
    background-color: #f4f4f4;
    overflow: hidden;
}

.qa-header {
    text-align: center;
    margin-bottom: 30px;
}

.qa-header h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}

/* Q&A container styles */
.qa-container {
    display: flex;
    justify-content: space-between; /* Distribute left and right evenly */
    flex-wrap: wrap; /* Ensure items wrap in smaller screens */
}

/* Style for individual Q&A items */
.qa-item-left, .qa-item-right {
    background-color: #ffffff;
    margin: 15px;
    padding: 20px;
    width: 45%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-20px); /* Initial offset for motion effect */
    opacity: 0; /* Initial state */
    animation: slideIn 0.6s forwards; /* Apply animation */
}

/* Add specific style for left side items */
.qa-item-left {
    background-color: #e3f2fd; /* Light blue background */
}

/* Add specific style for right side items */
.qa-item-right {
    background-color: #e8f5e9; /* Light green background */
}

Styling for the question
.question {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Styling for the answer */
.answer {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Motion effect for the Q&A items */
@keyframes slideIn {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hover effect for Q&A items */
.qa-item-left:hover, .qa-item-right:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 498px) {
    .qa-section {
        padding: 20px;  /* Reduce padding for smaller screens */
    }

    .qa-header h1 {
        font-size: 2rem;  /* Reduce font size for the header */
        letter-spacing: 1px;  /* Adjust letter spacing for smaller screens */
    }

    .qa-container {
        flex-direction: column; /* Stack Q&A items vertically */
        align-items: center;  /* Center-align the items */
    }

    .qa-item-left, .qa-item-right {
        width: 90%;  /* Ensure Q&A items take up most of the screen width */
        margin: 10px 0;  /* Reduce margin between items */
    }

    .question {
        font-size: 1.3rem;  /* Adjust font size of the question */
    }

    .answer {
        font-size: 1rem;  /* Adjust font size of the answer */
        line-height: 1.5;  /* Adjust line height for better readability */
    }

    /* Optional: Ensure the hover effect is still effective on small screens */
    .qa-item-left:hover, .qa-item-right:hover {
        background-color: #f0f0f0;
        transform: translateY(-3px);  /* Slightly reduce the hover effect */
        transition: all 0.3s ease-in-out;
    }
}

/* footer */
/* General Footer Styling */
.footer {
    background: linear-gradient(45deg, #2c3e50, #3498db);
    color: #fff;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
}

.footer-logo h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    color: #ff6347;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-logo p {
    font-size: 1.2rem;
    color: #f1f1f1;
    margin-top: 5px;
}

.footer-nav, .footer-resources, .footer-social {
    flex: 1;
    margin: 10px;
    text-align: left;
    padding: 10px;
}

.footer-nav h3, .footer-resources h3, .footer-social h3 {
    font-size: 1.6rem;
    color: #f1f1f1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #ff6347;
    padding-bottom: 10px;
}

.footer-nav ul, .footer-resources ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li, .footer-resources ul li {
    margin: 12px 0;
}

.footer-nav ul li a, .footer-resources ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.footer-nav ul li a:hover, .footer-resources ul li a:hover {
    color: #ff6347;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.social-icon img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.social-icon img:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.footer-contact {
    margin-top: 30px;
    text-align: left;
    margin-right: 20vh;
}

.footer-contact h3 {
    font-size: 1.4rem;
    color: #f1f1f1;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #ff6347;
    padding-bottom: 10px;
    margin-left: 20vh;
}

.footer-contact p {
    font-size: 1.1rem;
    color: #ccc;
    margin-left: 20vh;
}

.footer-contact a {
    color: #ff6347;
    text-decoration: none;
    
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background-color: #2c3e50;
    padding: 10px 20px;
    text-align: center;
    font-size: 1rem;
    color: #ccc;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;

}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-nav, .footer-resources, .footer-social, .footer-contact {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-nav ul li, .footer-resources ul li {
        margin: 10px 0;
    }

    .footer-social {
        margin-top: 20px;
    }
}



/* Basic styles for smooth transitions */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', sans-serif;
}

/* Navbar styling and background change on scroll */
nav {
    background-color: #fff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
    background-color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

nav li {
    margin-right: 20px;
}

nav li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* FadeInUp effect for text */
.fadeInUp {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s forwards;
}

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

/* Video fade-in effect */
.videoFadeIn {
    opacity: 0;
    transform: scale(1.1);
    animation: videoFadeIn 1.5s forwards;
}

@keyframes videoFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth scrolling effect for anchor links */
html {
    scroll-behavior: smooth;
}

/* Footer Styling */
footer {
    padding: 40px 0;
    background-color: #f8f8f8;
    text-align: center;
}

footer .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .footer-logo {
    flex: 1;
}

footer .footer-nav, footer .footer-resources, footer .footer-social {
    flex: 1;
}

footer .footer-bottom {
    background-color: #333;
    color: #fff;
    padding: 10px;
    margin-top: 20px;
}

footer ul {
    list-style: none;
}

footer ul li a {
    text-decoration: none;
    color: #333;
}

/* Styling for Marquee (Optional) */
.marquee-container {
    margin: 20px 0;
}


/* Footer Links and Social Icons */
.footer .footer-social .social-icons a {
    margin-right: 10px;
}

.footer .footer-social .social-icons img {
    width: 40px;
    height: 40px;
}

/* Footer Media Query for smaller screens */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;  /* Stack the footer content vertically */
        align-items: center;  /* Center-align the items */
       
    }

    .footer-logo {
        text-align: center;  /* Center the logo */
        margin-bottom: 20px;
        margin-left: 80px;
    }

    .footer-logo h1 {
        font-size: 2.5rem;  /* Reduce font size for smaller screens */
        margin-bottom: 10px;
        justify-content: center;
        
    }

    .footer-nav, .footer-resources, .footer-social, .footer-contact {
        text-align: center;  /* Center-align all footer sections */
        margin-bottom: 30px;  /* Space between footer sections */
        width: 100%;  /* Ensure they take up full width */
    }

    .footer-nav ul li, .footer-resources ul li {
        margin: 10px 0;  /* Reduce margin for list items */
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-social .social-icons {
        justify-content: center;  /* Center-align the social icons */
    }

    .footer-contact {
        margin-top: 20px;
    }

    .footer-contact h3, .footer-contact p {
        margin-left: 0;  /* Remove left margin */
        font-size: 1rem;  /* Reduce font size for better readability */
    }

    .footer-contact a {
        font-size: 1.1rem;  /* Adjust the size for links */
    }

    .footer-bottom {
        font-size: 0.9rem;  /* Reduce font size for the footer bottom text */
        padding: 10px;
    }

    /* Ensure social icon size is appropriate */
    .social-icon img {
        width: 30px;
        height: 30px;
    }
}

