﻿:root {
    --primary: #3b5bdb;
    --p-light: #748ffc;
    --t-dark: #111827;
    --natural-w: #e7f2f8;
}

.btnsuw {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    outline: none;
    transition: 0.3s ease-in-out;
}

    .btnsuw:hover {
        background-color: var(--p-light);
        border: 1px solid var(--p-light);
    }

.btnsuw-hollow {
    background-color: #fff;
    border: 1px solid var(--primary);
    color: var(--t-dark);
    padding: 12px 25px;
    border-radius: 8px;
    outline: none;
    transition: 0.3s ease-in-out;
}

    .btnsuw-hollow:hover {
        background-color: var(--primary);
        border: 1px solid var(--primary);
        color: #fff;
    }

.whiteBorderBtn {
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    background-color: transparent;
    padding: 12px 25px;
}

/* Navbar Container */
.cp-navbar {
    background: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logoMenuContainer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

/* Container inside */
.cp-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.cp-logo img {
    height: 50px;
}

/* Menu Items */
.cp-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.cp-menu-item {
    position: relative;
    margin: 0 15px;
}

.cp-menu-link {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    padding: 33px 10px;
    display: inline-block;
    font-weight: 500;
}

    .cp-menu-link:hover {
        color: var(--primary);
    }

/* Dropdown */
.cp-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 89px;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
}

    .cp-dropdown li a {
        display: block;
        padding: 8px 15px;
        text-decoration: none;
        color: #000;
        font-size: 14px;
    }

        .cp-dropdown li a:hover {
            background: #f9f9f9;
        }

/* Show dropdown on hover */
.cp-menu-item:hover .cp-dropdown {
    display: block;
}

/* Right side */
.cp-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cp-search {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-right: 15px;
    font-size: 14px;
    width: 350px;
    height: 40px;
}

.cp-icons {
    margin: 0 8px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 1px solid #283b91;
    border-radius: 50%;
}

    .cp-icons img {
        width: 20px;
        display: block;
        height: auto;
    }

.marginTpDesk {
    margin-top: 70px;
}

.marginBtmDesk {
    margin-bottom: 50px;
}

.lgn-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .lgn-overlay.active {
        visibility: visible;
        opacity: 1;
    }

/* Popup */
.lgn-popup {
    background: var(--natural-w);
    border-radius: 10px;
    overflow: hidden;
    max-width: 900px;
    width: 90%;
    display: flex;
    flex-direction: row;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

/* Left Panel (Form) */
.lgn-form-section {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .lgn-form-section h2 {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .lgn-form-section p {
        font-size: 14px;
        color: var(--t-dark);
        margin-bottom: 30px;
    }

.lgn-input {
    background: #fff;
    border: none;
    /*color: #fff;*/
    padding: 10px 14px;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 15px;
}

.lgn-checkbox {
    margin-bottom: 20px;
}

.lgn-or {
    text-align: center;
    margin: 20px 0;
    color: #aaa;
}

.lgn-social-btns button {
    background: #1a1a1a;
    border: none;
    color: #fff;
    width: 48%;
    padding: 10px;
    border-radius: 6px;
}

.lgn-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--t-dark);
}

    .lgn-footer a {
        color: var(--primary);
        text-decoration: underline;
    }

/* Right Panel (Image) */
.lgn-image-section {
    flex: 1;
    min-height: 500px;
    background-color: var(--p-light);
    margin: 10px;
    margin-left: 0px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.lgnPopHeadinglft {
    position: absolute;
    top: 20px;
    left: 20px;
}
/* Close Button */
.lgn-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 9;
    color: var(--t-dark);
}

.navHeight {
    align-items: center;
    height: 90px;
}

.joinUsBtn {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    outline: none;
    transition: 0.3s ease-in-out;
    margin-left: 15px
}

    .joinUsBtn:hover {
        background-color: var(--p-light);
        border: 1px solid var(--p-light);
        color: #fff;
    }

.smbtnLogin, .barIcon {
    display: none;
}

@media (max-width: 992px) {
    .navHeight .col-md-8, .navHeight .col-md-4 {
        width: 100%;
        height: 100%;
    }

    .smDnone, #navSm {
        display: none;
    }

    .navscreenSM .cp-menu {
        display: block;
        text-align: left;
        width: 100%;
        position: absolute;
        left: 0px;
        top: 55px;
        background: #fff;
        z-index: 9;
        padding-bottom: 15px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .cp-dropdown {
        position: relative !important;
        top: 0px;
    }

    .cp-menu-link {
        padding: 10px;
        position: relative;
        width: 100%;
    }

        .cp-menu-link i {
            float: right;
        }

    .logoMenuContainer {
        justify-content: space-between;
        width: 100%;
        height: 100%;
    }

    .cp-logo {
        width: 50%;
    }

    .barIcon {
        width: 50%;
        height: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        font-size: 25px;
        text-align: right;
    }

    .navHeight {
        height: 55px;
    }

    .cp-dropdown {
        display: none !important;
    }

        .cp-dropdown.show {
            display: block !important;
        }

    .cp-dropdown {
        box-shadow: none;
        border: none;
    }

        .cp-dropdown li {
            border-bottom: 1px solid #ddd;
        }

    .cp-menu-link {
        margin-left: 0px;
    }

    .smbtnLogin {
        width: fit-content;
        display: block
    }

    .cp-logo img {
        height: auto;
        width: 150px;
    }

    .logoMenuContainer {
        gap: 0px;
    }
}
