* {
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  background-color: #f4f4f4;
  color: maroon;
  margin: 0;
  padding: 0;
}


/* HEADER STYLES - DESKTOP & MOBILE */

header {
  background-color: #F4A300;
  /* You can change this */
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 999;
  font-family: 'Open Sans', Arial, sans-serif;;
}

.logo img {
  width: 150px;
  vertical-align: middle;
}

/* nav {
  position: relative;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
} */

nav {
  margin-top: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: #FFE5B4;
  /* font-weight: bold; */
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav ul li a:hover {
  color: #b83030;
  text-decoration: none;
}


/* MENU TOGGLE BUTTON (HIDDEN ON DESKTOP) */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background-color: white;
  color: #F4A300;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* MOBILE STYLES */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
    background-color: white;
    color: #F4A300;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.4rem;
    width: auto;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  nav {
    width: 100%;
    position: relative;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    background-color: #F4A300;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 1000;
  }

  nav ul.show {
    max-height: 500px;
  }

  nav ul li {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  nav ul li a {
    display: block;
    width: 100%;
    color: #FFE5B4;
    font-size: 1.1rem;
    text-decoration: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  nav ul li:last-child {
    border-bottom: none;
  }
}

main {
  padding: 40px;
  text-align: center;
}

.welcome-banner {
  background: url('WhatsApp\ Image\ 2025-07-06\ at\ 23.29.03_8e553f30.jpg') center/cover no-repeat;
  padding: 60px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.welcome-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* dark overlay */
  z-index: 1;
}

.welcome-banner h1,
.welcome-banner p {
  position: relative;
  z-index: 2;
}

.welcome-banner h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.welcome-banner h1 span {
  color: maroon;
}

.welcome-banner p {
  font-size: 18px;
}

.featured-products .cta-button {
  background-color: #F4A300;
  color: #FFE5B4;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}


.call-to-action .cta-button {
  background-color: #F4A300;
  color: #FFE5B4;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.cta-button:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
  color: #b83030;
}

.testimonial-heading {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0;
}

.testimonial-heading h3 {
  font-size: 24px;
  color: #D1B48C;
  margin-bottom: 5px;
}

.testimonial-heading p {
  font-size: 16px;
  color: antiquewhite;
  margin: 0;
}


.testimonial-slider {
  max-width: 700px;
  margin: 20px auto;
  position: relative;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-height: 180px;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  font-style: italic;
  font-size: 18px;
  color: #333;
  text-align: center;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.testimonial h4 {
  margin-top: 15px;
  font-style: normal;
  font-weight: bold;
  color: #444;
}

.review-section {
  background-color: #fff3f3; /* light pink - contrasts with maroon */
  padding: 2rem;
  font-family: 'Georgia', serif;
  border-top: 4px solid maroon;
}

.review-heading {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 28px;
  color: maroon;
  text-align: center;
  margin-bottom: 0;
}
.review-subheading{
  text-decoration: underline;
 font-family: Georgia, 'Times New Roman', Times, serif;
 font-size: 18px;
  color: maroon;
  text-align: center;
  margin-top: 20px;
} 

#review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

#review-form input, #review-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: 2px solid #D1B48C;
  font-family: 'Open Sans', sans-serif;
}

#review-form button {
  padding: 10px;
  font-size: medium;
  background-color: maroon;
  color: #D1B48C;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#review-form button:hover {
  background-color: #b30000;
}

#response-msg {
  text-align: center;
  margin-top: 10px;
  color: green;
}

.custom-footer {
  background-color: #2c2c2c;
  color: white;
  padding: 30px 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  text-decoration: none;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: auto;
  text-decoration: none;
}

.footer-left {
  flex: 1;
  min-width: 150px;
  margin-bottom: 20px;
  text-decoration: none; 

}

.faq-link {
  color: #FFE5B4;
  /* font-weight: bold; */
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-link:hover {
  color: #b83030;
  text-decoration: underline !important;
}

.footer-center {
  flex: 2;
  text-align: center;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-center p {
  margin: 5px 0;
  font-size: 0.95rem;
  text-decoration: none;
}

.social-media {
  margin-top: 10px;
}

.social-media a {
  margin: 0 8px;
}

.social-media img {
  height: 40px;
  width: 40px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.social-media img:hover {
  transform: scale(1.1);
}

/* Apply full height layout */
body,
html {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Ensure main content expands to fill space */
main {
  flex: 1;
}

/* Footer styling */
footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
}


/* Mobile responsiveness */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    margin-bottom: 15px;
    text-align: center;
  }
}


/* .highlight {
    color: rgb(188, 30, 30);
    /* Sets the text color to red */
/* font-weight: bold; 
    /* Makes it bold for better visibility (optional) */
/* } */

.contacts{
  font-family: sans-serif, 'Times New Roman', Times, serif;
}
.services-box {
  background: linear-gradient(135deg, #ffffff10, #f26522aa);
  /* semi-transparent futuristic gradient */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  /* padding: 40px 20px; */
  max-width: 800px;
  /* margin: 40px auto 20px auto; */
  margin: 0px 40px 20px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 600px) {
  .services-box {
    margin: 20px auto 40px auto;
    text-align: center;

  }
}
@media screen and (min-width: 600px) {
  .services-box {
    margin: 0px auto 20px auto;
    text-align: center;
    border: 2px solid whitesmoke;

  }
}

.services-box:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.about-container {
  max-width: 600px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.85);
  /* ✅ Soft white bg for readability */
  padding: 30px;
  border-radius: 10px;

}


.about-contain {
  color: #D1B48C;
  max-width: 600px;
  margin: auto;
  background-color: #7B0005;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid black;
}

.highlight {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: maroon;
  font-weight: 800;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  font-family: 'Times New Roman', Times, serif;
  letter-spacing: 1.5px;
  padding-bottom: 8px;
}



.blog-card {
  background-color: #7B0005;
  /* Light background for contrast */
  border: 1px solid #ddd;
  /* Border around each card */
  border-radius: 8px;
  /* Smooth corners */
  padding: 20px;
  margin: 20px 0;
  /* Space between articles */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for depth */
  border: 1px solid black;
}

.blog h2 {
  color: #EFEDE4;
}

.blog-point {
  margin-bottom: 15px;
  /* Space between points */
}

.blog-point h3 {
  color: #D1B48C;
  /* Use the warm accent color for headings */
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.blog-point p {
  color: antiquewhite;
  /* Standard dark color for text */
  line-height: 1.5;
  /* Improved readability */
}

.chimney-types img {
  width: 200px;
}


/* Chimney Types Section */

.chimney-types {
  padding: 20px;
  background-color: #f9f9f9;
}

.chimney-types h2 {
  text-align: center;
  color: #333;
  font-size: 2rem;
  margin-bottom: 20px;
}

.chimney-card {
  position: relative;
  /* ✅ ADD THIS LINE */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #7B0005;
  border: 2px solid whitesmoke;
  border-radius: 8px;
  margin: 20px 0;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  gap: 15px;
  max-width: 100%;
  flex-wrap: wrap;
}


.ribbon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff5722;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#new-arrival {
  position: absolute;
  top: 10px;
  left: 10px;
  /* You can use right: 10px if you want it on the right */
  background-color: #4caf50;
  /* Green tone */
  color: white;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


.chimney-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  /* Fit full image inside the box */
  border-radius: 8px;
  border: 2px solid black;
  display: block;
  margin-right: 20px;
  background-color: #1e1e1e;
  /* Optional: improves look for transparent images */
  transition: transform 0.3s ease, filter 0.3s ease;
}
.chimney-card img:hover{
  filter: drop-shadow(0 0 10px rgba(255, 215, 100, 0.6)) /* warm gold */
          drop-shadow(0 0 20px rgba(255, 180, 60, 0.4));  /* soft gold-orange */
  /* transition: filter 0.3s ease-in-out; */
   transform: scale(1.03);
}




.chimney-details {
  flex: 1;
  /* Ensures the right section takes the available space */
}

.chimney-details h3 {
  color: #D1B48C;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.chimney-details ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.chimney-details ul li {
  color: antiquewhite;
  margin: 5px 0;
  font-size: 1rem;
}

@media screen and (max-width: 600px) {
  .chimney-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .chimney-card img {
    margin: 0 0 10px 0;
  }

  .chimney-details h3 {
    font-size: 1.2rem;
    word-wrap: break-word;
  }
}

/* .about-contain.contact{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background: linear-gradient(145deg, #fceae8, #fff6f3);
} */


.about-contain {
  background-color: #7c0000; /* Deep maroon */
  color: #f5e5c8;
  padding: 10px 20px;
  border-radius: 15px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Optional soft shadow */
}


.insta-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.insta-card {
  background: #ED244E;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  text-align: center;
  border:1px solid black;
}

.insta-subtext {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.insta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.insta-logo {
  width: 60px;
  height: 60px;
  border-radius: 15px;
}

.insta-text h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.insta-text p {
  margin: 4px 0 0;
  font-size: 16px;
  color: #666;
}

.insta-btn {
  background: #e1306c;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.insta-btn:hover {
  background: #c1275c;
  transform: scale(1.05);
}

/* 📱 Mobile responsiveness */
@media (max-width: 450px) {
  .insta-card {
    padding: 25px 20px;
  }

  .insta-logo {
    width: 50px;
    height: 50px;
  }

  .insta-text h2 {
    font-size: 18px;
  }

  .insta-subtext {
    font-size: 15px;
  }

  .insta-btn {
    padding: 10px 20px;
  }
}