@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

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

:root {
  --primary-text-color: #ffffff;
  --secondary-text-color: #9b96b0;
  --padding-inline-section: 15px;
}

body {
  font-family: "poppins", sans-serif;
   background: #0a0a0a;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8rem;
  color: var(--secondary-text-color);
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--primary-text-color);
  display: inline-block;
}

ul {
  list-style: none;
}

/* utility */
.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding: var(--padding-inline-section);
}

/* Header */
.header {
  width: 100%;
  background-color: black;
  position: sticky;
  top: 0;
  left: 0;
  border-bottom: white 1px;
  z-index: 1000;
}

.logo {
  width: 3rem;
  border-radius: 50%;
}

.nav {
  margin-right: 28px;
}

.nav-links {
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links .active {
  color: #d66c2a;
}

.get-started {
  font-size: 14px;
  background: linear-gradient(to right, #aa6642, #834d2b);
  padding: 8px 28px;
  border-radius: 23px;
  transition: all 0.2s;
}

.get-started:hover {
  background: linear-gradient(90deg, #c87c50, #a8653e);
}

.get-started:active {
  background: linear-gradient(90deg, #a8653e, #8b4d31);
  transform: scale(0.95);
}

.hamburger {
  display: none;
}

@media only screen and (max-width: 909px) {
  .header {
    background-color: #a8653e;
  }

  .nav {
    position: absolute;
    left: 0;
    top: 100%;
    flex-direction: column;
    width: 100%;
    transform: translate(-100%);
    transition: all 0.2s;
  }

  .active {
    transform: translatex(0);
  }

  .nav-links {
    flex-direction: column;
    background-color: black;
    width: 100%;
    padding-block: 20px;
  }

  .hamburger {
    display: block;
    color: var(--primary-text-color);
    font-size: 28px;
    margin-right: 18px;
  }

  .get-started {
    display: none;
  }
}



/* hero-section */
.hero-blog-section {
  background-image: url('https://images.unsplash.com/photo-1488190211105-8b0e65b80b4e?w=1600&auto=format&fit=crop&q=60');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.hero-blog-section .overlay {
  background-color: rgba(0, 0, 0, 0.7); /* dark overlay */
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  border-radius: 8px;
}

.blog-tagline {
  color: #f97316;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.blog-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #f97316;
}

.blog-description {
  color: #e2e2e2;
  font-size: 1rem;
  line-height: 1.6;
}


  .dark-theme {
    background-color: #0e0e0e;
    color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
  }

  .blog-label {
    color: #f97316;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .blog-title {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #ffffff;
  }

  .blog-subtitle {
    font-size: 1rem;
    color: #c4c4c4;
    max-width: 700px;
    margin: 0 auto 40px;
  }

  .blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .blog-card {
    background: #1a1a1a;
    color: #eee;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .card-content {
    padding: 20px;
    text-align: left;
  }

  .card-content h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #fff;
  }

  .card-content p {
    font-size: 0.95rem;
    color: #bbb;
  }

  .blog-date {
    font-size: 0.85rem;
    color: #888;
  }

  .new-tag {
    color: #f97316;
    font-weight: bold;
  }

  .blog-footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #ccc;
  }

.read-more-btn {
  background-color: #f97316;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #ea580c;
}



    /* Footer */
    .footer {
      background-color: black;
      color: #4b5563;
      padding: 40px 0;
    }

    .wrapper {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding-bottom: 20px;
      border-bottom: 1px solid #e5e7eb;
    }

    .brand {
      width: 20%;
      text-align: center;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-logo img {
      text-align: center;
      border-radius: 50%;
      width: 40px;
      height: 40px;
    }

    .brand-name {
      font-size: 25px;
      font-weight: bold;
      display: block;
      color: var(--primary-text-color);
      margin-top: 5px;
    }

    .brand-description {
      font-size: 14px;
      color: var(--secondary-text-color);
    }

    .footer-links {
      display: flex;
      width: 75%;
      justify-content: space-between;
    }

    .column {
      width: 22%;
    }

    .column h3 {
      font-size: 20px;
      font-weight: bold;
      color: var(--primary-text-color);
      margin-bottom: 10px;
    }

    .column ul {
      list-style: none;
      padding: 0;
    }

    .column ul li {
      margin-bottom: 8px;
    }

    .column ul li a {
      text-decoration: none;
      color: white;
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
    }

    .footer-bottom p {
      font-size: 14px;
      color: white;
    }

    .footer-bottom a {
      text-decoration: none;
      color: white;
      transition: color 0.3s;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      color: white;
      font-size: 20px;
      transition: transform 0.3s;
    }

    .social-icons a:hover {
      transform: scale(1.1);
      color: #d66c2a;
    }

    /* Media query for footer */
    @media screen and (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .results-section {
        margin: 5px;
      }

      .brand {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
      }

      .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
      }

      .brand-name {
        margin-top: 0;
        font-size: 20px;
      }

      .brand-description {
        max-width: 80%;
        text-align: center;
        margin-top: 8px;
      }

      .footer-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
      }

      .column {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
      }
    }
