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

.flutter-section {
  background: #f0f8ff; /* light blue for Flutter theme */
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d47a1; /* Flutter blue */
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0d6efd; /* accent line */
  margin: 8px auto 0;
  border-radius: 3px;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Cards */
.flutter-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.5s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.flutter-card .icon {
  font-size: 42px;
  color: #0d6efd; /* Flutter blue */
  margin-bottom: 15px;
  transition: transform 0.4s ease, color 0.4s ease;
}

/* Hover Effect */
.flutter-card:hover {
  background: linear-gradient(135deg, #0d6efd, #ff5722);
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.flutter-card:hover .icon {
  color: #fff;
  transform: scale(1.2) rotate(8deg);
}

.flutter-card h5 {
  font-weight: 600;
  margin: 12px 0;
  color: #222;
  transition: color 0.3s ease;
}

.flutter-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.flutter-card:hover h5,
.flutter-card:hover p {
  color: #fff;
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}




























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





