/* ------------------------------
   GLOBAL STYLES
--------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 100px 0;
  text-align: center;
}

h6 {
  color: #ff4f5a;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ------------------------------
   HEADER
--------------------------------*/
#header {
  width: 100%;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #ff4f5a;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.hero-content h6 {
  font-size: 18px;
  opacity: 0.8;
}

.hero-content h1 {
  font-size: 55px;
  margin: 20px 0;
  line-height: 1.2;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  width: 70%;
  margin: 0 auto;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 12px 30px;
  background: #ff4f5a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff363f;
}

.btn-outline {
  padding: 12px 30px;
  border: 2px solid #ff4f5a;
  background: transparent;
  color: #ff4f5a;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #ff4f5a;
  color: #fff;
}

/* Floating shapes */
.shape {
  position: absolute;
  width: 120px;
  opacity: 0.6;
  animation: float 6s infinite ease-in-out;
}

.shape1 { top: 10%; left: 5%; }
.shape2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.shape3 { top: 40%; right: 40%; animation-delay: 2s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ------------------------------
   ABOUT SECTION
--------------------------------*/
.stats-grid {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-top: 40px;
}

.stat h3 {
  font-size: 40px;
  font-weight: 700;
  color: #ff4f5a;
}

.stat p {
  font-size: 18px;
  opacity: 0.7;
}

/* ------------------------------
   SERVICES SECTION
--------------------------------*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  padding: 40px 20px;
  background: #fff;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
  border-radius: 12px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* ------------------------------
   PORTFOLIO
--------------------------------*/
.filter-buttons {
  margin: 30px 0;
}

.filter-btn {
  padding: 10px 25px;
  border: none;
  background: #eee;
  margin: 5px;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #ff4f5a;
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.portfolio-item img {
  border-radius: 10px;
}

/* ------------------------------
   BLOG
--------------------------------*/
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  margin-top: 40px;
}

.blog-card {
  text-align: left;
}

.blog-card img {
  border-radius: 10px;
  margin-bottom: 15px;
}

.blog-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* ------------------------------
   FOOTER
--------------------------------*/
.footer-section {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.footer-section input,
.footer-section textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
}

.footer-section .btn {
  background: #fff;
  color: #1a1a1a;
}

.copy {
  margin-top: 30px;
  opacity: 0.7;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 80px;
    right: 0;
    background: #fff;
    width: 200px;
    flex-direction: column;
    display: none;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  }

  .nav-menu.show {
    display: flex;
  }
}
