/* Global Styles for SEO WordPress Training */
html, body {
  width: 100%;
  overflow-x: hidden;
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #00365f;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Navigation */
.main-header {
  width: 100%;
  background-color: #ffffff;
  color: #00365f;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px;
  position: relative;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 20px;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #00365f;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #009c3c;
}

/* CTA Buttons */
.cta-btn {
  background: #009c3c;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #007a2f;
  transform: translateY(-2px);
}

/* Section Layouts */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
  scroll-margin-top: 80px;
}

section:not(:last-child) {
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #00365f, #009c3c);
  color: white;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 15px;
}

/* Grids */
.features .grid,
.benefits .grid,
.testimonials .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.features div,
.benefits div {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features div:hover,
.benefits div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Bio Section */
.bio img {
  width: 120px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* Testimonials */
.testimonials .grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonials div {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  font-style: italic;
  position: relative;
}

.testimonials strong {
  display: block;
  margin-top: 15px;
  font-style: normal;
  color: #00365f;
}

/* FAQ Section */
.faqs .faq {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: left;
}

.faqs h3 {
  color: #00365f;
  margin-bottom: 10px;
}

.faqs p {
  color: #333;
}

/* Footer */
.main-footer {
  background-color: #00365f;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  margin-top: 60px;
}

/* Futuristic Hamburger Icon (Clean Version) */
.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: 0.4s ease;
}

/* Animate to X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    border: 1px solid #e0e0e0;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
    color: #00365f;
  }

  .nav-links a:hover {
    color: #009c3c;
  }

  .cta-btn {
    font-size: 1em;
    padding: 10px 20px;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }
}

@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
