/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}

body {
    font-family: "Urbanist", sans-serif;
    background-color: #FFFFFF;
    color: #333;
}

.container {
    width: 90%;
    max-width: 100vw;
    margin: auto;
}

.navbar {
    background-color: #ffffff;
    padding: 10px 15px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    width: 100px; /* Adjust this value to decrease/increase the size */
    height: auto;
    margin-left: -40px;
   
}
.logo img{
    height: auto;
    align-items: start;
    width: 190px;
    margin-left: 20px;
    margin-top: 10px;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -250px;  /* Initially hide it off-screen to the right */
    height: 100vh;
    width: 250px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2); /* Shadow on left side */
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    transition: right 3s ease-in-out;  /* Animate from right */
}

/* Sidebar Open (Slides in from Right) */
.sidebar.open {
    right: 0;
}


.sidebar li {
    margin-top:30px;
    width: 100%;
    list-style: none;
}

.sidebar a {
    width: 100%;
    text-decoration: none;
    color: #343f52;
    font-size: 18px;
    margin-left: 20px;
    padding: 15px;
    margin-top: 15px;
    display: block;
}

.sidebar a:hover {
    background: #00b60c;
    color: white;
}
/* Show Sidebar */
.sidebar.open {
    right: 0;
}

/* Hide Hamburger when Sidebar is Open */
.sidebar.open ~ .menu {
    display: none; /* Hides the hamburger when sidebar opens */
}

/* Close Button */
.close-btn {
    background: none;
    border: none;
    font-size: 50px;
    font-weight: bold;
    color: black;
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
}
#logout-link{
    margin-left: 10px;
}

/* Add transition effect */
.sidebar {
    transition: left 0.3s ease-in-out;
}


/* Normal Navbar Links */
.nav-links {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Align items vertically */
    list-style: none;
    padding: 0;
    margin-top: -10px;
    margin-left: 100px; /* Adjust left margin */
}

.nav-links li {
    margin-top: -50px;
    text-align: center;
    padding: 10px 15px;
}

.nav-links li a {
    text-decoration: none;
    color: #343f52;
    font-weight: 700;
    padding: 10px;
}

.nav-links li a:hover {
    color: #00b60c;
}

/* Mobile Nav (Sidebar) */
@media screen and (max-width: 820px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: absolute;
        top: 60px;
        right: -250px; /* Hidden initially */
        width: 250px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
        padding-top: 20px;
        transition: right 0.3s ease-in-out;
    }

    .nav-links.open {
        right: 0;
    }

    .menu {
        display: flex;
    }
}
/* Default: Hide hamburger icon */
.menu {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1100;
}

/* Show hamburger icon only when width < 900px */
@media screen and (max-width: 820px) {
    .menu {
        display: flex;
    }
}

/* SVG Animation */
.line {
    fill: none;
    stroke: black;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 { stroke-dasharray: 60 207; }
.line2 { stroke-dasharray: 60 60; }
.line3 { stroke-dasharray: 60 207; }

.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}

.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}




/* Footer Styling */
.footer {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: left;
    font-family: "Urbanist";
    border-top: 1px solid #eaeaea;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    text-align: left;
    max-width: 200px;
}

.footer-logo img {
    max-width: 100%;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    margin: 10px 0;
}

.footer-social a {
    color: #333;
    margin: 0 5px;
    font-size: 24px;
    text-decoration: none;
}

.footer-social a:hover {
    color: #007bff;
}

.footer-section {
    max-width: 300px;
}

.footer-section h3 {
    font-size: 18px;
    font-family: "Manrope";
    margin-bottom: 10px;
    color: #333;
}

.footer-section p, .footer-section a {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-decoration: none;
}

.footer-section a:hover {
    color: #007bff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}
/* Footer Section Styling */
.footer-section {
    text-align: left;
    font-family: 'Urbanist', sans-serif;
}

.footer-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-section p {
    
    font-size: 15px;
    color: #000000;
    margin-bottom: 20px;
}

/* Newsletter Form Styling */
.newsletter-form .input-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 14px;
    border-radius: 30px 0 0 30px;
    background-color: #f9f9f9;
    color: #333;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    background-color: #fff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    outline: none;
    background-color: #007bff;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 30px 30px 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter-form button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.newsletter-form button:active {
    transform: scale(1);
}
.contact-us-section {
    padding: 50px 20px;
    background-color: #ffffff;
    font-family: 'Urbanist', sans-serif;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}



.contact-details {
    max-width: 600px;
    text-align: left;
}

.contact-details h3 {
    font-size: 2.5rem;
    margin-top: 40px;
    color: #946b25;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-details h2 {
    margin-top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 20px;
    color: #555;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #4CAF50;
    font-size: 30px;
}

.contact-info a {
    font-size: 20px;
    color: #007BFF;
    text-decoration: none;
}

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