/* ===== Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

img {
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
}

/* ========== Navbar ========== */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1700px;
  margin: auto;
  padding: 20px 75px;
  transition: all 0.3s ease;
}

.logo h2 {
    color: #4a2dff;
}

.btn-menubar {
    outline: none;
    border: none;
    padding: 10px 10px 4px 10px;
    color: #fff;
    background-color: #4a2dff;
    display: flex;
    border-radius: 10px;
}

.btn-menubar svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-bottom: 0;
}

.lg-hidden {
    display: none;
}

.menu_left {
    position: relative;
    display: flex;
    align-items: center;
    gap: 55px;
}

.btn-contact {
    border: none;
    outline: none;
    padding: 8px 18px;
    color: #fff;
    background-color: #4a2dff;
}

.menu-li .menu {
    list-style: none;
    display: flex;
    gap: 30px;
    width: 100%;
}

.menu-li .menu a {
    text-decoration: none;
    color: inherit;
    font-size: 15px;
}

.navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

/* ===== Header Section ===== */
.header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    overflow: hidden;
}

.text-content {
    padding: 0px 75px;
    align-self: center;
}

.text-content .main-text h1 {
    font-size: 4.5rem;
    margin-top: 5px;
    margin-bottom: 1rem;
}

.text-content .main-text h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.text-content .main-text p {
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
}

.text-content .main-text button {
    border: none;
    outline: none;
    padding: 8px 16px;
    color: #fff;
    background-color: #4a2dff;
}

.img-box img {
    object-fit: cover;
}

/* ===== Explore Section ===== */
.explore {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 4rem;
    background-color: #fff;
    justify-content: space-between;
    gap: 3rem;
}

.explore .info {
    width: 45%;
    text-align: left;
}

.explore .info h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #333;
}

.explore .info p {
    font-size: 1.1rem;
    color: #555;
}

.explore .image {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.explore .image img {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 15px;
}

/* ===== Login Section ===== */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px;
    width: 100%;
}

.login-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-bottom: 30px;
}

.left-side, .right-side {
    width: 50%;
    padding: 20px;
}

.left-side h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.left-side p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    text-align: center;
}

.left-side img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.right-side h2 {
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #555;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 12px;
    background: #4361ee;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #4a2dff;
}

/* ===== Contact Section ===== */
section {
    padding: 60px 0;
    background-color: #4361ee;
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-content {
    text-align: center;
}

.contact-content img {
    max-width: 210px;
    margin-bottom: 20px;
    border-radius: 20px;
}

.contact-content p {
    font-size: 15px;
    margin: 30px 0 60px;
    position: relative;
}

.contact-content p::after {
    background: #ffffff;
    bottom: -30px;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: 80%;
}

.contact-content h6 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
}

.contact-content span {
    color: #ffffff;
    margin: 0 10px;
}

.contact-social {
    margin-top: 30px;
}

.contact-social ul {
    display: inline-flex;
    list-style: none;
}

.contact-social ul li a {
    border: 1px solid #ffffff;
    color: #ffffff;
    display: inline-block;
    height: 40px;
    margin: 0 10px;
    padding-top: 7px;
    transition: all 0.4s ease;
    width: 40px;
    text-align: center;
}

.contact-social ul li a:hover {
    border: 1px solid #ff8500;
    color: #ff9e00;
    transform: scale(1.05);
}

/* ===== Footer ===== */
footer {
    background: linear-gradient(45deg, #f97794, #6200ff, #3498db);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

footer img {
    width: 44px;
    margin-left: 10px;
    border-radius: 20px;
}

.footer-logo h1 {
    color: #ffffff;
}

.lg-hidden {
    display: none;
}

/* ===== Media Queries ===== */
@media (max-width: 1200px) {
    .text-content .main-text h1 {
        font-size: 3rem;
        margin-bottom: 0px;
    }

    .text-content .main-text p {
        font-size: 1rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 900px) {
    .sm-hidden {
        display: none;
    }

    .lg-hidden {
        display: block;
    }

    .navbar {
        padding: 10px 25px;
    }

    .menu-li {
        position: fixed;
        top: -550px;
        left: 0px;
        color: inherit;
        background-color: #fff;
        padding: 10px 25px;
        width: 100%;
        opacity: 0;
        z-index: -1;
        visibility: hidden;
        transition: all 1s ease;
        transform-origin: bottom;
    }

    .navbar.active {
        background-color: #fff;
    }

    .menu-li.active {
        left: 0;
        top: 60px;
        opacity: 1;
        visibility: visible;
    }

    .menu-li .menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .header {
        display: flex;
        align-items: flex-end;
    }

    .text-content {
        color: #fff;
        align-self: auto;
        padding: 40px 40px;
        background: rgba(0, 0, 0, 0.5);
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .text-content .main-text h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .text-content .main-text h5 {
        margin-bottom: 0.5rem;
    }

    .text-content .main-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .img-box {
        position: absolute;
        top: 0px;
        z-index: -1;
        left: 0px;
        width: 100%;
        height: 100vh;
    }
}

@media (max-width: 768px) {
    .login-section {
        flex-direction: column;
        padding: 15px;
    }

    .left-side,
    .right-side {
        width: 100%;
    }

    .left-side img {
        max-width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 500px) {
    .text-content {
        padding: 20px 15px;
    }

    .text-content .main-text h1 {
        font-size: 2rem;
    }

    .social-icon {
        display: none;
    }

    .login-section {
        padding: 10px;
    }

    .left-side h2 {
        font-size: 2rem;
    }

    .form-group input,
    .form-group select {
        font-size: 14px;
        padding: 8px;
    }

    button {
        font-size: 14px;
        padding: 10px;
    }
}
