/* --------------------
   Global Styles
--------------------- */
body {
    background-color: #ffffff;
    font-family: 'Garet', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  /* --------------------
     Top Bar
  --------------------- */
  .top-bar {
    background-color: #222;
    color: #fff;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  
  .top-bar-content {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
  }
  
  .contact-item a {
    color: #FFD230;
    text-decoration: none;
  }
  
  .contact-item a:hover {
    text-decoration: underline;
  }
  
  /* --------------------
     Sticky Navbar
  --------------------- */
  .navbar {
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
  }
  
  .navbar .nav {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
  }
  
  .navbar .nav-link {
    color: #FFD230;
    text-decoration: none;
    font-weight: 500;
  }
  
  .navbar .nav-link:hover {
    color: #ffffff;
  }
  
  /* --------------------
     Hero Section
  --------------------- */
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-background.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 160px 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 500;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
  }
  
  .hero-slogan {
    font-size: 1.2rem;
    font-weight: 300;
    color: #FFD230;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    text-align: center;
  }
  
  /* --------------------
     Call-to-Action Button
  --------------------- */
  .quote-btn {
    background-color: #FFD230;
    color: #000;
    text-decoration: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .quote-btn:hover {
    background-color: #ffffff;
    color: #000;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
  }
  
  .quote-btn .arrow {
    transition: transform 0.3s ease;
  }
  
  .quote-btn:hover .arrow {
    transform: translateX(5px);
  }
  
  /* --------------------
     Section Titles
  --------------------- */
  .section-title {
    color: #000;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
  }
  
  /* --------------------
     Team Section
  --------------------- */
  .about-team {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .team-member {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 1.5rem;
    text-align: center;
    max-width: 240px;
  }
  
  .team-member h4 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0.5rem 0 0.25rem;
  }
  
  .team-member h4:hover {
    text-decoration: underline;
    color: #FFD230;
  }
  
  /* --------------------
     Bio Overlay
  --------------------- */
  .bio-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  
  .bio-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    text-align: center;
    color: #000;
    position: relative;
  }
  
  .bio-close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
  }
  
  /* --------------------
     Contact Form
  --------------------- */
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact-form button {
    align-self: flex-start;
  }
  
  /* --------------------
     Footer
  --------------------- */
  footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
  }
  
  /* --------------------
     Services Carousel (Already Present)
  --------------------- */
  .services-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 100%;
    margin: 2rem auto;
  }
  
  .showcase-item {
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s;
    text-align: center;
    padding-bottom: 1rem;
  }
  
  .showcase-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .showcase-item h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
  }
  
  .showcase-item p {
    padding: 0 1rem;
    font-size: 0.95rem;
  }
  
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD230;
    color: #000;
    border: none;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  
  .carousel-arrow:hover {
    background-color: #fff;
  }
  
  .carousel-arrow.left {
    left: 10px;
  }
  
  .carousel-arrow.right {
    right: 10px;
  }
  
