
    :root {
        --brand: #212529;
        --accent: #d9cbb6;
        --light-bg: #fffdf8;
      }
      body {
        font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
        background-color: var(--light-bg);
        color: var(--brand);
      }
    /* nav Custom Styles */
  .navbar {
    background-color: rgba(248, 249, 250, 0.5); /* Cream background */
    min-height: 80px;
  }

  .navbar-brand {
    color: #343a40; /* Dark text color */
    font-weight: bold;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    margin: 0 5px;
    color: #343a40; /* Dark text color */
    transition: color 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    color: #f39c12; /* Highlight color on hover */
  }

  .navbar-toggler-icon {
    background-color: #343a40;
  }

  .navbar-dark .navbar-toggler {
    border-color: #343a40;
  }

  /* Dropdown hover effect */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  /* Dropdown styling */
  .dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .dropdown-item {
    font-size: 16px;
    padding: 10px 20px;
    color: #343a40;
    transition: background-color 0.3s ease;
  }

  .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #f39c12;
  }

  /* Fix hover flicker on desktop */
  @media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
      display: block;
    }
  }
      /*css for nav*/
  /* Team Css */
   .team-member img {
        border-radius: 50%;
        width: 120px;
        height: 120px;
        object-fit: cover;
        border: 3px solid var(--accent);
      }
      .team-member h6 {
        font-weight: 600;
      }
      /* .section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        width: 60px;
        height: 3px;
        background-color: var(--accent);
        border-radius: 3px;
      } */

    .hero-overlay {
      background-color: rgba(0, 0, 0, 0.3);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 100% !important;
      padding: 20px;
    }

    .hero-subtitle {
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 2px;
      color: #000000;
    }

    .hero-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin: 20px 0;
      line-height: 1.4;
    }

    .hero-title span {
      color: #fcb900;
    }

    .hero-btn {
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 4px;
      background: #fff;
      color: #000;
      border: none;
    }

    .scroll-down {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 24px;
      color: white;
      animation: bounce 2s infinite;
      z-index: 2;
    }

    @keyframes bounce {
      0%, 100% {
        transform: translate(-50%, 0);
      }
      50% {
        transform: translate(-50%, 10px);
      }
    }
.bg-blacknav{
  background-color: rgba(0, 0, 0, 0.2);
}
/* Testimonial Section */
.testimonial-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 6px 18px rgba(0,0,0,0.05);
        transition: transform 0.3s;
      }
      .testimonial-card:hover {
        transform: scale(1.02);
      }
/* Testimonial Section end */
    /* Footer Styling */
    footer {
      background-color: #222;
      color: #ccc;
      padding: 40px 0;
    }
    footer a {
      color: #ccc;
      text-decoration: none;
    }
    footer a:hover {
      color: #fff;
    }
    footer h5 {
      color: #fff;
      margin-bottom: 20px;
    }
    nav.bg-dark {
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.085) !important;
    }
    .video-container {
      position: relative;
      width: 100%;
      height: auto;
    }

    .video-container img {
      width: 100%;
      height: auto;
      border-radius: 5px;
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: white;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      cursor: pointer;
    }

    .play-button::before {
      content: '';
      border-style: solid;
      border-width: 10px 0 10px 16px;
      border-color: transparent transparent transparent black;
      margin-left: 4px;
    }
   .testimonial-section {
      background-color: #f8f9fa;
      padding: 60px 0;
      text-align: center;
    }

    .testimonial-subtitle {
      font-size: 0.8rem;
      color: #999;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .testimonial-title {
      font-size: 1.75rem;
      font-weight: 600;
      margin-bottom: 30px;
    }

    .testimonial-card {
      background: white;
      border-radius: 8px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      position: relative;
      margin: 0 10px;
    }

    .testimonial-image {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid white;
      position: absolute;
      top: -35px;
      left: 50%;
      transform: translateX(-50%);
    }

    .testimonial-name {
      font-weight: 600;
      margin-top: 45px;
      margin-bottom: 5px;
    }

    .testimonial-role {
      font-size: 0.9rem;
      color: #777;
      margin-bottom: 15px;
    }

    .testimonial-quote {
      font-size: 0.95rem;
      color: #444;
      font-style: italic;
    }

    .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #ccc;
    }

    .carousel-indicators .active {
      background-color: #fcb900;
    }

    .feature-title {
      font-weight: 600;
      margin-top: 15px;
    }

    .feature-text {
      color: #555;
      font-size: 0.95rem;
    }
    .custom-section {
      padding: 60px 0;
    }

    .title {
      font-weight: 600;
      font-size: 48px;
      letter-spacing: 1px;
    }

    .subtitle {
      font-size: 16px;
      color: #6c757d;
    }

    .section-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }

    .section-description {
      max-width: 50%;
      font-size: 18px;
      color: #333;
    }

    .section-title {
      font-weight: bold;
      margin-bottom: 20px;
    }
    .gallery-container {
      margin-top: 60px;
    }

    .filter-menu {
      margin-bottom: 30px;
    }

    .filter-menu button {
      margin-right: 15px;
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-item {
      margin-bottom: 30px;
    }
    .project-card {
        border: none;
        border-radius: 14px;
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(0,0,0,0.07);
        transition: all 0.3s ease;
      }
      .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.1);
      }
  /* Gallery */
   /* USAGE -> The caption text will be displayed on mouseover.
        Please use a unique caption text for each image ID    
        */
        	
        .wall_img_1 {width:100%;height:600px;margin:40px auto; transition: all .2s ease-in-out;} 
        .wall_img_2 {width:100%;height:400px;margin:20px auto; transition: all .2s ease-in-out;} 
        .wall_img_1:hover,.wall_img_2:hover{filter: grayscale(80%)}
        .wall_img_1:before,.wall_img_2:before {content: attr(id);opacity:0;transition: all .2s ease-in-out;width:100%;position:absolute;top:40%;text-align:center;display:block;font-size:22px;color:#fff; mix-blend-mode: overlay;}
        .wall_img_1:hover::before,.wall_img_2:hover::before {content: attr(id);opacity:1;}
        
      

    /* Hero Section */
    .ahero-section {
      position: relative;
    z-index: 3;
      background: #fffdf8;
      /* background: rgb(156 138 138);; */
      color: #000000;
      padding: 100px 0;
    }
    .ahero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0);
      transition: background 0.4s ease;
    }
    .ahero-section:hover .ahero-overlay {
      background: rgba(255, 255, 255, 0.05);
    }
    .ahero-section h2 {
      font-weight: 600;
      position: relative;
      display: inline-block;
      padding-bottom: 8px;
    }
    .ahero-section h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50%;
      height: 3px;
      background-color: #000000;
    }
    .ahero-section .grid-layout {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
    }
    .bg-blacknav{
    background-color: rgba(0, 0, 0, 0.2);
    }
   
    /* Collapsible Section */
    .faq-section {
      padding: 80px 0;
    }
    .faq-section img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    /* Icon Section */
    .features-section {
      background: #f8f9fa;
      padding: 80px 0;
      text-align: center;
    }
    .features-section i {
      font-size: 48px;
      color: #007bff;
      margin-bottom: 20px;
    }
    .features-section h4 {
      margin-bottom: 10px;
      font-weight: 600;
    }

    /* Contact Section */
    .contact-section {
      background: #f8f9fa;
      text-align: center;
      padding: 60px 0;
    }
        /* About Section */



/* Section Styles */
 .sheader {
            background: #1b1b1b url('https://images.unsplash.com/photo-1581093588401-22f44a35f2c2?auto=format&fit=crop&w=1400&q=60') center/cover;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .ssection-title {
            color: #2b2b2b;
            font-weight: 700;
        }
        .shighlight {
            color: #b1813e;
            font-weight: 700;
        }
        .scta-btn {
            background: #b1813e;
            border: none;
        }
        .scta-btn:hover {
            background: black;
        }