/* ----------------------- Original CSS ----------------------- */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #FFF;
    color: #fff;
    /* position: sticky;
    top: 0; */
    z-index: 1000;
  }
  
  header .logo {
    font-size: 24px;
    font-weight: bold;
    color : #000000;
    /* color: #ff5722; */
    display: inline-flex
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
  }
  
  header nav ul li a {
    /* color: #fff; */
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  header nav ul li a:hover {
    color: #ff5722;
  }
  
  header .admin-login {
    background-color: #ff5722; 
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  header .admin-login:hover {
    background-color: #e64a19;
  }
  
  .hero {
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #121212;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero .cta {
    background-color: blueviolet;
    /* #cd5834; */
    color: #121212;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .hero .cta:hover {
    background-color:darkcyan
  }
  
  .services, .pricing, .trust, .contact {
    padding: 80px 20px;
    text-align: center;
  }
  
  .services h2, .pricing h2, .trust h2, .contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
  }
  
  .service-cards, .pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .card img {
    width: 100%;
    border-radius: 10px;
  }
  
  .pricing-card-1 {
    background-color: #ffcccb;
  }
  
  .pricing-card-2 {
    background-color: #add8e6;
  }
  
  .pricing-card-3 {
    background-color: #90ee90;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  footer .footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  footer .app-link img {
    width: 150px;
  }
  
  footer .contact-info p {
    margin: 5px 0;
  }
  
  footer .social-media a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
  }
  
  footer .social-media a:hover {
    color: #ff5722;
  }
  
  /* Contact Section */
  .contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .contact-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  .contact-form button {
    background-color: #ff5722;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #e64a19;
  }
  
  /* Testimonial Slider */
  #testimonial-slider {
    height: 100px;
    position: relative;
  }
  
  #testimonial-slider .testimonial {
    font-size: 18px;
    font-style: italic;
    margin: 10px 0;
    color: #fff;
    background-color: #ff5722;
    padding: 20px;
    border-radius: 10px;
    display: none;
  }
  
  #testimonial-slider .testimonial.active {
    display: block;
  }
  
  /* extra styles */
  #logo-image {
    height: 3.5rem;
    width: 3.5rem;
    padding : 0;
    padding-right: 1rem;
    display: "inline-block";
    cursor: "pointer";
  }
  
  #logo-header {
    margin: 0;
    margin-top: 0.8rem;
    padding: 0;
    font-size: 1.6rem;
  }
  
  .footer-links {
    text-decoration: none;
    color: white;
    margin: 0.5rem;
  }
  
  /* -------------------- Responsive Media Queries -------------------- */
  
  /* Mobile Devices (max-width: 600px) */
  @media (max-width: 600px) {
    header {
      flex-direction: column;
      align-items: center;
      padding: 10px;
    }
    header nav ul {
      flex-direction: column;
      gap: 10px;
    }
    header .logo {
      font-size: 20px;
    }
    header nav ul li a {
      font-size: 16px;
    }
    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 20px;
    }
    .services h2,
    .pricing h2,
    .trust h2,
    .contact h2 {
      font-size: 2rem;
    }
    .card {
      width: 90%;
      margin: 10px auto;
    }
    footer .footer-content {
      flex-direction: column;
    }
  }
  
  /* Tablets (min-width: 601px and max-width: 900px) */
  @media (min-width: 601px) and (max-width: 900px) {
    header {
      padding: 15px;
    }
    header nav ul {
      gap: 20px;
    }
    .hero h1 {
      font-size: 3rem;
    }
    .hero p {
      font-size: 1.4rem;
    }
    .services h2,
    .pricing h2,
    .trust h2,
    .contact h2 {
      font-size: 2.25rem;
    }
    .card {
      width: 80%;
      margin: 10px auto;
    }
  }
  
  /* Laptops & Desktops (min-width: 901px) */
  /* No major changes here; base styles apply */
  @media (min-width: 901px) {
    header {
      padding: 20px 40px;
    }
    header nav ul {
      gap: 40px;
    }
    .hero h1 {
      font-size: 48px;
    }
    .hero p {
      font-size: 24px;
    }
    .services h2,
    .pricing h2,
    .trust h2,
    .contact h2 {
      font-size: 36px;
    }
    .card {
      width: 300px;
    }
    footer .footer-content {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  