﻿/* General Reset */
* {
    font-family: "Exo 2", sans-serif;
}

body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
    color: #333;
}

body {
    padding-top: 100px; /* Adjust based on the combined height of auction-bar and navbar */
}

.k-notification .k-notification-content {
    font-size: 1.25rem; 
    padding: 1rem;
    font-weight: 500;
}

/* Custom Colors */
.text-orange {
    color: #FFA500; /* Orange color for text */
}

.bg-orange {
    background-color: #FFA500; /* Orange background for icons and buttons */
}

/* Auction Bar Styling */
.auction-bar {
    background-color: #141319;
    color: #fff;
    font-size: 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays above other elements */
}



/* Header */
header {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: none;
}

/* Logo Styling */
.header-logo {
    width: 150px; /* Adjust the width as needed */
    height: auto;
}

/* Navbar Styling */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 40px; /* Adjust based on the height of your auction bar */
    width: 100%;
    z-index: 999; /* Ensure it stays below the auction bar */
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a soft drop shadow */
}

/* Right and Left Navbar Links */
.navbar-nav {
    display: flex;
    align-items: center;
}

    .navbar-nav.mr-auto {
        margin-right: 0;
    }

    .navbar-nav.ml-auto {
        margin-left: 0;
    }

    .navbar-nav .nav-link {
        color: #333;
        padding: 0 10px; /* Adjust spacing as needed */
        font-weight: 500;
        font-size:20px;
    }

        .navbar-nav .nav-link:hover {
            color: #FFA500;
        }

/* Center Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    margin-right: 15px;
}

.content-area {
    margin-left: 250px; /* Matches the width of the sidebar */
    margin-bottom: 50px;
    padding: 20px; /* Adds some spacing inside the content */
}

.content-area h3
{
    margin-bottom:20px;
}



/* Hero Section */
#hero {
    margin-top: 0;
    padding-top: 0;
    background-image: url('/Content/Images/hero_bg.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    color: #fff;
    height: 600px;
    display: flex;
    align-items: center;
}

/* Hero Content Styling */
.hero-content {
    /*max-width: 600px;*/
    padding-left: 50px;
    box-shadow: inset 0 0 0 100vmax rgba(0,0,0,.6);
}

/* Text Styling */
#hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

#hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #fff;
}

/* Arrow Link Styling */
.hero-arrow {
    display: inline-block;
    font-size: 4rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

    .hero-arrow:hover {
        color: #FFA500;
    }

/* Page Content Section */
.page-content-section {
    background-color: #fff;
    color: #333;
    padding-top: 0;
    padding-bottom: 20px;
}

    .page-content-section h2 {
        margin-top: 30px;
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 20px;
        position: relative;
    }

page-content-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}



/* About Us Section */
.about-section {
    background-color: #fff;
    color: #333;
    padding-top: 0;
    padding-bottom: 0;
}

    .about-section h2 {
        margin-top: 30px;
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 20px;
        position: relative;
    }

    .about-section p {
        font-size: 1rem;
        line-height: 1.6;
        color: #333;
    }

    .about-section .about-link {
        color: #FFA500;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
    }

        .about-section .about-link:hover {
            text-decoration: underline;
        }

/* Vertical Line */
.vertical-line {
    width: 10px;
    height: 100%;
    background-color: #FFA500;
    position: relative;
    margin-right: 20px;
}

/* Article Section */
.article-section {
    background-color: #333;
    padding: 0;
    color: #fff;
}

.article-text {
    padding: 30px;
}

    .article-text h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #fff;
    }

    .article-text p {
        font-size: 1rem;
        line-height: 1.6;
        color: #fff;
    }

.article-link {
    font-size: 2rem;
    color: #FFA500;
    text-decoration: none;
    margin-top: 20px;
    align-self: start;
}

    .article-link:hover {
        color: #ff8c00;
    }

/* Image Section */
.article-image {
    padding: 0;
}

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* How It Works Section */
.how-it-works-section {
    background-image: url('/Content/Images/howitworks_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    color: #333;
}

    .how-it-works-section h2 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
    }

    .how-it-works-section p {
        font-size: 1rem;
        margin-bottom: 40px;
        color: #333;
    }

/* Step Cards */
.step-card .card {
    border: none;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 30px;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-card .card-body {
    text-align: left;
}

.icon-placeholder {
    font-size: 3rem;
    color: #ff8c00;
    margin-bottom: 20px;
    text-align: center;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.step-card p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
}

/* Link at Bottom */
.how-it-works-link {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

    .how-it-works-link:hover {
        color: #ff8c00;
    }

/* Sales Hero Section */
.sales-hero-section {
    background-image: url('/Content/Images/sales_hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: left;
    padding-left: 50px;
}

    .sales-hero-section h1 {
        font-size: 3rem;
        font-weight: bold;
        color: #fff;
        line-height: 1.3;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
        text-align: left;
    }

/* Article Right Section */
.article-right-section {
    background-color: #fff;
    position: relative;
}

.article-right-text {
    color: #333;
}

    .article-right-text h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-top: 20px;
        margin-bottom: 20px;
        color: #333;
    }

    .article-right-text p {
        font-size: 1rem;
        line-height: 1.6;
        color: #333;
    }

.article-right-link {
    font-size: 1rem;
    color: #F27C23;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

    .article-right-link:hover {
        color: #ff8c00;
    }

/* Orange Vertical Line Behind Image */
.article-right-image-wrapper {
    position: relative;
    padding: 0;
}

    .article-right-image-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 400px;
        background-color: #F27C23;
        z-index: 1;
    }

/* Adjust Image Height */
.article-right-image img {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
    display: block;
    width: 600px;
    height: auto;
    margin: auto;
}

/* Services Hero Section */
.services-hero-section {
    background-image: url('/Content/Images/services_hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: left;
    padding-left: 50px;
}

    .services-hero-section h1 {
        font-size: 3rem;
        font-weight: bold;
        color: #fff;
        line-height: 1.3;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
        text-align: left;
    }

/* Services Section */
#services {
    padding: 50px 20px;
}

    #services h3 {
        color: #FFA500;
        font-weight: 600;
        margin-bottom: 10px;
    }



/* Contact Us Section */
.contact-us-section {
    position: relative;
    background-image: url('/Content/Images/contactus_bg.jpg'); /* Replace with actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .contact-us-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.6); /* Semi-transparent white overlay */
        backdrop-filter: blur(10px); /* Apply blur effect */
        z-index: 0;
    }

.contact-us-container {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Drop shadow */
    max-width: 800px;
    width: 100%;
}

/* Contact Us Heading */
.contact-us-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Flex container to align form and contact info side-by-side */
.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Form Styles */
.contact-form {
    flex: 1;
    max-width: 400px;
    margin-right: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.send-button {
    background-color: #F27C23;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
}

    .send-button:hover {
        background-color: #ff8c00;
    }

/* Contact Info Styles */
.contact-info {
    flex: 1;
    max-width: 250px;
    color: #333;
    font-size: 0.9rem;
}


.contact-info p {
    margin: 5px 0;
}

.contact-note {
    color: #ff0077;
    font-size: 0.8rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

    .social-icons span {
        background-color: #F27C23; /* Set background color for icons */
        color: #fff; /* Icon color */
        padding: 10px;
        border-radius: 8px; /* Rounded corners */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        width: 36px;
        height: 36px; /* Ensures a square shape */
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .social-icons span:hover {
            background-color: #ff8c00; /* Darken background on hover */
        }




/* Footer Section */
.footer-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo-image {
    width: 150px;
    margin-bottom: 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

    .social-icons span {
        background-color: #F27C23;
        color: #fff;
        padding: 8px;
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
    }

        .social-icons span:hover {
            background-color: #ff8c00;
        }

/* Footer Menu */
.footer-menu {
    text-align: center;
    margin-bottom: 20px;
}

    .footer-menu h4 {
        font-weight: bold;
        margin-bottom: 10px;
    }

    .footer-menu ul {
        list-style: none;
        padding: 0;
    }

        .footer-menu ul li {
            margin: 5px 0;
        }

            .footer-menu ul li a {
                color: #fff;
                text-decoration: none;
            }

                .footer-menu ul li a:hover {
                    color: #F27C23;
                }

/* Footer Contact */
.footer-contact {
    text-align: center;
    margin-bottom: 20px;
}

    .footer-contact h4 {
        font-weight: bold;
        margin-bottom: 10px;
    }

.contact-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 10px;
    border: none; /* Remove orange border */
    color: #fff;
}

.contact-box div p 
{
    color: #fff;
}

.contact-icon {
    color: #F27C23; /* Change icon color to orange */
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #fff;
}

.footer-bottom p {
    color: #fff;
}

.footer-bottom .highlight {
    color: #F27C23;
}




/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #how-it-works .col-md-3,
    #services .col-md-3 {
        margin-bottom: 20px;
    }
}


/* Modal Custom Styling */

/* Vertically center the modal */
.modal-dialog {
    display: flex;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
}

.modal.fade .modal-dialog {
    transform: translate(0, -50%);
    top: 50%;
}

.modal-content {
    border-radius: 12px; /* Adjust the radius as desired */
    overflow: hidden; /* Ensures content respects rounded corners */
}

.auth-tabs {
    width: 200px;
    background-color: #F27C23; /* Orange background */
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

/* Active tab styling */
.auth-tab.active {
    font-weight: bold;
    border-bottom: 2px solid white; /* Emphasize the active tab */
    padding-bottom: 4px;
}


    .auth-tabs h5 {
        margin: 20px 0;
    }

    .auth-tabs a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
    }

        .auth-tabs a.active,
        .auth-tabs a:hover {
            font-weight: bold;
            color: #fff;
        }

.auth-content {
    width: 100%;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.auth-tab-content {
    display: none;
}

    .auth-tab-content.active {
        display: block;
    }

/* Form Styling */
.form-control {
    background-color: #f8f9fa;
    border: none;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.btn.bg-orange {
    background-color: #F27C23;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
}

    .btn.bg-orange:hover {
        background-color: #ff8c00;
    }


.card-header .btn-link {
    color: #333; /* or any color you prefer */
    text-decoration: none;
    font-weight: 500;
}

.card-header .btn-link:hover {
    color: #000; /* darker on hover, optional */
    text-decoration: underline;
}


