* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Navbar container styling */
.navbar1 {
    display: flex;
    align-items: center;
    padding: 0;
    padding-left: 3%;
    padding-right: 3%;
    background-color: black;
}

/* Logo styling */
.logo1 img {
    max-width: 100%;
}

/* Navigation list styling */
.listing1 {
    flex: 1;
    text-align: right;
    transition: 0.5s;
}

.listing1 ul li {
    display: inline-block;
    margin: 20px;
}

/* Link styling */
a {
    text-decoration: none;
    color: darkturquoise;
}

/* Hover effects for links */
a:hover .hover11,
a:hover .hover22,
a:hover .hover33,
a:hover .hover44,
a:hover .hover55 {
    color: #fff;
    text-shadow: 0 0 10px #fff,
                 0 0 20px #fff,
                 0 0 40px #fff,
                 0 0 80px #fff,
                 0 0 120px #fff;
}

/* Footer container styling */
.footer {
    background-color: #333333;
    text-align: center;
    position: absolute;
    bottom: 100;
    width: 100%;
}

#group {
    font-size: 20px;
    color: mintcream;
}
#names {
    color: mintcream;
    font-style: italic;
    font-size: 15px;
    font-family:'Poppins', sans-serif;
    word-spacing: 20px;
    margin-top: 20px;
}
#course {
    font-size: 12.5px;
    font-style: italic;
    color: mintcream;
    margin-top: 30px;
}

/* Container for video background */
.landing-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Styling for the video */
#video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Overlay text container */
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* optional, adds semi-transparent background */
    border-radius: 8px; /* optional */
}

/* Text styling */
.overlay-text h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.overlay-text p {
    font-size: 1.5em;
}

/*UL list*/
.landing-section {
    font-family: "Canva Sans Variable", Helvetica, Arial, sans-serif;
    color: #000;
    font-size: 16px;
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-wrapper .landing-features ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between image and text */
}

.feature-image-container {
    display: inline-block;
    width: 150px;  /* Increased width (original was 50px) */
    height: 150px; /* Increased height (original was 50px) */
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;  /* Space between image and text */
    transition: transform 0.3s ease; /* Smooth zoom transition */
}

.feature-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-item:hover .feature-image-container {
    transform: scale(1.2); /* Scale the image by 1.2 on hover */
}

.feature-text {
    flex-grow: 1; /* Allows text to take the remaining space */
    font-size: 1.1em;
}

.landing-wrapper .landing-features li {
    font-size: 1.1em;
    padding: 10px;
}

.landing-wrapper .landing-features strong {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

/*For introduction*/
.introduction-section {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
}

.introduction-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.introduction-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
