/* --- Global --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #1f1f1f;
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

/* Utility */
.container {
  width: 90%;
  max-width: 1,200px;
  margin: auto;
}

.btn-primary {
  display: inline-block;
  background: #006bff;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #0053c9;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Header */
header {
  background: #ffffffee;
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  z-index: 999;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  font-size: 1.6rem;
  font-weight: 600;
}
.logo span { color: #006bff; }
nav ul {
  display: flex;
  gap: 1.2rem;
}
nav a {
  text-decoration: none;
  color: #1f1f1f;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover { color: #006bff; }

/* Hero */
/* Full-screen Hero */
.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Image & Overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("./assets/Banner.JPG") center/cover no-repeat;
  transform: scale(1.1);
  animation: zoom 20s linear infinite alternate;
}

@keyframes zoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1); }
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,107,255,0.5), rgba(0,198,255,0.5));
}

/* Animated Shapes */
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: float 10s ease-in-out infinite;
}
.shape-1 { width: 200px; height: 200px; top: 10%; left: 5%; }
.shape-2 { width: 150px; height: 150px; bottom: 15%; right: 10%; animation-duration: 12s; }
.shape-3 { width: 250px; height: 250px; top: 30%; right: 20%; animation-duration: 14s; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(20px) rotate(45deg); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: auto;
}
.hero-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: inline-flex;
  gap: 2rem;
}
.hero-features li {
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.hero-features i {
  margin-right: 0.5rem;
  color: #fff;
}

/* Button Enhancement */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}


/* Sections */
.section { padding: 4rem 0; }
.section-title {
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
  color: #006bff;
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.about-list {
  margin-top: 1rem;
  list-style: disc inside;
}
.about-img img {
  border-radius: 8px;
}

/* Projects */
.projects-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 600px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.project-card {
  background: #f5f7ff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px #0001;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.project-card img {
  height: 200px;
  object-fit: cover;
}
.project-info { padding: 1rem; }
.project-info h4 { margin-bottom: 0.3rem; }

/* CTA */
.cta {
  background: #006bff;
  color: #fff;
  text-align: center;
  padding: 3.5rem 0;
}
.cta-title {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
form input,
form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}
form button {
  cursor: pointer;
}
.status { margin-top: 0.5rem; font-size: 0.9rem; }

/* Footer */
footer {
  background: #0e0e0e;
  color: #b6b6b6;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.9rem;
}

/* --- Scroll-triggered Animations --- */
.animate-up,
.animate-fade {
  opacity: 0;
  transform: translateY(40px);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

.in-view.animate-up {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}
.in-view.animate-fade {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}


/* …rest of CSS unchanged… */
/* HEADER STYLING */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  font-weight: 500;
  color: #1f1f1f;
  padding: 0.25rem 0;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: -4px;
  background: #006bff;
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: #1f1f1f;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  nav ul {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    width: 200px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  nav ul.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  nav li {
    margin-bottom: 1rem;
  }
}
/* Process Icons */
.process-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-step {
  background: #f9fbff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.icon-wrap {
  font-size: 2.5rem;
  color: #006bff;
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e4efff;
  border-radius: 50%;
}

.process-step h4 {
  margin: 0.8rem 0;
  font-size: 1.1rem;
  color: #1f1f1f;
}

.process-step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Animate-fade unchanged – uses your existing scroll-trigger code */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 2.5rem;
  color: #25d366;
  background: #fff;
  padding: 0.6rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* Projects Grid */
.projects-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3,1fr);
  }
}

/* Project Card */
.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Image Container */
.card-img {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 200px;
}
.btn-card {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,107,255,0.9);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card-img:hover .btn-card {
  opacity: 1;
}

/* Project Info */
.project-info {
  padding: 1rem;
  text-align: center;
}
.project-info h4 {
  margin-bottom: 0.5rem;
  color: #006bff;
}
.project-info p {
  font-size: 0.95rem;
  color: #555;
}
/* Testimonials Slider */
.testimonials {
  position: relative;
  overflow: hidden;
}
.testimonials-slider {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}
.testimonial-card {
  background: #f0f6ff;
  border-radius: 10px;
  padding: 2rem;
  min-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
}
.quote-icon {
  font-size: 1.5rem;
  color: #006bff;
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.testimonial-card p {
  margin: 2rem 0 1.5rem;
  font-style: italic;
  color: #333;
}
.client-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar {
  width: 40px;
  height: 40px;
  background: #006bff;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Slider navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.slider-nav button {
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 1.2rem;
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.slider-nav button:hover {
  background: #fff;
}

/* Hide arrows on mobile if desired */
@media (max-width: 600px) {
  .slider-nav { display: none; }
}

.cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #006bff 0%, #00c6ff 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.15), transparent 70%);
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.cta-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: #006bff;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.cta-btn i {
  font-size: 1.2rem;
}
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

/* Retain your animate-up fade-in styles */
/* Contact Grid */
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width:768px) {
  .contact-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

/* Contact Cards */
.contact-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.info-item i {
  font-size: 1.2rem;
  color: #006bff;
  width: 28px;
  text-align: center;
}

/* Floating Labels */
.form-group {
  position: relative;
  margin-bottom: 1.6rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  background: transparent;
  transition: border-color 0.3s;
}
.form-group label {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 0.25rem;
  color: #999;
  pointer-events: none;
  transition: top 0.3s, font-size 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #006bff;
}
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  font-size: 0.8rem;
  color: #006bff;
}

/* Button */
.contact-card .btn-primary {
  width: 100%;
  text-align: center;
}
.accordion .item {
  border-bottom: 1px solid #ddd;
}
.accordion .question {
  width: 100%;
  padding: 1rem;
  text-align: left;
  background: transparent;
  border: none;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordion .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}
.accordion .item.open .answer {
  max-height: 200px;
  padding: 1rem;
}
.stats { padding: 4rem 0; background: #f5f9ff; }
.stats-grid { display: grid; gap: 2rem; text-align: center; }
@media(min-width:768px){.stats-grid{grid-template-columns:repeat(3,1fr);}}
.stat h4 { font-size:2.2rem; color:#006bff; }
.stat p { color:#555; }

/* Areas We Serve grid */
.areas-grid {
  display: grid;
  gap: 2rem;
  margin: 2.5rem 0 1.5rem;
}
@media (min-width:768px){.areas-grid{grid-template-columns:repeat(3,1fr);}}
@media (min-width:1024px){.areas-grid{grid-template-columns:repeat(5,1fr);}}
.area-card {
  background: #f8fbff;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  text-align: center;
  padding: 2rem 1.2rem;
  transition: transform 0.25s;
}
.area-card:hover { transform: translateY(-6px) scale(1.03);}
.area-card i {
  font-size: 2rem;
  color: #006bff;
  margin-bottom: 1rem;
}
.area-card h4 { color: #006bff; margin-bottom: .5rem;}
.area-card p {color: #444; font-size: .98rem;}
.areas-summary { margin-top:1rem; text-align:center; color:#555; font-size:1.05rem;}

/* Professional Services grid */
.services-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width:768px){.services-grid{grid-template-columns: repeat(2,1fr);}}
@media (min-width:1024px){.services-grid{grid-template-columns: repeat(4,1fr);}}
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 14px 32px rgba(0,107,255,0.13);
}
.service-icon {
  width: 65px; height: 65px; display: flex;
  align-items:center; justify-content:center;
  background: linear-gradient(135deg,#e4efff,#d6e7fb);
  border-radius: 50%; font-size:2.2rem;
  margin: 0 auto 1rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.07);
}
.service-card h4 { margin: .6rem 0 .4rem; color: #006bff;}
.service-features {
  margin: 1.2rem 0 0;
  list-style:none; padding:0;
  font-size:.98rem; color:#444;
  text-align:left;
  display: inline-block;
}
.service-features li {
  margin-bottom:.4rem;
  display: flex; align-items: center;
  gap: 0.6em;
}
.service-features i { color: #28a745; }
