body {
      margin: 0;
      font-family: 'Oswald', Arial, Helvetica, sans-serif;

    }


/* Main menu styling */



 header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  position: relative;
  z-index: 999;
}

.logo img {
  width: 200px;
  height: auto;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

nav.main-nav {
  display: flex;
}

.main-menu {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-menu li {
  position: relative;
}

.main-menu a {
  text-decoration: none;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #000;
  transition: color 0.3s;
}

.main-menu a:hover {
  color: #666;
}

/* Dropdown Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  border-radius: 6px;
  min-width: 260px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li a {
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1.5px;
}

/* ✅ Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav.main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  nav.main-nav.active {
    display: flex;
  }

  .main-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .main-menu li {
    width: 100%;
    border-bottom: 1px solid #ddd;
  }

  .main-menu a {
    display: block;
    padding: 15px 20px;
    font-size: 18px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background: #f4f4f4;
    padding-left: 20px;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    color: #000;
    font-size: 16px;
    padding: 10px 0;
  }
}


/* Main menu styling */

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}


    .swiper {
      width: 100%;
      height: 90vh;
    }

    .swiper-slide {
      position: relative;
    }

    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .content {
      position: absolute;
      bottom: 80px;
      left: 200px;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      padding: 20px;
      border-radius: 8px;
    }

    .content h1 {
      font-size: 48px;
      margin-bottom: 15px;
    }

    .btn {
      background: white;
      color: black;
      text-decoration: none;
      padding: 10px 20px;
      font-weight: bold;
      border-radius: 5px;
    }

 .swiper-button-next,
.swiper-button-prev {
  position: absolute;
  bottom: 50px;
  top: auto;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
  font-size: 18px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.swiper-button-prev {
  right: 100px; /* space between arrows */
  left: auto;
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: black;
  color: white;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #cc0000;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  display: none;
  transition: opacity 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #a00000;
}



    main {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      font-size: 18px;
    }

    h1 {
      font-size: 40px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .breadcrumb {
      font-size: 14px;
      color: #888;
      margin-bottom: 40px;
    }

    .section {
      margin-bottom: 40px;
    }

    strong {
      font-weight: bold;
    }

    .highlight-red {
      color: #cc0000;
    }

    .columns {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    .column {
      flex: 1;
      min-width: 250px;
      background: #eaeaea;
      padding: 20px;
      border-radius: 6px;
    }

    .column h2 {
      font-size: 20px;
      margin-bottom: 15px;
    }

    .column a {
      color: #cc0000;
      text-decoration: none;
      font-weight: bold;
    }

    .quote {
      font-style: italic;
      margin-top: 30px;
      font-size: 16px;
    }

    .lets-talk {
      margin-top: 20px;
      font-weight: bold;
      color: #cc0000;
      cursor: pointer;
    }

    .logos {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
    }

    .logos img {
      height: 75px;
      object-fit: contain;
    }

/* footer  styling start*/
    footer {
      font-size: 13px;
      color: #888;
      margin-top: 60px;
      border-top: 1px solid #ccc;
      padding: 20px;
      text-align: center;
      padding: 20px;
    }



/* footer  styling finish*/


/* projects  styling start*/
.container {
      max-width: 1200px;
      margin: 30px auto;
      padding: 20px;
    }
    .filters {
      margin-bottom: 20px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .filters button {
      padding: 8px 16px;
      border: none;
      border-radius: 4px;
      background-color: #e0e0e0;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    .filters button.active,
    .filters button:hover {
      background-color: #0073e6;
      color: white;
    }
    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
    }
    .project-card {
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 15px;
    }
    .project-card img {
      width: 100%;
      height: auto;
      border-radius: 4px;
      margin-bottom: 10px;
    }
    .project-card h3 {
      margin-top: 0;
    }
    .status {
      display: inline-block;
      margin-top: 10px;
      padding: 5px 10px;
      background-color: #e0e0e0;
      border-radius: 4px;
      margin: 2px;
      font-size: 0.85em;
     
    }

    .project-image {
background-size: cover;
  background-position: center;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  border-radius: 4px;
}


/* projects  styling finish*/



/* project detail  styling start*/


    /* Hero background image */
    .hero {
      background-image: url('https://assets.rentsync.com/oben/images/gallery/1152/1747258626449_EXT_5.jpg');
      background-size: cover;
      background-position: center;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      color: white;
      text-align: center;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-content h1 {
      font-size: 40px;
      margin-bottom: 10px;
    }

    .hero-content p {
      font-size: 18px;
      margin: 0;
    }

    /* Project header layout */
.project-header {
  background: #1D2975; /* strong blue from logo */
  color: white;
  padding: 30px 40px;
  max-width: 1100px;
  margin: -100px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.project-header-left small,
.project-header-left h1,
.project-header-left p {
  color: #fff;
}

    .project-header-left {
      flex: 1;
      min-width: 200px;
    }

    .project-header-left small {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      opacity: 0.8;
    }

    .project-header-left h1 {
      margin: 5px 0;
      font-size: 28px;
    }

    .project-header-left p {
      font-size: 14px;
      margin: 0;
    }

    .project-header-right {
      flex: 1;
      min-width: 280px;
      max-width: 360px;
    }

    
    .map-card {
      background: #fff;
      border-radius: 4px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      width: 100%;
    }

    .map-card iframe {
      width: 100%;
      height: 200px;
      border: none;
      border-radius: 4px;
      margin-bottom: 10px;
    }

    .map-btn {
      display: block;
      text-align: center;
      background: #1D2975;
      color: white;
      padding: 10px 15px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 14px;
      font-weight: bold;
    }

    .map-btn:hover {
      background: #1D2975;
    }

    /* Main content */
    .content-wrapper {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      background: white;
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px;
    }

    .gallery {
      flex: 2;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 15px;
    }

    .gallery img {
      width: 100%;
      border-radius: 4px;
    }

 .info-box {
  flex: 1;
  font-size: 14px;
  min-width: 250px;
  margin-top: -170px; /* pull it up on large screens */
  z-index: 3;
  background: white;
  padding: 10px;
}

@media (max-width: 768px) {
  .info-box {
    margin-top: 0; /* reset margin on smaller screens */
  }
}

    .info-box p {
      margin: 6px 0;
      line-height: 1.6;
    }

    .info-box strong {
      display: block;
      font-size: 11px;
      color: #666;
      margin-top: 15px;
      text-transform: uppercase;
    }

    @media (max-width: 768px) {
      .project-header {
        flex-direction: column;
        gap: 20px;
      }

      .content-wrapper {
        flex-direction: column;
        padding: 20px;
      }

      .gallery {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 8px;
    }
    .lightbox .close {
      position: absolute;
      top: 30px;
      right: 40px;
      color: white;
      font-size: 40px;
      cursor: pointer;
    }
    .lightbox .prev,
    .lightbox .next {
      position: absolute;
      top: 50%;
      font-size: 40px;
      color: white;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 20px;
      transform: translateY(-50%);
      user-select: none;
    }
    .lightbox .prev { left: 30px; }
    .lightbox .next { right: 30px; }

/* project detail  styling finish*/


