/* Global Styles */
.navbar {
    background-image: linear-gradient(to right,#14545b, #008290, #ff8800);
    background-size: 100% 300px;
    background-position: 0% 100%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar-brand {
    color: #fff;
    font-size: 24px;
    margin-right: 20px;
  }
  
  .navbar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar-nav li {
    margin-right: 20px;
  }
  
  .navbar-nav a {
    color: #fff;
    text-decoration: none;
  }
  
  .navbar-nav a:hover {
    color: #fff;
  }
  
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f9f9f9;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  p {
    margin-bottom: 20px;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
  }
  
  a {
    text-decoration: none;
    color: #ff8800;
  }
  
  a:hover {
    color: #008290;
  }
  
  :root {
    --primary-color: #008290;
    --secondary-color: #ff8800;
  }
 /* Hero Section */

.hero {
    background-color: #158f9ccb; /* added blue color */
    padding: 20px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .hero p {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .btn-primary {
    background-color: #ff8800; /* added orange color */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
  }
  
  .btn-primary:hover {
    background-color: #ff6600;
  }
  
  
  /* Services Section */

  .service {
    --primary-color: #008290;
    --secondary-color: #ff8800;
  }
  
.services {
    background-color:#fff;
    padding: 20px;
  }
  
  .services ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .services li {
    width: 30%;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: animate__fadeInUp 2s;
  }
  
  .services li:nth-child(1) {
    background-color:var(--primary-color); /* Wash & Fold */
  }
  
  .services li:nth-child(2) {
    background-color:var(--secondary-color); /* Dry Cleaning */
  }
  
  .services li:nth-child(3) {
    background-color:var(--primary-color); /* Ironing & Pressing */
  }
  
  .services li i {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .services li h3 {
    color: #fff;
  }
  
  .services li p {
    color: #fff;
  }
  
 /* Testimonial Section */
.testimonial {
    --primary-color: #008290;
    --secondary-color: #ff8800;
  }

.testimonials {
    background-color: #158f9ccb; /* light gray background */
    padding: 20px;
  }
  
  .testimonials h2 {
    margin-bottom: 20px;
    color: #333; /* dark gray title */
  }
  
  .testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .testimonial {
    width: 30%;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd; /* light gray border */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: animate__fadeInUp 2s;
    background-color: #fff; /* white background */
  }
  
  .testimonial blockquote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
    color: #fff; /* dark gray text */
    border-left: 5px solid #fff; /* green border */
    padding-left: 20px;
  }
  
  .testimonial cite {
    font-size: 14px;
    color: #fff; /* dark gray text */
  }
  
  .testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff; /* white border */
  }
  
  .testimonial:nth-child(1) {
    background-color: var(--secondary-color); /* soft blue background */
  }
  
  .testimonial:nth-child(2) {
    background-color: var(--primary-color); /* warm orange background */
  }
  
  .testimonial:nth-child(3) {
    background-color: var(--secondary-color); /* muted green background */
  } 

  /* Contact Section */


  
  :root {
    --primary-color: #008290;
    --secondary-color: #ff8800;
  }
  
  .contact {
    background-color:#e48619;
    padding: 20px;
    color: var(--secondary-color);
  }
  
  .contact h2 {
    margin-bottom: 20px;
    color: #333;
  }
  
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contact-method {
    width: 30%;
    margin: 20px;
    padding: 20px;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #14545b;
    color: #fff;
  }
  
  .contact-method i {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary-color);
  }
  
  .contact-method p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .contact-form {
    width: 50%;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f7f7f7;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
  }
  
  .form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
  }
  
  .btn-primary {
    background-color: #14545b;
    color: var(--secondary-color);
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
  }

  