* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: url('bg.jpg') no-repeat center/cover;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 22px;
  cursor: pointer;
}

/* NAV */
.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: 0.3s;
}

.nav a:hover {
  color: #2b5d87;
}

/* BUTTON */
.cta-btn {
  background: #2b9ad6;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

/* ANIMATION */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background: url('../img/print-banner.jpg') center/cover no-repeat;
  padding: 100px 20px 60px;
  text-align: center;
  color: #fff;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
}

.sub-title {
  font-size: 16px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* CARD CONTAINER */
.card-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* GLASS CARD */
.card {
  width: 260px;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);

  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* IMAGE */
.card img {
  width: 110px;
  margin-bottom: 15px;
}

/* TITLE */
.card h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #1e88e5;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover {
  background: #1565c0;
}

/* FEATURES */
.features {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 14px;
  opacity: 0.9;
}

/* Section */
.req {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Images */
.req-images {
  position: relative;
  flex: 1;
}

.req .img-big img {
  width: 100%;
  border-radius: 20px;
}

.req .img-small {
  position: absolute;
  bottom: -40px;
  right: 30px;
  width: 250px;
}

.req .img-small img {
  width: 100%;
  border-radius: 20px;
  border: 6px solid #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Badge */
.req .badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #1da1f2;
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.req .badge h2 {
  font-size: 32px;
}

.req .badge p {
  font-size: 12px;
  margin-top: 5px;
}

/* Content */
.req .req-content {
  flex: 1;
}

.req .req-content h1 {
  font-size: 36px;
  color: #1f2d3d;
  margin-bottom: 15px;
}


.req .desc {
  margin-bottom: 20px;
  color: #555;
}

.req .req-content ul {
  list-style: none;
}

.req .req-content ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: #444;
}

.req .req-content ul li::before {
  content: "•";
  color: #1da1f2;
  position: absolute;
  left: 0;
}

.faq-section {
  background: #f8f9fb;
  padding: 60px 20px;
}

.faq-container{
  max-width: 1200px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1c2b39;
  position: relative;
}

.faq-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #007bff;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* FAQ Box */

/* Question */
.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: 0.3s;
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  color: #1c2b39;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: #5f6b7a;
  line-height: 1.6;
  transition: max-height 0.4s ease;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.why-choose {
  background: #f8f9fb;
  padding: 60px 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1c2b39;
  margin-bottom: 40px;
  position: relative;
}

.why-choose h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #007bff;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Cards Container */
.choose-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Individual Box */
.choose-box {
  background: #fff;
  padding: 30px 25px;
  width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: all 0.3s ease;
}

/* Hover Effect */
.choose-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Title */
.choose-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1c2b39;
  margin-bottom: 10px;
}

/* Description */
.choose-box p {
  font-size: 14px;
  color: #5f6b7a;
  line-height: 1.6;
}

/* Optional Icon */
.choose-box .icon {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 15px;
}

.footer {
  background: #1f2d3d;
  padding: 20px 0;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left */
.copyright p {
  font-size: 14px;
  color: #ccc;
}

/* Right Icons */
.social-links a {
  color: #fff;
  margin-left: 15px;
  font-size: 16px;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: #2f3e4f;
  transition: 0.3s;
}

.social-links a:hover {
  background: #1da1f2;
  transform: translateY(-3px);
}

