
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}


a {
    text-decoration: none;
  }


    /* Navbar */

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        background: black;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: 1s;
      }
      
      .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
      }
      
      .nav-logo {
        font-size: 2rem;
        margin-left: -4.5rem;
        font-weight: bold;
        color: white;
        cursor: pointer;
      }
      
      .nav-menu {
        margin-left: 4.5rem;
        display: flex;
        list-style: none;
        gap: 30px;
      }
      
      .nav-link {
        color: white;
        font-weight: 600;
        font-size: 1.2rem;
        transition: 1s;
        position: relative;
      }
      
      .nav-link:hover {
        color: #b8860b;
      }
      
      .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #b8860b;
        transition: 1s;
      }
      
      .nav-link:hover::after {
        width: 100%;
      }
  
  
      .nav-button {
        background: #b8860b;
        color: white;
        font-size: 1rem;
        margin-right: -5rem;
        padding: 1rem 2rem;
        border-radius: .5rem;
        font-weight: 600;
        transition: 1s;
        border: none;
        cursor: pointer;
      }
      
      .nav-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px #b8860b;
      }
      
      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
      }
      
      .hamburger span {
        width: 25px;
        height: 3px;
        background: #b8860b;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
      }
      
      .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 7px);
      }
      
      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }
      
      .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -8px);
      }
      
      .mobile-button-container {
        display: none;
      }
      

      /* Mobile Styles */

      @media (max-width: 768px) {
        .hamburger {
          display: flex;
        }
      
        .nav-button:not(.mobile-nav-button) {
          display: none;
        }
      
        .mobile-button-container {
          display: none;
        }
      
        .nav-logo {
          font-size: 1.7rem;
          margin-left: .5rem;
        }
      
        .nav-button {
          margin-right: 0;
        }
  
        .nav-menu {
          display: none; 
          position: fixed;
          top: 90px;
          left: 0;
          right: 0;
          flex-direction: column;
          color: white;
          background: black;
          width: 110%;
          margin-left: -1rem;
          text-align: center;
          box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
          padding: 1rem;
          gap: 0;
          z-index: 999;
        }
      
        .nav-menu.active {
          display: flex; 
        }
      
        .nav-menu.active .mobile-button-container {
          display: block;
        }
      
        .nav-menu li {
          padding: 15px 0;
        }
      
        .mobile-nav-button {
          margin: 10px 20px;
        }
      
        .nav-container {
          padding: 0 15px;
        }
      }
      

  
/* Hero */
  
.hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.4)), 
                url('laws12.jpg');
    background-size: cover;
    background-position: center 23%;
    height: 60vh;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: .5rem;
    animation: 1s;
}

.hero-content p {
    font-size: 1.4rem;
    margin-top: -2rem;
    max-width: 700px;
    margin: 0 auto;
    animation: 1s;
}

@media (max-width:768px) {
    .hero-content h1 {
       font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
        margin-left: 2rem;
        margin-right: 2rem;
     }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Main Content */
.main-content {
    padding: 80px 0;
}

.intro-section {
    text-align: center;
    margin-bottom: 80px;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.intro-section:hover {
    transform: translateY(-5px);
}

.intro-section h2 {
    font-size: 2.5rem;
    color: #b8860b;
    margin-bottom: 30px;
    position: relative;
}

.intro-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #b8860b;
    border-radius: 2px;
}

.intro-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #b8860b;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: #b8860b;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-details {
    list-style: none;
}

.service-details li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: black;
    font-weight: bold;
}

/* Process Section */
.process-section {
    background: white;
    padding: 80px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 80px;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: scale(1.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background:#b8860b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}


/* CTA Section */

.cta-section {
    background: black;
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
    animation: shimmer 10s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: #b8860b;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.4);
    background: #b8860b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .header p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
    }

    .intro-section, .process-section, .cta-section {
        padding: 40px 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */

.footer {
    background-color: black;
    margin-bottom: -5rem;
    color: #f5f5f5;
    padding: 60px 0 30px; 
    width: 100vw; 
    margin-left: calc(-50vw + 50%);
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 5%; 
  }
  
  
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #b8860b;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-links li a:hover {
    color: #b8860b;
    padding-left: 5px;
  }
  
  .footer-title-quicklinks {
    margin-left: 5rem;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-title-quicklinks:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #b8860b;
  }
  
  .footer-links-quicklinks {
     margin-left: 3rem;
     list-style: none;
  }
  
  .footer-links-quicklinks li a {
    color: #ccc;
    text-decoration: none;
    transition: 1s;
    margin-left: 2rem;
  }
  
  .footer-links-quicklinks li a:hover {
    color: #c6961c;
    padding-left: 5px;
  }
  
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 1s;
  }
  
  .social-links a:hover {
    background-color: #b8860b;
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #1c1c1c;
    color: #f0f0f0;
    margin-top: 1rem;
    font-size: 1rem;
    outline: none;
    transition: 1s;
  }
  
  .form-input::placeholder {
    color: #aaa;
  }
  
  .form-input:focus {
    border-color:  #b8860b;
  }
  
  .submit-btn {
    width: 100%;
    padding: 12px 16px;
    background-color:  #b8860b;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 1s
  }
  
  .submit-btn:hover {
    background-color: #009cb3;
  }
  
  @media (max-width:768px) {
    .footer-title-quicklinks {
     margin-left: -1px;
    }
    
    .footer-title-quicklinks:after {
      margin-left: -1px;
    }
    
    .footer-links-quicklinks {
      margin-left: -1px;
    }
    
    .footer-links-quicklinks li a {
      margin-left: -1px;
    }
  }