/* =====================
   GLOBAL
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =====================
   HEADER = FOOTER THEME
===================== */
.site-header {
  background: #0b4da2;          /* SAME AS FOOTER BG */
  color: #ffffff;               /* SAME AS FOOTER TEXT */
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* LOGO */
.logo a,
.logo strong {
  color: #ffffff;
}

.logo span {
  color: #e0e0e0;
}


/* =====================
   HEADER MENU – HORIZONTAL
===================== */
.main-nav {
  margin-left: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;              /* 👈 ek line me */
  flex-direction: row;        /* 👈 confirm horizontal */
  align-items: center;
  gap: 30px;                  /* menu ke beech space */
}

.main-nav li {
  border: none;
}

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
}

/* Hover underline effect */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}



/* CALL BUTTON (INVERTED FOR CTA) */
.call-btn {
  background: #ffffff;
  color: #0b4da2;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.call-btn:hover {
  background: #e6eeff;
}

/* BURGER */
.burger span {
  background: #ffffff;
}


/* =====================
   FOOTER
===================== */
.site-footer {
  background: #0b4da2;
  color: #ffffff;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 0;
}

.site-footer h4 {
  margin-bottom: 10px;
}

.footer-bottom {
  background: #063970;
  text-align: center;
  padding: 12px;
  font-size: 13px;
}


/* DROPDOWN MENU */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 260px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  z-index: 1000;
}

.dropdown li a {
  display: block;
  padding: 10px 15px;
  color: #222;
  font-size: 14px;
  white-space: nowrap;
}

.dropdown li a:hover {
  background: #f0f4ff;
}

/* SHOW DROPDOWN ON HOVER (DESKTOP) */
@media (min-width: 993px) {
  .has-dropdown:hover .dropdown {
    display: block;
  }
}

.footer-brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-brand::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #ffb400;
  margin-top: 6px;
  border-radius: 2px;
}

/* =========================================
   FIX: UNWANTED DROPDOWN OPTIONS IN HEADER
   (NO responsive.css REQUIRED)
========================================= */

/* Dropdown default hidden */
.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 260px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

/* Desktop: show dropdown ONLY on hover */
@media (min-width: 992px) {
  .main-nav .has-dropdown:hover > .dropdown {
    display: block;
  }
}

/* Dropdown items styling */
.main-nav .dropdown li a {
  display: block;
  padding: 10px 15px;
  color: #222;
  white-space: nowrap;
}

.main-nav .dropdown li a:hover {
  background: #f0f4ff;
}

/* Safety: dropdown should never be flex in desktop */
.main-nav .dropdown {
  flex-direction: column;
}


/* ===============================
   FIX: HEADER RIGHT ALIGNMENT
================================ */

.header-right {
  display: flex;
  align-items: center;      /* vertical center */
  gap: 18px;                /* language & call ke beech space */
  white-space: nowrap;      /* line break na ho */
}

/* Language switch */
.lang-switch {
  font-size: 14px;
}

.lang-switch a {
  color: #ffffff;           /* footer jaisa text */
  text-decoration: none;
  font-weight: 500;
}

.lang-switch a:hover {
  text-decoration: underline;
}

/* Call button already hai, bas alignment ensure */
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


/* ===============================
   FIX: CONTACT US & EN SPACING
================================ */

/* Nav aur header-right ke beech space */
.main-nav {
  margin-right: 30px;   /* 👈 Contact Us aur EN ke beech gap */
}

/* Extra safety: agar future me tight ho */
.header-right {
  margin-left: 10px;
}


/* =====================
   FOOTER LINKS
===================== */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}


/* Branches ke beech proper gap */
.branch-item {
  margin-bottom: 22px;   /* 👈 gap control yahin se */
}

/* =====================
   FOOTER CONTACT DETAILS
===================== */

.footer-contact {
  font-size: 14px;
  color: #e0e0e0;
}

.footer-company {
  font-size: 18px;        /* 👈 thoda bada */
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}

.social-icons a:hover {
  background: #ffffff;
  color: #0b4da2;
}

/* =====================
   FOOTER BOTTOM CENTER
===================== */
.footer-bottom {
  background: #063970;          /* footer ka dark shade */
  color: #ffffff;
  text-align: center;           /* 👈 bilkul center */
  padding: 14px 10px;
  font-size: 13px;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


/* =====================
   HEADER LOGO WIDTH CONTROL
===================== */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 72px;      /* ✔ height same rahe */
  max-width: 420px;     /* 👈 width yahan badhao */
  width: auto;
  display: block;
}

.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slides {
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* =====================
   HERO SLIDER
===================== */
.hero-slider {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 750px;
  padding-top: 140px;
}

.slide-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  background: #0b4da2;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

/* Slider dots */
.slider-nav {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.slider-nav .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.slider-nav .dot.active {
  background: #0b4da2;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider {
    height: auto;
  }

  .slide-content {
    padding: 80px 15px;
  }

  .slide-content h1 {
    font-size: 30px;
  }
}


/* =====================
   SERVICES OVERVIEW
===================== */
.services-overview {
  padding: 70px 0;
  background: #f4f6f8;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.service-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 6px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0b4da2;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-6px);
  background: #0b4da2;
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   WHY CHOOSE US
===================== */
.why-choose-us {
  padding: 70px 0;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.why-card {
  background: #f4f6f8;
  padding: 30px 20px;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card i {
  font-size: 36px;
  color: #0b4da2;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Hover effect */
.why-card:hover {
  background: #0b4da2;
  transform: translateY(-6px);
}

.why-card:hover i,
.why-card:hover h3,
.why-card:hover p {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   ABOUT US SHORT INTRO
===================== */
.about-short {
  padding: 70px 0;
  background: #f4f6f8;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
  }

  .about-image {
    margin-top: 25px;
  }
}

/* =====================
   GALLERY PREVIEW
===================== */
.gallery-preview {
  padding: 70px 0;
  background: #ffffff;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0 35px;
  font-weight: 500;
  color: #555;
}

.gallery-tabs span {
  cursor: default;
  padding-bottom: 6px;
}

.gallery-tabs .active {
  color: #0b4da2;
  border-bottom: 2px solid #0b4da2;
}

/* Image Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  height: 200px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* CTA */
.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 220px;
  }
}


/* =====================
   PROCESS SECTION
===================== */
.process-section {
  padding: 70px 0;
  background: #f4f6f8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.process-step {
  background: #ffffff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
}

.process-step i {
  font-size: 36px;
  color: #0b4da2;
  margin-bottom: 15px;
}

.process-step h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #222;
}

.process-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Step number badge */
.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0b4da2;
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
.process-step:hover {
  transform: translateY(-6px);
  background: #0b4da2;
}

.process-step:hover i,
.process-step:hover h3,
.process-step:hover p {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================
   TESTIMONIALS
===================== */
.testimonials-section {
  padding: 70px 0;
  background: #ffffff;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  animation: slideTestimonials 30s linear infinite;
}

.testimonial-card {
  min-width: 320px;
  background: #f4f6f8;
  padding: 25px 20px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 16px;
  color: #0b4da2;
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 13px;
  color: #777;
}

/* Animation */
@keyframes slideTestimonials {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pause on hover */
.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
  }
}

/* =====================
   CALL TO ACTION BANNER
===================== */
.cta-banner {
  position: relative;
  background: url("images/cta-printing.jpg") center/cover no-repeat;
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-content h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #f1f1f1;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #0b4da2;
  color: #ffffff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.btn-primary:hover {
  background: #0e63d4;
}

.btn-call {
  background: #ff9800;
  color: #ffffff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.btn-call:hover {
  background: #e68900;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 28px;
  }
}


/* =====================
   CONTACT PREVIEW
===================== */
.contact-preview {
  padding: 70px 0;
  background: #f4f6f8;
}

.contact-flex {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  flex: 1;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
}

.contact-list i {
  color: #0b4da2;
  font-size: 16px;
  margin-top: 3px;
}

.contact-list a {
  color: #0b4da2;
  text-decoration: none;
  font-weight: 500;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* Map */
.contact-map {
  flex: 1;
  min-height: 260px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-flex {
    flex-direction: column;
  }

  .contact-map {
    min-height: 220px;
  }
}


/* =====================
   SERVICE DETAIL PAGES
===================== */
.service-hero {
  padding: 80px 0;
  background: #0b4da2;
  color: #ffffff;
  text-align: center;
}

.service-hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.service-hero p {
  font-size: 17px;
  color: #eaeaea;
}

.service-section {
  padding: 60px 0;
}

.service-section.bg-light {
  background: #f4f6f8;
}

.service-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

.service-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.service-list {
  list-style: none;
  padding-left: 0;
}

.service-list li {
  padding-left: 22px;
  margin-bottom: 8px;
  position: relative;
  color: #444;
}

.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b4da2;
}

/* CTA */
.service-cta {
  padding: 70px 0;
  background: #0b4da2;
  color: #ffffff;
  text-align: center;
}

.service-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.service-cta p {
  font-size: 16px;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}


/* CORPORATE HERO */
.corporate-hero {
  background: linear-gradient(
      rgba(11, 77, 162, 0.85),
      rgba(11, 77, 162, 0.85)
    ),
    url("images/corporate-printing.jpg") center/cover no-repeat;
}

.hero-subtitle {
  font-size: 18px;
  margin: 15px 0 25px;
  color: #eaeaea;
}


/* =====================
   WHO THIS PAGE IS FOR
===================== */
.who-for-section {
  padding: 70px 0;
  background: #ffffff;
}

.who-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.who-for-card {
  background: #f4f6f8;
  padding: 25px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.who-for-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0b4da2;
}

.who-for-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Hover effect */
.who-for-card:hover {
  background: #0b4da2;
  transform: translateY(-6px);
}

.who-for-card:hover h3,
.who-for-card:hover p {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .who-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .who-for-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================
   CORPORATE MASTER DESIGN
===================== */

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #0b4da2;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin: 0 auto 40px;
}

/* ---------- CORPORATE GRID ---------- */
.corp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.corp-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.corp-card span {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #0b4da2;
  font-weight: 600;
}

.corp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(11,77,162,0.25);
}

/* ---------- WHY CHOOSE / LIST ---------- */
.service-list {
  max-width: 900px;
  margin: 0 auto;
  columns: 2;
  column-gap: 40px;
}

.service-list li {
  margin-bottom: 12px;
  font-size: 15px;
  padding-left: 22px;
  position: relative;
}

.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b4da2;
  font-weight: bold;
}

/* ---------- PROCESS ---------- */
.process-list {
  max-width: 700px;
  margin: auto;
  list-style: none;
  padding: 0;
}

.process-list li {
  background: #ffffff;
  margin-bottom: 15px;
  padding: 18px 22px;
  border-left: 4px solid #0b4da2;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

/* ---------- CORPORATE FORM ---------- */
.corp-form {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.corp-form input,
.corp-form textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.corp-form textarea {
  grid-column: span 2;
  min-height: 120px;
}

.corp-form input[type="file"] {
  grid-column: span 2;
}

.corp-form .cta-buttons {
  grid-column: span 2;
  justify-content: center;
}

/* ---------- FAQ ---------- */
.faq-list li {
  background: #ffffff;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .corp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corp-form {
    grid-template-columns: 1fr;
  }

  .service-list {
    columns: 1;
  }
}

@media (max-width: 576px) {
  .corp-services-grid {
    grid-template-columns: 1fr;
  }
}


.event-hero {
  background: linear-gradient(
      rgba(11,77,162,0.85),
      rgba(11,77,162,0.85)
    ),
    url("images/event-hero.jpg") center/cover no-repeat;
  padding: 120px 0;
  text-align: center;
  color: #fff;
}

.event-badge {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 15px;
}


.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.event-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.event-card i {
  font-size: 36px;
  color: #0b4da2;
  margin-bottom: 12px;
}

.event-card span {
  display: block;
  font-size: 13px;
  color: #0b4da2;
  font-weight: 600;
}

.event-card:hover {
  transform: translateY(-10px);
}


.event-timeline {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.event-timeline div {
  background: #fff;
  padding: 18px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  flex: 1;
  border-top: 4px solid #0b4da2;
}

.event-highlight {
  background: #0b4da2;
  color: #fff;
  padding: 18px 0;
  text-align: center;
  font-weight: 600;
}


/* ================================
   DESIGN, BRANDING & CUSTOMIZATION
================================ */

.design-branding-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f4f6f8 0%, #ffffff 100%);
}

.design-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.design-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 15px;
}

.design-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.design-tag {
  display: inline-block;
  background: #0b4da2;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.design-points {
  margin-top: 20px;
}

.design-points li {
  margin-bottom: 10px;
  font-size: 15px;
  position: relative;
  padding-left: 26px;
}

.design-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b4da2;
  font-weight: bold;
}

/* RIGHT CARDS */
.design-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.design-card {
  background: #ffffff;
  padding: 28px 22px;
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.design-card i {
  font-size: 34px;
  color: #0b4da2;
  margin-bottom: 12px;
}

.design-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.design-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.design-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(11,77,162,0.25);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .design-grid {
    grid-template-columns: 1fr;
  }

  .design-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .design-cards {
    grid-template-columns: 1fr;
  }

  .design-content h2 {
    font-size: 28px;
  }
}


/* =========================
   ABOUT US HERO / BANNER
========================= */

.about-hero {
  background: linear-gradient(
      rgba(11, 77, 162, 0.88),
      rgba(11, 77, 162, 0.88)
    ),
    url("images/about-banner.jpg") center/cover no-repeat;
  padding: 130px 0;
  color: #ffffff;
}

.about-badge {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.about-hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.about-subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #e6e6e6;
}

.about-intro {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.8;
  color: #f1f1f1;
  margin-bottom: 30px;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #ffffff;
  color: #0b4da2;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 30px;
  }

  .about-subtitle {
    font-size: 17px;
  }
}


/* ===============================
   COMPANY INTRODUCTION – WHO WE ARE
================================ */

.company-intro-section {
  padding: 90px 0;
  background: #ffffff;
}

.company-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.intro-tag {
  display: inline-block;
  background: #0b4da2;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.company-intro-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 15px;
}

.intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

/* RIGHT HIGHLIGHTS */
.company-intro-highlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.highlight-box {
  background: #f4f6f8;
  padding: 28px 22px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.highlight-box h3 {
  font-size: 32px;
  font-weight: 800;
  color: #0b4da2;
  margin-bottom: 5px;
}

.highlight-box p {
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .company-intro-grid {
    grid-template-columns: 1fr;
  }

  .company-intro-content h2 {
    font-size: 28px;
  }
}


/* ============================
   OUR JOURNEY / OUR STORY
============================ */

.our-journey-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f4f6f8 100%);
}

.journey-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.journey-tag {
  display: inline-block;
  background: #0b4da2;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.journey-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 18px;
}

.journey-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

/* RIGHT HIGHLIGHTS */
.journey-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.journey-box {
  background: #ffffff;
  padding: 26px 22px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.journey-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0b4da2;
  margin-bottom: 6px;
}

.journey-box p {
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

.journey-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11,77,162,0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-content h2 {
    font-size: 28px;
  }
}

/* =========================
   OUR MISSION & VISION
========================= */

.mission-vision-section {
  padding: 100px 0;
  background: #0b4da2;
  color: #ffffff;
}

.mission-vision-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.mv-tag {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.mission-vision-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.mv-subtitle {
  font-size: 16px;
  color: #e6e6e6;
  line-height: 1.6;
}

/* GRID */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.mv-card {
  background: #ffffff;
  color: #333;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
  transition: all 0.35s ease;
}

.mv-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0b4da2;
}

.mv-card p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #444;
}

.mv-icon {
  font-size: 38px;
  margin-bottom: 15px;
}

/* Hover Effect */
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-header h2 {
    font-size: 30px;
  }
}

/* ============================
   WHAT WE DO – SERVICES OVERVIEW
============================= */

.what-we-do-section {
  padding: 100px 0;
  background: #ffffff;
}

.what-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.what-tag {
  display: inline-block;
  background: #0b4da2;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.what-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0b4da2;
  margin-bottom: 10px;
}

.what-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.what-card {
  background: #f4f6f8;
  padding: 35px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.what-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 10px;
}

.what-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* Hover */
.what-card:hover {
  background: #0b4da2;
  transform: translateY(-8px);
}

.what-card:hover h3,
.what-card:hover p {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .what-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .what-grid {
    grid-template-columns: 1fr;
  }

  .what-header h2 {
    font-size: 30px;
  }
}


/* =========================
   WHY CHOOSE US
========================= */

.why-choose-section {
  padding: 100px 0;
  background: #f4f6f8;
}

.why-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.why-tag {
  display: inline-block;
  background: #0b4da2;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.why-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0b4da2;
  margin-bottom: 10px;
}

.why-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.why-icon {
  font-size: 34px;
  display: block;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* Hover Effect */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(11,77,162,0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 30px;
  }
}

/* ===============================
   INFRASTRUCTURE & TECHNOLOGY
=============================== */

.infrastructure-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f4f6f8 0%, #ffffff 100%);
}

.infra-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.infra-tag {
  display: inline-block;
  background: #0b4da2;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.infra-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0b4da2;
  margin-bottom: 10px;
}

.infra-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.infra-card {
  background: #ffffff;
  padding: 38px 26px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.infra-icon {
  font-size: 38px;
  display: block;
  margin-bottom: 16px;
}

.infra-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 10px;
}

.infra-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* Hover */
.infra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(11,77,162,0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .infra-grid {
    grid-template-columns: 1fr;
  }

  .infra-header h2 {
    font-size: 30px;
  }
}


/* ===============================
   QUALITY ASSURANCE & CONFIDENTIALITY
=============================== */

.quality-section {
  padding: 100px 0;
  background: #ffffff;
}

.quality-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.quality-tag {
  display: inline-block;
  background: #0b4da2;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.quality-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0b4da2;
  margin-bottom: 10px;
}

.quality-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.quality-card {
  background: #f4f6f8;
  padding: 36px 26px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.quality-icon {
  font-size: 38px;
  display: block;
  margin-bottom: 16px;
}

.quality-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 10px;
}

.quality-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* Hover */
.quality-card:hover {
  transform: translateY(-10px);
  background: #0b4da2;
  box-shadow: 0 22px 50px rgba(11,77,162,0.25);
}

.quality-card:hover h3,
.quality-card:hover p,
.quality-card:hover .quality-icon {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .quality-header h2 {
    font-size: 30px;
  }
}


/* ===============================
   OUR CLIENTS / INDUSTRIES SERVED
=============================== */

.clients-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f4f6f8 0%, #ffffff 100%);
}

.clients-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.clients-tag {
  display: inline-block;
  background: #0b4da2;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.clients-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0b4da2;
  margin-bottom: 10px;
}

.clients-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.client-card {
  background: #ffffff;
  padding: 38px 26px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.client-icon {
  font-size: 42px;
  display: block;
  margin-bottom: 16px;
}

.client-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 10px;
}

.client-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* Hover */
.client-card:hover {
  transform: translateY(-10px);
  background: #0b4da2;
  box-shadow: 0 22px 50px rgba(11,77,162,0.25);
}

.client-card:hover h3,
.client-card:hover p,
.client-card:hover .client-icon {
  color: #ffffff;
}

/* OPTIONAL LOGO STRIP */
.client-logos {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.client-logos img {
  max-height: 60px;
  opacity: 0.7;
  transition: 0.3s;
}

.client-logos img:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .clients-header h2 {
    font-size: 30px;
  }
}


/* ===============================
   OUR VALUES
=============================== */

.values-section {
  padding: 100px 0;
  background: #0b4da2;
  color: #ffffff;
}

.values-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.values-tag {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.values-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.values-subtitle {
  font-size: 16px;
  color: #e6e6e6;
  line-height: 1.7;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* CARD */
.value-card {
  background: #ffffff;
  color: #333;
  padding: 38px 26px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  transition: all 0.35s ease;
}

.value-icon {
  font-size: 42px;
  display: block;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* Hover */
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(0,0,0,0.28);
}

/* Responsive */
@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   FINAL CALL TO ACTION
========================= */

.final-cta-section {
  background: linear-gradient(
      rgba(11, 77, 162, 0.92),
      rgba(11, 77, 162, 0.92)
    ),
    url("images/cta-printing-bg.jpg") center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.final-cta-content {
  max-width: 820px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.final-cta-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #e6e6e6;
  margin-bottom: 35px;
}

/* BUTTONS */
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #0b4da2;
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta-content h2 {
    font-size: 30px;
  }

  .final-cta-content p {
    font-size: 15px;
  }
}

/* =========================
   MOBILE HEADER FIX
========================= */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  display: block;
}

/* ---------- MOBILE VIEW ---------- */
@media (max-width: 992px) {

  .burger {
    display: flex;     /* 👈 SHOW BURGER */
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0b4da2;
    padding-top: 80px;
    transition: 0.3s ease;
    z-index: 1200;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
  }

  .main-nav a {
    color: #ffffff;
    font-size: 16px;
  }

  .main-nav.active {
    right: 0;   /* 👈 MENU SLIDE IN */
  }

  /* header right hide in mobile */
  .header-right {
    display: none;
  }

  /* dropdown fix */
  .dropdown {
    position: static;
    box-shadow: none;
    background: #0b4da2;
  }

  .dropdown a {
    color: #ffffff;
  }
}
.burger {
  position: relative;
  z-index: 2000;     /* 🔥 sabse upar */
  cursor: pointer;
}


/* style.css mein mobile view ke andar */
@media (max-width: 992px) {
    .main-nav {
        display: none; /* Default band rakhein */
        /* baaki CSS... */
    }

    .main-nav.active {
        display: flex !important; /* Click hone par dikhega */
        right: 0;
    }

    .burger {
        display: flex !important; /* Mobile par icon dikhna chahiye */
        z-index: 1002;
    }
}

@media (max-width: 992px) {
    /* Menu default mein chhupa rahega */
    .main-nav {
        display: flex !important; /* Display flex hi rahega */
        right: -100%;             /* Lekin screen se bahar */
        transition: 0.4s ease;
        position: fixed;
    }

    /* Jab 'active' class add hogi tab menu dikhega */
    .main-nav.active {
        right: 0;
    }

    /* Sub-menu (Dropdown) logic */
    .main-nav .dropdown {
        display: none; /* Default mein chhupa rahega */
        background: #093d82; /* Thoda dark color taaki alag dikhe */
        padding-left: 20px;
    }

    /* Jab parent par 'open' class aayegi tab sub-menu dikhega */
    .has-dropdown.open > .dropdown {
        display: block !important;
    }
}@media (max-width: 992px) {
  .main-nav {
    display: flex !important; /* Display flex rakhein */
    position: fixed;
    top: 0;
    right: -100%; /* Default hidden */
    width: 280px;
    height: 100vh;
    background: #0b4da2;
    transition: 0.4s ease; /* Smooth sliding */
    flex-direction: column;
    z-index: 1000;
  }

  /* Jab JS 'active' add karega */
  .main-nav.active {
    right: 0; 
  }

  /* Dropdown (Sub-categories) Settings */
  .dropdown {
    display: none; /* Default band */
    background: rgba(0,0,0,0.1);
  }

  /* Jab 'open' class aayegi tab dikhega */
  .has-dropdown.open > .dropdown {
    display: block !important;
  }
}

/* BURGER MENU */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2001;
}

.burger span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  display: block;
}

/* Mobile only */
@media (max-width: 992px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #0b4da2;
    transition: 0.3s ease;
    padding-top: 80px;
    z-index: 2000;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }
}

/* =====================
   MOBILE BURGER FIX
===================== */

.burger {
  display: none;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 3000; /* 👈 sabse upar */
}

.burger span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  display: block;
  border-radius: 2px;
}

/* MOBILE MENU */
@media (max-width: 992px) {

  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #0b4da2;
    padding-top: 90px;
    transition: right 0.3s ease;
    z-index: 2000;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    padding-left: 25px;
  }

  /* 🔥 IMPORTANT: desktop nav ko click-blocker banne se roko */
  .header-flex {
    position: relative;
    z-index: 2500;
  }
}

<style>
  header {
    background: #ffffff;
   :root {
  --brand-blue: #004aad;
}

header {
  border-bottom: 6px solid var(--brand-blue);
}


  header a {
    color: blue;
  }

  footer {
    background: blue;
    color: white;
  }
</style>


/* =========================
   HEADER & NAV BASIC
========================= */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

/* =========================
   SUBMENU ARROW
========================= */
.submenu-arrow {
  font-size: 12px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

/* rotate arrow when open */
.has-dropdown.open > a .submenu-arrow {
  transform: rotate(180deg);
}

/* =========================
   DESKTOP DROPDOWN (HOVER)
========================= */
@media (min-width: 993px) {

  .has-dropdown {
    position: relative;
  }

  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 230px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 3000;
  }

  .dropdown li a {
    color: #333;
    padding: 10px 15px;
    display: block;
  }

  .has-dropdown:hover > .dropdown {
    display: block;
  }

  .has-dropdown:hover > a .submenu-arrow {
    transform: rotate(180deg);
  }
}

/* =========================
   BURGER + MOBILE MENU
========================= */
.burger {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 4000;
}

.burger span {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* =========================
   MOBILE DROPDOWN (TAP)
========================= */
@media (max-width: 992px) {

  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #0b4da2;
    padding-top: 90px;
    transition: right 0.3s ease;
    z-index: 3000;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 18px;
    padding-left: 20px;
  }

  /* disable hover on mobile */
  .has-dropdown:hover > .dropdown {
    display: none;
  }

 .dropdown {
  display: none;
  position: static;
  background: #ffffff;        /* ✅ WHITE BG */
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 6px;
  margin-top: 6px;
  padding: 6px 0;
}


  .has-dropdown.open > .dropdown {
    display: block;
  }

  .has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .dropdown {
    background: #ffffff;     /* ✔ white background */
  }

  .dropdown a {
    color: #222;             /* ✔ readable text */
  }
}

/* Desktop par menu ko ek line mein laane ke liye */
@media (min-width: 993px) {
  .main-nav ul {
    display: flex !important;
    gap: 20px;
    list-style: none;
  }
  .burger {
    display: none;
  }
}

/* =========================
   PAGE BANNER – GALLERY
========================= */

.page-banner {
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Gallery specific background */
.gallery-banner {
  background-image: url("kanha-printing-demo/images/printing-banner.jpg");
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Content */
.banner-content {
  color: #fff;
  max-width: 900px;
  padding: 20px;
}

.banner-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.banner-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f1f1f1;
}

/* Responsive */
@media (max-width: 768px) {
  .page-banner {
    min-height: 280px;
  }

  .banner-content h1 {
    font-size: 28px;
  }

  .banner-content p {
    font-size: 15px;
  }
}


/* =========================
   GALLERY FILTER SECTION
========================= */

.gallery-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

/* Filter Buttons */
.gallery-filters {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  border: 1px solid #d62828;
  background: transparent;
  color: #d62828;
  padding: 8px 18px;
  margin: 5px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #d62828;
  color: #fff;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* Gallery Item */
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Hide Items */
.gallery-item.hide {
  display: none;
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-item img {
    height: 180px;
  }
}


