body, html {
    margin: 0;
    padding: 0;
    background-color: #729A98;
}
.main {
    background-color: #729A98 !important;
}
/*------------------------------------------------------ 
                            FONTS 
-------------------------------------------------------*/
/* Desktops */
@media only screen and (min-width: 992px) {
    h1 {
        font-family: "Poppins", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500 !important;
        font-size: 60px !important;
        font-style: normal;
        color: #11111f;
    }
    h2 {
        font-family: "Poppins", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500 !important;
        font-size: 40px !important;
        font-style: normal;
        color: #11111f;
    }
    h3 {
        font-family: "Poppins", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500 !important;
        font-size: 32px !important;
        font-style: normal;
        color: #11111f;
    }
    p {
        font-family: "Poppins", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500 !important;
        font-size: 26px !important;
        font-style: normal;
        color: #11111f;
    }
    button {
        font-family: "Poppins", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500 !important;
        font-size: 26px !important;
        font-style: normal;
    }
    .navbar-links {
        font-family: "Poppins", serif;
        font-size: 24px !important;
        font-weight: 700 !important;
    }
}
@media only screen and (max-width: 768px) {
    h1 {
        font-family: "Poppins", serif;
        font-optical-sizing: auto;
        font-weight: 500 !important;
        font-size: 40px !important;
        color: #11111f;
    }
    h2 {
        font-family: "Poppins", serif;
        font-optical-sizing: auto;
        font-weight: 500 !important;
        font-size: 30px !important;
        color: #11111f;
    }
    h3 {
        font-family: "Poppins", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500 !important;
        font-size: 28px !important;
        color: #11111f;
    }
    p {
        font-family: "Poppins", serif;
        font-optical-sizing: auto;
        font-weight: 500 !important;
        font-size: 24px !important;
        color: #11111f;
    }
    button {
        font-family: "Poppins", serif;
        font-optical-sizing: auto;
        font-weight: 500 !important;
    }
    .navbar-links {
        font-family: "Poppins", serif;
        font-size: 24px !important;
        font-weight: 700 !important;
    }
}
/*------------------------------------------------------ 
                        END OF FONTS 
-------------------------------------------------------*/

/*------------------------------------------------------ 
                        HERO CONTENT 
-------------------------------------------------------*/
.hero-image {
    background-image: url("images/hero-image.webp");
    background-repeat: no-repeat;
    background-position: center 30%;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    overflow: hidden;
    position: relative;   
}
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*------------------------------------------------------ 
                    END OF HERO CONTENT 
-------------------------------------------------------*/

/*------------------------------------------------------ 
                    HEADER AND MENU 
-------------------------------------------------------*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #729A98;
}
.navbar-logo {
    flex: 1; /* Logo to the left */
}
.navbar-logo img {
    width: 400px;
    max-width: 100%;
    height: auto;
}
.navbar-links {
    display: flex;
    justify-content: flex-end;
}
.navbar-links a {
    text-decoration: none;
    padding: 0 15px;
    transition: color 0.3s;
    color: #11111f;
    z-index: 3;
}
.navbar-links a:hover {
    color: #68d2df;
    text-decoration: none;
}
.navbar-links a.active {
    color: #686868;
}
/* Hamburger menu styles */
.menu-toggle {
    display: none; /* Hide by default */
    cursor: pointer;
    position: relative; /* Add this line */
    z-index: 10000; /* Add this line */
}
.bar1, .bar2, .bar3 {
    width: 40px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
    transition: 0.5s;
}
/* Transform the bars into X */
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}
.change .bar2 {opacity: 0;}
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}
/* Styles for mobile view */
@media only screen and (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show on smaller screens */
        position: absolute; /* Position the menu toggle */
        top: 20px; /* Adjust the top position */
        right: 20px; /* Adjust the right position */
        z-index: 9999; /* Ensure it's above other content */
    }
    .navbar-logo img {
        width: 200px;
        max-width: 100%;
        height: auto;
    }
    .navbar-links {
        display: none; /* Hide regular navigation links */
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 9999;
        padding: 20px;
        border-radius: 10px;
    }
    .navbar-links a {
        display: block;
        margin-bottom: 10px;
        color: #11111f;
        font-size: 20px;
        text-decoration: none;
        transition: color 0.3s;
        font-family: "Poppins", serif;
        font-size: 24px !important;
        font-weight: 700 !important;
        margin: 20px 0px;
    }
    .overlay {
        display: none; /* Hide by default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #68d2df;
        z-index: 999; /* Ensure it's above other content */
    }
    .navbar-logo {
        position: absolute;
        left: 20px;
        top: 20px;
        z-index: 9999;
    }
    .navbar-links a:hover {
        color: white;
        text-decoration: none;
    }
    .mobile-only {
        display: block;
    }
    .desktop-only {
        display: none;
    }
}
/* Show navigation links on larger screens */
@media only screen and (min-width: 769px) {
    .navbar-links {
        display: flex !important; /* Show regular navigation links */
    }
}
/*------------------------------------------------------ 
                    END OF HEADER AND MENU 
-------------------------------------------------------*/

/*------------------------------------------------------ 
                        BUTTONS 
-------------------------------------------------------*/
.btn-primary {
    color: black !important;
    background-color: #68d2fd !important;
    border: 4px solid #68d2fd !important;
    border-radius: 20px !important;
}
.btn-primary:hover {
    color: white !important;
    background-color: #11111f !important;
    border: 4px solid #11111f !important;
    border-radius: 20px !important;
}
/*  ------------------------------------------------------ 
                    END OF BUTTONS 
-------------------------------------------------------*/