    :root {
      --main-color: #ffffff;
      --accent-color: #0f9d58;
      --text-color: #333;
      --footer-bg: #0f9d58;
      --footer-text: #fff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(180deg, #f5f8fa, #e6ecf0);
      color: #050505;
      scroll-behavior: smooth;
    }

    /* Use for headings */
    h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    }

    /* Use for paragraph text */
    p, li, span, div {
    font-family: 'Roboto', sans-serif;
    }

    header {
      background-color: var(--accent-color);
      padding: 15px 20px;
    }

    header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
      color: #fff;
    }

    nav.navbar a {
      color: #fff;
      margin-left: 20px;
      text-decoration: none;
      font-weight: 500;
    }

    nav.navbar a.active {
      border-bottom: 2px solid #fff;
    }

    .menu-toggle {
      display: none;
      font-size: 28px;
      color: #fff;
      cursor: pointer;
    }

    /* Mobile Styles */
    @media screen and (max-width: 768px) {
    nav.navbar {
        position: absolute;
        top: 60px; /* adjust if your header is taller/shorter */
        right: 0;
        left: 0;
        max-width: 100vw;
        background-color: var(--accent-color);
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    nav.navbar.open {
        display: flex;
    }

    nav.navbar a {
        padding: 12px 0;
        color: white;
        font-size: 18px;
        text-decoration: none;
        width: 95%;
        text-align: center;
        box-sizing: border-box;
    }

    nav.navbar a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 28px;
        color: white;
        z-index: 100;
        cursor: pointer;
    }
    }



    .hero {
      text-align: center;
      padding: 80px 20px 60px;
      animation: fadeUp 1s ease-out;
    }

    .hero img {
      width: 150px;
      border-radius: 50%;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: #003049;
    }

    .hero p {
      font-size: 1.1rem;
      color: #333;
      max-width: 700px;
      margin: 0 auto 30px;
    }

    .btn {
      background: #fcbf49;
      color: #003049;
      padding: 12px 28px;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s, background 0.3s;
      display: inline-block;
    }

    .btn:hover {
      background: #ffdd72;
      transform: scale(1.05);
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 40px 20px;
      max-width: 1100px;
      margin: 0 auto;
      animation: fadeUp 1s ease-out 0.3s both;
    }

    .gallery img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .gallery img:hover {
      transform: scale(1.03);
    }

    .content {
      max-width: 1000px;
      margin: 40px auto;
      padding: 20px;
    }

    .content h1 {
      font-size: 2em;
      margin-bottom: 20px;
      color: var(--accent-color);
    }

    .content h2 {
      font-size: 1.3em;
      margin-top: 30px;
      color: #222;
    }

    .content p {
      line-height: 1.7;
      margin-bottom: 20px;
      align-items:left;
    }
    .content ul {
      list-style-type: disc;
      padding-left: 20px;
      margin-bottom: 20px;
    }
    
footer {
  background-color: var(--accent-color);
  color: #fff;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo img {
  max-width: 120px;
  border-radius: 100px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/* Install Button */
.install-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #000000;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.install-btn:hover {
  background-color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-section,
  .footer-logo {
    margin-bottom: 20px;
  }
}


/* Mobile View */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .footer-logo img {
    margin-bottom: 20px;
  }
}


    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .navbar {
      display: flex;
      align-items: center;
    }

    .navbar a {
      margin-left: 20px;
      color: #fff;
      text-decoration: none;
      font-weight: 500;
    }

    .navbar a.active {
      border-bottom: 2px solid #fff;
    }

.logo{
        width: 100px;
        height: 100px;
        background-image: url('images/logo.jpg');
        background-size: cover;
        background-position: center;
        border-radius: 50%;
        }
    
        .logo img {
        display: none; /* Hide the image, use background instead */
        }
    
        .navbar a:hover {
        background-color: #fcbf49;
        color: #003049;
        }
    
        .install-btn {
        background-color: #fcbf49;
        color: #003049;
        padding: 10px 20px;
        border-radius: 30px;
        }
    
        .install-btn:hover {
        background-color: #ffdd72;
        }
    .menu-toggle:hover {
        color: #fcbf49; /* Change color on hover */
        transition: color 0.3s ease;

}
