/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #fff8e1;
}

/* buttons */
  .btn {
    display: inline-block;
    font-size: 1rem;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: bold;
  }

  /* Primary Button (Get Quote) */
  .btn-primary {
    background-color: #DAA520; /* Golden Yellow */
    color: #fff;
    border-color: #DAA520;
  }

  .btn-primary:hover {
    background-color: #B8860B; /* Darker Golden Yellow */
    border-color: #B8860B;
  }

  /* Secondary Button (Explore Item) */
  .btn-secondary {
    background-color: #fff;
    color: #DAA520; /* Golden Yellow */
    border-color: #DAA520;
  }

  .btn-secondary:hover {
    background-color: #DAA520;
    color: #fff;
  }

  /* Align buttons */
  .button-group {
    margin-top: 20px;
    display: flex;
    gap: 10px;
  }
 


/* Slide Show */
	.container {
           display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            /*background-color: #f9f9f9;*/
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .slideshow-container {
            flex: 1 1 45%;
            position: relative;
            max-width: 500px;
        }

        .slide {
            display: none;
        }

        .slide img {
            width: 100%;
            border-radius: 8px;
        }

        .promo-content {
            flex: 1 1 45%;
            padding: 50px;
        }

        .promo-content h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .promo-content p {
            font-size: 16px;
            line-height: 1.5;
            color: #555;
        }

        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

        .dots {
            text-align: center;
            margin-top: 10px;
            display:none;
        }

        .dots span {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
        }

        .dots .active {
            background-color: #717171;
        }

/* Header */
        .header {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            background-color: #ffcc00; /* Golden color */
            color: #444; /* Neutral dark color */
            /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
        }

        .header-logo {
            display: flex;
            align-items: center;
        }

        .header-logo img {
            /*width: 50px;*/
            height: 72px;
            margin-right: 10px;
        }

        .header-logo h1 {
            font-size: 20px;
            margin: 0;
        }

        .nav-menu {
            margin-left: auto;
            display: flex;
            gap: 20px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #444;
            font-size: 20px;
            transition: color 0.3s;
			font-weight: bold;
        }

        .nav-menu a:hover {
            color: #FFF; /* Darker shade of golden  #d4a017*/
        }

		.head-container {
            margin: auto;
            background-color: #ffcc00;
        }
        
        .header, .nav-menu a {
            max-width: 1200px;
            margin: auto;
        }

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                align-items: flex-start;
            }
	        .slideshow-container {
	            flex: auto;
	        }


            .nav-menu a {
                font-size: 14px;
            }
            
            .promo-content {
            	padding: 10px;
	        }
            .promo-content h1 {
	            font-size: 24px;
	            margin-bottom: 10px;
	            margin-top: -2px;
	        }
        }
        
		@media (min-width: 768px) and (max-width: 1024px) {
		  /* Styles for all iPads */
		  .slideshow-container {
	            flex: 1 1 45%;
	        }
	       .promo-content {
	            flex: 1 1 45%;
	            padding: 10px;
	            padding-left:20px;
        	}
		}        
        
/* Banner Section */
.banner {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff3cd; /* Light Yellow */
    color: #b8860b;
}

.banner h2 {
    font-size: 2rem;
}

.banner p {
    font-size: 1.2rem;
}

/* Products Section */
.products {
    padding: 40px 20px;
    background-color: #fff;
}

.products h2 {
    text-align: center;
    color: #b8860b;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.product-card {
    text-align: center;
    background-color: #fff8e1;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s;
}

.product-card img {
    max-width: 100%;
    border-radius: 8px;
}

.product-card h3 {
    margin: 15px 0 10px;
    color: #b8860b;
}

.product-card p {
    color: #555;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* About Section */
.about {
    padding: 40px 20px;
    background-color: #fff3cd;
    text-align: center;
}

.about h2 {
    color: #b8860b;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

/* Contact Section */
.contact {
    padding: 40px 20px;
    text-align: center;
    background-color: #ffc107;
}

.contact h2 {
    color: #333;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact input, .contact textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #b8860b;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.contact button:hover {
    background-color: #333;
}

/* Footer */

    .footer {
      background-color: #333; /* Golden Yellow #DAA520 */
      color: #fff;
      padding: 40px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
    }

    .footer .column {
      flex: 1;
      margin: 10px;
      min-width: 200px;
    }

    .footer h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      border-bottom: 2px solid #b8860b;
      display: inline-block;
    }

    .footer ul {
      list-style: none;
      padding: 0;
    }

    .footer ul li {
      margin-bottom: 10px;
    }

    .footer ul li a {
      text-decoration: none;
      color: #b8860b;
      font-size: 1rem;
      transition: color 0.3s;
    }

    .footer ul li a:hover {
      color: #f5f5dc; /* Light beige */
    }

    /* Contact Info */
    .footer .contact-info p {
      margin: 5px 0;
    }

    .footer .contact-info span {
      font-weight: bold;
    }

    /* Social Media Icons */
    .footer .social-icons {
      margin-top: 20px;
    }

    .footer .social-icons a {
      margin-right: 15px;
      color: #fff;
      font-size: 1.5rem;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer .social-icons a:hover {
      color: #f5f5dc; /* Light beige */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .footer {
        flex-direction: column;
        text-align: center;
      }

      .footer .column {
        margin-bottom: 20px;
      }
    }
    
    /* Testimonials Section Styling */
    .testimonials {
	background-color: #fff8e1;
  	color: #b8860b;
  	padding: 5px 20px;
  	text-align: center;
  	border: 2px solid #ffc107;
    }

    .testimonials h2 {
      font-size: 2rem;
      font-weight: bold;
      text-transform: capitalize;
      display: inline-block;
      /*border-bottom: 3px solid #b8860b;padding-bottom: 5px;margin-bottom: 30px;*/
    }

    .testimonial-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 2px;
      margin-bottom: 20px;
    }

    .testimonial {
      background-color: #fff;
      color: #333;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      max-width: 300px;
      text-align: left;
      position: relative;
    }

    .testimonial:before {
      content: '“';
      font-size: 3rem;
      color: #DAA520;
      position: absolute;
      top: -20px;
      left: 10px;
    }

    .testimonial:after {
      content: '”';
      font-size: 3rem;
      color: #DAA520;
      position: absolute;
      bottom: -20px;
      right: 10px;
    }

    .testimonial p {
      margin: 15px 0;
      font-size: 1rem;
      line-height: 1.5;
    }

    .client-name {
      font-weight: bold;
      color: #DAA520;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .testimonial-container {
        flex-direction: column;
        align-items: center;
      }

      .testimonial {
        max-width: 90%;
      }
    }    

 