/* Services Section */
.services-section {
  position: relative;
  background: #ffffff;
  padding: 100px 0;
  overflow: hidden;
  z-index: 1;
}

/* Strong Liquid Flow Background */
.services-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 30%, rgba(0, 0, 255, 0.25), transparent 40%),
              radial-gradient(circle at 80% 40%, rgba(0, 128, 255, 0.20), transparent 40%),
              radial-gradient(circle at 50% 70%, rgba(0, 0, 128, 0.22), transparent 40%);
  animation: liquidFlow 12s ease-in-out infinite;
  filter: blur(100px);   /* More blur = smooth liquid look */
  opacity: 0.8;
  z-index: 0;
}

@keyframes liquidFlow {
  0%   { transform: translate(0,0) scale(1); }
  25%  { transform: translate(200px, -150px) scale(1.3); }
  50%  { transform: translate(-250px, 200px) scale(1.2); }
  75%  { transform: translate(150px, -200px) scale(1.4); }
  100% { transform: translate(0,0) scale(1); }
}

/* Section Title */
.services-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #0a0a3c;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 25px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Icons */
.service-card i {
  font-size: 45px;
  color: #0a0a7a;
  margin-bottom: 20px;
  transition: transform 0.3s, color 0.3s;
}
.service-card:hover i {
  transform: scale(1.2) rotate(8deg);
  color: #0044cc;
}

/* Title */
.service-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a0a3c;
  margin-bottom: 12px;
}

/* Description */
.service-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}



/* Section Base */
.about-section {
  background: #ffffff;
  color: #333;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Info Cards */
.info-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease-in-out;
}
.info-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Animations */
.animate-fade-down { animation: fadeDown 1s ease-in-out; }
.animate-fade-in { animation: fadeIn 1.2s ease-in-out; }
.animate-zoom { animation: zoomIn 1s ease-in-out; }
.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.8s; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-25px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* Floating Circles */
.floating-circle {
  position: absolute;
  border-radius: 50%;
  animation: floatY 6s ease-in-out infinite alternate;
  z-index: 0;
}
.circle-blue {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0,136,255,0.15), transparent);
  bottom: 10%;
  left: 8%;
}
.circle-orange {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,140,0,0.15), transparent);
  top: 15%;
  right: 10%;
  animation-duration: 7s;
}
@keyframes floatY {
  from { transform: translateY(0); opacity: 0.6; }
  to   { transform: translateY(-25px); opacity: 1; }
}


/* Icons Styling */
.why-card i {
  transition: transform 0.3s, text-shadow 0.3s;
}
.why-card:hover i {
  transform: scale(1.2);
  text-shadow: 0 0 12px rgba(0,0,0,0.25);
}

/* Portfolio Section */
.portfolio-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.portfolio-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.portfolio-card:hover img {
  transform: scale(1.08);
}
.portfolio-content h5 {
  color: #1f1c2c;
}


/* FAQ Section Background */
.faq-section {
  background: #fff; /* White background */
  position: relative;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(13,110,253,0.15), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(255,165,0,0.15), transparent 60%);
  animation: moveBg 12s linear infinite alternate;
  z-index: 1;
}

@keyframes moveBg {
  from { transform: translate(0,0) rotate(0deg); }
  to   { transform: translate(50px,50px) rotate(360deg); }
}

/* Glass Card Look */
.glass-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Accordion Buttons */
.accordion-button {
  font-weight: 600;
  background: transparent;
  color: #0d1b2a;
}
.accordion-button:not(.collapsed) {
  background: rgba(13,110,253,0.1);
  color: #0d6efd;
}
.accordion-button:focus {
  box-shadow: none;
}

/* Accordion Body */
.accordion-body {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* Contact Section */
/* Contact Section */
.contact-section {
  background: #fff;
  color: #333;
  position: relative;
  overflow: hidden;
}

/* 🔹 Animated Background (Diagonal Waves) */
.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 123, 255, 0.05),
    rgba(0, 123, 255, 0.05) 20px,
    transparent 20px,
    transparent 40px
  );
  animation: moveStripes 12s linear infinite;
  z-index: 1;
}

@keyframes moveStripes {
  from { transform: translateX(0); }
  to   { transform: translateX(-200px); }
}

/* Gradient Title */
.text-gradient {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Contact Card - New Professional Look */
.contact-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

/* Accent Border (Top Line) */
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 16px 16px 0 0;
}

/* Hover */
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.15);
}

/* Titles inside card */
.contact-card h5 {
  font-weight: 700;
  color: #007bff;
  margin-bottom: 15px;
}

/* Inputs */
.contact-card input,
.contact-card textarea {
  background: #f9fbfd;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.contact-card input:focus,
.contact-card textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
  background: #fff;
}

/* Button */
.contact-card button {
  border-radius: 8px;
  font-weight: 600;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border: none;
  transition: all 0.3s ease;
}
.contact-card button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

/* Social Icons - Keep modern */
.social-icons a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #007bff;
  text-align: center;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: #007bff;
  color: #fff;
  transform: translateY(-4px) scale(1.15);
  box-shadow: 0 0 12px rgba(0,123,255,0.4);
}


/* Map Section */
/* Map Section */
.map-section {
  background: #fff;   /* White background */
  padding: 60px 20px;
  color: #333;
}

/* Header */
.map-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #007bff;   /* Blue highlight */
}
.map-header p {
  font-size: 1rem;
  color: #555;
}

/* Map Container */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
}
.map-container:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;   /* smaller height for mobile */
  }
  .map-header h2 {
    font-size: 1.6rem;
  }
  .map-header p {
    font-size: 0.9rem;
  }
}

.footer-section {
  background: #000;  /* Dark Black */
  color: #ddd;
  font-size: 0.95rem;
}

.footer-section h5,
.footer-section h4 {
  color: #fff;
}

.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #0d6efd; /* Blue highlight */
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  text-align: center;
  margin-right: 8px;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: #0d6efd;
  transform: translateY(-3px);
  box-shadow: 0 0 10px rgba(13,110,253,0.6);
}

