* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}
p {
  font-family: "Inter", sans-serif;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
}

.hero {
  width: 100%;
  height: 30vh;
  background: #66affc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #66affc;
}
.hero h1 {
  position: relative;
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}

/* Custom Content Section */
.custom-content-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
}

.custom-container {
  display: flex;
  width: 100%;
  max-width: 1300px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Text Box */
.custom-text-box {
  width: 50%;
}

.custom-text-box h2 {
  font-size: 29px;
  margin-bottom: 10px;
  color: #333;
}

.custom-text-box p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

/* Image Box */
.custom-image-box {
  width: 48%;
}

.custom-image-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .custom-container {
    flex-direction: column;
    align-items: center;
    padding: 0;
    justify-content: space-around;
  }

  .custom-text-box,
  .custom-image-box {
    width: 100%;
    padding: 0px;
  }
  .custom-content-section {
    padding: 10px;
  }
}

/* next section css */

.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px; /* Outer space */
}

.blog-wrapper {
  width: 45%; /* Do products ek line mai aayenge */
  margin: 15px auto;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}

.blog-heading {
  font-size: 24px;
  text-align: center;
  margin-bottom: 15px;
}

.blog-content {
  max-height: 180px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.blog-content.expanded {
  max-height: 1000px;
}

.blog-text {
  font-size: 16px;
  color: #34495e;
  line-height: 1.6;
}

.toggle-button {
  display: block;
  width: 120px;
  margin: 15px auto;
  padding: 10px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
}

.toggle-button:hover {
  background-color: #217dbb;
}

/* Responsive: Mobile view ke liye ek hi product ek row mai dikhega */
@media screen and (max-width: 768px) {
  .blog-wrapper {
    width: 98%;
  }
}

/* third */

/* products text */

.info-section-container {
  width: 100%;
  max-width: 1250px;

  padding: 30px;

  margin: auto;
}

/* Heading Styles */
.info-heading {
  color: #0056b3;
  margin-bottom: 15px;
  font-size: 17px;
}
.info-headings {
  color: #66db66;
  margin-bottom: 15px;
  font-size: 24px;
}

/* Paragraph Styling */
.info-text {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Subheading */
.info-subheading {
  color: #0056b3;
  margin-top: 15px;
  font-size: 17px;
}

/* List Styling */
.info-list {
  padding-left: 20px;
  margin-bottom: 15px;
}

.info-list li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-section-container {
    padding: 20px;
  }
}
