*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
    font-family: poppins, sans-serif;
  }
  
  body {
    min-height: 100vh;
  }
  
/* Logo */

  .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 80px;
    width: 80px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
   
    .logo img:hover {
    transform: scale(1.05);
  }

  .contact-link{
      background-color: #947b6c;
      color: #fff;
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s;
  }
/* Navbar */
  nav.navbar {
      background-color: #E8E1CE;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 999;
      border-radius: 0 0 8px 8px;
    }

    .navbar .logo img {
      height: 50px;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 20px;
    }

    .nav-links li a {
      text-decoration: none;
      color: #333;
      font-weight: 600;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #333;
      border-radius: 2px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #E8E1CE;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
      }

      .nav-links.active {
        max-height: 300px;
        padding: 10px 0;
      }

      .hamburger {
        display: flex;
      }
    }


/* sliding image of home page  */
.slider {
  width: 100%;
  height: 90vh;
  margin: 10px auto;
  position: relative;
  overflow: hidden;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

/* About Section */

.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background-color: #f8f8f8;
  gap: 30px;
  }

  .about-text {
    flex: 1;
    font-family: Arial, sans-serif;
  }

  .about-text h2 {
    color: #0e194b;
    font-size: 28px;
  }

  .about-text p {
    line-height: 1.6;
    color: #444;
    padding-top: 15px;
  }

  .about-image {
    flex: 1;
    text-align: right;
  }

  .about-image img {
    border: #444 4px solid;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .about-section {
    flex-direction: column;
    text-align: center;
    }

  .about-image {
    text-align: center;
    }
  }

/* service */

.services-section {
      background-image: url('/assests/bg_service_1.jpg'); 
      background-size: cover;
      background-position: center;
      padding: 80px 20px;
      text-align: center;
      position: relative;
    }

    .services-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 0;
    }

    .services-section h2 {
      font-size: 2.5rem;
      margin-bottom: 50px;
      position: relative;
      z-index: 1;
      color: whitesmoke;
    }

    .services-container {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
      position: relative;
      z-index: 1;
    }

    .service-box {
      flex: 1 1 200px;
      max-width: 250px;
      color: whitesmoke;
    }

    .service-icon {
      font-size: 50px;
      margin-bottom: 20px;
      color: whitesmoke;
    }

    .service-box h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .service-box p {
      font-size: 0.95rem;
      line-height: 1.5;
      color: white;
    }

    @media (max-width: 768px) {
      .services-container {
        flex-direction: column;
        align-items: center;
      }
    }


/* client */
    .clients-section {
      padding: 50px 20px;
      text-align: center;
    }

    .clients-section h2 {
      font-size: 32px;
      margin-bottom: 40px;
    }

    .client-logos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 40px;
      justify-items: center;
      align-items: center;
      max-width: 1000px;
      margin: 0 auto;
    }

    .client-logos img {
      max-width: 150px;
      max-height: 80px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .client-logos img:hover {
      transform: scale(1.1);
    }


    /* Facts about ARCedge Design */

    .facts-section {
      background: url('/assests/factsbg.jpg') no-repeat center center/cover;
      color: rgb(182, 178, 178);
      text-align: center;
      padding: 80px 20px;
      position: relative;
    }

    .facts-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }

    .facts-section h2 {
      font-size: 32px;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }

    .facts-container {
      display: flex;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .fact-box {
      min-width: 200px;
    }

    .fact-number {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .fact-label {
      font-size: 16px;
    }

    @media (max-width: 768px) {
      .facts-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
      }
    }


    /* Client Speak */
    
    .testimonial-section {
      background: url('https://cdn.pixabay.com/photo/2022/01/03/15/34/office-6911006_1280.jpg') no-repeat center center/cover;
      padding: 60px 20px;
      text-align: center;
      position: relative;
    }

    .testimonial-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(255, 255, 255, 0.8);
      z-index: 0;
    }

    .testimonial-section h2 {
      font-size: 32px;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }

    .testimonial-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .testimonial-card {
      background: white;
      padding: 20px;
      width: 100%;
      max-width: 450px;
      display: flex;
      gap: 20px;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .testimonial-logo {
      width: 80px;
      height: auto;
    }

    .testimonial-content {
      color: black;
      text-align: left;
      font-size: 14px;
      line-height: 1.5;
    }

    .testimonial-content span {
      color: #e67e22;
      display: block;
      margin-top: 10px;
      font-weight: bold;
    }

    .view-all-btn {
      margin-top: 40px;
      padding: 10px 30px;
      background: none;
      border: 1px solid #000;
      font-size: 14px;
      cursor: pointer;
      z-index: 1;
      position: relative;
    }

    @media (max-width: 768px) {
      .testimonial-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }
      .testimonial-content {
        text-align: center;
      }
    }

    /* footer */

    .footer {
      padding: 60px 20px 20px;
      text-align: center;
      position: relative;
    }

    .footer::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: #E8E1CE;
      z-index: 0;
    }

    .footer-content {
      position: relative;
      z-index: 1;
      max-width: 1000px;
      margin: auto;
      color: #121A3F;
    }

    .footer-logo img{
      
      width: 200px; 
      height: auto;
      border: #444 2px solid;
      border-radius: 10px;
      display: block;
      margin: 0 auto 20px auto;
      display: inline-block;
      padding: 10px 20px;
      margin-bottom: 20px; 
    }

    .footer h2 {
      margin: 10px 0;
      font-weight: 500;
    }

    .footer p {
      max-width: 700px;
      margin: 10px auto;
      color: #121A3F;
    }

    .social-links {
      margin: 20px 0;
    }

    .social-links a {
      display: inline-block;
      color: #121A3F;
      background: none;
      border: 2.8px solid #121A3F;
      margin: 0 5px;
      padding: 8px;
      border-radius: 4px;
      text-decoration: none;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1000px;
      margin: 30px auto 10px;
      font-size: 14px;
      color: #121A3F;
    }

    .footer-bottom div {
      margin: 10px;
      text-align: left;
    }

    .footer-bottom hr {
      width: 100%;
      border-color: #333;
      margin: 20px auto;
    }

    .footer-credit {
      font-size: 13px;
      color: #999;
      padding-top: 15px;
      text-align: center;
    }

    .footer-credit a {
      color: #ff6a00;
      text-decoration: none;
    }

    
/* project bg image */
img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.project{
  margin: 30px;
  padding: 2px 3px;
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #121A3F;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  align-items: center;
  gap: 24px;
  row-gap: 30px; 
  padding: 20px; 
  max-width: 1000px;  
  margin: 0 auto;
}

.card {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border: 3px solid #444;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  background-color: white;
  display: block;
  transition: transform 0.3s ease;
}

/* .card:hover img {
  transform: scale(1.05);
} */

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(16, 21, 66, 0.85);
  color: white;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: opacity 0.3s ease;
  padding: 20px;
  box-sizing: border-box
}

.card:hover .overlay {
  opacity: 1;
}

.plus-btn {
  margin: 20px auto 0 auto; 
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: black;
  color: white;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s;
}

 .card:hover .plus-btn {
  display: flex; 
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 20px;
}

.modal-content img {
  width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.close {
  position: absolute;
  top: 20px; right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.modal-content img:hover {
  transform: scale(1.05);
}

.sliders {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.sliders img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

/* Contact  */
* {
    box-sizing: border-box;
   }

body {
    margin: 0;
    background: #fff;
    color: #2e2c55;
  }
.contact-heading{
    margin: auto;
    text-align:center;
    padding-top: 100px;
    padding-bottom: 15px;
    color: rgb(26, 198, 60);
  }
.contact-map{
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 20px;
    box-sizing: border-box;
    text-align:center;
  }

.contact-map iframe{
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

    .map {
      position: center;
      width: 3000px;
      height: 400px;
    }

    .contact-section {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .contact-info{
      padding-bottom: 10px;
      flex: 1 1 300px;
    }

    .contact-form {
      flex: 1 1 300px;
    }

    .contact-info h4 {
      margin-top: 0;
      color: #e85d04;
    }

    .contact-info p,
    .contact-info a {
      color: #333;
      font-size: 15px;
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
      resize: vertical;
    }

    .contact-form textarea {
      height: 100px;
    }

    .contact-form button {
      background-color: #000;
      color: #fff;
      padding: 10px 20px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #E8E1CE;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
      }

      .nav-links.active {
        max-height: 300px;
        padding: 10px 0;
      }

      .hamburger {
        display: flex;
      }
    } */


    /* Client */

  .client-heading {
      margin: 40px;
      padding: 2px 3px;
      text-align: center;
      font-weight: 800;
      font-size: 36px;
      color: #121A3F;
  }

  .client-heading{
  margin: 40px;
  padding: 2px 3px;
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  color: #121A3F;
}

.client-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.cards {
  position: relative;
  width: 250px;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cards img {
  width: 100%;
  height: 100%;
  object-fit: contain;  
  background-color: white;
  display: block;
  transition: transform 0.3s ease;
}

.cards:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(16, 21, 66, 0.85);
  color: white;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: opacity 0.3s ease;
  padding: 20px;
  box-sizing: border-box
}

.cards:hover .overlay {
  opacity: 1;
}

.plus-btn {
  margin: 20px auto 0 auto; 
  width: 40px;
  height: 40px;
  background-color: black;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s;
}

.plus-btn:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

/* team */
.team-section {
      text-align: center;
      padding: 50px 20px;
    }

    .section-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 40px;
      letter-spacing: 2px;
    }

    .team-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* Always 3 cards */
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto; /* centers the grid horizontally */
      padding: 0 20px;
    }

    .team-member {
    width: 100%;
    max-width: 260px;
    background-color: #fff;
    padding-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-5px);
    }

    .team-member img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
    }

    .team-member h3 {
      margin: 15px 10px 5px;
      font-size: 16px;
      font-weight: 600;
    }

    .team-member p {
      font-size: 13px;
      color: #666;
      margin: 0;
    }

    @media (max-width: 600px) {
      .team-member {
        width: 90%;
      }
    }

    @media (max-width: 992px) {
  .team-container {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablets */
  }
}

@media (max-width: 600px) {
  .team-container {
    grid-template-columns: 1fr; /* 1 card per row on small devices */
  }
}