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

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Removes horizontal scrollbar */
    font-family:'Merriweather', serif;
}
#contactFormSection{
  scroll-margin-top: 150px !important; 
}

/* ===== HERO ===== */
.hero{
    background:url("/images/outdoor-application-bg.jpg") center/cover no-repeat;
    height: 850px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
}


    .hero-content{
    background:#f2f2f2;
    padding:35px 45px;
    border-radius:22px;
    text-align:center;
    max-width:600px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
   


.hero h1{
    font-family: 'Merriweather', serif;
     /* Adding shadow */
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4); /* Shadow applied to each letter */
    font-size: 60px; /* Slightly reduced size */
    font-weight: 900;
    margin-top: -10px; /* Adjusted margin for better alignment */
    line-height: 1.2; /* Adjust line height for better spacing */
}

.hero button {
    font-family:'Merriweather', serif;
    padding: 16px 20px;
    font-size: 30px;
    background: #D9D9D9;
    margin-top:40px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    border: none;
    border-radius: 50px; /* ✔ pill shape */
    transition: all 0.3s ease;
}

/* Responsive Design for Tablets and Below */
@media (max-width: 1024px) {
    .hero {
        height: 700px; /* Adjust height for tablets */
    }

    .hero h1 {
        font-size: 50px; /* Adjust font size for tablets */
    }

    .hero button {
        font-size: 24px; /* Adjust button size for tablets */
        padding: 14px 18px;
    }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .hero {
        height: 500px; /* Adjust height for mobile */
    }

    .hero h1 {
        font-size: 35px; /* Adjust font size for mobile */
        line-height: 1.3; /* Slightly adjust line height for mobile */
        margin-top:40px; /* Remove negative margin */
    }

    .hero button {
        font-size: 20px; /* Adjust button size for mobile */
        padding: 12px 16px;
    }
}

/* Responsive Design for Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        height: 400px; /* Adjust height for very small screens */
    }

    .hero h1 {
        font-size: 28px; /* Adjust font size for small mobile screens */
        line-height: 1.4; /* Adjust line height for better readability */
    }

    .hero button {
        font-size: 18px; /* Adjust button size for small screens */
        padding: 12px 14px;
    }
}
/* Icon Navigation Bar */
.icon-menu {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 22px 0;
}

.icon-menu-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ITEM */
.menu-item {
  text-align: center;
  cursor: pointer;
}

/* ICON */
.icon-circle {
  width: 52px;
  height: 52px;
  background: #2f3947;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.icon-circle i {
  color: #fff;
  font-size: 16px;
}

/* TEXT */
.menu-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-weight:700;
  color: #000;
}

/* HOVER EFFECT */
.menu-item:hover .icon-circle {
  background: #000;
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
@media (max-width: 768px) {
  .icon-menu-inner {
    flex-wrap: wrap;
    flex-direction:row;
    gap:20px;
    justify-content: center;
    font-size:14px;
  }
  .menu-item h4 {
    font-size:12px;
  }
 
}
}
.info-section {
  padding: 40px 20px;
  background-color: #f5f5f5; /* light grey background */
  display: flex;
  justify-content: center;
}

.info-box {
  max-width: 900px;
  text-align: center;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  /* background: #ffffff; */
  padding: 20px 30px;
  border-radius: 4px;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.05); */
}

.info-box p {
  margin-bottom: 15px;
}

.info-box p:last-child {
  margin-bottom: 0;
}
/* Section */
.feature-section {
  background: #f3f3f3;
  padding: 60px 20px;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* Feature Layout */
.feature-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

/* Image */
.feature-img img {
  width: 100%;
  max-width: 320px;
  border-radius: 6px;
  display: block;
}

/* Content */
.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
}

.feature-content p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* =========================
   Tablet (≤1024px)
========================= */
@media (max-width: 1024px) {
  .feature-item {
    gap: 25px;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

/* =========================
   Mobile (≤768px)
========================= */
@media (max-width: 768px) {

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-img img {
    max-width: 100%;
  }

  .feature-content h3 {
    font-size: 20px;
  }

  .section-header h2 {
    font-size: 24px;
  }
}

/* =========================
   Small Mobile (≤480px)
========================= */
@media (max-width: 480px) {

  .feature-section {
    padding: 40px 15px;
  }

  .section-header p {
    font-size: 14px;
  }

  .feature-content p {
    font-size: 14px;
  }
}
/* Section */
.fabric-section {
  background: #f3f3f3;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

/* Container */
.fabric-container {
  max-width: 900px;
  text-align: center;
}

/* Heading */
.fabric-container h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Paragraph */
.fabric-container p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* =========================
   Tablet (≤1024px)
========================= */
@media (max-width: 1024px) {
  .fabric-container h2 {
    font-size: 26px;
  }
}

/* =========================
   Mobile (≤768px)
========================= */
@media (max-width: 768px) {
  .fabric-section {
    padding: 40px 15px;
  }

  .fabric-container h2 {
    font-size: 22px;
  }

  .fabric-container p {
    font-size: 14px;
  }
}

/* =========================
   Small Mobile (≤480px)
========================= */
@media (max-width: 480px) {
  .fabric-container h2 {
    font-size: 20px;
  }

  .fabric-container p {
    font-size: 13.5px;
  }
}