  /* ===================== GLOBAL STYLES ===================== */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      }

      body {
        line-height: 1.6;
        background: url("https://images.unsplash.com/photo-1585421514738-01798e348b17?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8bWVkaWNhbHxlbnwwfHwwfHx8MA%3D%3D")
          no-repeat center center/cover;
        color: #333;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
      }

      /* ===================== NAVBAR ===================== */
      header {
        background: black;
        color: #fff;
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 20px;
      }

      .nav-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
      }

      .nav-links a:hover {
        color: #0080ff;
      }

      .hamburger {
        display: none;
        font-size: 1.8rem;
        cursor: pointer;
      }

      @media (max-width: 768px) {
        .nav-links {
          position: absolute;
          top: 65px;
          right: 0;
          background: #00050a;
          flex-direction: column;
          width: 220px;
          display: none;
          padding: 20px;
          border-radius: 0 0 8px 8px;
        }

        .nav-links.active {
          display: flex;
        }

        .hamburger {
          display: block;
        }
      }

      /* ===================== SECTION TITLES ===================== */
      .section-title {
        text-align: center;
        margin: 50px 0;
      }

      .section-title h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #0077cc;
        margin-bottom: 10px;
      }

      .section-title p {
        font-size: 1.1rem;
        color: black;
      }

      /* ===================== ABOUT CONTENT ===================== */
      .about-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 40px;
        align-items: center;
        margin-bottom: 60px;
      }

      .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #e6f0fa;
        border-radius: 20px;
        padding: 30px;
      }

      .about-image i {
        color: #0077cc;
        font-size: 5rem;
      }

      .about-content h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: #0077cc;
      }

      .about-content p {
        margin-bottom: 15px;
        color: black;
      }

      .btn {
        display: inline-block;
        background: #0077cc;
        color: #fff;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        transition: 0.3s;
      }

      .btn:hover {
        background: #005fa3;
      }

      /* ===================== FEATURE CARDS ===================== */
      .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
      }

      .feature-card {
        background: black;
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
      }

      .feature-card:hover {
        transform: translateY(-10px);
      }

      .feature-icon {
        font-size: 2.5rem;
        color: #0077cc;
        margin-bottom: 15px;
      }

      .feature-card h3 {
        color: #0077cc;
        margin-bottom: 10px;
      }

      .feature-card p {
        color: white;
        font-size: 0.95rem;
      }

      /* ===================== FOOTER ===================== */
      footer {
        background: #003366;
        color: #fff;
        padding: 60px 0 20px;
        margin-top: 80px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-column h3 {
        margin-bottom: 15px;
        font-size: 1.2rem;
        border-left: 4px solid #0077cc;
        padding-left: 10px;
      }

      .footer-column p,
      .footer-links li {
        font-size: 0.95rem;
        color: #ddd;
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: #ddd;
        text-decoration: none;
        transition: 0.3s;
      }

      .footer-links a:hover {
        color: #fff;
      }

      .newsletter {
        display: flex;
        gap: 10px;
      }

      .newsletter input {
        flex: 1;
        padding: 10px;
        border-radius: 5px;
        border: none;
      }

      .newsletter button {
        background: #0077cc;
        border: none;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
      }

      .newsletter button:hover {
        background: #005fa3;
      }

      .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 15px;
      }

      /* ===================== STICKY QUOTE ===================== */
      .sticky-quote {
        position: fixed;
        right: 20px;
        bottom: 20px;
        background: rgb(33, 216, 33);
        color: #fff;
        padding: 12px 20px;
        border-radius: 30px;
        cursor: pointer;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
        z-index: 999;
      }
      .sticky-quote p {
        color: white;
      }

      .sticky-quote:hover {
        background: green;
      }

      /* ===================== RESPONSIVE ===================== */
      @media (max-width: 768px) {
        .about-content {
          grid-template-columns: 1fr;
          text-align: center;
        }

        .about-image {
          margin-bottom: 20px;
        }

        .newsletter {
          flex-direction: column;
        }

        .newsletter input,
        .newsletter button {
          width: 100%;
        }
      }
       .logo {
  display: flex;
  align-items: center;
}


.logo-link {
  text-decoration: none;
}

.logo-img {
  height: 110px; /* adjust as needed */
  width: auto;
  border-radius: 20px; /* optional for smoother corners */
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

