/* Explore Section */
#explore {
  padding: 60px 90px;
  background: #fff;
  text-align: center;
}

.explore-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Text */
.explore-text {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.explore-text h2 {
  font-size: 65px;
  color: #000;
  margin-bottom: 20px;
}

.explore-text p {
  font-size: 18px;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* Button style matching Home Section */
.explore-btn {
  padding: 14px 30px;           /* match Home .btn padding */
  font-size: 1rem;               /* match Home .btn font size */
  border-radius: 30px;           /* match Home .btn radius */
  font-weight: bold;
  border: 2px solid transparent;
  display: inline-block;
  text-decoration: none;
  background-color: #2775e1;     /* Keep your blue */
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.explore-btn:hover {
  background-color: #0056b3;
  color: #fff;
}

/* Right Image */
.explore-image {
  flex: 1;
  min-width: 280px;
  text-align: right;
  
}

.explore-image img {
  width: 100%;
  max-width: 650px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  #explore {
    padding: 0 20px;
  }

  .explore-container {
    flex-direction: column;
    text-align: center;
  }

  .explore-text {
    text-align: center;
  }

  .explore-text h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .explore-text p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .explore-image {
    margin-top: 25px;
    margin-bottom: 40px;
    min-width: 20px;
  }

  .explore-btn {
    width: 80%;        /* match Home small-screen button width */
    padding: 20px 0;   /* match Home small-screen button height */
    font-size: 1rem;   /* keep consistent */
  }
}

/* Extra small screens (480px) */
@media (max-width: 480px) {
  #explore {
    padding: 0px 10px;
  }

  .explore-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .explore-text {
    text-align: center;
    flex: 1;
    min-width: 100%;
  }

  .explore-text h2 {
    font-size: 45px; /* match Home h2 for XS */
    margin-bottom: 15px;
  }

  .explore-text p {
    font-size: 14px; /* match Home p for XS */
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .explore-btn {
    width: 90%;       /* match Home XS button width */
    padding: 14px 0;  /* match Home XS button height */
    font-size: 1.3rem; /* match Home XS button font */
    border-radius: 40px; /* match Home XS button radius */
  }

  .explore-image {
    flex: 1;
    min-width: 100%;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .explore-image img {
    width: 100%;
    max-width: 100%;
  }
}
