/* General page styling */
/* body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  a{
    text-decoration: none !important;
  }
:root{
    --background-color: rgba(0, 128, 255, 0.7);
    --text-color: #fff9f9;
    --button-color: rgb(16, 146, 16);
    --button-color-dark: rgb(42, 154, 42);
    --bg-footer: linear-gradient(to bottom, #53a8fd, #0066cc);
    --heading-font-style : 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  
  }
/* Hero section styling */
.sellerapp-hero {
    position: relative;
    height: 60vh;
    background: linear-gradient(to bottom, #53a8fd, #0066cc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.sellerapp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: 1;
}

.sellerapp-content {
    position: relative;
    z-index: 2;
}

.sellerapp-heading {
    margin-top: 100px;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.sellerapp-subheading {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Main content styling */
.sellerapp-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 30px;
    /* background: #fff; */
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.sellerapp-section {
    margin-bottom: 30px;
}

.sellerapp-section-heading {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    text-transform: capitalize;
    border-bottom: 2px solid #2575fc;
    display: inline-block;
    padding-bottom: 5px;
}

.sellerapp-container p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Features list styling */
.sellerapp-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sellerapp-features li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.sellerapp-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2575fc;
    font-size: 1.2rem;
}

/* Button styling */
 .seller-btn-primary {
    font-size: 1.2rem;
    padding: 10px 25px;
    background: #fff;
    color: rgb(0, 128, 255);
    border: none;
    text-decoration: none;
    border-radius: 25px;
    text-transform: uppercase;
    width: 350px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.seller-btn-primary:hover {
    background-color:  rgba(0, 128, 255, 0.7);
    transform: translateY(-2px);
    text-decoration: none;
    color: #ffffff;
    border: 1px #ffffff solid;
}

.seller-btn-secondary {
    font-size: 1.2rem;
    padding: 10px 25px;
    background: #2575fc;
    color: #fff;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.seller-btn-secondary:hover {
    background-color: #2575fc;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Spacing */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}


/* seller  nav bar--------------- */
/* seller nav bar--------------- */
.seller-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}

.seller-nav .logo {
    display: flex;
    align-items: center; /* Align items vertically in the center */
}

.seller-nav .logo img {
    height: 90px;
    width: 90px;
}
.navbar-brand{
    display: flex;
    align-items: center;
    text-decoration: none;
}
.seller-nav .logo .abc {
    font-size: 30px;
    font-family: var(--heading-font-style);
    color: var(--text-color);
    margin-left: -10px;
}

.seller-profile {
    display: flex;
    align-items: center;
    padding: 0 20px 0 0;
}

.back_buyer{
  margin-right: 20px;
  font-family: var(--heading-font-style);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  .backbuyer{
    color: white;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }
}

.backbuyer_img img{
  height: 16px;
  width: 20px;;
}

.seller-profile .profile {
    display: flex;
    align-items: center;
    margin-right: 20px; /* Adjust as needed for spacing */
}

.seller-profile .profile img {
    height: 40px;
    width: 40px;
    border-radius: 50%; /* Make the image circular */
    margin-right: 10px; /* Space between image and username */
}

.seller-profile .profile a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: var(--text-font-style);
}

.seller-profile .profile a:hover {
    text-decoration: underline;
}
.profile a svg{
    color: white;
    height: 38px;
    width: 35px;

}
























/* Footer Container */
.home-direct-footer {
    background: linear-gradient(to bottom, #53a8fd, #0066cc);
    color: #ddd;
    padding: 20px 0;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Footer Sections */
  .footer-section {
    flex: 1 1 30%;
    margin: 10px;
  }
  
  .footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .footer-section p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: #ddd;
    font-size: 14px;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #fff;
  }
  
  /* Contact Section */
  .footer-section.contact span {
    font-weight: bold;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #ffffff;
    padding-top: 10px;
    font-size: 14px;
  }
  
  .footer-bottom .footer-links a {
    color: #ddd;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
  }
  
  .footer-bottom .footer-links a:hover {
    color: #fff;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      text-align: center;
      flex: 1 1 100%;
    }
  
    .footer-bottom .footer-links {
      margin-top: 10px;
    }
  }

/*========== RESPONSIVE SELLER HOME ==========*/
@media (max-width: 768px) {
  .sellerapp-hero {
    height: 50vh;
  }
  .sellerapp-heading {
    font-size: 2rem;
    margin-top: 80px;
  }
  .sellerapp-subheading {
    font-size: 1.1rem;
  }
  .seller-btn-primary {
    width: 260px;
    font-size: 1rem;
    padding: 8px 20px;
  }
  .sellerapp-container {
    padding: 15px;
  }
  .seller-nav .logo img {
    height: 60px;
    width: 60px;
  }
  .seller-nav .logo .abc {
    font-size: 22px;
  }
  .seller-nav .profile a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .sellerapp-heading {
    font-size: 1.5rem;
    margin-top: 60px;
  }
  .sellerapp-subheading {
    font-size: 0.95rem;
  }
  .seller-btn-primary {
    width: 220px;
    font-size: 0.9rem;
  }
  .seller-nav {
    height: 50px;
  }
  .seller-nav .logo img {
    height: 45px;
    width: 45px;
  }
  .seller-nav .logo .abc {
    font-size: 18px;
  }
  .sellerapp-section-heading {
    font-size: 1.3rem;
  }
}
  