* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
    body { background: #000; overflow-x: hidden; color: #fff; }
    header { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 30px; display: flex; justify-content: flex-end; background-color: transparent; }
    .hamburger { width: 30px; height: 20px; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; }
    .hamburger span { height: 3px; background: #fff; border-radius: 3px; transition: 0.3s; }
    .overlay { position: fixed; top: 0; left: 0; height: 100vh; width: 100vw; background: rgba(0,0,0,0.95); display: flex; justify-content: center; align-items: center; flex-direction: column; opacity: 0; pointer-events: none; transition: 0.4s ease; z-index: 999; }
    .overlay.open { opacity: 1; pointer-events: all; }
    .overlay a { color: #fff; font-size: 2rem; margin: 20px; text-decoration: none; transition: 0.3s; cursor: pointer; }
    .overlay a:hover { color: #ef4444; }
    .hero { height: 100vh; background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.5)), url('../images/banner_4.jpeg'); background-size: cover; background-position: center; display: flex; justify-content: center; align-items: center; flex-direction: column; text-align: center; padding: 0 20px; }
    .hero h1 { font-size: 3.5rem; animation: fadeIn 1s ease-in; }
    .hero p { font-size: 1.2rem; color: #ccc; margin-top: 10px; animation: fadeIn 1.5s ease-in; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
    .section { padding: 60px 20px; max-width: 1200px; margin: auto; }
    .section h2 { font-size: 2.5rem; color: #ef4444; text-align: center; }
    .section p { text-align: center; color: #aaa; margin-top: 10px; }
    .feature-box { background: #1a1a1a; padding: 20px; border-radius: 10px; text-align: center; }
    .feature-box i { color: #ef4444; font-size: 2rem; margin-bottom: 10px; }
    .feature-box h4 { color: #fff; margin-bottom: 10px; }
    .owl-carousel .item { background: #111; padding: 30px; border-radius: 10px; text-align: center; }
    .owl-carousel .item h4 { margin-top: 15px; color: #fff; }
    .owl-carousel .item p { color: #bbb; }
    footer { background-color: #111; color: #ccc; padding: 40px 20px 10px; }
    footer .footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; max-width: 1200px; margin: auto; }
    footer h5 { color: #fff; margin-bottom: 15px; }
    footer a { color: #ccc; text-decoration: none; display: block; margin-bottom: 8px; }
    footer a:hover { color: #ef4444; }
    footer .social a { color: #ef4444; font-size: 18px; margin-right: 15px; }
    @media (max-width: 768px) { .hero h1 { font-size: 2rem; } .hero p { font-size: 1rem; } }

    /***************/ .page-loader {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: #ef4444;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #fff;
      z-index: 2000;
    }
    .about-section {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.6)),
                  url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1600&q=80');
      background-size: cover;
      background-position: center;
      padding: 80px 50px;
      gap: 60px;
    }

    .about-image {
      flex: 1;
      max-width: 500px;
    }

    .about-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .about-content {
      flex: 2;
      color: #ddd;
    }

    .about-content h2 {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #fff;
    }

    .about-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 15px;
    }

    .about-content ul {
      margin-top: 20px;
      list-style: square;
      padding-left: 20px;
      color: #ccc;
    }

    .about-content ul li {
      margin-bottom: 10px;
      font-size: 1rem;
    }
      @media (max-width: 991px) {
      .about-section {
        flex-direction: column;
        padding: 60px 30px;
        text-align: center;
      }

      .about-image {
        margin-bottom: 30px;
      }

      .about-content h2 {
        font-size: 2rem;
      }
    }

     .services-section {
      min-height: 100vh;
      background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.6)),
        url('https://images.unsplash.com/photo-1600267165685-c8b58d0660b4?auto=format&fit=crop&w=1740&q=80');
      background-size: cover;
      background-position: center;
      padding: 80px 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .services-section h2 {
      font-size: 3rem;
      margin-bottom: 30px;
      color: #fff;
      text-align: center;
    }

    .main-services {
      list-style: none;
      color: #ccc;
      font-size: 1.2rem;
      line-height: 2.2;
      margin-bottom: 40px;
      text-align: center;
    }

    .cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      width: 100%;
      max-width: 1200px;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.05);
      padding: 30px;
      border-radius: 15px;
      transition: 0.3s;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .service-card:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }


    .service-card h3 {
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 10px;
    }

    .service-card p {
      color: #bbb;
      font-size: 1rem;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .services-section h2 { font-size: 2rem; }
      .main-services { font-size: 1rem; }
    }
    .more-link {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  color:#ef4444;
  
  font-weight: bold;
  transition: background 0.3s ease;
}

/*Print-page*/
.hero-print {    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4)), 
url(../images/print_media_img.jpeg);
    background-size: cover;
    background-position: center;
    padding: 120px 30px 60px;
    text-align: center;}
  .hero-print h1, .hero-web h1 {
      font-size: 3rem;
      color: #fff;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .hero-print p , .hero-web p {
      font-size: 1.2rem;
      color: #ddd;
    }
    .hero-web {
      background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4)), 
url(../images/web_services_img.jpeg);
    background-size: cover;
    background-position: center;
    padding: 120px 30px 60px;
    text-align: center;
    }
    