.elementor-2378 .elementor-element.elementor-element-7b0247e{--display:flex;--margin-top:-81px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2378 .elementor-element.elementor-element-3584486{--display:flex;--margin-top:121px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2378 .elementor-element.elementor-element-26e4fd0{text-align:center;}.elementor-2378 .elementor-element.elementor-element-26e4fd0 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:15px;font-weight:500;color:#000000;}@media(max-width:767px){.elementor-2378 .elementor-element.elementor-element-7b0247e{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-bcfa653 *//* Google Fonts se Roboto aur Merriweather fonts ko import karen */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Merriweather:wght@400;700&display=swap');

.accordion {
  background-color: #f1f1f1;
  color: #444;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  font-size: 15px;
  font-family: 'Roboto', sans-serif; /* Retained for general text */
  font-weight: 300;
  margin-top: 10px;
  transition: 0.4s;
}

.accordion:after {
  content: '\002B'; /* Plus sign */
  font-size: 20px;
  float: right;
}

.active:after {
  content: "\2212"; /* Minus sign */
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: #f9f9f9;
  overflow: hidden;
  font-size: 15px;
  font-family: 'Roboto', sans-serif; /* Retained for general text */
  font-weight: 300;
}

.heading {
  color: #fff;
  font-family: 'Merriweather', serif; /* Heading font-family updated */
}

/* General Section Styling */
.lake-section {
  margin: 0 auto;
  padding: 0;
  color: #333;
  background: #F9F9F9; /* Light gray background for contrast */
}

/* Hero Banner */
.hero-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: #000;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  transition: transform 0.5s ease-in-out;
}

.hero-banner:hover img {
  transform: scale(1.05);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 30px;
  border-radius: 5px;
}

.hero-text h1 {
  font-family: 'Merriweather', serif; /* Heading font-family updated */
  text-transform: uppercase;
  font-size: 3rem;
  color: #FFF;
  margin-bottom: 10px;
  transition: color 0.3s ease-in-out;
}

.hero-text p {
  font-family: 'Roboto', sans-serif; /* Retained for general text */
  font-size: 1.2rem;
  color: #E5E4E2;
}

.hero-banner:hover .hero-text h1 {
  color: #D3D3D3; /* Lighter platinum hover effect */
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-image {
  flex: 1;
  min-width: 300px;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.content-image img:hover {
  transform: scale(1.03);
}

.content-text {
  flex: 2;
  padding: 20px;
  background: #FFF;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content-text h2, .content-text h3 {
  font-family: 'Merriweather', serif; /* Heading font-family updated */
  margin-bottom: 10px;
  color: #00000;
  font-size: 50px;
  text-transform: uppercase;
}

.content-text p, .content-text ul {
  font-family: 'Roboto', sans-serif; /* Retained for general text */
  color: #000;
  font-size: 15px;
  margin-bottom: 10px;
}

.content-text ul {
  list-style-type: disc;
  margin-left: 20px;
}

.content-text a.cta-button {
  display: inline-block;
  background-color: #2c2c2c; /* Black button */
  color: #E5E4E2; /* Platinum text */
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.content-text a.cta-button:hover {
  background-color: #555;
  color: #FFF;
  transform: scale(1.05);
}

/* Style for the Read More button */
.read-more-btn {
  font-family: 'Roboto', sans-serif; /* Retained for general text */
  background-color: black;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #333;
}

button {
  font-family: 'Roboto', sans-serif; /* Retained for general text */
  background-color: #333; /* Primary button color */
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

button:hover {
  background-color: #fff;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  color: #333;
  transform: translateY(-2px);
}

button:active {
  background-color: #01579b;
  transform: translateY(2px);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

/* For smaller screens */
@media (max-width: 768px) {
    .hero-banner {
        height: 300px; /* Reduce height on mobile */
    }
}

/* For extra small screens */
@media (max-width: 480px) {
    .hero-banner {
        height: 250px; /* Reduce further on very small screens */
    }
}
  /* Mobile responsive adjustments */
  @media (max-width: 768px) {
    .hero-text h1 {
      font-size: 1.5rem;
    }

    .content-wrapper {
      flex-direction: column;
      align-items: center;
    }

    .content-image {
      width: 80%;
      margin-right: 0;
      margin-bottom: 20px;
    }

    .content-text {
      width: 80%;
    }

    .content-text h2 {
      font-size: 1.5rem;
    }

    .content-text p {
      font-size: 0.95rem;
    }

    .content-text button {
      padding: 8px 12px;
    }
  }

  @media (max-width: 480px) {
    .hero-text h1 {
      font-size: 1.2rem;
    }

    .content-text h2 {
      font-size: 1.2rem;
    }

    .content-text p {
      font-size: 0.9rem;
    }

    .content-text button {
      padding: 6px 10px;
    }
  }/* End custom CSS */