/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  background: #FFF4B8; /* softened yellow */
  color: #1E90FF;
}

/* =========================
   HEADER
========================= */
header {
  background: #FFE066; /* muted yellow */
  border-bottom: 4px solid #1E90FF;
  padding: 25px 0; /* slightly more header padding */
}

header .container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  height: 250px
}

header .logo h1 {
  font-size: 1.8rem;
  color: #1E90FF;
}

/* Navigation - EVEN BIGGER LINKS */
nav a {
  color: #1E90FF;
  margin-left: 35px; /* More space between big links */
  text-decoration: none;
  font-weight: 800; /* Extra bold */
  font-size: 1.5rem; /* Significantly larger */
}

nav a:hover {
  text-decoration: underline;
}

/* =========================
   HERO
========================= */
.hero {
  background: #FFF9DB; /* very light yellow */
  padding: 60px 20px;
  text-align: center;
  border-bottom: 3px solid #1E90FF;
}

.hero h2 {
  font-size: 2.5rem; /* Bigger hero title to match */
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.3rem;
}

/* =========================
   MAIN CONTAINER
========================= */
.container {
  width: 90%;
  margin: auto;
  padding: 40px 0;
}

/* =========================
   CONTENT LAYOUT
========================= */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.text-content {
  flex: 1 1 400px;
  background: #FFF9DB; /* soft card */
  padding: 30px;
  border-radius: 8px;
  border: 3px solid #1E90FF; /* Thicker border */
}

.text-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* =========================
   SLIDESHOW
========================= */
.image-slideshow {
  flex: 1 1 400px;
  position: relative;
  max-width: 600px;
  margin-bottom: 80px; /* Large gap for the massive button */
}

.slide {
  display: none;
  width: 100%;
  border-radius: 8px;
  border: 3px solid #1E90FF;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  display: block;
}

/* =========================
   DOTS
========================= */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  width: 14px;
  height: 14px;
  margin: 0 6px;
  background: #1E90FF;
  opacity: 0.35;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
}

/* =========================
   LEARN MORE BUTTON - JUMBO SIZE
========================= */
.learn-more-btn {
  position: absolute;
  bottom: -75px; 
  left: 50%;
  transform: translateX(-50%);
  padding: 18px 40px; /* Jumbo padding */
  font-size: 1.4rem;   /* Jumbo font */
  background: #1E90FF;
  color: #FFF9DB;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3); /* Added shadow for pop */
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: #1877D5;
  transform: translateX(-50%) scale(1.05); /* Slight grow effect */
}

/* =========================
   FOOTER
========================= */
footer {
  background: #FFE066;
  border-top: 4px solid #1E90FF;
  color: #1E90FF;
  text-align: center;
  padding: 30px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
  
  nav a {
    font-size: 1.2rem;
    margin-left: 0;
  }

  .learn-more-btn {
    font-size: 1.2rem;
    padding: 15px 30px;
    bottom: -70px;
  }
}

/* =========================
   ENQUIRIES/ELECTRICAL BUTTON - JUMBO SIZE
========================= */
.enquiries-btn {
  margin-left: 25px;
  padding: 18px 40px; /* Jumbo padding */
  font-size: 1.4rem;   /* Jumbo font */
  background: #1E90FF;
  color: #FFF9DB;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
  transition: all 0.3s ease;
}

.enquiries-btn:hover {
  background: #1877D5;
  transform: scale(1.05);
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  background: #FFF9DB;
  border-top: 3px solid #1E90FF;
  padding: 50px 0;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* =========================
   SMOOTH SCROLL
========================= */
html {
  scroll-behavior: smooth;
}
