/* same header for all through this */
body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f5f5f5;
      color: #333;
      line-height: 1.6;
    }
    header {
      background: #222;
      color: #fff;
      padding: 20px 0;
      text-align: center;
    }
    header h1 {
      margin: 0;
      font-size: 2.5rem;
      font-weight: bold; /* Makes the text bold */
      color: #fff; /* Makes the text white */
      letter-spacing: 1px;
    }
    header nav ul {
      list-style: none;
      padding: 0;
      margin: 10px 0 0;
      display: flex;
      justify-content: center;
    }
    header nav ul li {
      margin: 0 15px;
    }
    header nav ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 1.1rem;
      transition: color 0.3s ease;
    }
    header nav ul li a:hover {
      color: #f39c12;
    }
    .hero {
      background: url('images/hero-bg.jpg') center/cover no-repeat;
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      text-align: center;
      color: #fff;
    }
    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.5);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 20px;
    }
    .hero-content h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }
    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 25px;
    }
    .btn {
      display: inline-block;
      padding: 12px 30px;
      background: #f39c12;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      font-size: 1rem;
      transition: background 0.3s ease;
    }
    .btn:hover {
      background: #e67e22;
    }
    .featured-products {
      padding: 50px 20px;
      background: #fff;
      text-align: center;
    }
    .featured-products h2 {
      font-size: 2rem;
      margin-bottom: 40px;
    }
    .product-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .product {
      background: #fafafa;
      padding: 20px;
      width: 280px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      border-radius: 6px;
      transition: transform 0.3s ease;
    }
    .product:hover {
      transform: translateY(-5px);
    }
    .product img {
      max-width: 100%;
      border-radius: 4px;
      margin-bottom: 15px;
    }
    .product h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
    }
    .product p {
      font-size: 1rem;
      color: #666;
    }
    .why-choose-us {
      padding: 50px 20px;
      background: #f1f1f1;
      text-align: center;
    }
    .why-choose-us h2 {
      font-size: 2rem;
      margin-bottom: 40px;
    }
    .benefits {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .benefit {
      background: #fff;
      padding: 20px;
      width: 250px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      border-radius: 6px;
    }
    .benefit h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
    }
    .testimonials {
      padding: 50px 20px;
      background: #fff;
      text-align: center;
    }
    .testimonials h2 {
      font-size: 2rem;
      margin-bottom: 40px;
    }
    .testimonial-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .testimonial {
      background: #fafafa;
      padding: 20px;
      width: 300px;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      font-style: italic;
    }
    .testimonial h4 {
      margin-top: 15px;
      font-size: 1rem;
      font-weight: normal;
      color: #333;
    }
    .cta {
      padding: 50px 20px;
      background: #222;
      color: #fff;
      text-align: center;
    }
    .cta h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    footer {
      background: #222;
      color: #fff;
      text-align: center;
      padding: 20px 0;
    }
    @media (max-width: 768px) {
      .benefits, .testimonial-list, .product-list {
        flex-direction: column;
        align-items: center;
      }
    }

/* cart icon changes */

/* Header */
header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  display: flex; /* Using flex to align items */
  justify-content: space-between; /* Space out the items in the header */
  align-items: center;
}

header .container {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
}

nav ul {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Cart Icon */
.cart-icon {
  position: absolute;
  right: 20px; /* Positioning the cart on the right */
  top: 20px; /* Adjust vertical position */
}

.cart-icon a {
  display: flex;
  align-items: center;
}

.cart-icon img {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}

#cart-count {
  background: red;
  color: white;
  border-radius: 50%;
  padding: 3px 8px;
}


/* Product Filter */
.product-filter {
    margin: 30px 0;
    text-align: center;
}

.product-filter select {
    padding: 8px 15px;
    font-size: 1rem;
    margin-top: 10px;
}


/* Product Grid */
.product-section {
    padding: 30px 0;
    background-color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
}

.product-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: scale(1.05);
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.product-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn, .btn-buy {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #ff6347;
    color: white;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn:hover, .btn-buy:hover {
    background-color: #e5533d;
}

.footer-container {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* for about page */

/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
}

header .container {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
}

nav ul {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

nav ul li a:hover {
  text-decoration: underline;
}

.cart-icon a {
  display: flex;
  align-items: center;
}

.cart-icon img {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}

#cart-count {
  background: red;
  color: white;
  border-radius: 50%;
  padding: 3px 8px;
}

/* Hero Section */
.about-hero {
  background: #e0e0e0;
  text-align: center;
  padding: 4rem 0;
}

.about-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}



/* About Content Section */
.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 0;
}

.about-left {
  width: 50%;
}

.about-right {
  width: 45%;
}

.about-right img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission {
  background: #fafafa;
  text-align: center;
  padding: 3rem 0;
}

.mission h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Team Section */
.team {
  text-align: center;
  padding: 3rem 0;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.team-member {
  width: 200px;
  text-align: center;
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  border: 5px solid #333;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 1.1rem;
  color: #777;
}


/* for contact page */

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Helvetica', sans-serif;
}

header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

nav ul {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

nav ul li a:hover, .active {
  text-decoration: underline;
}

.cart-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon img {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}

#cart-count {
  background: red;
  color: white;
  border-radius: 50%;
  padding: 3px 8px;
}

/* Contact Hero Section */
.contact-hero {
  background: #e0e0e0;
  text-align: center;
  padding: 3rem 0;
}

.contact-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 1.5rem;
}

/* Contact Section */
.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 3rem auto;
  padding: 2rem;
  max-width: 1200px;
}

.contact-info {
  width: 40%;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.contact-info h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-info i {
  margin-right: 10px;
  color: #333;
}

.contact-form {
  width: 55%;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.contact-form h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #333;
}

textarea {
  height: 150px;
}

.btn-submit {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #555;
}

/* Google Map Section */
.map {
  margin: 3rem auto;
  text-align: center;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}


/* customphototext page part */
.form-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.form-container {
  background-color: #fff;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #444;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

input[type="file"],
input[type="text"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.submit-btn {
  background-color: #ff7f50;
  color: white;
  border: none;
  padding: 15px;
  width: 100%;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #ff6347;
}

.confirmation {
  margin-top: 20px;
  color: green;
  text-align: center;
}