


/* 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;
  }
}

section {
      padding: 60px 20px;
    }

    h2 {
      font-size: 2.2rem;
      margin-bottom: 40px;
      font-weight: bold;
      text-align: center;
    }

    .pricing-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .pricing-card {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .pricing-card h4 {
      margin-bottom: 10px;
      font-size: 1.4rem;
    }

    .pricing-card h2 {
      margin: 15px 0;
      font-size: 2rem;
      color: #007bff;
    }

    .pricing-card ul {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      line-height: 1.6;
    }

    .pricing-card ul li {
      margin: 8px 0;
    }

    .pricing-card .btn {
      display: inline-block;
      background: #007bff;
      color: #fff;
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 8px;
      transition: background 0.3s ease;
    }

    .pricing-card .btn:hover {
      background: #0d47a1;
    }

    /* Color variations */
    .seo h2 { color: #007bff; }   /* Green */
    .smo h2 { color: #007bff; }   /* Orange */

    /* Payment Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      animation: scaleIn 0.3s ease;
    }

    .modal-content h3 {
      margin-bottom: 20px;
    }

    .modal-content button {
      margin: 8px;
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
      color: #fff;
    }

    .paypal { background: #003087; }
    .razorpay { background: #0d6efd; }
    .stripe { background: #6772e5; }
    .upi { background: #2e7d32; }

    .modal-content button:hover {
      opacity: 0.85;
    }

    .close-btn {
      background: #e74c3c;
    }

    @keyframes scaleIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
















/* 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;
  }
}


















