:root {
    --primary-color: #2c3e50;
    --secondary-color: #0064D2;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Main Navigation */
.main-nav {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.search-container {
    position: relative;
    max-width: 500px;
}

.search-input {
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 10px 20px;
    width: 100%;
}

.search-input:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #044b91 0%, #023365 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-section .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Mission & Vision Sections */
.mission-vision {
    padding: 80px 0;
    background-color: white;
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mission-card h3, .vision-card h3 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.mission-card p, .vision-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Features Grid */
.features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background-color: white;
}

.founder-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    border-radius: 15px;
    padding: 50px;
    color: white;
    text-align: center;
}

.founder-card h3 {
    margin-bottom: 30px;
    font-weight: bold;
}

.founder-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Call to Action */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #01254c 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btn {
    background-color: white;
    color: var(--secondary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0 20px;
}

.footer h5 {
    margin-bottom: 20px;
}

.footer a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #bdc3c7;
}

/* eBay Logo Styling */
.ebay-logo {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: -1px;
}

.ebay-logo .e {
    color: #e53238;
}

.ebay-logo .b {
    color: #0064d2;
}

/* Search Bar Styling */
.form-control {
    border: 2px solid #ccc;
    height: 40px;
}

.btn-primary {
    background-color: #3665f3;
    border-color: #3665f3;
}

.logo-search-bar{
    gap: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
  
    .hero-section .subtitle {
        font-size: 1.1rem;
    }
  
    .cta-section h2 {
        font-size: 2rem;
    }
  
    .logo-search-bar{
        gap: 0.5rem !important;
    }
}

@media (max-width: 576px) {
    .input-icon-search{
        display: flex;
    }
    .ebay-logo .b {
        display: none;
    }
}

.nav-icon {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 5px;
}

.nav-icon span {
    font-size: 0.7rem;
    margin-top: 2px;
}

.nav-icon i {
    font-size: 1.2rem;
    line-height: 1;
}

.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background-color: white;
    border-top: 1px solid #ccc;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


/* Additional styles for new sections */
.top-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  }

  .templates-showcase .template-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .templates-showcase .template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  }

  .platform-features .card {
    transition: transform 0.3s ease;
  }

  .platform-features .card:hover {
    transform: translateY(-3px);
  }

  .feature-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Responsive adjustments for new sections */
  @media (max-width: 768px) {
    .top-banner h2 {
      font-size: 1.5rem;
    }

    .top-banner h3 {
      font-size: 1.3rem;
    }

    .templates-showcase .card-img-top {
      height: 150px !important;
    }

    .platform-features .feature-icon i {
      font-size: 2.5rem !important;
    }
  }
