* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
  background: #003a5c;
  color: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}
.signup-btn {
  background: #00b3ff;
  padding: 6px 15px;
  border-radius: 20px;
}

/* ENQUIRY */
.enquiry-section {
  padding: 50px;
  background: #f3fbff;
}
.enquiry-section h1 {
  text-align: center;
  margin-bottom: 30px;
}
.enquiry-container {
  display: flex;
  gap: 40px;
  align-items: center;
}
.enquiry-image img {
  width: 350px;
}
.enquiry-form {
  width: 100%;
}
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
}
.enquiry-form button {
  background: #0099ff;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
}


/* DESCRIPTION */
.description {
  padding: 50px;
  text-align: center;
}

/* INFO SECTIONS */
.info-section {
  display: flex;
  align-items: center;
  padding: 70px;
  gap: 50px;
}
.info-section img {
  width: 400px;
}
.light-bg {
  background: #f2f2f2;
}
.dark-bg {
  background: #ffffff;
}
.reverse {
  flex-direction: row-reverse;
}
.read-btn {
  display: inline-block;
  margin-top: 15px;
  background: #2f2f8f;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: #003a5c;
  color: white;
  text-align: center;
  padding: 15px;
}

/* ===== Enquiry Section ===== */
.enquiry-section {
  background-color: #f4fbff;   /* header ke theme se match */
  padding: 60px 0;
}

.enquiry-section h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #222;
}

/* ===== Layout ===== */
.enquiry-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* ===== Image (LEFT) ===== */
.enquiry-image {
  flex: 1.6;   /* image ko zyada space */
}

.enquiry-image img {
  width: 100%;
  max-width: 750px;   /* image big */
  height: auto;
  border-radius: 10px;
  display: block;
}

/* ===== Form (RIGHT) ===== */
.enquiry-form {
  flex: 0.6;   /* form chhota */
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ===== Form Inputs ===== */
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 11px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.enquiry-form textarea {
  height: 100px;
  resize: none;
}

/* ===== Button ===== */
.enquiry-form button {
  background-color: #007bff;
  color: #fff;
  padding: 11px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s;
}

.enquiry-form button:hover {
  background-color: #0056b3;
}

/* ===== Responsive (Mobile) ===== */
@media (max-width: 768px) {
  .enquiry-container {
    flex-direction: column;
    text-align: center;
  }

  .enquiry-image img {
    max-width: 320px;
    margin: auto;
  }

  .enquiry-form {
    width: 100%;
  }
}


/* ================= DESCRIPTION SECTION ================= */
.description {
  padding: 80px 20px;
  background-color: #ffffff;
}

.desc-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Heading */
.desc-title {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.desc-underline {
  display: block;
  width: 60px;
  height: 4px;
  background-color: #7ac143;
  margin: 0 auto 40px;
}

/* Paragraph text */
.desc-text {
  max-width: 1000px;
  margin-bottom: 25px;
  font-size: 18.5px;
  line-height: 1.8;
  color: #555;
  text-align: left;
}


.desc-box {
  flex: 1;
}

.desc-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.desc-box h3::after {
  content: "";
  width: 35px;
  height: 3px;
  background-color: #7ac143;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.desc-box ul {
  padding-left: 18px;
}

.desc-box ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .desc-lists {
    flex-direction: column;
    gap: 40px;
  }

  .desc-title {
    font-size: 26px;
  }
}


/* ===== PRODUCT SECTIONS ===== */

.product-section {
  padding: 100px 0;
  background: #f5f5f5;
}

.product-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Alternating layout */
.product-section.reverse .product-container {
  flex-direction: row-reverse;
}

/* Text */
.product-text {
  flex: 1;
}

.product-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.product-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #2b2f8f;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
}

/* Image */
.product-image {
  flex: 1;
  text-align: center;
}

.product-image img {
  width: 100%;
  max-width: 420px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    text-align: center;
  }

  .product-section.reverse .product-container {
    flex-direction: column;
  }
}

.product-section {
  padding: 90px 0;
}

/* Light grey like reference site */
.bg-grey {
  background-color: #f2f2f2;
}

/* Pure white */
.bg-white {
  background-color: #ffffff;
}

.product-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}



.product-image img {
  width: 100%;
  max-width: 420px;
}

.product-content {
  max-width: 600px;
}

.product-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.product-content p {
  line-height: 1.7;
  color: #444;
}

.read-more {
  margin-top: 30px;
  padding: 10px 22px;
  background: #2b2f9f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}




/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .green-underline {
    margin: 0 auto 25px;
  }

  .why-image img {
    margin: auto;
  }
}

.know-more-section {
  background: linear-gradient(
    180deg,
    #0f4c75 0%,
    #0b5c7a 50%,
    #053b5f 100%
  );
  padding: 85px 20px 95px;
  text-align: center;
}


.know-more-container {
  max-width: 1100px;
  margin: 0 auto;
}

.know-more-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}

.know-more-text {
  color: #ffffff;
  font-size: 17px;
  margin-bottom: 10px;
}

.know-more-subtext {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 34px;
}

/* Highlight Green (Yora style) */
.highlight {
  color: #7ed321;
  font-weight: 600;
  text-decoration: none;
}

/* CONTACT BUTTON – matched */
.contact-btn {
  display: inline-block;
  background-color: #7ed321;
  color: #0b0b0b;

  padding: 12px 36px;
  border-radius: 4px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;

  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background-color: #6bb81c;
  transform: translateY(-1px);
}

.products-section {
  padding: 60px 40px;
  background-color: #f5f5f5;
}

.products-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 🔥 3 columns */
  gap: 30px;
}

/* Product Card */
.product-card {
  background: #ffffff;
  padding: 25px 20px;
  text-align: center;

  border-radius: 4px;
  text-decoration: none;
  color: inherit;

  position: relative;
  transition: all 0.3s ease;
}

/* Green underline */
.product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 35px;
  height: 4px;
  background-color: #7ac943;
  border-radius: 10px;
}

/* Image */
.product-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

/* Product Name */
.product-card h3 {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.4px;
}

/* Hover Effect */
.product-card:hover {
  background-color: #e7e6f2;
  transform: translateY(-6px);
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-container {
    grid-template-columns: 1fr;
  }
}


.results-bar {
  max-width: 1200px;
  margin: 0 auto 30px auto;

  background-color: #f2f2f2;
  padding: 14px 20px;

  font-size: 18px;
  color: #222;

  border-radius: 2px;
}

