/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f0f4f8, #e1e8ed);
  color: #333;
  line-height: 1.6;
  padding-top: 90px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.hero {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to right, #2c3e50, #34495e), url('https://www.transparenttextures.com/patterns/real-dirt-3.png');
  color: white;
  padding: 0px 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  background-size: cover;
  background-blend-mode: overlay;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 15 40px;
  position: relative;
  flex-wrap: wrap;
}

.logo-subtext {
  font-size: 14px;
  color: white;
  margin-top: -30px;
  padding-left: 10px;
}

.rotating-words {
  font-size: 14px;
  margin-top: 2px;
  color: #f1c40f;
  padding-left: 10px;
}

.dots {
  margin-top: 4px;
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
}
.dot.red { background-color: red; }
.dot.yellow { background-color: yellow; }
.dot.green { background-color: limegreen; }

nav.desktop-nav {
  display: flex;
  gap: 15px;
}

nav.desktop-nav a,
.mobile-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav.desktop-nav a:hover,
.mobile-nav a:hover {
  text-decoration: underline;
}

.burger {
  display: none;
  font-size: 28px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #2c3e50;
  position: absolute;
  top: 100%;
  right: 20px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-nav a {
  margin: 10px 0;
}

.hidden {
  display: none !important;
}

/* Hero Section */
.hero-section {
  background-color: #34495e;
  color: white;
  padding: 60px 20px;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  padding: 12px 30px;
  background-color: #f1c40f;
  color: #2c3e50;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #e0b60c;
  transform: scale(1.05);
}

/* Intro Section */
.intro {
  padding: 60px 20px;
  background: #fff;
  max-width: 1260px;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #2c3e50;
}

.intro .subheading {
  font-size: 1rem;
  margin-bottom: 40px;
  text-align: center;
  color: #555;
}

.grid-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-tile {
  display: flex;
  gap: 20px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  align-items: center;
  transition: transform 0.3s ease;
}

.feature-tile:hover {
  transform: translateY(-5px);
}

.feature-tile img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.feature-text h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.feature-text p {
  color: #555;
}

.feature-tile:nth-child(odd) {
  flex-direction: row;
}

.feature-tile:nth-child(even) {
  flex-direction: row-reverse;
}

/* Footer */
.footer {
  background: linear-gradient(to right, #2c3e50, #34495e);
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 20px;
}

.footer-contact-tile {
  max-width: 600px;
  margin: 0 auto 20px;
}

.contact-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #f1c40f;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #e0b60c;
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive */
@media (min-width: 768px) {
  .grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
  }
  .feature-tile {
    max-width: 100%;
  }
  .mobile-nav {
    display: none !important;
  }
  .burger {
    display: none !important;
  }
}

@media (max-width: 767px) {
  nav.desktop-nav {
    display: none;
  }
  .burger {
    display: block;
  }
  .mobile-nav {
    display: flex;
  }
}

/* ? New Bar Below Dots */
.dots::after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background-color: #e0a800;
  margin-top: 8px;
  border-radius: 4px;
}
/* New structure to place the gold bar directly under the dots */
.dots-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 4px;
}

.dots-bar {
  width: 70px; /* or use 100% if dots grow */
  height: 20px;
  background-color: #e0a800;
  margin-top: 6px;
  border-radius: 4px;
}

