/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(
    circle at top right,
    #5b2c83 0%,
    #2a0f55 45%,
    #0f0228 100%
  );
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  transition: all 0.3s ease;
}
ul {
  list-style: none;
} /* ================= COMMON ================= */
.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 22px;
} /* ================= HEADER ================= */
.qads-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 0;
  z-index: 1000;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
} /* Sticky state */
.qads-header.sticky {
  position: fixed;
  background: linear-gradient(
    135deg,
    rgba(42, 15, 85, 0.96),
    rgba(15, 2, 40, 0.96)
  );
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
} /* ================= LOGO ================= */
.qads-logo img {
  height: 50px;
  transition: height 0.3s ease;
}
.qads-header.sticky .qads-logo img {
  height: 36px; /* desktop sticky */
} /* ================= NAV ================= */
.qads-nav-links {
  display: flex;
  gap: 34px;
}
.qads-nav-links a {
  color: #ffffff;
  font-weight: 500;
  font-size: 14.5px;
  transition: color 0.25s ease;
}
.qads-nav-links a:hover {
  color: #ffb703;
} /* ================= CTA ================= */
.header-btn {
  background: linear-gradient(135deg, #ff8a4c, #ffb703);
  padding: 13px 34px;
  border-radius: 50px;
  color: #1b003a;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 183, 3, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 183, 3, 0.45);
} /* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #ffffff;
} /* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #3a156f, #12002f);
  padding: 90px 30px 40px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 99999;
}
.mobile-menu.active {
  transform: translateX(0);
}
.close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 34px;
  color: #ffffff;
  cursor: pointer;
}
.mobile-links {
  list-style: none;
  padding: 0;
}
.mobile-links li {
  margin-bottom: 22px;
}
.mobile-links a {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}
.mobile-links a:hover {
  color: #ffb703;
}
.mobile-btn {
  display: inline-block;
  margin-top: 30px;
  background: linear-gradient(135deg, #ff8a4c, #ffb703);
  color: #1b003a;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
} /* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .qads-nav,
  .header-btn {
    display: none;
  }
  .hamburger {
    display: block;
  } /* Mobile logo size */
  .qads-logo img {
    height: 36px;
  }
  .qads-header.sticky .qads-logo img {
    height: 34px;
  }
} /* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/home-banner-design.png") no-repeat center;
  background-size: cover;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 90px;
}
.hero-content {
  flex: 1;
  max-width: 560px;
}
.hero-content h1 {
  font-size: 58px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.hero-content h1 span {
  color: #ffb703;
}
.hero-subtext {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}
.hero-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  color: #ffffff;
}
.hero-btn-outline:hover {
  background: #ffffff;
  color: #2a0f55;
}
.hero-image {
  flex: 1.15; /* ⬅️ give more space than text */
  text-align: right;
}
.hero-image img {
  max-width: 620px; /* ⬅️ BIGGER on desktop */
  width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding: 120px 0 90px;
    text-align: center;
  }
  .hero-inner {
    flex-direction: column;
    gap: 50px; /* more breathing */
  }
  .hero-content h1 {
    font-size: 44px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-image {
    text-align: center;
  }
  .hero-image img {
    max-width: 520px; /* ⬅️ BIGGER on tablet */
    margin: auto;
  }
} /* Extra small devices */
@media (max-width: 576px) {
  .hero-image img {
    max-width: 460px; /* ⬅️ BIGGER on mobile */
  }
} /* index sections */ /* ================= WHO WE ARE ================= */
.who-we-are-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #0f0228 0%, #14032f 50%, #0f0228 100%);
  color: #ffffff;
} /* Left content */
.who-content .sub-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffb703;
  margin-bottom: 14px;
}
.who-content .main-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}
.who-content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
} /* Button */
.discover-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff8a4c, #ffb703);
  color: #1b003a;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 12px 28px rgba(255, 183, 3, 0.35);
  transition: all 0.3s ease;
}
.discover-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(255, 183, 3, 0.45);
} /* ================= SERVICE BOXES ================= */
.service-box {
  height: 100%;
  padding: 34px 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 18px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.service-box i {
  font-size: 32px;
  margin-bottom: 14px;
  color: #ffb703;
}
.service-box h5 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.service-box:hover {
  transform: translateY(-8px);
  background: linear-gradient(
    180deg,
    rgba(255, 183, 3, 0.18),
    rgba(255, 183, 3, 0.05)
  );
  border-color: rgba(255, 183, 3, 0.45);
} /* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .who-we-are-section {
    padding: 80px 0;
  }
  .who-content .main-title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .service-box {
    padding: 26px 16px;
  }
  .service-box i {
    font-size: 28px;
  }
} /* ================= WHAT WE OFFER ================= */
.offer-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0f0228 0%, #14032f 50%, #0f0228 100%);
  color: #ffffff;
} /* Section title */
.offer-section .section-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffb703;
  margin-bottom: 10px;
}
.offer-section .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
} /* ================= OFFER BOX ================= */
.offer-box {
  height: 100%;
  padding: 42px 30px;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
} /* ================= ICON CONTAINER ================= */
.offer-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Dark base with golden hint */
  background: linear-gradient(
    135deg,
    rgba(255, 183, 3, 0.22),
    rgba(255, 183, 3, 0.08)
  ); /* SUBTLE golden glow */
  box-shadow: 0 0 0 1px rgba(255, 183, 3, 0.18),
    0 8px 22px rgba(255, 183, 3, 0.22), 0 0 36px rgba(255, 183, 3, 0.14);
  transition: all 0.35s ease;
} /* Icon image */
.offer-icon img {
  width: 34px;
  height: auto;
} /* Title */
.offer-box h5 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
} /* Text */
.offer-box p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
} /* ================= HOVER ================= */
.offer-box:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 183, 3, 0.35);
  background: linear-gradient(
    180deg,
    rgba(255, 183, 3, 0.16),
    rgba(255, 183, 3, 0.05)
  );
}
.offer-box:hover .offer-icon {
  transform: scale(1.1);
  box-shadow: 0 0 0 1px rgba(255, 183, 3, 0.35),
    0 10px 30px rgba(255, 183, 3, 0.38), 0 0 52px rgba(255, 183, 3, 0.25);
} /* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .offer-section {
    padding: 80px 0;
  }
  .offer-section .section-title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .offer-box {
    padding: 34px 22px;
  }
  .offer-box h5 {
    font-size: 16px;
  }
} /* ================= BUSINESS INQUIRY ================= */
.qads-business-inquiry {
  position: relative;
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(180deg, #0f0228 0%, #160335 50%, #0f0228 100%);
  overflow: hidden;
  color: #ffffff;
} /* Subtle glow overlay */
.qads-business-inquiry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top center,
    rgba(255, 183, 3, 0.14),
    transparent 65%
  );
  pointer-events: none;
} /* Content layer */
.qads-business-inquiry .container {
  position: relative;
  z-index: 2;
} /* Title */
.qads-business-inquiry .business-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
} /* Divider */
.qads-business-inquiry .business-divider {
  width: 80px;
  height: 3px;
  margin: 0 auto 22px;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent, #ffb703, transparent);
} /* Sub text */
.qads-business-inquiry .business-subtext {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
} /* Number */
.qads-business-inquiry .business-number {
  font-size: 32px;
  font-weight: 700;
  color: #ffb703;
  margin-bottom: 34px;
  letter-spacing: 0.6px;
} /* CTA Button */
.qads-business-inquiry .business-btn {
  display: inline-block;
  padding: 15px 44px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff8a4c, #ffb703);
  color: #1b003a;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(255, 183, 3, 0.35);
  transition: all 0.3s ease;
}
.qads-business-inquiry .business-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(255, 183, 3, 0.45);
} /* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .qads-business-inquiry {
    padding: 90px 0;
  }
  .qads-business-inquiry .business-title {
    font-size: 34px;
  }
  .qads-business-inquiry .business-number {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .qads-business-inquiry {
    padding: 70px 0;
  }
  .qads-business-inquiry .business-title {
    font-size: 28px;
  }
  .qads-business-inquiry .business-number {
    font-size: 22px;
  }
  .qads-business-inquiry .business-btn {
    padding: 13px 34px;
    font-size: 14px;
  }
}

/* ========================================================= ABOUT PAGE STYLES — QADS ========================================================= */ /* ========================================================= MAN BEHIND THE BRAND – QADS STYLE ========================================================= */
.qads-founder-section {
  padding: 90px 0;
  background: radial-gradient(
      circle at top right,
      rgba(255, 183, 3, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #0f0228 0%, #14032f 50%, #0f0228 100%);
} /* LEFT CONTENT */
.founder-content {
  max-width: 560px;
} /* Small tag */
.founder-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #ffb703;
  margin-bottom: 14px;
} /* Title */
.founder-title {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
}
.founder-title span {
  color: #ffb703;
} /* Quote text */
.founder-quote {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
} /* Name */
.founder-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 34px;
}
.founder-name span {
  display: block;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
} /* Button */
.founder-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7f6cfb, #5a4dfd);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}
.founder-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(127, 108, 251, 0.4);
} /* RIGHT IMAGE */
.founder-image img {
  max-width: 620px;
  width: 100%;
} /* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .qads-founder-section {
    padding: 90px 0;
  }
  .founder-title {
    font-size: 36px;
  }
  .founder-content {
    text-align: center;
    margin: auto;
  }
}
@media (max-width: 576px) {
  .qads-founder-section {
    padding: 70px 0;
  }
  .founder-title {
    font-size: 28px;
  }
  .founder-quote {
    font-size: 15px;
  }
  .founder-image img {
    max-width: 450px;
    margin-top: 40px;
  }
}

/* ================= ABOUT : MISSION & VISION ================= */
.qads-about-cards {
  padding: 90px 0;
  background: linear-gradient(180deg, #0f0228 0%, #14032f 50%, #0f0228 100%);
} /* Card */
.qads-about-card {
  height: 100%;
  padding: 46px 36px;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
} /* Hover */
.qads-about-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 183, 3, 0.35);
  box-shadow: 0 20px 45px rgba(255, 183, 3, 0.18);
} /* Icon wrapper */
.about-icon-wrap {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 183, 3, 0.22),
    rgba(255, 183, 3, 0.08)
  );
  box-shadow: 0 8px 24px rgba(255, 183, 3, 0.22),
    0 0 40px rgba(255, 183, 3, 0.14);
} /* Icon image */
.about-icon-wrap img {
  width: 44px;
  height: auto;
} /* Title */
.qads-about-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
} /* Text */
.qads-about-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ================= BRAND STRATEGY ================= */
.qads-brand-strategy {
  padding: 90px 0;
  background: linear-gradient(180deg, #0f0228 0%, #160335 50%, #0f0228 100%);
} /* Image */
.brand-img {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
} /* Section subtitle */
.qads-brand-strategy .section-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #ffb703;
  margin-bottom: 8px;
} /* Section title */
.qads-brand-strategy .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 28px;
} /* Strategy list */
.strategy-list {
  margin-top: 10px;
}
.strategy-item {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
} /* Strategy icon */
.strategy-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 183, 3, 0.18);
  color: #ffb703;
  font-size: 20px;
  flex-shrink: 0;
} /* Strategy text */
.strategy-item h5 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}
.strategy-item p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
} /* CTA Button */
.discover-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  background: linear-gradient(135deg, #ff8a4c, #ffb703);
  color: #1b003a;
  transition: all 0.3s ease;
  box-shadow: 0 14px 32px rgba(255, 183, 3, 0.35);
}
.discover-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 183, 3, 0.45);
} /* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .qads-about-cards,
  .qads-brand-strategy {
    padding: 80px 0;
  }
  .qads-about-card {
    padding: 36px 26px;
  }
  .qads-about-card h3 {
    font-size: 20px;
  }
  .qads-brand-strategy .section-title {
    font-size: 30px;
  }
  .strategy-item {
    gap: 14px;
  }
}

/* ================= QADS GUIDELINES ================= */
.qads-guidelines {
  padding: 90px 0;
  background: linear-gradient(180deg, #0f0228 0%, #14032f 50%, #0f0228 100%);
  position: relative;
  overflow: hidden;
} /* Heading */
.guidelines-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.guidelines-header p {
  max-width: 620px;
  margin: auto;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
} /* Timeline wrapper */
.guidelines-timeline {
  position: relative;
  max-width: 900px;
  margin: 80px auto 0;
} /* Center vertical line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 183, 3, 0),
    rgba(255, 183, 3, 0.7),
    rgba(255, 183, 3, 0)
  );
  transform: translateX(-50%);
} /* Timeline item */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 60px;
}
.timeline-item.left {
  left: 0;
  text-align: right;
}
.timeline-item.right {
  left: 50%;
  text-align: left;
} /* Dot */
.timeline-dot {
  position: absolute;
  top: 8px;
  width: 14px;
  height: 14px;
  background: #ffb703;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 183, 3, 0.8);
}
.timeline-item.left .timeline-dot {
  right: -7px;
}
.timeline-item.right .timeline-dot {
  left: -7px;
} /* Card */
.timeline-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px 26px;
  transition: all 0.35s ease;
}
.timeline-card h5 {
  color: #ffb703;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.timeline-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
} /* Hover */
.timeline-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 183, 3, 0.5);
  box-shadow: 0 10px 30px rgba(255, 183, 3, 0.25);
} /* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .guidelines-timeline {
    margin-top: 60px;
  }
  .timeline-line {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left;
  }
  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }
  .timeline-dot {
    left: 13px;
    right: auto;
  }
}

/* ========================================================= OUR TEAM – QADS (CRISP & CENTERED EVERYWHERE) ========================================================= */
.qads-team-section {
  padding: 75px 0;
  background: linear-gradient(180deg, #0f0228 0%, #14032f 50%, #0f0228 100%);
} /* Center all team members */
.qads-team-section .row {
  justify-content: center;
} /* Managing Director highlight */
.qads-md-section {
  padding: 75px 0;
  background: linear-gradient(180deg, rgba(255, 183, 3, 0.05), #0f0228);
} /* Section Title */
.team-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 45px;
  text-align: center;
  letter-spacing: 0.4px;
} /* Team wrapper */
.team-card {
  text-align: center;
  margin-bottom: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
} /* Profile Image */
.team-img {
  width: 165px;
  height: 165px;
  object-fit: cover;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(
    135deg,
    rgba(255, 183, 3, 0.9),
    rgba(255, 183, 3, 0.4)
  );
  box-shadow: 0 8px 22px rgba(255, 183, 3, 0.3),
    0 0 38px rgba(255, 183, 3, 0.22);
  transition: transform 0.3s ease;
} /* Hover – subtle */
.team-card:hover .team-img {
  transform: scale(1.05);
} /* Name */
.team-name {
  margin-top: 14px;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
} /* Role */
.team-role {
  margin-top: 2px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
  text-align: center;
} /* ================= RESPONSIVE ================= */ /* Tablet */
@media (max-width: 992px) {
  .team-title {
    font-size: 32px;
    margin-bottom: 38px;
  }
  .team-img {
    width: 145px;
    height: 145px;
  }
  .team-card {
    margin-bottom: 34px;
  }
} /* Mobile */
@media (max-width: 576px) {
  .qads-team-section {
    padding: 60px 0;
  }
  .team-title {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .team-img {
    width: 130px;
    height: 130px;
  }
  .team-card {
    margin-bottom: 28px;
  }
  .team-name {
    font-size: 18px;
  }
} /* 🔥 EXTRA SMALL DEVICES (≤360px) */
@media (max-width: 360px) {
  .team-title {
    font-size: 24px;
    margin-bottom: 26px;
  }
  .team-img {
    width: 118px;
    height: 118px;
    padding: 5px;
  }
  .team-card {
    margin-bottom: 24px;
  }
  .team-name {
    font-size: 16.5px;
  }
  .team-role {
    font-size: 13px;
  }
}

/* ================= CONTACT SECTION ================= */
.qads-contact-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #0f0228 0%, #160335 50%, #0f0228 100%);
  color: #ffffff;
} /* Headings */
.qads-contact-section .contact-heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
} /* Description */
.qads-contact-section .contact-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 36px;
} /* ================= LEFT INFO ================= */
.contact-info-box {
  margin-top: 10px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-info-item i {
  font-size: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 183, 3, 0.18);
  color: #ffb703;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffffff;
}
.contact-info-item p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.contact-info-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.contact-info-item a:hover {
  color: #ffb703;
} /* ================= FORM ================= */
.contact-form label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.9);
}
.contact-form .form-control {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  border: none;
  margin-bottom: 18px;
}
.contact-form .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 183, 3, 0.35);
} /* Submit button */
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff8a4c, #ffb703);
  color: #1b003a;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 183, 3, 0.45);
} /* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .qads-contact-section {
    padding: 90px 0;
  }
  .qads-contact-section .contact-heading {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .qads-contact-section {
    padding: 70px 0;
  }
  .contact-info-item {
    gap: 14px;
  }
}

/* ================= MAP SECTION ================= */
.qads-map-section {
  padding: 60px 0 100px; /* gap from contact + bottom spacing */
  background: linear-gradient(180deg, #0f0228 0%, #0f0228 100%);
} /* Wrapper for responsiveness */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden; /* Soft premium shadow */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
} /* Full responsive iframe */
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
} /* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .map-wrapper {
    height: 360px;
  }
}
@media (max-width: 576px) {
  .qads-map-section {
    padding: 40px 0 80px;
  }
  .map-wrapper {
    height: 300px;
    border-radius: 18px;
  }
}

/* ================= SERVICES SECTION ================= */
.qads-services-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #0f0228 0%, #14032f 50%, #0f0228 100%);
  color: #ffffff;
} /* Section heading */
.qads-services-section .section-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffb703;
  margin-bottom: 8px;
}
.qads-services-section .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
}

/* ================= SERVICE SECTION ================= */
.qads-service-card {
  height: 100%;
  padding: 42px 32px;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
} /* Icon wrap */
.service-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 183, 3, 0.22),
    rgba(255, 183, 3, 0.08)
  );
  box-shadow: 0 0 0 1px rgba(255, 183, 3, 0.18),
    0 8px 22px rgba(255, 183, 3, 0.22), 0 0 36px rgba(255, 183, 3, 0.14);
}
.service-icon-wrap img {
  width: 40px;
} /* Card text */
.qads-service-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}
.qads-service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
} /* Hover */
.qads-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 183, 3, 0.35);
  background: linear-gradient(
    180deg,
    rgba(255, 183, 3, 0.18),
    rgba(255, 183, 3, 0.05)
  );
} /* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .qads-services-section {
    padding: 90px 0;
  }
  .qads-services-section .section-title {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .qads-service-card {
    padding: 34px 24px;
  }
  .qads-service-card h3 {
    font-size: 15px;
  }
}

/* ================= FOOTER ================= */
.qads-footer {
  position: relative;
  background: linear-gradient(180deg, #040016 0%, #070020 45%, #0a0030 100%);
  padding: 90px 0 40px;
  color: #c9c7de;
  overflow: hidden;
} /* Background overlay */
.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("../images/footer-bg-design.png") no-repeat right top;
  background-size: 1200px auto;
  opacity: 0.55;
  pointer-events: none;
}
.footer-content {
  position: relative;
  z-index: 2;
} /* ================= LOGO & ABOUT ================= */
.footer-logo-img {
  height: 50px;
}
.footer-desc-sm {
  font-size: 15px;
  line-height: 1.7;
  color: #b8b6d2;
} /* ================= TITLES ================= */
.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
} /* ================= LINKS ================= */
.footer-links-list {
  padding-left: 0;
  margin: 0;
}
.footer-links-list li {
  margin-bottom: 12px;
}
.footer-links-list a {
  font-size: 14px;
  color: #b8b6d2 !important; /* 🔥 override bootstrap */
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-links-list a:hover {
  color: #ffb703 !important;
} /* ================= CONTACT ================= */
.footer-contact-list {
  padding-left: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #b8b6d2;
}
.footer-contact-list i {
  color: #ffffff;
  margin-top: 4px;
  font-size: 14px;
}
.footer-contact-list a {
  color: #b8b6d2 !important;
  text-decoration: none;
}
.footer-contact-list a:hover {
  color: #ffb703 !important;
} /* ================= SOCIAL ================= */
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.3s ease;
}
.footer-socials a:hover {
  background: #ffb703;
  color: #0a0030;
} /* ================= BOTTOM ================= */
.footer-bottom {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 14px;
  color: #b8b6d2;
} /* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-bg-overlay {
    background-position: center;
    background-size: cover;
  }
  .footer-socials {
    justify-content: flex-start;
  }
} /* ================= BREADCRUMB ================= */
.qads-breadcrumb {
  position: relative;
  padding: 130px 0 70px; /* ✅ space for absolute header */
  text-align: center;
  background: linear-gradient(135deg, #3a156f 0%, #1c053f 45%, #0f0228 100%);
  overflow: hidden;
} /* Subtle glow overlay */
.qads-breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top center,
    rgba(255, 183, 3, 0.14),
    transparent 65%
  );
  pointer-events: none;
}
.qads-breadcrumb .container {
  position: relative;
  z-index: 2;
} /* Title */
.breadcrumb-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.4px;
  margin-bottom: 14px; /* slightly more breathing */
} /* Nav */
.breadcrumb-nav {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.25s ease;
}
.breadcrumb-nav a:hover {
  color: #ffb703;
}
.breadcrumb-nav .separator {
  margin: 0 10px;
  color: #ffb703;
  font-weight: 600;
}
.breadcrumb-nav .current-page {
  color: #ffffff;
  font-weight: 600;
} /* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .qads-breadcrumb {
    padding: 110px 0 55px; /* ✅ mobile header space */
  }
  .breadcrumb-title {
    font-size: 32px;
  }
  .breadcrumb-nav {
    font-size: 14px;
  }
}

/* =========================================================
   CATEGORIES PAGE – FINAL (SOFT HOVER, NO HEAVY ZOOM)
   ========================================================= */

.qads-categories-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #0f0228 0%, #14032f 50%, #0f0228 100%);
}

/* Section title */
.qads-categories-section .section-title {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* ================= CATEGORY CARD ================= */
.qads-category-card {
  display: block;
  height: 100%;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;

  /* soft shadow */
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);

  /* smooth but light transition */
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}

/* Light hover (professional) */
.qads-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

/* ================= IMAGE ================= */
.qads-category-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;

  /* no zoom animation */
  transition: opacity 0.25s ease;
}

/* Subtle visual feedback only */
.qads-category-card:hover img {
  opacity: 0.96;
}

/* ================= TITLE ================= */
.qads-category-card .card-title {
  padding: 16px 14px 18px;
  font-size: 16px;
  font-weight: 700;
  color: #1a123a;
  background: #ffffff;
  margin: 0;
}

/* Subtle inner border */
.qads-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

/* ================= MOBILE REFINEMENT ================= */
@media (max-width: 576px) {
  .qads-category-card {
    max-width: 420px;
    margin: auto;
  }

  .qads-category-card .card-title {
    font-size: 15px;
  }
}

/* ================= MOBILE FEATURE (REFINED) ================= */
.qads-mobile-feature {
  padding: 90px 0;
  background: linear-gradient(180deg, #0f0228 0%, #14032f 50%, #0f0228 100%);
  color: #ffffff;
} /* Phone image */
.phone-img {
  max-width: 100%;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.45));
} /* Feature columns */
.feature-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
} /* Feature item */
.feature-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
} /* Text wrap */
.feature-text {
  max-width: 320px;
} /* Title */
.feature-text h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  color: #ffffff;
} /* Description */
.feature-text p {
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
} /* Accent dots */
.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06);
} /* Dot colors */
.green {
  background: #2ecc71;
}
.blue {
  background: #4ea5ff;
}
.yellow {
  background: #ffb703;
}
.purple {
  background: #8b7cf6;
}
.orange {
  background: #f39c12;
}
.red {
  background: #ff6b6b;
} /* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .qads-mobile-feature {
    padding: 90px 0;
  }
  .feature-col {
    align-items: center;
    text-align: center;
  }
  .feature-point {
    justify-content: center;
    text-align: center;
  }
  .feature-text {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .feature-text h5 {
    font-size: 16px;
  }
  .feature-text p {
    font-size: 14px;
  }
} /* ================= QADS INFO SECTION ================= */
.qads-info-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #0f0228 0%, #14032f 50%, #0f0228 100%);
  color: #ffffff;
} /* Image */
.qads-info-img {
  max-width: 100%;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.45));
} /* Description */
.qads-info-desc {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
} /* ================= ACCORDION ================= */
.qads-accordion {
  margin-top: 20px;
}
.accordion-item {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
} /* Header */
.accordion-header {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
} /* Icon */
.accordion-icon {
  font-size: 22px;
  color: #ffb703;
  transition: transform 0.3s ease;
} /* Body */
.accordion-body {
  padding: 0 22px 18px;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  display: none;
} /* Active state */
.accordion-item.active {
  border-color: rgba(255, 183, 3, 0.35);
  background: linear-gradient(
    180deg,
    rgba(255, 183, 3, 0.15),
    rgba(255, 183, 3, 0.04)
  );
}
.accordion-item.active .accordion-body {
  display: block;
}
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
} /* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .qads-info-section {
    padding: 90px 0;
  }
  .qads-info-desc {
    max-width: 100%;
  }
}

/* =====================
   FADE ANIMATIONS (GLOBAL)
   ===================== */

/* Base hidden state */
.fade-in-up,
.fade-in-right,
.fade-in-left,
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease-out;
  will-change: transform, opacity;
}

/* Direction variants */
.fade-in-right {
  transform: translateX(40px);
}

.fade-in-left {
  transform: translateX(-40px);
}

.fade-in {
  transform: none;
}

/* When visible */
.fade-show {
  opacity: 1;
  transform: translate(0, 0);
}

/* Optional delay helpers */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up,
  .fade-in-right,
  .fade-in-left,
  .fade-in {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
