Custom styles
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.1rem;
    font-weight: bold;
}

.card-text {
    font-size: 0.9rem;
    color: #555;
}

h6 {
    color: #333;
    font-weight: bold;
}

.card-img-top {
    height: 180px; /* Fixed height for images */
    width: 100%; /* Full width of card */
    object-fit: contain; /* Ensures the image retains proportions */
    padding: 10px;
    background-color: #f9f9f9; /* Optional background for uniformity */
}

/* Hero Button Base Style */
.hero-button {
    display: inline-block;
    width: 100%; /* Full width */
    padding: 15px; /* Padding for a prominent button */
    font-size: 1.2rem; /* Slightly larger text */
    font-weight: bold; /* Bold text */
    text-align: center; /* Center text */
    text-transform: uppercase; /* Uppercase for a striking appearance */
    color: #fff; /* White text */
    background-color: #007bff; /* Primary blue background */
    border: none; /* Remove border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    cursor: pointer; /* Pointer cursor */
    transition: all 0.3s ease; /* Smooth hover animation */
}

/* Hover Effect */
.card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.card img {
    height: 150px;;
    object-fit: contain;
    margin: auto;
}

.card-body {
    padding: 10px;
    text-align: center;
}

 .hero-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    transition: all 0.3s ease;
} 

.hero-button:hover {
    background-color: #0056b3;
    color: #fff;
}
.header {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.header h2 {
    font-size: 28px;
    margin: 10px 0;
    font-weight: 600;
    color: #e74c3c;
}

.social-icons {
    margin-top: 15px;
}

.social-icons span {
    display: block;
    font-size: 16px;
    color: #ecf0f1;
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons img {
    width: 15px;
    height: 35px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: grayscale(100%);
}

.social-icons img:hover {
    transform: scale(1.2);
    filter: grayscale(0%);
    opacity: 0.9;
}

.social-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-container {
    padding: 20px;
    text-align: center;
}

.footer-container .header {
    margin-bottom: 20px;
}

.footer-container .header h2 {
    font-size: 24px;
    margin: 10px 0;
  
}

.footer-container .social-icons {
    margin-top: 10px;
}

.footer-container .social-icons span {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-container .social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.footer-container .social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.footer-container .social-icons img:hover {
    transform: scale(1.2);
}

/* Footer Content Section */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
    text-align: left;
}

.footer-content .column ul {
    list-style-type: none;
    padding: 0;
}

.footer-content .column ul li {
    margin: 10px 0;
    font-size: 14px;
}

.footer-content .column ul li strong {
    font-size: 16px;
    color: #e74c3c;
}

.footer-content .column ul li:hover {
    color: #1607e4;
    cursor: pointer;
}

/* Links */
.footer-content .column ul li a {
    text-decoration: none;
    color: #ecf0f1;
}

.footer-content .column ul li a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container .header h2 {
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .footer-content .column ul li {
        font-size: 12px;
    }

    .footer-container .social-icons img {
        width: 20px;
        height: 20px;
    }
}
.mobile-links img,
.social-links img {
    width: 100px;
    height: 20px;
    margin-right: 10px;
}

.mobile-links,
.social-links {
    display: inline-block;
    margin-bottom: 5px;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 10px;
    color: #555;
}
.category-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
  }
/* Customize the carousel container */
#carouselExample {
    width: 85%;
    margin: 0 auto; /* Center the carousel */
  }
  /* Set styles for the carousel images */
  #carouselExample .carousel-item img {
    height: 500px; /* Adjust the height of the images */
    width: auto; /* Maintain aspect ratio */
    padding: 10px; /* Add padding around images */
    margin: 10px auto; /* Add margin and center the images */
    background-color: #f5f5f5; /* Light gray background color */
    object-fit: cover; /* Ensure the image covers the specified height */
    border-radius: 10px; /* Optional: add rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: add shadow */
  }
  
  /* Style the carousel controls */
  #carouselExample .carousel-control-prev-icon,
  #carouselExample .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 50%; /* Circular icons */
    padding: 10px; /* Add padding to the icons */
  }
  
  #carouselExample .carousel-control-prev,
  #carouselExample .carousel-control-next {
    width: 5%; /* Reduce the width of the controls */
  }
  
  /* Add a transition effect for smoother scrolling */
  #carouselExample .carousel-item {
    transition: transform 0.5s ease-in-out;
  }
  
  /* Ensure responsiveness */
  @media (max-width: 768px) {
    #carouselExample .carousel-item img {
      height: 250px; /* Adjust image height for smaller screens */
    }
  }
/* Navbar Container */
.navbar {
    padding: 0.8rem 1rem;
}

/* Brand Logo and Text */
.navbar-brand {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
}
/* Navbar Links */
.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight:900;
    margin-right: 1rem;
    color: white;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #f8c146; /* Highlight color on hover */
    text-decoration: underline;
}

/* Search Bar */
form input[type="search"] {
    width: 250px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 0.5rem;
}

form button {
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

/* Get Best Price Button */
.btn-warning {
    font-size: 1rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: black;
    background-color: #ffc107;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-warning:hover {
    background-color: #f8c146;
    color: white;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-color: white;
    border-radius: 2px;
    width: 24px;
    height: 3px;
    display: block;
    margin: 4px auto;
    content: "";
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }

    form {
        margin-top: 1rem;
    }

    .btn-warning {
        width: 100%;
    }
}
h1{
    color:black;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.footer-container {
    width: 100%;
    padding: 100px;
    height: 30px;
}

/* Header Section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Vertically centers items */
    background-color: #ddd; /* Set background color */
    height: 80px; /* Set a uniform height for the header */
}

.header h2 {
    color: #1a1aa8;
    font-size: 24px; /* Set the desired font size */
    font-weight: bold; /* Make the text bold */
    margin: 0; /* Remove extra margin */
    width: auto;
}

.mobile-icons span,
.social-icons span {
    color: #333;
    font-size: 16px; /* Make it slightly bigger for consistency */
    margin-right: 10px;
    width: 100px;
}

.mobile-icons img,
.social-icons img {
    width: 24px; /* Slightly bigger icons for clarity */
    height: 24px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Footer Content Section */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
    box-sizing: border-box;
    border-radius: 0cqmin;
}

.column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.column ul {
    list-style: none;
}

.column li {
    margin: 5px 0;
    color: #333;
    font-size: 18px;
    cursor: pointer;
}


/* Responsive Styling */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .column {
        text-align: center;
    }
}
/* General Navbar Styles */
.navbar {
    padding: 10px 20px;
    background-color: #343a40; /* Dark background */
}

.navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar .navbar-brand img {
    margin-right: 8px;
    border-radius: 50%; /* Optional: Round logo */
}

.navbar .navbar-toggler {
    border: none;
    outline: none;
}
/* Navbar Links */
.navbar .nav-link {
    color: white;
    margin: 0 10px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #ffc107; /* Yellow hover effect */
    text-decoration: underline;
}

/* Search Form */
.navbar .form-control {
    border: 1px solid #ffc107; /* Yellow border */
    border-radius: 25px;
    padding: 5px 15px;
    width: 200px;
    transition: box-shadow 0.3s ease;
}

.navbar .form-control:focus {
    box-shadow: 0 0 5px #ffc107;
    outline: none;
}

.navbar .btn-outline-light {
    border: 1px solid white;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar .btn-outline-light:hover {
    background-color: white;
    color: #343a40; /* Dark text */
}

/* Get Best Price Button */
.navbar .btn-warning {
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.navbar .btn-warning:hover {
    background-color: #e0a800; /* Darker yellow */
    transform: scale(1.1); /* Slight zoom */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar .nav-link {
        margin: 10px 0;
    }
    
    .navbar .form-control {
        width: 100%; /* Full width on small screens */
        margin-bottom: 10px;
    }
    
    .navbar .btn-warning {
        width: 100%; /* Full width button on small screens */
    }
}
.carousel-item img {
    max-height: 400px;
    object-fit: cover;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 3px;
    text-align: center;
    padding: 10px;
    border-top:5%;
    padding-left:50px;
    padding-right: 50px;
    margin:50px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}
.product-card h5 {
    font-size: 1rem;
    margin: 5px 0;
}

.ad-banner {
    border: 2px solid #007bff;
    background-color:skyblue;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
}

.ad-banner img {
    max-width: 100%;
    border-radius: 10px;
}


  .contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    overflow: hidden;
    max-width: 1000px;
    width: 200%; /* Ensures the full width of container */
}

  .info-section {
    flex: 1;
    background-color: #f4f8fb;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .info-card {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    padding: 25px;
    background-color: #fff;
  }

  .info-card img {
    width: 30px;
    height: 30px;
  }

  .info-card p {
    font-size: 14px;
  }

  .form-section {
    flex: 1.5;
    background-color: #78cce7;
    padding: 30px;
  }

  .form-section h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
  }

   .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
  } 

  .form-group input:focus,
  .form-group textarea:focus {
    outline: 2px solid #0056b3;
  }

  .form-group textarea {
    height: 120px;
    resize: none;
  }

  .submit-btn {
    background-color: #0056b3;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
  }

  .submit-btn:hover {
    background-color: #004494;
  }

  .contact-text {
    font-weight: bold;
  }
 /* General hover effect for info cards */
.info-card:hover {
    background-color: #e6eff8; /* Slightly lighter background on hover */
    transform: translateY(-2px); /* Adds a slight upward lift */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: 0.3s ease-in-out; /* Smooth hover animation */
}

/* Hover effect for submit button */
.submit-btn:hover {
    background-color: #004494; /* Darker shade on hover */
    transform: scale(1.02); /* Slight zoom effect */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Adds a shadow */
    transition: all 0.3s ease; /* Smooth hover transition */
}

/* Hover effect for form input fields */
.form-group input:hover,
.form-group textarea:hover {
    background-color: #e8f5ff; /* Light blue background on hover */
    border: 1px solid #0056b3; /* Add a border for emphasis */
    transition: background-color 0.3s ease, border 0.3s ease;
}

/* Hover effect for form input fields when focused */
.form-group input:focus,
.form-group textarea:focus {
    background-color: #fff; /* White background when focused */
    border: 2px solid #0056b3; /* Stronger border on focus */
    outline: none; /* Remove default outline */
    transition: background-color 0.3s ease, border 0.3s ease;
}

/* Add hover effect to the contact wrapper (optional) */
.contact-wrapper:hover {
    box-shadow: 0px 6px 10px rgb(255, 0, 255); /* Subtle shadow on hover */
    transition: box-shadow 0.3s ease-in-out;
    
}

/* Add hover effects to links (if any) */
a:hover {
    color: #004494; /* Darker shade for links */
    text-decoration: underline; /* Underline on hover */
    transition: color 0.2s ease-in-out;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
/* Left Form Section */
.form-section {
    width: 50%;
    padding: 40px;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
label {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    color:black;
    font-size:20px;
}
.container { 
    display:flexbox;
    justify-items:center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(255, 255, 0);
    align-items: center;
    box-sizing: border-box;
}
.form-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 1px;
}
input, select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    box-shadow: #007bff;
    font-size: 14px;
}

button {
    width:80%;
    padding: 20px;
    margin-top: auto;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    
  }
.login-link {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.login-link a {
    text-decoration: none;
    color: #007bff;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .form-section, .image-section {
        width: 50%;
        height: 50%;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } 

 /* Container for the login form */
.login-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(255, 255, 0);
    width: 100%;
    max-width:400px;
    padding: 20px;
    margin: 0 auto;  /* Centers the container horizontally */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top:10px;
    height: 55vh;  /* Makes the container take up the full viewport height */
}

/* Center the form inside the container */
.login-form {
    width:100%; /* Ensure the form takes up the full width of the container */
    text-align: center;
    padding-top:10px;
}

/* Styling for the heading */
.login-form h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

/* Group each form input element */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

/* Label styling */
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: black;
}

/* Input field styling */
.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Focus effect for input fields */
.form-group input:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button styling */
.btn-submit {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

/* Button hover effect */
.btn-submit:hover {
    background-color: #0056b3;
}

  
  .signup-link {
    margin-top: 15px;
    font-size: 0.9rem;
  }
  
  .signup-link a {
    color: #007BFF;
    text-decoration: none;
  }
  .signup-link a:hover {
    text-decoration: underline;
  }
  .product-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
}
.product-card {
    flex: 0 0 calc(16.66% - 10px); /* 6 cards in one row (100% / 6), minus the gap */
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    padding: 30px;
    width:30%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 24px;
    color: #333;
    margin: 0;
    padding: 10px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 40px; 
}

.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.large-card {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.large-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.large-card .content {
    padding: 10px;
    text-align: left;
}

.card img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    object-fit: contain;
    border-radius: 8px;
}

.card h3 {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}
.card ul li {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.view-all a {
    display: inline-block;
    margin-top: 10px;
    padding: 9px 18px;
    text-decoration: none;
    background-color: #007bff;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.view-all a:hover {
    background-color: #0056b3;
}
.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);  /* Scale the card on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);  /* Increase the shadow on hover */
}

.card img {
    width: 150px;
    height: 100%;
    margin-bottom: 10px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);  /* Slightly enlarge the image on hover */
}

.card h3 {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.card ul li {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.view-all a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    text-decoration: none;
    background-color: #007bff;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.view-all a:hover {
    background-color: #0056b3;
}
/* General Styles */
.app-promotion {
    display: flex; 
    justify-content: space-between;
    align-items: center;
    padding: 300px;
    padding-bottom: 3%;
    padding-top: 3%;
    border-left-width: 30px;
    background-color: #78cce7;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(255, 255, 0); 
    gap: 20px;
}

.app-images {
    flex: 1; /* Occupies the left side */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app-images img {
    width:200px; /* Adjust size of images */
    margin-bottom: 10px;
}

.app-content {
    flex: 1; /* Occupies the right side */
    max-width: 50%;
    
}

.app-content h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.app-content p {
    font-size: 14px;
    color: #333;
    margin: 10px 0;
}

/* Form Styling */
.app-form {
    margin: 20px 0;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-group span {
    padding: 8px 12px;
    background-color: #ddd;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.input-group input {
    padding: 8px;
    flex: 1;
    border: 1px solid #ccc;
    border-left: none;
    font-size: 14px;
    border-radius: 0;
}

.input-group button {
    padding: 8px 16px;
    background-color: #007b5e;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    cursor: pointer;
}

.input-group button:hover {
    background-color: #005940;
}

.app-links img {
    width: 250px; /* Adjust the size of store icons */
    margin-right: 10px;
}

/* App Images */
.app-images {
    display: flex;
    gap: 10px;
}

.app-images img {
    width: 150px;
    height: auto;
    border-radius: 8px;
}
