body {
            margin: 0;
            font-family: Georgia, 'Times New Roman', Times, serif;
        }

        header {
            display: flex;
            align-items: center;
            background-color: #ffffff; /* White background for large screens */
            padding: 10px 20px;
            position: relative;
            overflow: hidden;
        }

        .logo {
            width: 150px;
            transition: transform 0.5s ease-in-out;
            margin: 0 auto; /* Center the logo */
        }

        nav {
            display: flex;
            gap: 25px;
            transition: max-height 0.5s ease; 
            overflow: hidden;
            justify-content: center; /* Center nav links */
            flex-grow: 1; /* Allow nav to take remaining space */
        }

        nav a {
            color: #000000; /* Links color */
            text-decoration: none;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #f39c12;
        }

        /* Hamburger menu */
        .hamburger {
            display: none; /* Show hamburger menu */
            flex-direction: column;
            cursor: pointer;
            margin-left: 20px; /* Space between hamburger and logo */
        }

        .bar {
            height: 2px;
            width: 25px;
            background-color: #000;
            margin: 3px 0;
            transition: all 0.3s ease;
        }

        @media (max-width: 680px) {
            header {
                background-color: #f8f8f8; /* Different color on small screens */
                flex-direction: column;
                align-items: flex-start;
            }

            nav {
                flex-direction: column;
                width: 100%;
                gap: 15px;
                max-height: 0; /* Start hidden */
                align-items: center; /* Center nav links on small screens */
                background-color: #3a4e61;
            }
            nav a {
            color: #f8f8f8; /* Links color */
                
        }
             .hamburger {
                display: flex; /* Show hamburger menu */
            }

            nav.active {
                max-height: 200px; /* Adjust as necessary */
            }

            nav a.active {
                color: yellow; /* Color for the active link */
            }
        }

/*introduction of the footer code start here*/
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}
.footer-column {
    flex: 1;
    min-width: 220px;
    margin: 0 20px;
}
.footer-column h3 {
    border-bottom: 2px solid #f39c12;
    padding-bottom: 10px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column a:hover {
    color: #f39c12;
}
.footer-column form {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
.footer-column input[type="email"],
.footer-column textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}
.footer-column button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #f39c12;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}
.footer-column button:hover {
    background-color: #e67e22;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}

/*the following page is for page indicator*/
nav {
    margin-top: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #2980b9;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #16a085;
}

nav a.active {
    color: #2c3e50; /* Color for the active link */
    border-bottom: 2px solidrgba(214, 231, 60, 0.55); /* Underline for active link */
}

/*And the following code is for hero section which is located below header secton*/
/* Hero Section */
.hero {
    position: relative;
    max-width: 100%;
    height: 80vh; /* Adjust height for hero section */
    position: relative;
    overflow: hidden;
}

/* Slide styles */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the slide area */
    display: block; /* Removes any bottom space */
}

.active {
    opacity: 1;
}

/* Title styles */
#hero-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 2rem; /* Responsive font size */
    z-index: 1; /* Ensures title is above images */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 60vh; /* Adjust height for medium screens */
    }

    #hero-title {
        font-size: 1.5rem; /* Smaller font on mobile */
        bottom: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh; /* Further adjust height for small screens */
    }

    #hero-title {
        font-size: 1.2rem; /* Even smaller font */
        bottom: 10px;
        left: 10px;
    }
}
