/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
.navbar {
    background-color: #333;
    padding: 15px 20px;
    position: fixed;
    top: 0;           
    width: 100%;     
    z-index: 1000;    
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
}

/* Navbar Links Styles */
.nav-links {
    list-style-type: none;
    display: flex;
    margin: 0;
}
.nav-links li {
    margin-right: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
}

.nav-links a:hover {
    background-color: transparent;
    color: #f1c40f;
}

.sign{
    background-color: #e0b70f;
    border-radius: 15px;
 ;
}
.login{
    background-color: #e0b70f;
    border-radius: 20px;
    padding: 8px;
}
/* Hamburger Menu Styles for Mobile */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 4px;
    margin: 5px 0;
    background-color: #fff;
    border-radius: 5px;
}

/* Mobile Navbar Styles */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #333;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger-menu {
        display: flex;
    }

    /* Show the menu when hamburger icon is clicked */
    .nav-links.active {
        display: flex;
    }
}

/* Navbar Links Active (for mobile) */
.nav-links.active {
    display: flex;
}

/* Hero Section Styles */
.hero {
    background-image: url(../assets/images/mountain.jpg); /* Add your background image here */
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(255, 255, 255);
    padding: 0 20px;
}

/* Hero Content Styles */
.hero-content {
    max-width: 800px;
    padding: 250px;
    margin: 100px;
}
.img{
    height: 100px;
    width: 100px;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary {
    background-color: #f1c40f; /* Yellow */
    color: #333;
}

.btn-primary:hover {
    background-color: #e0b70f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #f1c40f;
    color: #f1c40f;
}

.btn-secondary:hover {
    background-color: #f1c40f;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Hero Section */
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* About Section Styles */
#about {
    padding: 80px 20px;
    background-image: url(../assets/images/analytics-3-team.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}


#about h2 {
    font-size: 40px;
    font-weight: bold;
    color: #040404;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section Styles */
.features {
    margin: 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.feature {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    width: 100%;
}

.feature h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.feature p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    #about h2 {
        font-size: 28px;
    }

    #about p {
        font-size: 16px;
        padding: 0 10px;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }

    .feature {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .features {
        grid-template-columns: 1fr;
    }
}
/* How It Works Section */
#how-it-works {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

#how-it-works h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

/* Steps Container */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Each Step Box */
.step {
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.step h3 {
    font-size: 22px;
    color: #444;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .steps {
        grid-template-columns: 1fr;
    }

    #how-it-works h2 {
        font-size: 28px;
    }

    .step h3 {
        font-size: 20px;
    }

    .step p {
        font-size: 15px;
    }
}
/* Featured Vendors Section */
#featured-vendors {
    padding: 60px 20px;
    background-color: #f0f4f8;
    text-align: center;
  }
  
  #featured-vendors h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
  }
  
  /* Vendor List Grid */
  .vendor-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Vendor Card Style */
  .vendor {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
  }
  
  .vendor:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }
  
  .vendor img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
  }
  
  .vendor h3 {
    font-size: 20px;
    color: #333;
    margin: 15px 0 5px;
  }
  
  .vendor p {
    color: #777;
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .vendor a {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #007bff;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  
  .vendor a:hover {
    background-color: #007bff;
    color: #fff;
  }
/* Section Wrapper */
.services-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .services-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 50px;
  }
  
  /* Grid for Service Cards */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
  }
  
  /* Service Cards */
  .service {
    background: linear-gradient(135deg, #f9f9f9, #eef2f7);
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .service::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: rgba(0, 123, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
  }
  
  .service h3 {
    font-size: 22px;
    color: #007bff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
  }
  
  .service p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    position: relative;
    z-index: 1;
  }
  
  .service:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }
    
  .testimonials {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #222;
  }
  
  .testimonial-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    gap: 30px;
    padding: 0 20px;
  }
  
  .testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
  }
  
  .testimonial-card p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .testimonial-card h4 {
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
  }
  .cta {
    background: linear-gradient(135deg, #0052cc, #007bff);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-radius: 20px;
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-inline: auto;
    line-height: 1.6;
  }
  
  .cta .btn-primary {
    background-color: #fff;
    color: #007bff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
    display: inline-block;
  }
  
  .cta .btn-primary:hover {
    background-color: #f2f2f2;
    transform: translateY(-3px);
  }
/* Footer Section */
.footer {
    background-color: #333;
    color: #fff;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-bottom {
    text-align: center;
    color: #ccc;
    padding: 20px 10px;
    font-size: 14px;
    border-top: 1px solid #444;
    margin-top: 40px;
    margin-bottom: 0px;
  }
  .footer-bottom p {
    margin: 20px;
    letter-spacing: 1px;
  }
  
  
  .footer-info, .footer-links, .footer-social {
    width: 30%;
    margin:15px;
  }
  
  .footer-info h3, .footer-info h4, .footer-links h4, .footer-social h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer-info p, .footer-info .footer-address p {
    font-size: 14px;
    color: #bbb;
  }
  
  .footer-links ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }
  
  .footer-links ul li a:hover {
    color: #f1c40f;
  }
  
  .footer-social .social-icons {
    display: flex;
  }
  
  .footer-social .social-icon {
    margin-right: 15px;
  }
  
  .footer-social img {
    width: 30px;
    height: 30px;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
  }
  
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-info, .footer-links, .footer-social {
      width: 100%;
      text-align: center;
    }
  }
  

/* AOS Animation CSS (No Conflict) */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
