 body {
    margin: 0;
    padding: 0;
} 
/* Hero Section */
.hero-section {
    display: flex;
    justify-content: flex-start; 
    flex-wrap: wrap;
    padding-top: 120px;
    padding-right: 30px;
}
#particles-js {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: -1;
}
/* Content Section */
.hero-content {
    flex: 1;
    max-width: 50%;
    /*padding-top: 10px;*/
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
   /* background: linear-gradient(45deg, #ff8800, #ff00cc);*/
   /*background: linear-gradient(to bottom right, #A020F0, #FF6347);*/
   background: linear-gradient(to right, #A020F0, #FF6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}
.hero-content h2 {
    font-size: 2rem;
}

.hero-content h2 span {
    color: #00aced; /* Blue accent */

}
.hero-content p {
    font-family: "Georgia", "Times New Roman", serif;
    color: black; 
    font-size: 18px;
    padding-top: 15px;
    /*font-weight: 500;*/
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
}
.icon-sky-blue {
    color: #0ea5e9; /* Tailwind's sky-500 */
    margin-bottom: 15px;
}
.service-item p {
    font-family: "Georgia", "Times New Roman", serif;
    color: black;
    font-size: 18px;
}
.service-item h3{
    font-family: "Georgia", "Times New Roman", serif;
    color: #00aced;
    font-size: 28px;

}
.hero-image img {
    max-width: 70%;
    height: 80%;
    border-radius: 10px;

}

/*  STARTED SERVICE SECTION */
.service-grid {
  padding: 50px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  border-top: 2px solid #e0e0e0;
  border-left: 2px solid #e0e0e0;
  gap: 0;
}

.grid-item {
  padding: 20px;
  background-color: white;
  border-right: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px; /* Fixed height for consistency */
  position: relative;
  transition: background-color 0.3s ease;
}

.grid-item h3 {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    
    color: #2c2c2c;
    margin-bottom: 20px;

}

.grid-item p {
  display: none;
  font-size: 18px;
  /*color: #555;*/
  line-height: 1.5;
  margin-top: 10px;
}

.grid-item img {
  width: 50px;
  height: 50px;
  margin-top: auto;
  transition: opacity 0.3s ease;
}

.icon-sky {
  display: block;
}

.icon-black {
  display: none;
}

.grid-item:hover p {
  display: block;
}

.grid-item:hover .icon-sky {
  display: none;
}

.grid-item:hover .icon-black {
  display: block;
}

/* ENDED SERVICE SECTION */


 
/* WHY CHOOSE US */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 200px 100px 200px;
    margin-top: 40px;
}

.left, .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 400px;
}

.center {
    flex: 1;
    text-align: center;
}

.center img {
    width: 250px;
    height: auto;
    border-radius: 20px;
    margin: 60px;
}

.box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.box img {
    width: 60px;
    height: auto;
}

.text {
    text-align: right;
    flex: 1;
}

.textRight {
    text-align: left;
    flex: 1;
}

.title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #1e90ff;
    margin-bottom: 10px;
}

.desc {
    font-family: "Georgia", "Times New Roman", serif;
    color: black;
    font-size: 18px;
}







.project-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}
.section-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.services-header {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
}

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

.card {
  background-color: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.card-tags {
  font-size: 1.1rem;
  color: #1e90ff;
  margin-bottom: 15px;
}

.card-description {
  /*font-size: 18px;
  color: #444;
  line-height: 1.6;*/
  font-family: "Georgia", "Times New Roman", serif;
    font-size: 18px;
    margin: 0 auto;
    max-width: 900px;
}

.card-bottom {
  margin-top: 20px;
}

.card-link {
  text-decoration: none;
  color: #1e90ff;
  font-weight: bold;
  transition: color 0.2s ease;
}

.card-link:hover {
  color: #0056b3;
}

/*OLD*/
.testimonials {
  /*background: #f8f9fa;*/
  padding: 60px 20px;
  text-align: center;
  /*background: linear-gradient(135deg, #667eea, #764ba2);*/
  background: #f8f9fa;
}

.services-header {
  /*font-size: 36px;
  margin-bottom: 40px;
  color: #333;*/

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 40px;
}

.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 8px; /* square image with rounded corners */
  object-fit: cover;
  border: 3px solid #007bff;
}

.client-info h4 {
  font-size: 18px;
  color: #222;
  margin: 0;
}

.client-info .designation {
  font-size: 14px;
  color: #777;
  margin: 4px 0;
}

.client-info .company-link {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.client-info .company-link:hover {
  text-decoration: underline;
}

.testimonial-text {
  font-style: italic;
  color: #444;
  margin-top: 15px;
  font-size: 16px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}





.faq-hover-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-hover-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #222;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /*text-align: center
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 40px;*/
}

.faq-hover-item {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-hover-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.question {
  background-color: #f9f9f9;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-hover-item:hover .question {
  background-color: #eef6ff;
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
  color: #0077cc;
}

.faq-hover-item:hover .arrow {
  transform: rotate(90deg);
}

.answer {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  color: #555;
  padding: 0 24px;
  font-size: 16px;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-hover-item:hover .answer {
  max-height: 500px; /* large enough to show full content */
  padding: 18px 24px 24px;
}







/* 🔹 Mobile Responsive */
/*@media (max-width: 768px) {
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 100px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .social-icons {
        display: flex;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .hero-image img {
        width: 70%;
        max-width: 250px;
    }
    .services {
        padding: 10px;
    }

    .service-container {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .container {
        flex-direction: column;
        padding: 20px;
    }
    .left, .right {
        max-width: 100%;
    }
    .box {
        flex-direction: column;
        text-align: center;
    }
    .box img {
        width: 50px;
    }
    .grid-item p {
    display: block !important; 
  }

  .grid-item .icon-sky {
    display: none !important;
  }

  .grid-item .icon-black {
    display: block !important;
  }
   .faq-hover-section {
        padding: 0 15px;
      }

      .faq-hover-section h2 {
        font-size: 26px;
      }

      .question {
        font-size: 16px;
        padding: 16px 20px;
      }

      .arrow {
        font-size: 16px;
      }

      .answer {
        font-size: 15px;
        padding: 0 20px;
      }

      .faq-hover-item:hover .answer {
        padding: 16px 20px 20px;
      }
      .df-container {
    flex-direction: column;
    text-align: center;
  }

  .df-cta-buttons {
    justify-content: center;
  }

  .df-logo-box img {
    margin: 0 auto;
}
.container {
        flex-direction: column;
        padding: 20px;
    }

    .left .right {
        max-width: 100%;
        align-items: center;
    }

    .box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text {
        text-align: center;
    }
    .textRight {
        text-align: center;
    }

    .box img {
        width: 50px;
        margin-top: 10px;
    }

    .title {
        font-size: 16px;
    }

    .desc {
        font-size: 13px;
    }
}*/

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 100px 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .social-icons {
    display: flex;
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    width: 70%;
    max-width: 250px;
  }

  .services {
    padding: 10px;
  }

  .service-container {
    grid-template-columns: 1fr;
  }

  .container {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .left,
  .right {
    max-width: 100%;
    align-items: center;
  }

  .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .box img {
    width: 50px;
    margin-top: 10px;
  }

  .text,
  .textRight {
    text-align: center;
  }

  .title {
    font-size: 16px;
  }

  .desc {
    font-size: 13px;
  }

  .grid-item p {
    display: block !important;
  }

  .grid-item .icon-sky {
    display: none !important;
  }

  .grid-item .icon-black {
    display: block !important;
  }
   .faq-hover-section {
        padding: 20px 15px;
      }

      .faq-hover-section h2 {
        font-size: 22px;
      }

      .question {
        font-size: 15px;
      }

      .answer {
        font-size: 14px;
      }
/*
  .faq-hover-section {
    padding: 0 15px;
  }

  .faq-hover-section h2 {
    font-size: 26px;
  }

  .question {
    font-size: 16px;
    padding: 16px 20px;
  }

  .arrow {
    font-size: 16px;
  }

  .answer {
    font-size: 15px;
    padding: 0 20px;
  }

  .faq-hover-item:hover .answer {
    padding: 16px 20px 20px;
  }
*/
  .df-container {
    flex-direction: column;
    text-align: center;
  }

  .df-cta-buttons {
    justify-content: center;
  }

  .df-logo-box img {
    margin: 0 auto;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-image img {
        width: 80%;
    }
}
