
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111;
  overflow-x: hidden;
scroll-behavior: smooth;

}

/* =========================
   NAVBAR
========================= */
.navbar {
  padding: 1rem 2.5rem;
  background: rgba(0,0,0,0.92) !important;
}

.navbar-brand {
  letter-spacing: 1.5px;
  font-weight: 700;
}

.nav-link {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Add horizontal lines between collapsed menu links */
.navbar-collapse .nav-item + .nav-item {
  border-top: 1px solid rgba(255, 255, 255, 0.3); /* semi-transparent white */
}

.navbar-collapse .nav-link {
  padding: 0.8rem 1rem;
}


/* Optional: animate toggle on click */
.menu-toggle span {
  transition: all 0.3s;
}

/* =========================
   CAROUSEL
========================= */
.carousel-item {
  height: 75vh;
  min-height: 520px;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay for readability */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
}

.toggler-text {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}


/* =========================
   HERO TEXT
========================= */
.hero-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.hero-caption h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #fff;
}

.hero-caption p {
  font-size: 1.1rem;
  letter-spacing: 2px;
  opacity: 0.85;
  color: #fff;
}

.hero-caption .btn {
  margin-top: 28px;
  padding: 0.75rem 2.4rem;
  border-radius: 40px;
}

/* =========================
   SPACER
========================= */
.bg-white {
  background: #fff;
}

/* =========================
   PRINTING HERO
========================= */
.printing-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  background-image: url("images/WhatsApp Image 2025-12-21 at 6.16.22 PM.jpeg");
  background-size: cover;
  background-position: center;
}

/* Soft overlay */
.printing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.printing-hero > * {
  position: relative;
  z-index: 2;
}

/* =========================
   ABOUT SECTION (ELITE)
========================= */
.about-section {
  padding: 110px 0;
  background: #f8fafc;
}

.about-section .container {
  background: #ffffff;
  border-radius: 26px;
  padding: 80px 70px;
  box-shadow: 0 35px 90px rgba(0,0,0,0.08);
}

/* Image */
.about-image {
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* Badge */
.about-badge {
  display: inline-block;
  background: rgba(255,77,0,0.08);
  color: #ff4d00;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

/* Heading */
.about-section h2 {
  font-size: 2.7rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Paragraph */
.about-section p {
  font-size: 1.08rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* List */
.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.about-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #333;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff4d00;
  font-weight: bold;
}

/* =========================
   STATS
========================= */
.about-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.stat-box {
  background: #fff5f0;
  padding: 22px 26px;
  border-radius: 18px;
  min-width: 120px;
  text-align: center;
}

.stat-box h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ff4d00;
  margin-bottom: 4px;
}

.stat-box span {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #555;
  text-transform: uppercase;
}

/* Button */
.about-btn {
  padding: 14px 38px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(90deg, #ff4d00, #ff7a18);
  color: #fff;
  border: none;
  box-shadow: 0 14px 34px rgba(255,77,0,0.35);
  transition: all 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(255,77,0,0.45);
}

/* =========================
   SCROLL ANIMATION
========================= */
.about-section {
  opacity: 0;
  transform: translateY(30px);
  animation: aboutFade 0.8s ease forwards;
}

@keyframes aboutFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .about-section .container {
    padding: 60px 40px;
  }

  .about-section h2 {
    font-size: 2.3rem;
  }

  .about-stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .about-section .container {
    padding: 45px 30px;
  }

  .about-image {
    margin-bottom: 40px;
  }

  .about-section h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 576px) {
  .about-stats {
    gap: 20px;
  }

  .stat-box {
    flex: 1;
  }
}


/* =========================
   PRINTING OVERLAY (KEY PART)
========================= */
.printing-overlay {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);

  max-width: 520px;
  padding: 44px 40px;

  background: rgba(0,0,0,0.55);
  border-radius: 12px;

  color: #fff;
}

.printing-overlay h1 {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.printing-overlay p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* Arrow */
.printing-overlay .arrow-right {
  font-size: 1.6rem;
  margin-top: 20px;
  opacity: 0.7;
}

/* =========================
   SCROLL INDICATOR
========================= */
.printing-scroll-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;

  width: 48px;
  height: 48px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  opacity: 0.7;
}

/* =========================
   RESPONSIVE MAGIC
========================= */
@media (max-width: 992px) {
  .printing-overlay {
    right: 50%;
    transform: translate(50%, -50%);
    max-width: 90%;
    text-align: center;
  }

  .hero-caption h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .carousel-item,
  .printing-hero {
    height: 65vh;
  }

  .printing-overlay {
    padding: 32px 26px;
  }

  .printing-overlay h1 {
    font-size: 1.9rem;
  }

  .hero-caption p {
    font-size: 1rem;
  }
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #1c1c1c;
    font-family: 'Poppins', sans-serif;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.services-section .section-header p {
    font-size: 1.15rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    cursor: pointer;

    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s forwards;
}

/* Service Card Hover */
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.25);
}

/* Fade Up Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icons */
.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff7e5f;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
    color: #feb47b;
}

/* Titles */
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
    position: relative;
}

.service-card h3::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* Paragraph */
.service-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .services-section {
        padding: 80px 15px;
    }

    .services-section .section-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }

    .services-section .section-header h2 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-card h3 {
        font-size: 1.35rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }
}

/* =========================
   PROJECTS SECTION
========================= */
.projects-section {
  background: #f8f9fa;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  background: #000;
  height: 100%;
}

/* Images & Videos same styling */
.project-card img,
.project-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.6s ease;
  display: block;
}

/* Hover zoom (desktop only) */
@media (hover: hover) {
  .project-card:hover img,
  .project-card:hover video {
    transform: scale(1.08);
  }
}

/* Overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.1)
  );
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* Text */
.project-overlay h5 {
  font-weight: 600;
  margin-bottom: 6px;
}

.project-overlay p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .project-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.45);
  }
}


/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  padding: 5rem 0;
}
.testimonials-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}
.testimonial-card {
  flex: 0 0 300px;
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(90deg, #ff6f61, #ff9a8b);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.cta-section .btn-gradient {
  background: linear-gradient(45deg, #fff, #ffd1c1);
  color: #333;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cta-section .btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ===== CONTACT / SOCIAL LINKS ===== */
.contact-section {
  background: linear-gradient(135deg, #111, #222);
  padding: 5rem 0;
  color: #fff;
}
.contact-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.social-buttons .btn-social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
.social-buttons .btn-social i {
  font-size: 1.2rem;
}

/* Platform Colors */
.btn-social.whatsapp { background: #25D366; }
.btn-social.tiktok { background: #000; }
.btn-social.facebook { background: #3b5998; }
.btn-social.instagram { background: #E1306C; }
.btn-social.phone { background: #ff6f61; }

/* Hover Effects */
.btn-social:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
  filter: brightness(1.2);
}

/* ===== FOOTER ===== */
.footer-section {
  background: #111;
  color: #fff;
}
.footer-section a {
  color: #fff;
  margin: 0 10px;
  transition: color 0.3s;
}
.footer-section a:hover {
  color: #ff6f61;
}

/* Navbar scroll effect */
.navbar-scrolled {
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
