
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */

* {
      margin: 0;
      padding: 0%;
      box-sizing:border-box;
      font-family: "Poppins", sans-serif;
      scroll-behavior:smooth;

    }
    body {
    
      background: #ffff;
      color: #000;
    }
    .logo img{
      width: 180px;
      padding: 10px;
    }
    .navbar {
      background: #1a1a1a;
      box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
    }
    .navbar-brand {
      font-weight: 600;
      color: #f5f5f5 !important;
    }
    .nav-link {
      color: #f5f5f5 !important;
      font-weight: 500;
      margin-left: 20px;
    }
   
    .hero {
      /* background: linear-gradient(135deg, #333300, #1a1a1a); */
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url(../images/bg1.jpg) center / cover no-repeat;
    
      text-align: center;
      padding: 100px 20px;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 600;
      color: #f5f5f5;
    }
    .hero p {
      font-size: 1.2rem;
      margin-top: 10px;
      color: #ccc;
    }
    .section-title {
      font-weight: 600;
      text-align: center;
      margin: 60px 0 30px;
      color: #ffcc00;
       font-family: "Poppins", sans-serif;
    }
.about-card {
  background: #FEC903; /* Deep black background */
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(10, 10, 10, 40%); /* yellow shadow glow */
  max-width: 1400px;
  margin: 60px auto;
   font-family: "Poppins", sans-serif;
  color: #000;
  transition: 0.3s ease;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-icon img {
  /* width: 550px; */
  border: 1px solid rgba(10, 10, 10, 40%);
  box-shadow:0 10px 30px #000;
  border-radius: 20px;
  /* filter: brightness(0) invert(1); makes logo white on dark bg */
}
.about-icon{
  width: 45%;
}

.about-text {
  width: 50%;
  max-width: 700px;
  color: #000;
}

.about-start {
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 13px;
  color: #000; /* yellow */
}

.about-title {
  font-size: 42px;
  color: #000;
  margin: 10px 0 20px;
}

.about-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.dots {
  margin-top: 20px;
}
.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #f1c40f;
  border-radius: 50%;
  margin-right: 8px;
  transition: transform 0.3s;
}
.dots span:hover {
  transform: scale(1.3);
}

.about-card {
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.services-section {
  background: #ffff;
  padding: 80px 30px;
  color: #fff;
   font-family: "Poppins", sans-serif;
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-size: 38px;
  margin-bottom: 50px;
  font-weight: 700;
}
.section-title span {
  color: #000;
   font-family: "Poppins", sans-serif;
}



.service-card {
  background: #f1c40f;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 490px;
  display: flex;
  align-items: center;
  justify-content: center; /* everything centered before hover */
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* Card lift effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.content-wrapper {
  transition: all 0.4s ease;
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  transition: all 0.4s ease;
  margin: 0 auto 15px;
}

.service-card h5 {
  font-weight: 600;
  color: #000;
  margin: 0;
  transition: all 0.4s ease;
}

/* Hover effect: move icon+title upward */
.service-card:hover .content-wrapper {
  transform: translateY(-80px); /* move up to make space */
}

/* Circle → square + scale */
.service-card:hover .icon-wrapper {
  border-radius: 15px;
  width: 120px;
  height: 120px;
  transform: scale(1.05);
}

/* ul absolutely at bottom, hidden until hover */
.service-card ul {
  list-style:  none;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
  position: absolute;
  left: 0;
  right: 0;
 
  
}

.service-card:hover ul {
  opacity: 1;
  transform: translateY(0);
}

.service-card ul li {
  font-size: 18px;
  color: #000000;
 
  text-align: center;
}

#work {
  position: relative;
  width: 90%;
  max-width: 1400px;
 /* margin: 60px auto;*/
  padding: 60px 20px;
  border-radius: 20px;

  /* gradient background with theme colors */
  background: linear-gradient(135deg, rgba(20,20,20,1) 70%, rgba(255,200,0,0.1) 100%);

  /* colorful glowing border */
  border: 2px solid rgba(255, 200, 0, 0.4);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    inset 0 1px 3px rgba(255, 255, 255, 0.05),
    0 0 20px rgba(255, 200, 0, 0.5),
    0 0 40px rgba(255, 150, 0, 0.3);
}

/* top highlight line for 3D shine */
#work::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(to bottom, rgba(255, 215, 100, 0.3), transparent);
}

/* title styling inside 
#work h2 {
  /* text-align: center;
  color: #FFD700;
  font-size: 2rem;
  font-weight: 700;
  /* margin-bottom: 20px;
  background: linear-gradient(90deg, #FFD700, #FF8C00, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

    .card {
      background-color: #1a1a1a;
      border: none;
    }
    .card img {
      height: 200px;
      object-fit: cover;
    }
    .card-title {
      font-weight: 600;
      color: #ffcc00;
    }
    .card-text {
      color: #ccc;
    }
    /* footer {
      background: #000;
      color: #ffcc00;
      padding: 40px 0;
    }
    footer a {
      color: #ffcc00;
      margin: 0 10px;
      text-decoration: none;
    } */
    .btn-custom {
      background: #fff;
      color: #000;
      padding: 10px 25px;
      font-weight: 500;
      border-radius: 50px;
      border: 2px solid black;
    }
    .btn-custom:hover {
      background: black;
      color: #fff;
      border: 2px solid white
    }
    .logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }
    .logo-grid img {
      max-height: 60px;
      margin: 20px;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }
    .logo-grid img:hover {
      filter: grayscale(0%);
    }
    .form-control, textarea {
      border-radius: 0;
      box-shadow: none !important;
      background-color: #fff;
     padding: 20px;
      color: #000;
      border: 2px solid #FFCC00;
    }
    textarea{
      resize: none;
    }
    .clients-section {
      text-align: center;
  
      padding: 40px 0;
    }
    .slider {
      overflow: hidden;
      position: relative;
      height: 100px;
      background-color: #fdfdfd;
    }
    .slide-track {
      display: flex;
      width: calc(250px * 16);
      animation: scroll 20s linear infinite;
    }
    .slide-track:hover {
      animation-play-state: paused;
    }
    .slide {
      width: 250px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fff;
    }
    .slide img {
      max-height: 100px;
      width: auto;
      padding: 0 20px;
      object-fit: contain;
    }
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }






    .swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 420px;
    background-color: #fff;
    overflow: hidden;
    border-radius: 8px;
  }

  .picture {
    width: 420px;
    height: 420px;
    overflow: hidden;
  }

  .picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* .detail {
    padding: 25px 20px;
    font-weight: 600;
    text-align: center;
  } */

  .detail h3 {
    margin: 0;
    font-size: 20px;
  }

  .detail span {
    display: block;
    font-size: 16px;
    color: #f44336;
  }

.footer-contact {
  display: flex;
  justify-content: space-around;
 
  background: #111;
  color: #ddd;
  padding: 40px 20px;
  text-align: center;
}

.footer-box {
  flex: 1;
  
  padding: 10px 20px;
}

.footer-box i {
  font-size: 28px;
  color: #ffc107;
  margin-bottom: 10px;
}

.footer-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffc107;
}

.footer-box p, 
.footer-box a {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  text-decoration: none;
}

.footer-box a:hover {
  color: #ffc107;
  text-decoration: underline;
}



.footer-bottom {
  text-align: center;
}

.social-links {
  margin: 10px 0;
}

.social-links a {
  margin: 0 10px;
  color: #ffcc00;
  font-size: 1.2rem;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(255, 204, 0, 1);
}


@media (max-width:991px){
  .about-icon, .about-text{
   width: 100%;
  }

  .about-text{
   margin-top: 10%;
  }

   
  .footer-contact{
    flex-direction: column;
    align-items: center;
  }
}