/* ================= SANDHIYA TRADER THEME ================= */
:root {
  --blue: #123a78;        /* Logo Blue */
  --green: #2f7d4e;       /* Peacock Green */
  --gold: #c89b3c;        /* Crown Gold */

  --bg-white: #ffffff;   /* MAIN BACKGROUND */
  --bg-soft: #f6f8fb;    /* Section background */
  
  --text-dark: #1f2937;  /* Main text */
  --text-light: #6b7280; /* Muted text */
}





/* ================= NAVBAR ================= */

.st-navbar {
  background: #ffffff;
  padding: 14px 0;
  transition: 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ================= STICKY NAVBAR ================= */

/* Header wrapper */
.st-header {
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Navbar */
.st-navbar {
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Logo size */
.st-logo {
  height: 60px;
}

/* On scroll (optional polish) */
body {
  scroll-padding-top: 90px; /* prevents content jump */
}

/* Mobile fix */
@media (max-width: 991px) {
  .st-navbar {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  }
}


/* Logo */
.st-logo {
  height: 120px;
}

/* Links */
.st-navbar .nav-link {
  color: var(--dark);
  font-weight: 500;
  margin: 0 18px;
  position: relative;
  transition: 0.3s ease;
}

/* Underline effect */
.st-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transition: 0.3s ease;
}

.st-navbar .nav-link:hover::after,
.st-navbar .nav-link.active::after {
  width: 100%;
}

.st-navbar .nav-link:hover,
.st-navbar .nav-link.active {
  color: var(--blue);
}

/* Call Button */
.st-call-btn {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  border-radius: 30px;
  padding: 9px 24px;
  border: none;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(18,58,120,0.25);
  transition: 0.35s ease;
}

.st-call-btn:hover {
  background: var(--gold);
  color: #000;
}

/* Toggler */
.st-toggler {
  border: none;
  font-size: 30px;
  color: var(--blue);
}

/* ================= MOBILE SUPER MENU ================= */
@media (max-width: 991px) {

  .st-menu {
    background: #ffffff;
    padding: 40px 20px;
    margin-top: 15px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  }

  .st-navbar .nav-link {
    font-size: 20px;
    margin: 18px 0;
  }

  .st-navbar .nav-link::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .st-logo {
    height: 110px;
  }
}

/* ================= MOBILE CALL BUTTON CENTER ================= */
@media (max-width: 991px) {

  /* Center call button */
  .mobile-call,
  .st-call-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 0;
    width: 85%;
    text-align: center;
  }

}



/* ================= SUPER GARLAND HERO ================= */

.super-garland-hero {
  position: relative;
}

/* Image */
.super-hero-img {
  width: 100%;
  height: 92vh;
  object-fit: cover;
}

/* Soft overlay (NO gradient) */
.super-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

/* Content */
.super-hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 560px;
  color: #fff;
}

/* Tag */
.hero-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #facc15; /* soft gold */
  margin-bottom: 14px;
}

/* Heading */
.super-hero-content h1 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 14px;
}

/* Text */
.super-hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #f3f4f6;
  margin-bottom: 28px;
}

/* Button */
.hero-btn {
  background: #ffffff;
  color: #111;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #facc15;
  color: #000;
  transform: translateY(-2px);
}

/* Indicators */
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.6));
}

/* ================= MOBILE UX ================= */
@media (max-width: 768px) {

  .super-hero-img {
    height: 72vh;
  }

  .super-hero-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 18px;
    max-width: 100%;
  }

  .super-hero-content h1 {
    font-size: 30px;
  }

  .super-hero-content p {
    font-size: 15px;
  }

  .hero-tag {
    font-size: 12px;
  }
}

/* ================= PRODUCTS ================= */

.super-products {
  padding: 80px 0;
  background: #fff;
}

/* TITLE */
.products-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.products-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  color: #c89b3c;
}

.products-title {
  font-size: 40px;
  font-weight: 600;
  color: #123a78;
}

.products-subtitle {
  color: #6b7280;
  margin-top: 10px;
}

/* FILTER */
.filter-panel {
  position: sticky;
  top: 120px;
}

.filter-title {
  font-weight: 600;
  margin-bottom: 14px;
}

.filter-item {
  display: block;
  margin-bottom: 10px;
}

/* PRODUCT GRID */
.product-item {
  width: 33.333%;
  padding: 12px;
}

/* CARD */
.product-card {
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: 0.35s;
}

.product-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.product-img {
  height: auto;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.product-content {
  padding: 18px;
  text-align: center;
  flex-grow: 1;
}

.product-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #123a78;
}

.product-content p {
  font-size: 13px;
  color: #6b7280;
}

.price {
  font-size: 22px;
  font-weight: 600;
  color: #2f7d4e;
}

/* WHATSAPP */
.wa-btn {
  background: #25d366;
  color: #fff;
  padding: 14px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
}

/* MOBILE FILTER */
.mobile-filter-btn {
  width: 100%;
  background: #123a78;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* DRAWER */
.filter-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
}

.drawer-box {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 24px;
  border-radius: 20px 20px 0 0;
}

/* MOBILE GRID: 2 PER ROW */
@media (max-width: 768px) {
  .filter-panel {
    display: none;
  }

  .product-item {
    width: 50%;
    padding: 8px;
  }

  .products-title {
    font-size: 28px;
  }

  .product-img {
    height: auto;
  }
}


/* ================= AMAZON STYLE FILTER ================= */

.filter-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 120px;
  height: 510px;
}

/* Title */
.filter-title {
  font-size: 18px;
  font-weight: 600;
  color: #123a78;
  margin-bottom: 22px;
  position: relative;
}

.filter-title::after {
  content: "";
  width: 42px;
  height: 3px;
  background: #c89b3c;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

/* Filter Item */
.filter-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 10px;
}

/* Hover */
.filter-item:hover {
  background: #f9fafb;
}

/* Hide default radio */
.filter-item input {
  display: none;
}

/* Label text */
.filter-item span {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: #374151;
  font-weight: 500;
}

/* Custom radio circle */
.filter-item span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #9ca3af;
  transition: all 0.25s ease;
}

/* Checked state */
.filter-item input:checked + span {
  color: #123a78;
  font-weight: 600;
}

.filter-item input:checked + span::before {
  border-color: #c89b3c;
  box-shadow: inset 0 0 0 4px #c89b3c;
}

/* Desktop only */
@media (max-width: 991px) {
  .filter-panel {
    display: none;
  }
}
@media (max-width: 991px) {

  .filter-drawer {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    display: none;
  }
}
@media (max-width: 991px) {

  .drawer-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    padding: 26px 24px 30px;
    border-radius: 22px 22px 0 0;
    animation: slideUp 0.35s ease;
  }

  @keyframes slideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
}
@media (max-width: 991px) {

  .drawer-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #123a78;
    margin-bottom: 20px;
    position: relative;
  }

  .drawer-box h5::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #c89b3c;
    display: block;
    margin-top: 8px;
    border-radius: 2px;
  }
}
@media (max-width: 991px) {

  .drawer-box label {
    display: flex;
    align-items: center;
    padding: 14px 16px 14px 44px;
    border-radius: 14px;
    background: #f9fafb;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 12px;
    position: relative;
    cursor: pointer;
  }

  .drawer-box input {
    display: none;
  }

  .drawer-box label::before {
    content: "";
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #9ca3af;
    transition: 0.25s;
  }

  .drawer-box input:checked + span::before,
  .drawer-box input:checked + label::before {
    border-color: #c89b3c;
    box-shadow: inset 0 0 0 4px #c89b3c;
  }
}
@media (max-width: 991px) {

  .apply-btn {
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    background: #123a78;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
  }
}
@media (max-width: 991px) {

  /* Hide default radio */
  .drawer-box input {
    display: none;
  }

  /* Filter option */
  .drawer-box label {
    position: relative;
    display: flex;
    align-items: center;
    padding: 14px 16px 14px 48px;
    margin-bottom: 12px;
    border-radius: 14px;
    background: #f9fafb;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  /* Custom radio circle */
  .drawer-box label::before {
    content: "";
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #9ca3af;
    transition: all 0.25s ease;
  }

  /* 🔥 ACTIVE STATE — THIS IS THE FIX */
  .drawer-box label:has(input:checked) {
    background: #eef2ff;
    color: #123a78;
    font-weight: 600;
  }

  .drawer-box label:has(input:checked)::before {
    border-color: #c89b3c;
    box-shadow: inset 0 0 0 4px #c89b3c;
  }

  /* Hover */
  .drawer-box label:hover {
    background: #f1f5f9;
  }
}


/* ================= SCAN & PAY PREMIUM ================= */

.scanpay-premium {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* LEFT CONTENT */
.scanpay-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfeff;
  color: #0f766e;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.scanpay-title {
  font-size: 42px;
  font-weight: 600;
  color: #123a78;
  line-height: 1.25;
}

.scanpay-title span {
  color: #1a73e8; /* Google Pay blue */
}

.scanpay-desc {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}

/* POINTS */
.scanpay-points {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.scanpay-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.scanpay-points i {
  color: #22c55e;
  font-size: 18px;
}

/* RIGHT QR */
.scanpay-qr-wrap {
  position: relative;
  display: inline-block;
}

/* Glow behind QR */
.qr-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(26,115,232,0.25), transparent 70%);
  filter: blur(25px);
  z-index: 0;
}

/* QR Card */
.scanpay-qr-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.15);
  z-index: 1;
  transition: 0.35s ease;
}

.scanpay-qr-card:hover {
  transform: translateY(-12px);
}

.scanpay-qr-card img {
  max-width: 220px;
  margin-bottom: 16px;
}

.scanpay-qr-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #123a78;
}

.scanpay-qr-card p {
  font-size: 14px;
  color: #6b7280;
}

/* MOBILE */
@media (max-width: 768px) {

  .scanpay-premium {
    padding: 70px 0;
  }

  .scanpay-title {
    font-size: 30px;
  }

  .scanpay-content {
    text-align: center;
  }

  .scanpay-points {
    justify-content: center;
  }

  .scanpay-qr-card {
    margin-top: 10px;
    padding: 26px;
  }
}


/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 90px 0;
  background: #ffffff;
}

/* HEADER */
.contact-header {
  margin-bottom: 50px;
}

.contact-badge {
  display: inline-block;
  background: #ecfeff;
  color: #0f766e;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-title {
  font-size: 40px;
  font-weight: 600;
  color: #123a78;
}

.contact-subtitle {
  max-width: 620px;
  margin: 10px auto 0;
  font-size: 16px;
  color: #6b7280;
}

/* CONTACT CARD */
.contact-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.1);
  height: 100%;
}

.company-name {
  font-size: 22px;
  font-weight: 600;
  color: #123a78;
  margin-bottom: 26px;
}

/* CONTACT ITEM */
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-item i {
  font-size: 20px;
  color: #1a73e8;
  margin-top: 4px;
}

.contact-item span {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.contact-item p {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  margin: 2px 0 0;
}

/* CALL BUTTON */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  background: #123a78;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #0f2f5f;
}

/* MAP */
.map-premium {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.18);
}

.map-premium iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MAP BADGE */
.map-info {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.95);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #123a78;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.map-info i {
  color: #ef4444;
  font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {

  .contact-section {
    padding: 70px 0;
  }

  .contact-title {
    font-size: 30px;
  }

  .contact-card {
    padding: 26px;
  }

  .map-premium {
    min-height: 300px;
    border-radius: 18px;
  }

  .map-info {
    top: 12px;
    left: 12px;
    font-size: 13px;
    padding: 8px 14px;
  }
}


/* ================= FOOTER ================= */

.super-footer {
  background: #0f172a;
  padding: 70px 0 30px;
  color: #cbd5e1;
}

/* LOGO */
.footer-logo {
  max-width: 160px;
  margin-bottom: 16px;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
}

/* ABOUT */
.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* TITLES */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 36px;
  height: 3px;
  background: #c89b3c;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #c89b3c;
  padding-left: 6px;
}

/* CONTACT */
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-contact i {
  color: #c89b3c;
  font-size: 16px;
  margin-top: 3px;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.footer-bottom a {
  color: #c89b3c;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {

  .super-footer {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
  }
}


/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.7);
}

/* Pulse Animation */
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 1.8s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 26px;
    right: 16px;
    bottom: 18px;
  }
}


/* ================= SCROLL TO TOP ================= */

.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 100px; /* above WhatsApp */
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #123a78;
  color: #ffffff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(18,58,120,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

/* SHOW */
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover */
.scroll-top-btn:hover {
  background: #0f2f5f;
  transform: translateY(-4px);
}

/* MOBILE */
@media (max-width: 768px) {
  .scroll-top-btn {
    right: 16px;
    bottom: 88px;
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}


/* ================= PARALLAX HEADER ================= */

.parallax-header {
  position: relative;
  height: 20vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* PARALLAX MAGIC */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* ABOUT PAGE IMAGE */
.about-parallax {
  background-image: url("./img/bg.png");
}

/* DARK OVERLAY */
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(68, 68, 68, 0.55),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 1;
}

/* CONTENT */
.parallax-content {
  position: relative;
  z-index: 2;
}

.parallax-content h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* BREADCRUMB */
.parallax-header .breadcrumb {
  background: transparent;
  margin: 0;
}

.parallax-header .breadcrumb a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 500;
}

.parallax-header .breadcrumb-item.active {
  color: #ffffff;
}

/* MOBILE FIX (PARALLAX SAFE) */
@media (max-width: 768px) {
  .parallax-header {
    height: 5vh;
   
  }

  .parallax-content h1 {
    font-size: 32px;
  }
}


/* ================= RUNNING TEXT ================= */

.running-text-section {
  background: #123a78;
  padding: 18px 0;
  overflow: hidden;
}

/* wrapper */
.running-text-wrap {
  display: flex;
  width: max-content;
  animation: scrollText 28s linear infinite;
}

/* text row */
.running-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* text item */
.running-text span {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 28px;
  position: relative;
}

/* separator dot */
.running-text span::after {
  content: "•";
  position: absolute;
  right: -18px;
  color: #fbbf24;
}

/* animation */
@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .running-text span {
    font-size: 14px;
    margin: 0 20px;
  }
}



/* ================= ABOUT STORY ================= */

.about-story {
  padding: 90px 0;
  background: #ffffff;
}

/* IMAGE */
.about-image-box {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #123a78;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

/* CONTENT */
.about-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c89b3c;
  margin-bottom: 14px;
}

.about-title {
  font-size: 38px;
  font-weight: 600;
  color: #123a78;
  margin-bottom: 18px;
}

.about-text {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* POINTS */
.about-points {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.about-points i {
  color: #22c55e;
  font-size: 18px;
}

/* MOBILE */
@media (max-width: 768px) {

  .about-story {
    padding: 70px 0;
  }

  .about-title {
    font-size: 28px;
  }

  .experience-badge {
    font-size: 13px;
    padding: 12px 14px;
  }
}


/* ================= MISSION & VISION ================= */

.mission-vision {
  padding: 90px 0;
  background: #f8fafc;
}

/* HEADER */
.mv-header {
  margin-bottom: 50px;
}

.mv-badge {
  display: inline-block;
  background: #ecfeff;
  color: #0f766e;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.mv-title {
  font-size: 40px;
  font-weight: 600;
  color: #123a78;
}

.mv-subtitle {
  max-width: 620px;
  margin: 10px auto 0;
  font-size: 16px;
  color: #6b7280;
}

/* CARD */
.mv-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 36px 30px;
  height: 100%;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  transition: 0.35s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
}

/* ICON */
.mv-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #123a78;
  color: #ffffff;
  font-size: 28px;
}

/* TEXT */
.mv-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #123a78;
  margin-bottom: 12px;
}

.mv-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
}

/* MOBILE */
@media (max-width: 768px) {

  .mission-vision {
    padding: 70px 0;
  }

  .mv-title {
    font-size: 30px;
  }

  .mv-card {
    padding: 30px 24px;
  }
}


/* ================= GALLERY ================= */

.gallery-section {
  padding: 90px 0;
  background: #ffffff;
}

/* HEADER */
.gallery-header {
  margin-bottom: 50px;
}

.gallery-badge {
  display: inline-block;
  background: #ecfeff;
  color: #0f766e;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.gallery-title {
  font-size: 38px;
  font-weight: 600;
  color: #123a78;
}

.gallery-subtitle {
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 16px;
  color: #6b7280;
}

/* IMAGE CARD */
.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.gallery-item::after {
  content: "View";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {

  .gallery-section {
    padding: 70px 0;
  }

  .gallery-title {
    font-size: 30px;
  }

  .gallery-item img {
    height: 200px;
  }
}


/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 90px 0;
  background: #f8fafc;
}

/* HEADER */
.contact-header {
  margin-bottom: 50px;
}

.contact-badge {
  display: inline-block;
  background: #ecfeff;
  color: #0f766e;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 38px;
  font-weight: 600;
  color: #123a78;
}

.contact-subtitle {
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 16px;
  color: #6b7280;
}

/* CARD */
.contact-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.contact-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #123a78;
  margin-bottom: 20px;
}

/* CONTACT DETAILS */
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item i {
  font-size: 20px;
  color: #1a73e8;
  margin-top: 4px;
}

.contact-item span {
  font-size: 13px;
  color: #6b7280;
}

.contact-item p {
  font-size: 15px;
  font-weight: 500;
  margin: 2px 0 0;
  color: #111827;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  margin-bottom: 14px;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1a73e8;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #123a78;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #0f2f5f;
}

/* MAP */
.map-card {
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .contact-section {
    padding: 70px 0;
  }

  .contact-title {
    font-size: 30px;
  }

  .map-card iframe {
    min-height: 260px;
  }
}
