@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tiro+Devanagari+Hindi&display=swap');
header {
    
    color: #fff;
    /* padding: 10px 20px; */
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .navbar nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .navbar nav ul {
    list-style: none;
    display: flex;
    /* gap: 20px; */
    margin: 0;
    padding: 0;
}

.active
{
       background-color: #ffb703;
      color: black;   
}
header .navbar nav ul li {
    display: inline;
    
}

header .navbar nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: 400;
   
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
   
    transition: background-color 0.3s, color 0.3s;
    
}

header .navbar nav ul li a:hover {
    color: var(--ahov);
    background-color: #ffb703;
    
    color: black;
}



 body {
      margin: 0;
      font-family: poppins;
      background-color:  #f1f1f7;;
      color: #222;
      overflow-x: hidden;
    }

    .hero {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 60px 10%;
      min-height: 100vh;
      background-color: #fff;
      overflow: hidden;
    }

    .hero-text {
      max-width: 50%;
      z-index: 2;
    }

    .hero-text h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero-text h1 span {
      color: #f9a825; 
    }

    .hero-text p {
      color: #555;
      font-size: 1rem;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .btn {
      background-color: #f9a825;
      border: none;
      color: black;
      padding: 12px 25px;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s;
      display: inline-block;
    }

    .btn:hover {
      background-color: #e18c00;
    }

    .hero-img img {
      max-width: 450px;
      width: 100%;
      z-index: 2;
      position: relative;
    }

    
    .shape {
      position: absolute;
      opacity: 0.7;
      animation: float 6s infinite ease-in-out alternate;
    }

    .circle {
      width: 20px;
      height: 20px;
      border: 2px solid #4caf50;
      border-radius: 50%;
      top: 20%;
      left: 5%;
      animation-delay: 0s;
    }

    .square {
      width: 20px;
      height: 20px;
      border: 2px solid #2196f3;
      top: 70%;
      left: 15%;
      transform: rotate(10deg);
      animation-delay: 1s;
    }

    .diamond {
      width: 18px;
      height: 18px;
      border: 2px solid #f9a825;
      top: 40%;
      right: 12%;
      transform: rotate(45deg);
      animation-delay: 2s;
    }

    .triangle {
      width: 0;
      height: 0;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      border-bottom: 20px solid #ff5252;
      top: 80%;
      right: 5%;
      animation-delay: 3s;
    }

    @keyframes float {
      0% { transform: translateY(0) rotate(0deg); }
      100% { transform: translateY(-30px) rotate(20deg); }
    }

    @media (max-width: 900px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }
      .hero-text {
        max-width: 100%;
        margin-bottom: 30px;
      }
    }

   
.projects h1 {
    text-align: center;
    
}
.projects .pro{
    margin: 0 auto;
    width: 60%;
    text-align: center;

}


    .projects-section {
      text-align: center;
      padding: 60px 10%;
    }

    .projects-section h2 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #222;
    }

    .projects-section p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 40px;
      line-height: 1.5;
    }

    .projects {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    
    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-content {
      padding: 18px;
    }

    .card h3 {
      font-size: 1.2rem;
      margin-bottom: 8px;
    }

    .card p {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 15px;
      line-height: 1.4;
    }

    
    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      background: #f2f2f2;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      color: #333;
      border: 1px solid #ddd;
      transition: background 0.3s;
    }

    .tag:hover {
      background: #f9a825;
      color: #fff;
      border-color: #f9a825;
    }




    .reviews{
            display: flex;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
    }

    .testimonial-section {
      width: 90%;
      max-width: 1100px;
      text-align: center;
    }

    .testimonial-section h2 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .testimonial-section p {
      color: #555;
      margin-bottom: 30px;
    }

    .carousel-container {
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin: 0 10px;
      padding: 20px;
      flex: 0 0 calc(33.333% - 20px); 
      text-align: left;
    }

    .stars {
      color: #f5a623;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .card h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .card p {
      font-size: 14px;
      color: #666;
      margin-bottom: 15px;
    }

    .profile {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .profile img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }

    .profile-info h4 {
      font-size: 14px;
      margin: 0;
    }

    .profile-info p {
      font-size: 12px;
      color: #888;
    }

    
    .dots {
      text-align: center;
      margin-top: 15px;
    }

    .dot {
      height: 10px;
      width: 10px;
      margin: 0 5px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
      transition: background 0.3s;
    }

    .dot.active {
      background-color: #f5a623;
    }

    
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      font-size: 20px;
      cursor: pointer;
      padding: 10px;
      border-radius: 50%;
      z-index: 10;
    }

    .arrow.left {
      left: 10px;
    }

    .arrow.right {
      right: 10px;
    }

    @media (max-width: 768px) {
      .card {
        flex: 0 0 calc(50% - 20px); 
      }
    }

    @media (max-width: 500px) {
      .card {
        flex: 0 0 100%; 
      }
    }



.contact{
  padding: 40px;
        margin: 0;
      padding: 40px
}
  .section {
      display: flex;
      justify-content: center;
      gap: 40px;
      align-items: flex-start;
    }

    .form {
      flex: 2;
    }

    .form h2 {
      margin-bottom: 18px;
      font-size: 22px;
      font-weight: bold;
      padding-bottom: 26px;
      color: #222;
    }

    .box {
      background: #fff;
      padding: 35px;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    .box input,
    .box textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 18px;
      border: none;
      border-radius: 4px;
      background: #f1f1f7;
      font-size: 14px;
    }
     .box label{
      opacity: 0.7;
     }

    .box textarea {
      resize: none;
      height: 120px;
    }

    .box button {
      background: #fbb901;
      color: #000;
      padding: 12px 25px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: bold;
    }

    .info {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .card {
      background: #fff;
      padding: 20px;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    .card .icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fbb901;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }

    .card p {
      margin: 6px 0;
      font-size: 14px;
    }

    .card strong {
      margin-right: 8px;
    }

    .footer-logos {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .ratings {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 15px;
    }

    .rating-card {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 14px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .rating-card img {
      width: 28px;
      height: 28px;
      border-radius: 4px;
    } */

   .footer {
  background:  #f1f1f7;
  padding: 40px 60px;
  color: #222;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left .logo {
  font-size: 28px;
  font-weight: bold;
  color: #f5b400;
}

.footer-middle {
  display: flex;
  gap: 40px;
}

.footer-middle h4, .footer-right h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
}

.footer-middle ul li a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
}

.footer-right .social-icons a {
  font-size: 20px;
  margin-right: 15px;
  color: #444;
  transition: color 0.3s;
}

.footer-right .social-icons a:hover {
  color: #f5b400;
}


@media (max-width: 1024px) {
  .hero {
    padding: 40px 5%;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .projects-section {
    padding: 40px 5%;
  }
  .footer-container {
    flex-direction: row;
    gap: 20px;
  }
}


@media (max-width: 768px) {
  header .navbar nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .hero-img img {
    max-width: 320px;
  }

  .projects {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .reviews .card {
    flex: 0 0 calc(50% - 20px); 
  }

  .section {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .footer-middle {
    justify-content: center;
  }
}


@media (max-width: 500px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }
  .hero-text p {
    font-size: 0.9rem;
  }
  .btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .projects {
    grid-template-columns: 1fr;
  }

  .reviews .card {
    flex: 0 0 100%; 
  }

  .box {
    padding: 20px;
  }

  .footer-container {
    align-items: center;
  }
  .footer-middle {
    flex-direction: column;
    gap: 20px;
  }
}