/* ======================================================
   RESET
====================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: #0f172a;
}

/* ======================================================
   BACKGROUND VIDEO
====================================================== */
.background-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* ======================================================
   BOOK CONTAINER
====================================================== */
.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(95vw, 520px);
  height: 96vh;
  margin: 20px auto 0;
}

.container.expanded {
  width: min(95vw, 1100px);
  height: 100vh;
}

/* ======================================================
   FLIPBOOK CORE
====================================================== */
#flipbook {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.35),
    0 20px 50px rgba(0, 0, 0, 0.25);
}

.container.expanded #flipbook {
  transform: none;
}

.container.expanded::after {
  content: "";
  position: fixed;
  inset: 0;
  backdrop-filter: blur(4px);
  z-index: -1;
  pointer-events: none;
}

/* Spine shadow */
#flipbook::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 0;
  width: 18px;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.2),
    transparent
  );
  border-radius: 8px 0 0 8px;
}
#flipbook::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9),
    rgba(200, 200, 200, 0.4),
    transparent
  );
  pointer-events: none;
}

/* ======================================================
   PAGES
====================================================== */
.page {
  position: relative;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  backface-visibility: hidden;
  transition: transform 0.4s ease;
}

.page:hover {
  transform: none;
}

.page-content {
  height: calc(100% - 70px);
  padding: 60px;
  overflow-y: auto;
}

.page-content h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #2563eb;
  margin-top: 8px;
}

/* ======================================================
   PAGE FOOTER (Fixed Bottom Navigation)
====================================================== */

.page-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  height: 70px;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(160deg, #0b0f19, #0e1424);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* NAV BUTTON STYLE */
.nav-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;

  transition: all 0.25s ease;
}

.nav-text:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.5);
  color: #ffffff;
}
.service-card-modern p,
.portfolio p,
.portfolio-item span,
.contact p {
  color: #94a3b8;
}

.outcome,
.project-result {
  color: #60a5fa;
}

/* ======================================================
   COVER (Luxury Hardcover)
====================================================== */
.cover {
  background: linear-gradient(145deg, #020617, #0f172a);
  color: #d1d5db;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  box-shadow:
    inset 0 0 40px rgba(255, 255, 255, 0.04),
    inset 0 0 80px rgba(0, 0, 0, 0.6);
}
.cover .page-footer {
  display: none !important;
}

.cover-header {
  margin-top: 70px;
  text-align: center;
}

.logo {
  width: clamp(80px, 12vw, 140px);
  height: auto;
  max-width: 100%;
}

.company-name {
  margin-top: 18px;
  letter-spacing: 4px;
  font-size: 24px;
  font-weight: 700;
}

.company-tagline {
  margin-top: 36px;
  max-width: 80%;
  font-size: 14px;
  text-align: center;
  color: #9ca3af;
}

.open-catalogue {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2f6d, #ff5a8a);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.services,
.portfolio,
.contact {
  background: linear-gradient(160deg, #0b0f19, #0e1424);
  color: #e2e8f0;
}

/* ======================================================
   TYPOGRAPHY (Clean Hierarchy)
====================================================== */
.portfolio h2,
.services h2,
.contact h2 {
  font-size: 26px;
  margin-bottom: 16px;
}
.portfolio p,
.service-card p {
  font-size: 14px;
  line-height: 1.8;
}

/* ======================================================
   CONTACT FORM
====================================================== */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  margin-bottom: 14px;
  font-size: 14px;
}

.contact-form button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* ======================================================
   CLOSE BUTTON
====================================================== */
.close-book {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

/* ======================================================
   RESPONSIVE
====================================================== */
 /* ================= MOBILE TOC HEADER ================= */

.mobile-header {
  display: none;
}

@media (max-width: 768px) {

  .toc-layout {
    flex-direction: column;
  }

  #flipbook .toc-nav {
    display: none !important;
    width: 0 !important;
    padding: 0 !important;
    border: none !important;
  }

  .mobile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .mobile-header img {
    width: 60px;
    margin-bottom: 10px;
  }

  .mobile-nav {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 5px;
  }

  .mobile-nav .toc-item {
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
  }

  .mobile-nav .toc-item:hover {
    background: #2563eb;
  }

  .toc-right {
    padding: 40px 20px;
  }

}




@media (max-width: 768px) {
  body {
    overflow: auto;
  }

  .container {
    width: 100vw;
    height: 100vh;
    padding: 12px;
  }

  .container.expanded {
    width: 100vw;
  }

  #flipbook {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 768px) {
  .page {
    border-radius: 20px;
    margin: 0 auto;
  }

  .page-content {
    padding: 25px;
  }
  .page-footer {
    display: none;
  }

  .services-cards-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .luxury-stats {
    flex-direction: column;
    gap: 25px;
  }
}
@media (max-width: 768px) {

  .toc-right {
    padding: 40px 20px;
  }
  .about-intro p {
    font-size: 15px;
  }
  .toc-right p {
    font-size: 15px;
  }
}

/* Enhance page turn smoothness */
.turn-page {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

#flipbook .page {
  transition: box-shadow 0.3s ease;
  box-shadow:
    inset -6px 0 18px rgba(0, 0, 0, 0.08),
    inset 6px 0 18px rgba(0, 0, 0, 0.05);
}

/* Active turning shadow boost */
#flipbook.is-turning {
  box-shadow:
    0 90px 180px rgba(0, 0, 0, 0.6),
    0 40px 80px rgba(0, 0, 0, 0.4);
}

/* ================= SERVICES HERO ================= */

.services-hero {
  text-align: center;
  margin-bottom: 50px;
}

.services-hero h2 {
  font-size: 30px;
  font-weight: 700;
}

.services-hero p {
  margin-top: 10px;
  color: #555;
  font-size: 14px;
}

/* ================= MODERN GRID ================= */

.services-cards-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 100%;
}

/* ================= MODERN CARD ================= */

.service-card-modern {
  padding: 40px 25px 30px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.service-card-modern,
.portfolio-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
}

.icon-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 18px;
}

.service-card-modern h4 {
  margin-top: 30px;
  font-size: 17px;
  font-weight: 600;
}

.service-card-modern p {
  font-size: 14px;
  margin: 15px 0;
  line-height: 1.6;
}

.outcome {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  color: #1e40af;
}

/* SERVICE MODAL */

.service-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  border-radius: 12px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 18px;
}

.more-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.15s ease;
  user-select: none;
}

/* Hover effect (subtle) */
.more-link:hover {
  background: #2563eb;
}

/* Click press effect */
.more-link:active {
  transform: scale(0.95);
  background: #dbeafe;
}

/* ================= PORTFOLIO HERO ================= */

.portfolio-hero {
  text-align: center;
  margin-bottom: 40px;
}

.portfolio-hero p {
  font-size: 14px;
  color: #555;
  max-width: 500px;
  margin: 10px auto 0;
}

/* ================= FEATURED PROJECTS ================= */

.portfolio-featured {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.portfolio-project {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}
.service-card-modern:hover,
.portfolio-item:hover,
.portfolio-project:hover {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.2);
  transform: translateY(-6px);
}

.project-tag {
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.portfolio-project h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.project-tech {
  margin-top: 15px;
}

.project-tech span {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #f1f5f9;
  margin-right: 6px;
  margin-bottom: 6px;
}

.project-result {
  margin-top: 15px;
  font-size: 13px;
  font-weight: 600;
  color: #1e40af;
}

/* MINI STATS */

.impact-row {
  display: flex;
  gap: 30px;
  margin-top: 15px;
}

.mini-stat h4 {
  font-size: 22px;
  font-weight: 700;
  color: #2563eb;
}

.mini-stat span {
  font-size: 12px;
  color: #555;
}

/* Make portfolio cards more bold */

.portfolio-project {
  text-align: left;
}

.portfolio-project h3 {
  font-size: 18px;
  margin: 10px 0;
}

/* ================= PREMIUM CASE STUDY ================= */

/* HEADER */
.case-header {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 40px;
}

.case-category {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.7;
}

.case-header h2 {
  margin-top: 10px;
  font-size: 22px;
}

/* BIG STATS */
.case-stats-large {
  display: flex;
  justify-content: space-around;
  padding: 40px;
  background: #f8fafc;
}

.case-stats-large h1 {
  font-size: 40px;
  color: #2563eb;
}

.case-stats-large p {
  font-size: 13px;
  color: #555;
}

/* SECTION */
.case-section {
  padding: 30px 40px;
}

.case-section h4 {
  margin-bottom: 10px;
}

.case-section ul {
  padding-left: 18px;
}

/* CLOSING */
.case-closing {
  padding: 30px 40px;
  background: #f1f5f9;
  font-weight: 600;
}

.portfolio-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.portfolio-item {
  background: #263d6f;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: 0.3s ease;
}
.case-big-stats {
  display: flex;
  gap: 60px;
  margin: 50px 0;
}

.case-big-stats h1 {
  font-size: 48px;
  font-weight: 700;
}

.case-big-stats p {
  font-size: 13px;
}

.page-content a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}
/* ===== DARK LUXURY SCROLLBAR ===== */

.page-content::-webkit-scrollbar {
  width: 8px;
}

.page-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.page-content::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, 0.5);
  border-radius: 10px;
  transition: 0.3s ease;
}

.page-content::-webkit-scrollbar-thumb:hover {
  background: rgba(37, 99, 235, 0.8);
}
.case-preview{
  margin-top:20px;
  text-align:center;
}
.case-preview img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition:0.4s ease;
}
.case-preview img:hover{
  transform:scale(1.03);
}

/* .before-after {
  display: flex;
  gap: 40px;
  margin: 25px 0;
} */
.service-subline{
  margin-top:15px;
  font-size:14px;
  color:#94a3b8;
  letter-spacing:1px;
}
.before-after div {
  padding: 20px;
  border-radius: 12px;
  flex: 1;
}

.tech-tags span {
  display: inline-block;
  margin: 6px 8px 6px 0;
  padding: 6px 12px;
  background: #e2e8f0;
  border-radius: 6px;
  font-size: 12px;
}

.impact-summary {
  margin-top: 25px;
  padding: 20px;
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  font-weight: 600;
}

.page-content h2 {
  font-size: 34px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.page-content h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(to right, #2563eb, transparent);
}
.page-content h4 {
  margin-top: 40px;
  font-weight: 600;
  font-size: 16px;
}
.luxury-case {
  font-family: "Georgia", serif;
}

.luxury-header span {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #60a5fa;
}

.luxury-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin-top: 10px;
  color: #ffffff;
}

.luxury-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, #c6a85b, #f5e6b3);
  margin: 25px 0 40px 0;
}

.luxury-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
  backdrop-filter: blur(14px);
  margin-bottom: 35px;
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.08);
  transition: 0.3s ease;
}

.luxury-section:hover {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.2);
}

.luxury-section h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
.page.luxury-case,
.luxury-case {
  background: linear-gradient(160deg, #0b0f19, #0e1424);
  color: #e2e8f0;
}

.luxury-stats {
  display: flex;
  gap: 60px;
  margin: 50px 0;
}

.luxury-stats h1 {
  font-size: 48px;
  font-weight: 700;
  color: #60a5fa;
}

.luxury-stats p {
  font-size: 13px;
  color: #666;
}

.luxury-impact {
  margin-top: 50px;
  padding: 25px 30px;
  background: rgba(37, 99, 235, 0.08);
  border-left: 4px solid #60a5fa;
  font-size: 15px;
  color: #cbd5e1;
  border-radius: 12px;
}
.luxury-section ul {
  list-style: none;
  padding-left: 0;
}

.luxury-section ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: #94a3b8;
}

.luxury-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #60a5fa;
}

.luxury-stats div {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.08);
}
/* ===== SAFE PAGE ANIMATION ===== */

/* Default state VISIBLE */
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content p,
.page-content li,
.page-content span,
.page-content button {
  opacity: 1;
  transform: none;
}

/* ================= TOC NAV COLUMN ================= */

/* ===== TOC LAYOUT ===== */
.page.toc-page {
  background: linear-gradient(160deg, #0b0f19, #0e1424);
  color: #e2e8f0;
}
.toc-layout {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;   /* top align */
  align-items: flex-start;
  height: 100%;
  padding: 80px 70px 60px 90px;  /* top spacing */
}
/* ===== HEADER ROW (Logo + Name) ===== */

.toc-header-row {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 50px;
}

/* Logo */
.toc-logo-large {
  width: 110px;
  border-radius: 18px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.2);
}

/* Company Name Box */
.toc-company-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Company Name */
.toc-company-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
}

/* Animated underline */
.toc-underline {
  width: 60px;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(to right, #2563eb, #60a5fa);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
  transition: 0.4s ease;
}

.toc-header-row:hover .toc-underline {
  width: 120px;
}
.toc-about-title{
  font-style: italic;
  font-weight: 800;
  font-size: 25px;

}
/* ===== ABOUT CARD ===== */
.toc-about-card {
  width: 100%;
  max-width: 520px;
  padding: 10px 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.25);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.15);
  transition: 0.3s ease;

  margin-top: 60px;   /* 👈 isko adjust karo */
  margin-bottom: 50px; /* 👈 footer se thoda upar */
}

.toc-about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 80px rgba(37, 99, 235, 0.25);
}
.toc-about-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #60a5fa, transparent);
}
/* About Text */
.toc-about-text {
  font-size: 15px;
  line-height: 1.5;
  color: #94a3b8;
}
.toc-right {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction:column;
  align-items: center;
}



.about {
  background: linear-gradient(160deg, #0b0f19, #0e1424);
  color: #e2e8f0;
}

/* INTRO */
.about-intro {
  max-width: 700px;
  margin-bottom: 80px;
}

.about-tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #64748b;
}

.about-intro h2 {
  font-size: 36px;
  font-weight: 600;
  margin-top: 10px;
  color: #ffffff;
}

.about-divider {
  width: 80px;
  height: 2px;
  margin: 20px 0 40px;
  background: linear-gradient(to right, #2563eb, transparent);
}

.about-intro p {
  font-size: 18px;
  line-height: 1.9;
  color: #94a3b8;
  margin-bottom: 20px;
}

.luxury-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, #eff1f4, #60a5fa);
  margin: 25px 0 40px 0;
}
.contact ul li {
  color: #94a3b8;
  margin-bottom: 8px;
}
/* ================= SIDE ARROWS (MOBILE ONLY) ================= */

.side-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 120px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 28px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: 0.3s ease;
}

.side-prev {
  left: 0;
  border-radius: 0 16px 16px 0;
}

.side-next {
  right: 0;
  border-radius: 16px 0 0 16px;
}

.side-arrow:hover {
  background: #2563eb;
  transform: translateY(-50%) scale(1.05);
}

/* Show only on mobile */
@media (max-width: 768px) {
  .side-arrow {
    display: flex;
  }
}
/* ================= CONTACT QR BLOCK ================= */
/* ================= QR POPUP MODAL ================= */

.qr-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: none;                 /* IMPORTANT */
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.qr-content {
  background: linear-gradient(160deg, #0b0f19, #0e1424);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  width: 320px;
  position: relative;
  border: 1px solid rgba(37, 99, 235, 0.3);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.3);
}

.qr-content h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

.qr-content img {
  width: 200px;
  border-radius: 12px;
}

.qr-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
}

.contact-qr {
  margin-top: 30px;
  text-align: center;
}
.qr-btn {
  display: block;
  margin: 15px auto;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.qr-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.qr-box {
  display: inline-block;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.15);
  transition: 0.3s ease;
}

.qr-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.25);
}

.qr-box img {
  width: 200px;
  max-width: 100%;
  border-radius: 12px;
}

.contact-qr p {
  margin-top: 15px;
  font-size: 14px;
  color: #94a3b8;
}
/* ===== CONTACT QR SECTION ===== */

.qr-title {
  margin-top: 40px;
  text-align: center;
}

.qr-wrapper {
  margin-top: 20px;
  text-align: center;
}

.qr-card {
  display: inline-block;
  padding: 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.25);
  backdrop-filter: blur(15px);
  box-shadow: 0 0 50px rgba(37, 99, 235, 0.15);
  transition: 0.3s ease;
}

.qr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 70px rgba(37, 99, 235, 0.25);
}

.qr-card img {
  width: 200px;
  max-width: 100%;
  border-radius: 12px;
}

.qr-caption {
  margin-top: 18px;
  font-size: 14px;
  color: #94a3b8;
}
/* ================= OUR SERVICE PROGRAM ================= */

.our-service {
  background: linear-gradient(160deg, #0b0f19, #0e1424);
  color: #e2e8f0;
}

.program-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.program-card {
  position: relative;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.08);
  transition: 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.25);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 25px;
  background: #0951ec;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.program-card h4 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

.program-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
}


/* ================= TRUSTED CLIENTS PAGE ================= */

.trusted-clients {
  background: linear-gradient(160deg, #0b0f19, #0e1424);
  color: #e2e8f0;
}

.trusted-header {
  text-align: center;
  margin-bottom: 60px;
}

.trusted-header h2 {
  font-size: 34px;
  font-weight: 600;
  color: #ffffff;
}

.trusted-header p {
  margin-top: 12px;
  font-size: 15px;
  color: #94a3b8;
}

/* GRID */

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* CARD */

.trusted-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(37,99,235,0.15);
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
}

.trusted-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37,99,235,0.5);
  box-shadow: 0 0 50px rgba(37,99,235,0.25);
}

.trusted-card img {
  width: 50%;
  /* max-height: 110px; */
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 50%;
}

.trusted-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #ffffff;
}

.trusted-card span {
  font-size: 13px;
  color: #94a3b8;
}
/*-----====for scroll=====*/
.scroll-indicator{
  position:absolute;
  bottom:35px;
  left:50%;
  transform:translateX(-50%);
  font-size:13px;
  color:#60a5fa;
  animation: bounce 1.5s infinite;
  transition:0.4s ease;
}

@keyframes bounce{
  0%,100%{ transform:translate(-50%,0);}
  50%{ transform:translate(-50%,6px);}
}
/*====Hints======*/
