/* ===== COMMON ===== */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Poppins',sans-serif; }
body { background:#fffafc; color:#333; padding-top:70px; }


/* ===== BEACH HERO ===== */
.beach-hero { display:flex; align-items:center; justify-content:space-between; padding:120px 10%; flex-wrap:wrap; background:#f6f3ff; }
.beach-content { max-width:550px; }
.beach-content h1 { font-size:2.5rem; color:#3e2f80; margin-bottom:20px; }
.beach-content p { margin:20px 0; color:#555; }
.btn { background:linear-gradient(135deg,#7c5cff,#a078ff); color:white; border:none; padding:12px 25px; border-radius:30px; cursor:pointer; transition:0.3s; }
.btn:hover { transform:scale(1.05); background:linear-gradient(135deg,#6a4bdb,#9276ff); }
.beach-image img { width:480px; border-radius:15px; box-shadow:0 8px 20px rgba(120,90,255,0.3); }

/* ===== BEACH COMPONENTS ===== */
.beach-components { display:flex; justify-content:space-around; flex-wrap:wrap; gap:30px; padding:80px 10%; background:white; }
.component-card { background:#f9f5ff; border-radius:15px; padding:20px; width:300px; text-align:center; box-shadow:0 4px 15px rgba(0,0,0,0.1); transition:0.4s; }
.component-card img { width:100%; border-radius:10px; margin-bottom:15px; }
.component-card h3 { color:#5b47c6; margin-bottom:10px; }
.component-card p { color:#555; }
.component-card:hover { transform:translateY(-10px); box-shadow:0 6px 20px rgba(124,92,255,0.3); }

/* ===== ABOUT INFO ===== */
.about-info { display:flex; justify-content:space-between; align-items:center; padding:80px 10%; flex-wrap:wrap; background:#fffafc; }
.info-text { max-width:500px; }
.info-text h2 { font-size:2rem; color:#3e2f80; margin-bottom:15px; }
.info-text p { color:#555; line-height:1.6; }
.info-image img { width:500px; border-radius:15px; }

/* Overlay stats that sit on the about image */
.info-image{ position:relative; }
.overlay-stats{ position:absolute; right:12px; bottom:12px; display:flex; gap:12px; }
.overlay-stats .stat{ background:rgba(255,255,255,0.9); padding:8px 12px; border-radius:10px; text-align:center; box-shadow:0 6px 18px rgba(20,30,40,0.06); }
.overlay-stats .stat strong{ display:block; color:#0f172a; font-size:16px; }
.overlay-stats .stat span{ font-size:12px; color:#64748b; }

/* Team grid */
.team-section{ padding:60px 10%; background:#f6f3ff; text-align:center; background-image: url(images2/constrection.jpg);background-repeat: no-repeat; background-size: cover; }
.team-section h2{ color:#3e2f80; margin-bottom:18px; }
.team-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:1100px; margin:0 auto; }
.team-member{ background:white; border-radius:12px; padding:18px; box-shadow:0 8px 24px rgba(20,30,60,0.06); display:flex; flex-direction:column; align-items:center; }
.team-member img{ width:140px; height:140px; object-fit:cover; border-radius:50%; margin-bottom:12px; }
.team-member h4{ margin:6px 0; color:#2b2b6a; }
.team-member small{ color:#64748b; }

@media(max-width:900px){
  .team-grid{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:600px){
  .team-grid{ grid-template-columns:1fr; }
  .overlay-stats{ position:static; margin-top:12px; justify-content:center; }
}

/* ===== SERVICES ===== */
.services { padding:80px 10%; background:#f6f3ff; text-align:center; }
.services h2 { margin-bottom:40px; color:#3e2f80; }
.service-cards { display:flex; justify-content:space-around; flex-wrap:wrap; gap:30px; }
.service-card { background:white; border-radius:15px; padding:20px; width:300px; box-shadow:0 4px 15px rgba(0,0,0,0.1); transition:0.4s; }
.service-card img { width:100%; border-radius:10px; margin-bottom:15px; }
.service-card h3 { color:#5b47c6; margin-bottom:10px; }
.service-card p { color:#555; }
.service-card:hover { transform:translateY(-10px); box-shadow:0 6px 20px rgba(124,92,255,0.3); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding:80px 10%; background:#fffafc; text-align:center; }
.testimonials h2 { margin-bottom:40px; color:#3e2f80; }
.testimonial-container { display:flex; justify-content:space-between; gap:22px; flex-wrap:wrap; max-width:1100px; margin:0 auto; }
.testimonial-card { background:white; padding:20px; width:340px; border-radius:14px; box-shadow:0 8px 28px rgba(20,30,60,0.06); transition:transform .28s,box-shadow .28s; display:flex; flex-direction:column; align-items:flex-start; }
.testimonial-card:hover{ transform:translateY(-8px); box-shadow:0 16px 40px rgba(20,30,60,0.12); }
.client-head{ display:flex; gap:12px; align-items:center; margin-bottom:10px; }
.client-avatar{ width:56px; height:56px; object-fit:cover; border-radius:50%; box-shadow:0 6px 18px rgba(20,30,60,0.08); }
.client-meta strong{ display:block; color:#0f172a; }
.client-meta span{ font-size:0.85rem; color:#64748b; }
.quote{ font-style:italic; color:#243b53; margin-bottom:10px; }
.rating{ color:#f6b21d; font-weight:700; letter-spacing:1px; }

/* ===== CTA ===== */
.cta { padding:60px 10%; background:linear-gradient(135deg,#7c5cff,#a078ff); color:white; text-align:center; border-radius:20px; margin:80px 10px; }
.cta h2 { margin-bottom:25px; font-size:2rem; }

/* About page CTA tweaks */
.about-cta-inner{ max-width:1100px; margin:0 auto; display:flex; align-items:center; gap:20px; justify-content:space-between; }
.about-cta-inner .cta-copy{ flex:1 1 580px; text-align:left; }
.about-cta-inner .cta-copy h2{ color:#fff; margin-bottom:10px; }
.about-cta-inner .cta-copy p{ color:rgba(255,255,255,0.92); margin-bottom:14px; }
.about-cta-inner .cta-contacts{ display:flex; gap:10px; flex-wrap:wrap; }
.about-cta-inner .btn{ background:#fff;color:#5a3fe0;padding:10px 16px;border-radius:8px;font-weight:600; }
.about-cta-inner .btn.alt{ background:transparent;color:#fff;border:1px solid rgba(255,255,255,0.22); }
.about-cta-inner .cta-visual{ flex:0 0 300px; }
.about-cta-inner .cta-visual img{ width:300px; max-width:100%; border-radius:12px; box-shadow:0 10px 30px rgba(0,0,0,0.18); }

@media(max-width:900px){
  .about-cta-inner{ flex-direction:column; text-align:center; }
  .about-cta-inner .cta-copy{ text-align:center; }
  .about-cta-inner .cta-visual{ order:-1; }
}

/* Light variant for About page CTA: very light background and gray text */
.cta.about-cta{ background: #fbfbfb; color: #4b5563; }
.cta.about-cta .cta-copy h2{ color: #111827; } /* slightly darker for headline */
.cta.about-cta .cta-copy p{ color: #6b7280; }
.cta.about-cta .about-cta-inner .btn{ background:#7c5cff;color:#fff; }
.cta.about-cta .about-cta-inner .btn.alt{ background:transparent;color:#374151;border:1px solid rgba(55,65,81,0.08); }
.cta.about-cta .cta-visual img{ box-shadow:0 8px 20px rgba(17,24,39,0.04); }

/* ===== FOOTER ===== */
footer { text-align:center; padding:25px; background:#5d4fc2; color:white; }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .beach-hero, .about-info { flex-direction:column; text-align:center; }
  .beach-image img, .info-image img { width:100%; max-width:450px; margin-top:20px; }
  .beach-components, .service-cards, .testimonial-cards { flex-direction:column; align-items:center; }
  .cta { margin:50px 20px; }
}




