/* ================================
   Global Styles & Resets
================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f2f2f2;
  color: #333;
  line-height: 1.6;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00b894;
}

/* ================================
   Hero Section
================================ */
.hero-section {
  position: relative;
  height: 80vh;
  background: url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width:1200px;
  padding: 2rem;
  animation: fadeInUp 1s ease-in-out;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 1px 1px 10px #00b894;
}

.hero-content .highlight {
  color: #00b894;
  animation: pulseGlow 2s infinite alternate;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #eee;
}

/* ================================
   Button Styling
================================ */
.btn-primary {
  background: #00b894;
  color: white;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 12px #00b894;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #019875;
}

/* ================================
   Animations
================================ */
@keyframes pulseGlow {
  0% { text-shadow: 0 0 10px #00b894; }
  100% { text-shadow: 0 0 20px #00b894, 0 0 30px #00b894; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ================================
   Base Section Styling
================================ */
section {
  padding: 4rem 1.5rem;
  position: relative;
  text-align: center;
}

section p {
  margin: auto;
  font-size: 1rem;
}

/* ================================
   About Section
================================ */
.about {
  background: rgba(255, 255, 255, 0.6);
  color: #000;
}

/* ================================
   Why Me Section
================================ */
/* WHY CHOOSE US STYLING */
.whyme-section {
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeIn 1.5s ease-in-out;
}

.whyme-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #222;
}

.whyme-section h2 span {
  color: #1b8b6c;
  font-weight: bold;
}

.whyme-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.whyme-list li {
  font-size: 1.1rem;
  margin: 15px 0;
  padding: 10px 20px;
  background: #fff;
  border-left: 5px solid #1b8b6c;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.whyme-list li:hover {
  transform: scale(1.03);
}

.whyme-list i {
  color: #1b8b6c;
  font-size: 1.3rem;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================================
   Card Layouts (Shared)
================================ */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.card .badge {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex: 1 1 280px;
  height: 11rem;
  width: 21rem;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin-top: 2rem;
}

.card:hover .badge {
  transform: scale(1.1);
  box-shadow: 0 0 10px #00b894;
}

.card h3 {
  color: #00b894;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 0.95rem;
}

.card span {
  display: inline-block;
  margin-top: 1.2rem;
  background: #00b894;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.card span:hover {
  background: #019875;
  cursor: pointer;
}

/* Icon Animation in Card Heading */
.card h3 i {
  transition: transform 0.5s ease, color 0.5s ease;
  margin-right: 0.4rem;
  color: #00b894;
}

.card:hover h3 i {
  transform: scale(2) rotate(-10deg);
  color: #019875;
}


/* ================================
   Services Section
================================ */
.services {
  background: #fff;
}

/* ================================
   Work Section
================================ */
.work {
  background: url('https://images.unsplash.com/photo-1593642634367-d91a135587b5?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  color: white;
}

.work::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.text {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.work .cards {
  position: relative;
  z-index: 2;
}

/* ================================
   Footer
================================ */
footer {
  text-align: center;
  background: #333;
  color: #fff;
  padding: 2rem 1rem;
  margin-top: 2rem;
}


