/* Custom styles */
:root {
    --primary-color: #4A90E2;
    --primary-color-dark: #29609f;
    --secondary-color: #50E3C2;
    --accent-color: #FF6B6B;
    --light-bg: #F8F9FA;
    --dark-bg: #343A40;
}

body {
    /* font-family: 'Poppins', sans-serif; */
    color: #333;
    scroll-behavior: smooth;
    padding-top: 76px; /* Adjust this value based on your navbar height */
}

body {
    font-family: 'Nunito Sans', sans-serif; /* Use Nunito Sans for the body text */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Use Montserrat for headings */
}
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 900; /* Ultra Bold */
    font-size: 24px; /* Adjust size as needed */
    color: var(--primary-color);
    text-transform: uppercase; /* Optional for all caps */
}



.skewed-button {
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    height: 50px; /* Increased height */
    margin-left: 15px;
    padding: 10px 20px 0; /* Increased padding */
    position: relative;
    transition: all 0.3s ease;
  }
  
  
  .skewed-button::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px; /* Adjusted for increased height */
    width: 0;
    height: 0;
    border-bottom: 50px solid transparent;
    border-left: 20px solid var(--primary-color);
    transition: all 0.3s ease;
  }


  .skewed-button:hover {
    transform: translateX(5px);
    background-color: var(--primary-color-dark);
  }

  .skewed-button:hover::after {
    border-left: 21px solid var(--primary-color-dark); /* Apply translation to ::after on hover */
  }
  


.nav-link {
    font-weight: 500;
}

.section-heading {
    font-weight: 700;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #3A80D2;
    border-color: #3A80D2;
}


.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.marketplace-list {
    columns: 4;
    -webkit-columns: 4;
    -moz-columns: 4;
}

.marketplace-list li {
    margin-bottom: 5px;
}


footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 30px 0;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: bold;
}

.hero-section {
    position: relative;
    background: url("/static/img/background.png") no-repeat right center;
    background-size: 80% auto; /* Set width to 80% */
    width: 100%;
    height: 100vh; /* Full screen height */
}

.hero-section .container-fluid {
    position: relative;
    z-index: 1;
}

.content-column {
    background-color: #ffffffeb;
    z-index: 2; /* Ensure text stays on top of the background */
}


/* Media query for smaller screens like phones */
@media (max-width: 1000px) {
    .hero-section {
        background: none !important; /* Hide the background for screens smaller than 1000px */
    }

    .marketplace-list {
        columns: 2;  /* Adjust for smaller screens */
    }
}

/* Media query for smaller screens like phones */
@media (max-width: 768px) {
    section {
        padding-right: 20px;   /* Adjust the padding for phones */
        padding-left: 20px;    /* Adjust the padding for phones */
        padding-top: 50px;     /* Adjust the padding for phones */
        padding-bottom: 50px;  /* Adjust the padding for phones */
    }


}

/* Media query for larger screens (min-width: 768px) */
@media (min-width: 768px) {
    section {
        padding-right: 150px;
        padding-left: 150px;
        padding-top: 150px !important;
        padding-bottom: 150px !important;
    }

}