body {
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #111;
      color: #fff;
    }

    /* === Base Styles === */
    /* body {
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #111;
      color: #fff;
    } */

    /* === Common Section Styles === */
    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title small,
    .section-title h6 {
      display: block;
      color: #f0ad4e;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 5px;
    }

    .section-title h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .title-underline,
    .section-title .underline {
      width: 60px;
      height: 3px;
      background-color: #e8994b;
      margin: 15px auto;
      border-radius: 3px;
    }

    /* ===== Top Bar ===== */
    .top-bar {
      background-color: #e8994b;
      color: #fff;
      font-size: 0.9rem;
      padding: 8px 0;
    }

    .top-bar i {
      margin-right: 6px;
      color: #fff;
    }

    .top-bar a {
      color: #fff;
      text-decoration: none;
      margin-left: 5px;
    }

    /* ===== Header / Logo Section ===== */
    .header-logo {
      background-color: #1b1b1b;
      text-align: center;
      padding: 30px 0;
    }

    .header-logo h1 {
      font-size: 2.2rem;
      font-weight: 800;
      letter-spacing: 1px;
    }

    .header-logo h1 span {
      color: #e8994b;
    }

    .header-logo p {
      color: #ccc;
      margin-top: 5px;
    }

    /* ===== Navbar ===== */
    .navbar {
      background-color: #111;
    }

    .navbar-nav .nav-link {
      color: #fff !important;
      font-weight: 500;
      text-transform: uppercase;
      margin-right: 20px;
      position: relative;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #e8994b !important;
    }

    .navbar-nav .dropdown-menu {
      background-color: #1b1b1b;
      border: none;
      border-top: 2px solid #e8994b;
    }

    .navbar-nav .dropdown-item {
      color: #ddd;
    }

    .navbar-nav .dropdown-item:hover {
      color: #fff;
      background-color: transparent;
    }

    .purchase-btn {
      border: 2px solid #e8994b;
      color: #fff;
      padding: 5px 15px;
      border-radius: 30px;
      transition: 0.3s;
    }

    .purchase-btn:hover {
      background-color: #e8994b;
      color: #111;
    }

    /* ===== Gear Button (Floating) ===== */
    .gear-button {
      position: fixed;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      background: #fff;
      color: #000;
      border-radius: 6px 0 0 6px;
      padding: 10px 12px;
      cursor: pointer;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
      transition: background 0.3s;
    }

    .gear-button:hover {
      background: #e8994b;
      color: #fff;
    }
	
    
	
	
	
    body {
      background-color: #111;
      color: #fff;
      font-family: 'Poppins', sans-serif;
    }

    /* === SIDEBAR === */
    .offcanvas {
      background-color: #111;
      width: 280px;
    }

    .offcanvas-header {
      border-bottom: 1px solid #222;
    }

    .offcanvas-title {
      font-size: 1.3rem;
      font-weight: 600;
      color: #e8994b;
    }

    /* === MENU LIST === */
    .nav-link {
      color: #bbb;
      padding: 12px 20px;
      border-bottom: 1px solid #222;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-transform: uppercase;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #e8994b;
      background-color: #1c1c1c;
    }

    .plus-icon {
      color: #e8994b;
      font-weight: bold;
      font-size: 1.1rem;
    }

    /* === BUTTON === */
    .btn-outline-orange {
      color: #e8994b;
      border: 1px solid #e8994b;
      border-radius: 25px;
      font-weight: 500;
      padding: 6px 20px;
      transition: all 0.3s ease;
    }

    .btn-outline-orange:hover {
      background-color: #e8994b;
      color: #111;
    }

    /* === SEARCH ICON === */
    .search-icon {
      font-size: 1.2rem;
      margin-right: 10px;
      cursor: pointer;
    }

    /* === HAMBURGER === */
    .navbar-toggler {
      border: none;
      outline: none;
    }

    .navbar-toggler-icon {
      background-image: none;
      width: 28px;
      height: 2px;
      background-color: #fff;
      position: relative;
      transition: all 0.3s ease-in-out;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
      content: '';
      position: absolute;
      left: 0;
      width: 28px;
      height: 2px;
      background-color: #fff;
      transition: all 0.3s ease-in-out;
    }

    .navbar-toggler-icon::before {
      top: -8px;
    }

    .navbar-toggler-icon::after {
      top: 8px;
    }

    /* === Center Hamburger === */
    .hamburger-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }






    body {
      background-color: #111;
      color: #fff;
      font-family: 'Poppins', sans-serif;
      margin: 0;
    }

    /* === HERO SLIDER === */
    .carousel-item {
      height: 100vh;
      min-height: 600px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .carousel-item::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .carousel-caption {
      bottom: 30%;
      z-index: 2;
    }

    .carousel-caption h1 {
      font-size: 3.5rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .carousel-caption p {
      font-size: 1.1rem;
      margin-top: 15px;
      color: #ddd;
    }

    .btn-orange {
      background-color: #e8994b;
      color: #fff;
      border-radius: 50px;
      padding: 12px 35px;
      border: none;
      margin-top: 25px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-orange:hover {
      background-color: #fff;
      color: #111;
    }

    /* === Carousel Controls === */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #fff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      background-size: 50%;
      background-position: center;
      background-repeat: no-repeat;
      filter: invert(0);
    }

    .carousel-control-prev-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0L4 1.25 6.75 4 4 6.75 5.25 8l4-4-4-4z' transform='rotate(180 4 4)'/%3E%3C/svg%3E");
    }

    .carousel-control-next-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0L4 1.25 6.75 4 4 6.75 5.25 8l4-4-4-4z'/%3E%3C/svg%3E");
    }






    body {
      background-color: #111;
      color: #fff;
      font-family: "Poppins", sans-serif;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title small {
      display: block;
      color: #f0ad4e;
      font-weight: 500;
      text-transform: uppercase;
    }

    .section-title h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
    }

    .service-card {
      background-color: #1a1a1a;
      border: 1px solid #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.4s ease;
      text-align: center;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(255, 165, 0, 0.2);
    }

    .service-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .service-card h5 {
      margin-top: 20px;
      font-weight: 700;
      text-transform: uppercase;
      color: #f0ad4e;
    }

    .service-card p {
      color: #ccc;
      font-size: 0.9rem;
      padding: 0 15px;
      margin-bottom: 20px;
    }

    .btn-read {
      background-color: #f0ad4e;
      color: #111;
      font-weight: 600;
      border-radius: 30px;
      margin-bottom: 20px;
      transition: 0.3s;
    }

    .btn-read:hover {
      background-color: #d18e20;
      color: #fff;
    }





    body {
      background-color: #111;
      color: #fff;
      font-family: 'Poppins', sans-serif;
    }

    section {
      padding: 80px 0;
    }

    /* === SECTION HEADER === */
    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h6 {
      color: #bbb;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 5px;
    }

    .section-title h2 {
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .title-underline {
      width: 60px;
      height: 3px;
      background-color: #e8994b;
      margin: 15px auto;
      border-radius: 3px;
    }

    /* === FILTER BUTTONS === */
    .filter-btns {
      text-align: center;
      margin-bottom: 40px;
    }

    .filter-btns button {
      background: none;
      border: none;
      color: #bbb;
      margin: 0 10px;
      font-weight: 500;
      transition: 0.3s;
    }

    .filter-btns button.active,
    .filter-btns button:hover {
      color: #e8994b;
      border-bottom: 2px solid #e8994b;
    }

    /* === PORTFOLIO GRID === */
    .portfolio-item {
      position: relative;
      overflow: hidden;
      background-color: #000;
      border: 1px solid #222;
      transition: transform 0.3s ease;
    }

    .portfolio-item img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .portfolio-item:hover img {
      transform: scale(1.08);
    }

    .portfolio-info {
      background-color: #1a1a1a;
      padding: 15px;
    }

    .portfolio-info h5 {
      color: #fff;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 1rem;
      margin-bottom: 5px;
    }

    .portfolio-info p {
      font-size: 0.9rem;
      color: #aaa;
      margin: 0;
    }
	

	
	
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #111;
      color: #fff;
      margin: 0;
      padding: 0;
    }

    section.testimonials {
      background: url('https://images.unsplash.com/photo-1616627988577-1ec1b07b8a0c?auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat;
      position: relative;
      padding: 100px 0;
    }

    /* Dark overlay */
    section.testimonials::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .section-header {
      position: relative;
      z-index: 2;
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h6 {
      color: #f4b25c;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 500;
      margin-bottom: 5px;
    }

    .section-header h2 {
      color: #fff;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-header .underline {
      width: 70px;
      height: 3px;
      background-color: #f4b25c;
      margin: 10px auto;
    }

    .testimonial-card {
      position: relative;
      z-index: 2;
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 30px 20px;
      text-align: center;
      color: #ddd;
      transition: 0.3s ease;
    }

    .testimonial-card:hover {
      border-color: #f4b25c;
      transform: translateY(-5px);
    }

    .testimonial-card img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #f4b25c;
      margin-bottom: 20px;
    }

    .testimonial-card p {
      font-size: 0.95rem;
      font-style: italic;
      margin-bottom: 20px;
    }

    .testimonial-card h5 {
      font-weight: 600;
      color: #fff;
      margin-bottom: 2px;
    }

    .testimonial-card span {
      color: #f4b25c;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .quote-icon {
      font-size: 1.8rem;
      color: #f4b25c;
      margin-top: 10px;
    }
	
	
	
	
	
	
	
    body {
      background-color: #111;
      color: #fff;
      font-family: 'Poppins', sans-serif;
    }

    .footer-top {
      border-top: 1px solid #ff8c00;
      padding: 40px 0;
      background-color: #0d0d0d;
    }

    .footer-logo-section {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 40px 0;
      background-color: #111;
      border-bottom: 1px solid #ff8c00;
    }

    .footer-logo-section img {
      width: 100px;
      height: auto;
      opacity: 0.8;
      transition: 0.3s;
    }

    .footer-logo-section img:hover {
      opacity: 1;
      transform: scale(1.05);
    }

    .footer-bottom {
      background-color: #000;
      padding: 20px 0;
      text-align: center;
      font-size: 14px;
      color: #aaa;
    }

    .footer-bottom a {
      color: #ff8c00;
      text-decoration: none;
    }

    .footer-col h6 {
      color: #fff;
      margin-bottom: 20px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .footer-col p, .footer-col a {
      color: #bbb;
      font-size: 14px;
    }

    .footer-col a:hover {
      color: #ff8c00;
    }

    .footer-gallery img {
      width: 70px;
      height: 70px;
      object-fit: cover;
      margin: 5px;
      border-radius: 4px;
      transition: 0.3s;
    }

    .footer-gallery img:hover {
      transform: scale(1.1);
    }

    .footer-contact i {
      color: #ff8c00;
      margin-right: 10px;
    }

    .footer-hours p {
      margin: 0;
      line-height: 1.8;
    }
	
	
	
	
	
	.inner-banner {
    background: url("../img/architect-design-page-header.jpg") no-repeat center center/cover;
    height: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.inner-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* Dark shade overlay */
}

.inner-banner .banner-content {
    position: relative;
    z-index: 2;
}

.inner-banner h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.inner-banner p {
    font-size: 16px;
    opacity: 0.9;
}

.inner-banner p i {
    margin-right: 5px;
}



body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
}

.about-section {
    padding: 50px 0;
}

.container {
    width: 90%;
    margin: auto;
}

.content-area {
    display: flex;
    gap: 2rem;
}

.left-content {
    width: 70%;
}

.left-content h2 {
    margin-top: 25px;
    font-size: 22px;
    font-weight: 700;
}

.left-content p {
    margin-top: 10px;
    line-height: 1.6;
}

.work-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.work-img {
    width: 150px;
    height: auto;
}

.right-sidebar {
    width: 30%;
}

.sidebar-box {
    border: 1px solid #444;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-box h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.search-box {
    display: flex;
}

.search-box input, .search-box textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #666;
    background: #222;
    color: white;
}

.search-box button {
    padding: 8px 14px;
    border: none;
    background: #d9852c;
    color: white;
    cursor: pointer;
}





