    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

   /* Navigation Styles */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 1rem 0;
      z-index: 1000;
      transition: all 0.3s ease;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
      max-width: none;
      width: 100%;
      margin: 0;
      padding: 0 20px 0 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Logo positioned on the left with 20px padding from left edge */
    .navbar-brand {
      flex: 0 0 auto;
      padding-left: 0;
    }

    .navbar-brand img {
      height: 70px;
      width: auto;
    }

    /* Navigation menu positioned on the right with 10px padding from right edge */
    .nav-content {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex: 1;
      justify-content: flex-end;
      padding-right: 0;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
      margin: 0;
    }

    .nav-link {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      padding: 0.5rem 1rem;
      border-radius: 25px;
    }

    .nav-link:hover {
      color: #007bff;
    }

    .nav-link.active {
      background-color: #007bff;
      color: #fff !important;
    }

    .nav-link.active:hover {
      color: #fff !important;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #007bff;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 80%;
    }

    .nav-link.active::after {
      width: 0;
    }

    /* CTA Button with consistent spacing */
    .cta-button {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: white;
      padding: 0.75rem 1.5rem;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
      white-space: nowrap;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
      color: white;
    }

    /* Mobile menu toggle */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: #333;
      margin: 3px 0;
      transition: 0.3s;
    }

    /* Mobile menu animations */
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }


   /* Footer Styles - Updated for center alignment */
.footer {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  justify-items: center; /* Center grid items horizontally */
  align-items: center; /* Center grid items vertically */
}

.footer-section {
  text-align: center; /* Center align text within each section */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align flex items */
  justify-content: center; /* Center align content vertically */
  width: 100%;
}

.footer-section img {
  margin-bottom: 1rem; /* Add some space below the logo */
}

.footer-section h3 {
  color: #007bff;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.footer-section p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  text-align: center;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: center;
}

.footer-section a:hover {
  color: #007bff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #ccc;
}

.designer-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.designer-link:hover {
  color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 2rem;
  }
}
.designer-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.designer-link:hover {
  color: #0056b3;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .footer .container {
    padding-left: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center; /* Center align on mobile for better readability */
  }
  
  .footer-section {
    text-align: center; /* Center align sections on mobile */
  }
}

    /* Large screen optimizations */
    @media (min-width: 1200px) {
      .nav-container {
        padding: 0 10px 0 20px;
      }
       .footer .container {
    padding-left: 1rem;
  }
  
  
  
  .footer-section {
    text-align: center; /* Center align sections on mobile */
  }
    }

    @media (min-width: 1400px) {
      .nav-container {
        padding: 0 10px 0 20px;
      }
    }

    /* Responsive Design */
    @media (max-width: 991px) {
      .nav-content {
        gap: 1.5rem;
      }
      
      .nav-menu {
        gap: 1.5rem;
      }
      
       .footer .container {
    padding-left: 1rem;
    }
    }

    @media (max-width: 768px) {
      .nav-container {
        padding: 0 1rem;
      }

      .nav-content {
        position: fixed;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
      }
      
      .nav-content.active {
        left: 0;
      }

      .nav-menu {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
      }

      .nav-menu li {
        padding: 0.5rem 0;
      }

      .menu-toggle {
        display: flex;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      
       .footer .container {
    padding-left: 1rem;
}

      .features-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
      }
    }

    @media (max-width: 480px) {
      .navbar-brand img {
        height: 60px;
      }

      
       .footer .container {
    padding-left: 1rem;
    text-align: left;
       }
      .hero h1 {
        font-size: 2rem;
      }

      .btn-get-started {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
      }

      .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
      }
    }