/* ==== Base Styles ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* ==== Navbar ==== */
  nav {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo h2 a{
    color: #000;
    font-weight: 700;
    text-decoration: none;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  
  .nav-links a {
    color: #464646;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #0573C1;
  }
  
  .login-btn {
    background: #0573C1;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
  }

  .login-btn a{
    color: #fff;
    text-decoration: none;
  }
  
  .login-btn:hover {
    background: #045a92;
    color: #fff;
  }
  .login-btn:hover a{
    
    color: #fff;
  }

  /* ==== Hero Section ==== */
  .hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 40px;
   
  }
  
  .hero-text h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
  }
  
  .hero-text p {
    margin: 20px 0;
    color: #555;
    max-width: 500px;
  }
  
  .hero-buttons {
    display: flex;
    gap: 15px;
  }
  
  .btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
  }

  .btn a{
    text-decoration: none;
    color: #fff;
  }
  
  .btn.primary {
    background: #0573C1;
    color: #fff;
  }

  .btn.secondary {
    background: #555;;
    color: #fff;
  }
  
  .btn.primary:hover {
    background: #045a92;
  }
  
  .btn.outline {
    border: 2px solid #0573C1;
    color: #0573C1;
    background: transparent;
  }
  
  .btn.outline:hover {
    background: #0573C1;
    color: #fff;
  }

  .hero img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 500px;
    justify-self: center;
  }

  .hero-buttons{
    margin-top: 5rem;
  }


  /* ==== Cards (Grid Sections) ==== */
  .grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 90px;
    
  }
  
  .card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card .icon {
    width: 40px;
    margin-bottom: 10px;
  }
  
  .card h3 {
    margin-bottom: 10px;
    color: #111;
  }
  
  .card ul {
    list-style: none;
    margin-bottom: 15px;
    color: #555;
  }
  
  .btn.small {
    padding: 8px 18px;
    font-size: 14px;
  }
  
  /* ==== Newsletter ==== */
  .newsletter {
    background: #f5f5f5;
    text-align: center;
    padding: 60px 20px;
    margin-top: 2rem;
  }
  
  .newsletter h2 {
    margin-bottom: 10px;
    font-weight: 700;
    color: #333;
  }
  
  .newsletter p {
    color: #555;
    margin-bottom: 25px;
  }
  
  .newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .newsletter-form input {
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid #ccc;
    width: 300px;
  }
  
  /* ==== Footer ==== */
  footer {
    background: #111;
    color: #fff;
    padding: 60px 20px 20px;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
  }
  
  .footer-col h4 {
    margin-bottom: 15px;
  }
  
  .footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
  }
  
  .footer-col a:hover {
    color: #fff;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #888;
  }
  
  /* ==== Hamburger (Mobile Nav) ==== */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: #464646;
    border-radius: 3px;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 70px;
      right: 0;
      flex-direction: column;
      background: #fff;
      width: 200px;
      height: 0;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: height 0.3s ease;
    }
  
    .nav-links.open {
      height: 350px;
      
      padding: 20px 0;
    }
  
    .hamburger {
      display: flex;
    }

    .grid-section {
       
        margin: 30px 40px;
        
      }

      .hero-h1-line1{
       margin-top: 20px;
      }

      .hero-buttons{
        flex-direction: column;
      }

  }
  