* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
    body { font-family: 'Segoe UI', sans-serif; }
    .hero { height: 90vh; background: url('') center/cover no-repeat; }
    .overlay { background: rgba(0,0,0,0.5); height: 100%; }
    .service-card { transition: 0.3s; }
    .service-card:hover { transform: translateY(-8px); }
  .hero { background: linear-gradient(to right, #F7C6A3, #F3E9DD); padding: 100px 20px; text-align: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; }
.hero h1 { font-size: 3rem; font-weight: 700; }
.hero p { font-size: 1.2rem; }
.package-card { background: white; border-radius: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); padding: 20px; margin-bottom: 30px; transition: transform .3s; }
.package-card:hover { transform: scale(1.03); }
.price { font-size: 1.5rem; font-weight: 700; color: #F7C6A3; }
.btn-pay { background: #F7C6A3; border: none; color: #333; border-radius: 30px; padding: 10px 20px; font-weight: 600; transition: .3s; }
.btn-pay:hover { background: #333; color: #fff; }
.payment-icons img { width: 60px; margin: 10px; }
 
    .gallery-img { transition: transform .4s ease, box-shadow .4s ease; border-radius: 8px; }
    .gallery-img:hover { transform: scale(1.07); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
  
 .hero {
            background: linear-gradient(to right, #F7C6A3, #F3E9DD);
            padding: 120px 20px;
            text-align: center;
            border-bottom-left-radius: 80px;
            border-bottom-right-radius: 80px;
        }
        .hero h1 { font-size: 3.5rem; font-weight: 700; }
        .hero p { font-size: 1.2rem; }

        /* Portfolio filter buttons */
        .filter-btn {
            border: none;
            background: #F7C6A3;
            padding: 10px 20px;
            margin: 4px;
            border-radius: 30px;
            font-weight: 600;
            transition: .3s;
        }
        .filter-btn.active, 
        .filter-btn:hover {
            background: #333;
            color: white;
        }

        /* Portfolio grid */
        .portfolio-img {
            width: 100%;
            border-radius: 15px;
            transition: transform .4s;
        }
        .portfolio-img:hover { transform: scale(1.05); }

        /* Instagram + LinkedIn section */
        .social-feed {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

      

    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      background: white;
      padding: 10px;
      border-radius: 50%;
      box-shadow: 0 5px 20px rgba(0,0,0,0.25);
      transition: transform .3s ease;
    }
    .whatsapp-float:hover { transform: scale(1.1); }

  @keyframes fadeZoom {
0% { opacity: 0; transform: scale(0.85); }
100% { opacity: 1; transform: scale(1); }
}


.insta-card, .linkedin-card {
transition: transform 0.3s, box-shadow 0.3s;
cursor: pointer;
border-radius: 12px;
overflow: hidden;
}
.insta-card:hover, .linkedin-card:hover {
transform: translateY(-8px) scale(1.03);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.insta-header {
background:#F7C6A3;
border-bottom:1px solid #F3E9DD;
font-weight:600;
font-size:0.9rem;
}
.linkedin-header {
font-weight:500;
font-size:0.9rem;
}
.card-body p {
font-size:0.9rem;
}

.scroll-wrapper img {
opacity: 0;
animation: fadeZoom 0.8s ease forwards;
}


.scroll-wrapper img:nth-child(1) { animation-delay: 0.1s; }
.scroll-wrapper img:nth-child(2) { animation-delay: 0.2s; }
.scroll-wrapper img:nth-child(3) { animation-delay: 0.3s; }
.scroll-wrapper img:nth-child(4) { animation-delay: 0.4s; }
.scroll-wrapper img:nth-child(5) { animation-delay: 0.5s; }
.scroll-wrapper img:nth-child(6) { animation-delay: 0.6s; }
.scroll-wrapper img:nth-child(7) { animation-delay: 0.7s; }
.scroll-wrapper img:nth-child(8) { animation-delay: 0.8s; }
.scroll-wrapper img:nth-child(9) { animation-delay: 0.9s; }
.scroll-wrapper img:nth-child(10) { animation-delay: 1.0s; }

.hero-slideshow {
position: relative;
width: 100%;
max-width: 300px;
margin: 0 auto;
}
.hero-slide {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
opacity: 0;
transition: opacity 1s ease-in-out;
border: 8px solid #F3E9DD;
}
.hero-slide.active {
opacity: 1;
}

/* Services Section */
#services {
background: #FFF2E6;
padding: 5rem 0;
}


#services h2 {
color: #F7C6A3;
margin-bottom: 3rem;
}


.service-card {
background: #F7C6A3;
border-radius: 20px;
padding: 2rem;
transition: transform 0.3s, box-shadow 0.3s;
}


.service-card h4, .service-card p {
color: #fff;
}


.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/* Contact Section */
#contact {
background: #FFF8F0;
padding: 5rem 0;
text-align: center;
}


#contact h2 {
color: #F7C6A3;
margin-bottom: 2rem;
}


#contact form button {
background: #F7C6A3;
color: #fff;
border: none;
padding: 0.75rem;
width: 100%;
border-radius: 0.25rem;
transition: background 0.3s;
}

#about {
padding: 5rem 0;
text-align: center;
}


#about h2 {
font-weight: 700;
margin-bottom: 1.5rem;
color: #F7C6A3;
}

/* Social Impact Image Size */
.impact-img {
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* Card styling */
.impact-card {
  border-radius: 20px;
  overflow: hidden;
}

#about p {
max-width: 75%;
margin: 0 auto;
font-size: 1.125rem;
line-height: 1.8;
color: #333;
}

#contact form button:hover {
background: #e6b58c;
}

.package-card { background: #F7C6A3; border-radius: 20px; transition: transform 0.3s, box-shadow 0.3s; }
.package-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.price-tag { background: #F3E9DD; padding: 10px 20px; border-radius: 10px; font-weight: bold; display: inline-block; margin-bottom: 10px; }
.payment-coming { background: #F3E9DD; border-radius: 16px; padding: 30px; text-align: center; margin-top: 40px; }

.industry-card { background:#F7C6A3; border-radius:12px; padding:20px; margin-bottom:15px; text-align:center; font-weight:500; transition: transform 0.3s, box-shadow 0.3s; }
.industry-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }



/* Continuous slow auto-scroll */
.scroll-wrapper {
display: inline-block;
animation: autoScroll 30s linear infinite;
}


@keyframes autoScroll {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
.hero h1 {
font-size: 1.8rem;
}
.hero p {
font-size: 1rem;
}
.btn-lg {
font-size: 1rem;
padding: 0.5rem 1rem;
}
}
