* {
  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;
}

/* MARQUEE */
.certifications {
  background: white;
  padding: 20px;
}
.certifications img {
  height: 60px;
  margin: 0 40px;
}

/* 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%;
  }
}


/* QUALITY ASSURANCE */
.quality {
  background-color: #e3f5ff;
  padding: 40px 0;
  text-align: center;
}

.quality h3 {
  font-size: 1.9rem;
  color: #00334e;
  margin-bottom: 25px;
  font-weight: 600;
}

marquee img {
  height: 95px;
  width: 130px;
  margin: 0 30px;
  border-radius: 12px;
  border: 2px solid #00a8e8;
  padding: 5px;
  background: white;
}


/* ================= 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: 0 auto 25px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* FEATURES & APPLICATIONS */
.desc-lists {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  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: 16px;
  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;
}

/* reverse class = image left, text right */
.product-section.reverse .product-container {
  flex-direction: row;
}

.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;
}


/* ================= WHY CHOOSE SECTION ================= */
.why-choose {
  padding: 80px 20px;
  background-color: #ffffff;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* IMAGE */
.why-image {
  flex: 1;
}

.why-image img {
  width: 100%;
  max-width: 480px;
  display: block;
}

/* CONTENT */
.why-content {
  flex: 1;
}

.why-content h2 {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #222;
  margin-bottom: 12px;
}

/* GREEN LINE */
.green-underline {
  display: block;
  width: 55px;
  height: 4px;
  background-color: #7ac143;
  margin-bottom: 30px;
}

/* TEXT */
.why-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-block;

  /* margin-top: 30px; */

  background-color: #2b2e83;
  color: #ffffff;

  padding: 12px 24px;     /* 👈 height & width same as image */
  border-radius: 4px;    /* 👈 slight curve (NOT pill) */

  font-size: 14px;
  font-weight: 500;

  text-decoration: none;
  /* border: none; */
  cursor: pointer;

  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #1f2266;
}


/* ================= 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);
}
