
* {
    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('corporate.jpg');
    background-size: cover;
    background-position: center 5%;
    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-section h1{
        margin-top: 1.5rem;
        line-height: 1.4;
    }
    .hero-content p{
       padding-top: 1rem;
       font-size: 1.2rem;
       margin-left: 1.5rem;
       margin-right: 1.5rem;
    }
}

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

.cta-section {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
    padding: 80px 0;
    border-radius: .5rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    margin-left: 7rem;
    margin-right: 7rem;
    opacity: .9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #c9a96e, #d4af37);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.btn-outline:hover {
    background: #d4af37;
    color: white;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #c9a96e, #d4af37);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.overview-section {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 80px;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.overview-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(45deg, #c9a96e, #d4af37);
    border-radius: 15px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px 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;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #c9a96e, #d4af37);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #c9a96e, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

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

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

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

.approach-section {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #c9a96e, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 25px;
}

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

.step-item p {
    color: #333;
    line-height: 1.5;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

    .overview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .overview-section,
    .approach-section {
        padding: 40px 30px;
    }
}

