

/* Contact Hero Section */
.contact-hero {
  position: relative;
  background: url('src/contact.jpeg') center/cover no-repeat; /* change image if needed */
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.contact-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 50, 0.7); /* dark overlay */
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.5s ease;
}

.contact-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
}


/* ✅ Paragraph style */
.contact-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
  color: #ddd;
}

/* ✅ Centered breadcrumb button */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border: 2px solid #fff;   /* white border */
  border-radius: 30px;
  font-size: 1rem;
  color: #fff;
  background: transparent;  /* transparent background */
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
  margin: 0 auto;
}

.breadcrumb:hover {
  background: rgba(255, 255, 255, 0.1); /* light white on hover */
  transform: translateY(-3px);
}

.breadcrumb a {
  color: #fff; /* white text */
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb span {
  margin: 0 6px;
  color: #fff;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2.2rem;
  }
  .contact-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
  .breadcrumb {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}

.faq-container {
      max-width: 1200px;
      margin: auto;
      padding: 2rem;
    }

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

    .faq-heading {
      font-weight: 700;
      font-size: 4.5rem;
      margin-bottom: 0.5rem;
      color: #0d6efd;
    }

    
  .underline {
    display: block;
    width: 60px;       /* length of the underline */
    height: 3px;       /* thickness */
    background-color: #0d6efd;
    margin: 8px auto 0; /* spacing above and below */
    border-radius: 2px;
  }

    .faq-para.lead {
      font-size: 2.0rem;
      margin-bottom: 3rem;
      color: #555;
    }

    /* Images Row */
    .images-row {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .images-row img {
      max-width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .images-row img:hover {
      transform: scale(1.05);
    }

    /* FAQ Accordion */
    .faq-item {
      background: #fff;
      margin-bottom: 1rem;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .faq-question {
      padding: 1rem 1.5rem;
      cursor: pointer;
      position: relative;
      font-weight: 500;
      font-size: 1.4rem;
      color: #0d6efd;
      transition: background 0.3s ease;
    }
    .faq-question {
  display: flex;
  align-items: center;
  gap: 10px; /* space between tick and text */
  padding-left: 0.5rem; /* optional extra spacing */
}

.tick-icon {
  width: 40px;   /* adjust size as needed */
  height: 40px;
  object-fit: contain;
}


    .faq-question:hover {
      background: #e7f1ff;
    }

    .faq-question::before {
      content: "+";
      position: absolute;
      right: 1.5rem;
      font-weight: 700;
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .faq-question.active::before {
      content: "-";
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 1.5rem;
      font-size: 1.2rem;
      line-height: 1.6;
      color: #333;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .faq-answer.show {
      padding: 1rem 1.5rem;
      max-height: 500px; /* enough to fit content */
    }

    /* Responsive */
    @media (max-width: 768px) {
      .images-row img {
        height: 200px;
      }
    }






























/* Section Background */
.project-section {
  /* background: linear-gradient(135deg, #0d6efd, #004085); */
  background: url('src/project-bg.jpg');
  padding: 80px 20px;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.project-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* ensures equal height */
  justify-content: space-between;
  gap: 50px;
}

/* Left Side */
.project-left {
  flex: 1.2;  /* Bigger left side */
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-title {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}

/* Call Image */
.call-img img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.call-text {
  font-size: 20px;
  margin-bottom: 5px;
}

.phone-number {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.project-description {
  font-size: 25px;
  line-height: 1.6;
  color: #f1f1f1;
}

/* Right Side */
.project-right {
  flex: 0.8;  /* Smaller right side */
  min-width: 250px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cloud-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

/* Thinking Cloud */
.thinking-cloud {
  display: inline-block;
  position: relative;
  background: #fff;
  color: #0d6efd;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 20px;
  animation: cloudBounce 2s infinite, cloudGlow 2s infinite;
}

/* Cloud Tail */
.thinking-cloud::before,
.thinking-cloud::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.thinking-cloud::before {
  width: 20px;
  height: 20px;
  bottom: -25px;
  left: 40px;
}

.thinking-cloud::after {
  width: 10px;
  height: 10px;
  bottom: -40px;
  left: 25px;
}

/* Cloud Bounce */
@keyframes cloudBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Greyish Glow */
@keyframes cloudGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(150,150,150,0.4); }
  50% { box-shadow: 0 0 20px rgba(150,150,150,0.8); }
}

/* Floating Dots */
.dot {
  position: absolute;
  background: #ddd;
  border-radius: 50%;
  opacity: 0.8;
  animation: floatUp 3s infinite ease-in-out;
}

.dot1 { width: 8px; height: 8px; top: -20px; left: -10px; animation-delay: 0s; }
.dot2 { width: 10px; height: 10px; top: -25px; right: -15px; animation-delay: 0.5s; }
.dot3 { width: 6px; height: 6px; top: -40px; left: 20px; animation-delay: 1s; }
.dot4 { width: 9px; height: 9px; top: -45px; right: 10px; animation-delay: 1.5s; }

@keyframes floatUp {
  0% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-10px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 0.8; }
}

.about-img {
  max-width: 300px;   /* limit image size */
  width: 100%;        /* responsive */
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;     /* center it */
}
  
/* Responsive */
@media (max-width: 992px) {
  .project-content {
    flex-direction: column;
    text-align: center;
  }
  .thinking-cloud {
    font-size: 18px;
    padding: 12px 20px;
  }
}






