
* {
    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('law16.jpg');
    background-size: cover;
    background-position: center 35%;
    height: 65vh;
    margin-top: 3rem;
    margin-bottom: 3rem;
    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-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-section .subtitle {
        font-size: 1.4rem;
    }

    .hero-section .tagline {
        margin-top: 1rem;
        font-size: 1.2rem;
        margin-left: 2rem;
        margin-right: 2rem;
  
    }
}

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


/* Stats Section */

.stats-section {
    background: #f5f5f5;
    color: black;
    padding: 60px 0;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    transition: 1s;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #c59d5f; 
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}


/* 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);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #c59d5f;
}

.intro-section h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: bold;
}

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


/* Services Grid */

.services-section {
    margin-bottom: 80px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    transition: 1s;
}

.service-card:hover::before {
    width: 100%;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: #c59d5f; 
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.service-details {
    list-style: none;
    position: relative;
    z-index: 2;
}

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

.service-details li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #c59d5f; 
    font-size: 0.8rem;
}


/* Why Choose Us Section */

.why-choose-section {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    padding: 80px 0;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    animation: rotatePattern 20s linear infinite;
}

@keyframes rotatePattern {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.why-choose-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: bold;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 1s;
}

.why-choose-item:hover {
    transform: scale(1.05);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: #c59d5f;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.why-choose-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.why-choose-item p {
    line-height: 1.6;
    opacity: 0.9;
}


/* 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;
    font-weight: bold;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #c59d5f; 
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.process-step:nth-child(odd) .process-content {
    margin-left: 0;
    margin-right: 60%;
    text-align: right;
}

.process-step:nth-child(even) .process-content {
    margin-left: 60%;
    margin-right: 0;
    text-align: left;
}

.process-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
}

.process-step:nth-child(odd) .process-content::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-left-color: #f8f9fa;
}

.process-step:nth-child(even) .process-content::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-right-color: #f8f9fa;
}

.process-number {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #c59d5f; 
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
}

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

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


/* CTA Section */

.cta-section {
    background: #c59d5f; 
    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-conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255,255,255,0.05) 30deg,
        transparent 60deg
    );
    animation: rotateConic 20s linear infinite;
}

@keyframes rotateConic {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

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

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: white;
    color: #c59d5f; 
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.3);
    background: #f8f9fa;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #e74c3c;
    transform: translateY(-3px);
}

/* Responsive Design */

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

    .header .subtitle {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step:nth-child(odd) .process-content,
    .process-step:nth-child(even) .process-content {
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }

    .process-content::after {
        display: none;
    }

    .process-number {
        position: static;
        transform: none;
        margin: 0 auto 20px;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 280px;
    }
}

/* 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;
    }
  }



