* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

body {
      font-family: 'Segoe UI', sans-serif;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: black;
      color: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
      height: 80px;
    }

    .navbar .logo {
      display: flex;
      align-items: center;
    }
    
    .navbar .logo img {
      padding: 20px; 
      height: 150px;
      width: auto;
      display: block;
      transition: transform 0.3s;
    }
      
    

    .navbar ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    .navbar ul li a {
      text-decoration: none;
      color: #fff;
      font-size: 1rem;
      transition: color 0.3s;
    }

    .navbar ul li a:hover {
      color: #4ade80;
    }

    .quote-btn {
      background-color: #4ade80;
      color: #1e3a3a;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
      text-decoration: none;
    }

    .quote-btn:hover {
      background-color: #22c55e;
    }

    .menu-icon {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .navbar ul {
        display: none;
        flex-direction: column;
        background-color: #1e3a3a;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 1rem 2rem;
      }

      .navbar ul.active {
        display: flex;
      }

      .menu-icon {
        display: block;
        color: #4ade80;
      }

      .quote-btn {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
  }
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }

    .about-heading {
      text-align: center;
      font-size: 36px;
      color: #263238;
      margin-bottom: 20px;
    }

    .about-section {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 40px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1 1 500px;
    }

    .about-text h2 {
      color: #00796b;
      margin-bottom: 15px;
    }

    .about-text p {
      line-height: 1.7;
      margin-bottom: 10px;
    }

    .about-image {
      flex: 1 1 400px;
      text-align: center;
    }

    .about-image img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    @media (max-width: 768px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }
      .about-text {
        order: 2;
      }
      .about-image {
        order: 1;
        margin-bottom: 20px;
      }
    }

    /* Footer */
.footer {
    background-color: black;
    color: #fff;
    padding: 3rem 2rem 1rem;
    font-family: 'Segoe UI', sans-serif;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
  }

  .footer-col h3 {
    margin-bottom: 1rem;
    color: #4ade80;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
  }

  .footer-col ul li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
  }

  .footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }

  .footer-col ul li a:hover {
    color: #4ade80;
  }

  .footer-col.brand img {
    height: 100px;
  }

  .footer-col.brand p {
    font-size: 0.95rem;
    color: #ccc;
  }

  .social-icons a {
    margin-right: 10px;
    color: #4ade80;
    font-size: 1.2rem;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #22c55e;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #334d4d;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #aaa;
  }

  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .social-icons {
      justify-content: center;
    }
  }
