* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 /* font-family: Arial, sans-serif;*/
}

body {
  background: #f4f4f4;
  color: #222;
}

/* SLIDER */
.slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slides {
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}





/* make the logo big and responsive */
.slide-logo {
  position: absolute;
  top: 28px;
  left: 40px;

  width: clamp(220px, 25vw, 220px);
  height: auto;

  z-index: 20;
}



.overlay {
  position: relative;
}


@media (min-width: 1400px) {
  .slide-logo {
    width: 480px;
  }
}



.overlay {
  background: rgba(0,0,0,0.55);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
  color: #eee;
}

.overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1.2rem;
}

/* DOT NAV */
.nav {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 12px;
  width: 12px;
  background: #aaa;
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* FORM SECTION */
.form-section {
  padding: 60px 20px;
  background: #e0e0e0;
  display: flex;
  justify-content: center;
}

.form-box {
  background: #fff;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.form-box h2 {
  margin-bottom: 10px;
}

.form-box p {
  margin-bottom: 20px;
  color: #666;
}

form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  width: 100%;
  padding: 14px;
  background: #555;
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

form button:hover {
  background: #333;
}

.footer-logo {
  height: 20px;
}

footer {
  text-align: center;
  padding: 15px;
  background: #d6d6d6;
  font-size: 0.85rem;
}

.social-icon {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  background-color: #dc3545 !important;
  color: #fff !important;
  transform: scale(1.08);
}

.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.hero-title span {
  font-weight: 500;
  opacity: 0.9;
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.95rem, 3.5vw, 1.2rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 90%;
}
.hero-content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 3rem;
  }
}
