/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body,
html {
    height: 100%;
    width: 100%;
}

/* ===== Main Container ===== */
.splitContainer {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* ===== Split Sections ===== */
.split {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    color: #fff;
    transition: all 0.4s ease;
}

.buyer {
    background: #0A28B5;
}

.seller {
    background: #fff;
}

/* Hover Effect Desktop Only */
@media (min-width: 992px) {
    .split:hover {
        flex: 1.1;
    }
}

/* ===== Content Box ===== */
.content {
    max-width: 480px;
    width: 100%;
}

.content img {
    width: 80px;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.content ul {
    list-style: none;
    margin-bottom: 30px;
}

.content ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* ===== Button ===== */
.btn {
    display: inline-block;
    padding: 12px 26px;
    background: #fff;
    color: #0A28B5;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

.seller .btn {
    color: #fff;
    background: #0a28b5;
}
.btn:hover {
    opacity: 0.85;
}

/* ===== Tablet View ===== */
@media (max-width: 991px) {
    .splitContainer {
        flex-direction: column;
    }

    .split {
        width: 100%;
        padding: 50px 30px;
        text-align: center;
    }

    .content {
        max-width: 100%;
    }

    .content img {
        margin: 0 auto 20px;
        display: block;
    }
}

/* ===== Mobile View ===== */
@media (max-width: 576px) {

    .split {
        padding: 40px 20px;
    }

    .content h2 {
        font-size: 24px;
    }

    .content p {
        font-size: 14px;
    }

    .content ul li {
        font-size: 14px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

.split.seller {
    color: #111;
}


/* header */

/* ===============================
   Header Styling
================================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #f1f1f1;
}

/* ===============================
   Logo Styling
================================= */
.navbar-brand {
    font-size: 22px;
    letter-spacing: 0.5px;
}

.logo-box {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #0A28B5;
    margin-right: 6px;
}

/* ===============================
   Navigation Links
================================= */
.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    padding: 0.8rem 1.2rem;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0A28B5;
}

/* Active Link */
.navbar-nav .nav-link.active {
    color: #0A28B5;
}

/* ===============================
   Login Button Styling
================================= */
.btn-primary {
    background-color: #0A28B5;
    border-color: #0A28B5;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background-color: #081f85;
    border-color: #081f85;
}

/* ===============================
   Desktop Enhancements
================================= */
@media (min-width: 992px) {

    .navbar-nav .nav-item {
        margin-left: 10px;
    }

    .navbar-nav .nav-link {
        position: relative;
    }

    /* subtle underline hover effect */
    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        left: 0;
        bottom: 5px;
        background: #0A28B5;
        transition: 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }
}

/* ===============================
   Mobile Styling
================================= */
@media (max-width: 991px) {

    .navbar-collapse {
        background: #ffffff;
        padding: 15px;
        border-top: 1px solid #eee;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    .btn-primary {
        width: 100%;
    }
}


/* Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* Logo */
.navbar-brand {
    font-size: 22px;
    font-weight: 600;
}

.logo-box {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #0A28B5;
    margin-right: 6px;
}

/* Desktop Horizontal Menu */
@media (min-width: 992px) {

    .navbar-nav {
        display: flex !important;
        flex-direction: row;
        align-items: center;
    }

    .navbar-nav .nav-item {
        margin-left: 20px;
    }

    .navbar-nav .nav-link {
        padding: 8px 0;
        color: #222;
        font-weight: 500;
    }

    .navbar-nav .nav-link:hover {
        color: #0A28B5;
    }

    .navbar-nav .nav-link.active {
        color: #0A28B5;
    }
}

/* Mobile View */
@media (max-width: 991px) {

    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-top: 1px solid #eee;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
        text-align: center;
    }

    .btn-primary {
        width: 100%;
    }
}

/* Login Button */
.btn-primary {
    background-color: #0A28B5 !important;
    border-color: #0A28B5 !important;
    border-radius: 6px;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #081f85 !important;
    border-color: #081f85;
}
a.btn {
    background: white;
}

/* resp */
/* Form Wrapper */
#contactForm {
    max-width: 500px;
    margin: 0 auto;
}

/* Input + Textarea Styling */
#contactForm .form-control {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    transition: all 0.3s ease;
    box-shadow: none;
}

/* Focus Effect */
#contactForm .form-control:focus {
    border-color: #6e8d9c;
    box-shadow: 0 0 0 3px rgba(110, 141, 156, 0.15);
    outline: none;
}

/* Textarea Resize Control */
#contactForm textarea {
    resize: none;
}

/* Security Question Text */
#contactForm p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Submit Button */
#contactForm button {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Button Hover */
#contactForm button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Validation Message */
.validation {
    font-size: 13px;
    color: red;
    margin-bottom: 10px;
}

/* Responsive Improvements */
@media (max-width: 576px) {
    #contactForm {
        padding: 0 15px;
    }
}


/* contact */

 .register-container {
     background: #ffffff;
     width: 100%;
     margin-top: 60px;
     margin-left: 30% !important;
     max-width: 480px;
     padding: 40px 30px;
     border-radius: 8px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
 }
 .logo {
     text-align: center;
     margin-bottom: 30px;
 }

 .logo h1 {
     color: #1f2ea6;
     font-size: 28px;
     font-weight: 700;
 }

 .form-group {
     margin-bottom: 18px;
 }

 label {
     font-size: 14px;
     margin-bottom: 6px;
     display: block;
 }

 input[type="email"],
 input[type="password"],
 input[type="text"] {
     width: 100%;
     padding: 12px;
     border: 1px solid #ccc;
     border-radius: 6px;
     font-size: 14px;
 }

 .password-wrapper {
     position: relative;
 }

 .password-wrapper span {
     position: absolute;
     right: 12px;
     top: 50%;
     transform: translateY(-50%);
     cursor: pointer;
     font-size: 14px;
     color: #555;
 }

 .checkbox-group {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 13px;
     margin-bottom: 20px;
 }

 button {
     width: auto%;
     padding: 12px;
     background-color: #1f2ea6;
     color: #fff;
     border: none;
     border-radius: 6px;
     font-size: 15px;
     cursor: pointer;
     transition: 0.3s;
 }

 button:hover {
     background-color: #162280;
 }

 .signin-text {
     margin-top: 18px;
     text-align: left;
     font-size: 14px;
 }

 .signin-text a {
     color: #1f2ea6;
     text-decoration: none;
     font-weight: 500;
 }

 .error {
     color: red;
     font-size: 13px;
     margin-top: 5px;
 }

 @media (max-width: 480px) {
     .register-container {
         padding: 30px 20px;
     }
 }


 .split .buyer .content .a.btn:hover {
            color: #162280;
            background-color: #fff;
            border-color: var(--bs-btn-hover-border-color);
        }
 
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    transition: 0.3s ease;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}