/* SafeQbit Brand color */

:root {
  --primary-color: #021061;
  /* Dark Blue */
  --accent-color: #4AAFFA;
  /* Azure */
  --white: #ffffff;
  --light-bg: #f5f7fb;
  --dark-text: #021061;
}

/* Future Color Change Easy */

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #f4f8ff 0%, #eaf3ff 100%);
  color: #021061;
  padding-top: 72px;
  /* matches slim navbar */
}

p {
  text-align: justify;
  hyphens: auto;
}

/* ================= GLOBAL HOVER EFFECTS ================= */
a,
button,
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  text-decoration: none;
  opacity: 0.85;
}

button:hover,
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(2, 16, 97, 0.15);
}

button:active,
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(2, 16, 97, 0.1);
}

/* ================= REVEAL ANIMATIONS ================= */
.reveal, 
.reveal-up, 
.reveal-left, 
.reveal-right {
  opacity: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.active,
.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* staggered reveal delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* Notice */

.dev-tag {
  position: fixed;
  top: 80px;
  right: -23px;
  background: #FF0000;
  color: #021061;
  padding: 4px 20px;
  font-weight: 400;
  transform: rotate(45deg);
  z-index: 9999;
}

/* ================= NAVBAR ================= */

.custom-navbar {
  background-color: #021061;
  padding: 8px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: padding 0.3s ease;
}

/* Logo Component */
.brand-logo-component {
  position: relative;
  display: inline-block;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

/* TM Mark */
.tm-mark {
  position: absolute;
  top: -6px;
  right: -10px;

  width: 14px;
  height: 14px;

  background: #021061;
  color: #fff;
  border: 1.5px solid white;

  border-radius: 50%;
  font-size: 7px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Brand Text */
.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
  line-height: 1.1;
}

.brand-text {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.brand-subtext {
  font-size: 9px;
  color: #f4f8ff;
  letter-spacing: 0.5px;
  margin-top: 1px;
}

/* Nav Links */
.nav-link {
  font-weight: 600;
  color: #f4f8ff !important;
  font-size: 15px;
  transition: 0.3s ease;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.nav-link:hover {
  transform: scale(1.08);
}

/* Toggler */
.navbar-toggler-icon {
  filter: invert(1);
}


/* .ciso-btn:hover {
  background-color: #4AAFFA;
} */

/* .menu-icon {
  font-size: 28px;
  color: #f4f8ff;
  cursor: pointer;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1);  */
/* Makes icon white */
/* } */

/* .navbar-btn:hover {
  transform: scale(1.08);
} */



/* tm trademark logo */

/* .logo-wrapper {
  position: relative;
  display: inline-block;
}

.tm-mark {
  position: absolute;
  top: -6px;
  right: -10px;

  width: 14px;
  height: 14px; */

/* background: #021061;     
  color: #f4f8ff;     
  border: 1.5px solid white;      */

/* border-radius: 50%;
  font-size: 7px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
} */

/* Brand Text Wrapper */
/* .brand-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-left: 8px;
} */

/* Main Brand Name */
/* .brand-text {
  font-size: 28px;
  font-weight: 700;
  color: white;
} */

/* Subtitle under SafeQbit */
/* .brand-subtext {
  font-size: 9px;
  font-weight: 400;
  color: #f4f8ff;   */
/* letter-spacing: 0.5px;
  margin-top: 2px;
} */

/* to make it responsive */
/* ===============================
   RESPONSIVE NAVBAR
================================== */

/* Tablet */
@media (max-width: 992px) {

  .brand-logo-img {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    font-size: 20px;
  }

  .brand-subtext {
    font-size: 8px;
  }

  .navbar-collapse {
    background: #021061;
    padding: 12px;
    border-radius: 10px;
    margin-top: 8px;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .custom-navbar {
    padding: 6px 0;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: 16px;
  }

  .brand-subtext {
    font-size: 7px;
    letter-spacing: 0;
  }

  .tm-mark {
    width: 11px;
    height: 11px;
    font-size: 6px;
    top: -4px;
    right: -6px;
  }
}

/* extra added  */

/* Add body padding */

body {
  padding-top: 72px;
  /* matches new slim navbar height */
}


/* Add Active Link Highlight */

.nav-link.active {
  border-bottom: 2px solid #4AAFFA;
}

/* Smooth Scroll */

html {
  scroll-behavior: smooth;
}

/* Add Hover Underline Animation */

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Tablet */
/* @media (max-width: 992px) {

  .custom-navbar {
    padding: 12px 0;
  }

  .brand-text {
    font-size: 22px;
  }

  .brand-subtext {
    font-size: 8px;
  }

  .logo-img {
    width: 50px;
  }

  .nav-link {
    font-size: 16px;
    margin: 8px 0;
  }

  .navbar-collapse {
    background: #021061;
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
  }

} */


/* Mobile */
/* @media (max-width: 576px) {

  .logo-img {
    width: 42px;
  }

  .brand-text {
    font-size: 18px;
  }

  .brand-subtext {
    font-size: 7px;
  }

  .tm-mark {
    width: 11px;
    height: 11px;
    font-size: 6px;
    top: -4px;
    right: -6px;
  }

  .nav-link {
    font-size: 15px;
  }

} */


/* ================= HERO ================= */

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #021061, #021061);
  padding: 100px 0;
  display: flex;
  align-items: center;
  color: white;
}

.small-text {
  font-size: 20px;
  margin-bottom: 20px;
  color: #f4f8ff;
  opacity: 0.92;
  letter-spacing: 0.2px;
}

.hero-heading {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero-desc {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.9;
  text-align: justify;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-btn {
  background-color: #f4f8ff;
  color: #021061;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.hero-btn:hover {
  background-color: #2f8fda;
  color: white;
  transform: scale(1.08)
}

.hero-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.55) 45%, transparent 62%);
  transform: translateX(-140%);
  opacity: 0;
  pointer-events: none;
}

.hero-btn:hover::after {
  opacity: 1;
  animation: heroBtnSheen 0.9s ease-out both;
}

@keyframes heroBtnSheen {
  to {
    transform: translateX(140%);
    opacity: 0;
  }
}

/* Image */

.hero-img {
  max-width: 380px;
  width: 100%;
  object-fit: contain;
  transition: 0.4s ease-in-out;
  display: block;
}

/* Hero section mobile fix */
@media (max-width: 576px) {
  .hero-img {
    max-width: 200px;
  }

  .hero-heading {
    font-size: 34px;
  }

  .hero-section {
    padding: 60px 0;
  }
}

.cyber-img {
  box-shadow: 0 0 40px rgba(74, 175, 250, 0.4);
}

.cyber-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(74, 175, 250, 0.6);
}

/* ===== HERO MEDIA (STATIC) ===== */

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-static-logo {
  width: min(360px, 92%);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 60px rgba(0, 0, 0, 0.30));
}

/* ===== HERO LOGO TM MARK ===== */

.hero-logo-wrapper {
  position: relative;
  display: inline-block;
  padding: 40px;
  /* Increased padding to give the logo extra breathing room and prevent glow/TM clipping */
  overflow: visible;
}

.hero-tm {
  position: absolute;
  top: -6px;
  right: -10px;

  width: 14px;
  height: 14px;

  background: #021061;
  color: #fff;
  border: 1.5px solid white;

  border-radius: 50%;
  font-size: 7px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

@media (max-width: 576px) {
  .hero-tm {
    width: 11px;
    height: 11px;
    font-size: 6px;
    top: -4px;
    right: -6px;
  }
}

/* ================= RECOGNITION ================= */

.recognition-section {
  background-color: #ffffff;
  padding: 80px 0;
}

/* ================= RECENT ACTIVITY (HOME) ================= */

.news-section {
  border-radius: 22px;
  padding: 26px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 255, 0.96));
  box-shadow: 0 18px 60px rgba(2, 16, 97, 0.10);
  border: 1px solid rgba(2, 16, 97, 0.06);
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.news-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #021061;
}

.news-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #021061;
  background: rgba(74, 175, 250, 0.18);
  border: 1px solid rgba(74, 175, 250, 0.25);
}

.activity-list {
  display: grid;
  gap: 12px;
}

.activity-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(2, 16, 97, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.activity-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(2, 16, 97, 0.10);
}

.activity-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(2, 16, 97, 0.06), rgba(74, 175, 250, 0.12));
  border: 1px solid rgba(2, 16, 97, 0.08);
  font-size: 18px;
}

.activity-heading {
  font-size: 14.5px;
  font-weight: 800;
  color: #021061;
  line-height: 1.35;
  margin-bottom: 4px;
}

.activity-text {
  font-size: 13.5px;
  color: #444;
  line-height: 1.55;
  text-align: justify;
}

.recognition-heading {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #021061;
}

.recognition-desc {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto;
  text-align: justify;
}

/* Stage Heading */
.stage-heading {
  font-size: 18px;
  font-weight: 600;
  color: #021061;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.stage-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #021061, #4AAFFA, #021061);
  background-size: 200% 100%;
  margin: 8px auto 15px;
  border-radius: 5px;
  animation: stageUnderline 4.5s ease-in-out infinite;
}

@keyframes stageUnderline {

  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.9;
  }

  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

/* Image Styling */
.award-img {
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(2, 16, 97, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 380px;
  width: 100%;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
  display: block;
}

.award-outer-wrapper {
  position: relative;
  display: inline-block;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(2, 16, 97, 0.05), rgba(74, 175, 250, 0.10));
  box-shadow: 0 18px 60px rgba(2, 16, 97, 0.12);
  isolation: isolate;
}

.award-outer-wrapper::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: conic-gradient(from 180deg,
      rgba(74, 175, 250, 0) 0%,
      rgba(74, 175, 250, 0.85) 20%,
      rgba(255, 183, 3, 0.75) 40%,
      rgba(74, 175, 250, 0) 65%,
      rgba(255, 255, 255, 0.55) 78%,
      rgba(74, 175, 250, 0) 100%);
  opacity: 0.22;
  filter: blur(18px);
  z-index: 0;
  animation: awardAura 9s linear infinite;
}

.award-outer-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: 0 0 0 1px rgba(2, 16, 97, 0.08) inset;
  z-index: 1;
  pointer-events: none;
}

.award-reveal-container {
  position: relative;
  display: block;
  line-height: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.award-reveal-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.30) 44%, transparent 62%);
  transform: translateX(-120%);
  animation: awardShine 6.5s ease-in-out infinite;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.award-mask {
  display: none;
}

.award-outer-wrapper:hover .award-img,
.award-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(2, 16, 97, 0.18);
}

.award-outer-wrapper:hover {
  box-shadow: 0 26px 80px rgba(2, 16, 97, 0.16);
}

@keyframes awardAura {
  to {
    transform: rotate(360deg);
  }
}

@keyframes awardShine {

  0%,
  55% {
    transform: translateX(-120%);
    opacity: 0.55;
  }

  75% {
    transform: translateX(120%);
    opacity: 0.85;
  }

  100% {
    transform: translateX(120%);
    opacity: 0.0;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .recognition-heading {
    font-size: 28px;
  }

  .recognition-desc {
    font-size: 16px;
  }

  .award-img {
    height: 280px;
  }

  .news-section {
    margin-top: 18px;
  }
}


/* ================= RECOGNITION ================= */

.recognition-section {
  background-color: #ffffff;
  padding: 80px 0;
}


.product-section {
  scroll-margin-top: 110px;
}

.product-bullets {
  display: grid;
  gap: 10px;
}

.product-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.product-bullet i {
  color: #2f8fda;
  margin-top: 2px;
}

.product-list {
  margin: 0 0 14px 18px;
  color: #444;
  line-height: 1.75;
  font-size: 15px;
}

.product-table {
  margin: 0;
}

.product-table thead th {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(2, 16, 97, 0.80);
  border-bottom: 1px solid rgba(2, 16, 97, 0.12);
}

.product-table td,
.product-table th {
  padding: 10px 10px;
}

.product-card {
  border-radius: 16px;
  padding: 18px 18px;
  border: 1px solid rgba(2, 16, 97, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(2, 16, 97, 0.07);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  border-color: rgba(74, 175, 250, 0.26);
  box-shadow: 0 16px 48px rgba(2, 16, 97, 0.09);
}

.product-mini-card {
  height: 100%;
  border-radius: 16px;
  padding: 16px 16px;
  border: 1px solid rgba(2, 16, 97, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(2, 16, 97, 0.07);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-mini-card:hover {
  border-color: rgba(74, 175, 250, 0.26);
  box-shadow: 0 16px 46px rgba(2, 16, 97, 0.09);
}

.product-cap-grid {
  display: grid;
  gap: 12px;
}

.product-cap {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(2, 16, 97, 0.06);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.product-cap:hover {
  background: #ffffff;
  border-color: rgba(74, 175, 250, 0.22);
}

.product-cap__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(2, 16, 97, 0.06), rgba(74, 175, 250, 0.16));
  border: 1px solid rgba(2, 16, 97, 0.08);
  color: #021061;
  font-size: 18px;
}

.product-cap__title {
  font-size: 14.5px;
  font-weight: 900;
  color: #021061;
  line-height: 1.35;
  margin-bottom: 2px;
}

.product-cap__text {
  font-size: 13.5px;
  color: #444;
  line-height: 1.55;
}

.product-steps {
  margin: 0 0 0 18px;
  color: #444;
  line-height: 1.8;
  font-size: 15px;
}

.product-steps li {
  padding: 8px 0;
}

.product-divider {
  height: 1px;
  background: rgba(2, 16, 97, 0.08);
  margin: 26px 0;
}

.product-final-cta {
  margin-top: 26px;
  border-radius: 18px;
  padding: 22px 22px;
  background: linear-gradient(135deg, rgba(2, 16, 97, 0.04), rgba(74, 175, 250, 0.08));
  border: 1px solid rgba(2, 16, 97, 0.08);
}

.product-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .product-hero {
    padding: 90px 0 58px;
  }

  .product-subtitle {
    font-size: 18px;
  }

  .product-block {
    padding: 18px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .award-outer-wrapper::before,
  .award-reveal-container::after,
  .stage-heading::after,
  .hero-btn:hover::after {
    animation: none !important;
  }
}


/* ================= STATS ================= */

.stats-section {
  background: linear-gradient(135deg, #021061, #021061);
  padding: 100px 0;
  color: white;
}

.stat-item {
  margin-bottom: 40px;
}

.stat-item h2 {
  font-size: 60px;
  font-weight: 800;
  color: #4AAFFA;
}

.stat-item p {
  font-size: 18px;
  opacity: 0.9;
  text-align: justify;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

  .hero-heading {
    font-size: 38px;
  }

  .recognition-heading {
    font-size: 24px;
  }

  .stat-item h2 {
    font-size: 40px;
  }

}

/* ================= OUR SERVICES SECTION ================= */

.services-section {
  background: linear-gradient(135deg, #021061, #021061);
  padding: 120px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.services-header {
  position: relative;
}

/* Big Outline Background Text */
.outline-text {
  font-size: 120px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(74, 175, 250, 0.15);
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 0;
}

.main-title {
  font-size: 42px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: white;
}

.services-subtitle {
  max-width: 650px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.85);
  text-align: justify;
}

/* Connect Button */
.connect-btn {
  background: #4AAFFA;
  color: #021061;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.connect-btn:hover {
  background: white;
  color: #021061;
}


/* ================= SERVICE CARDS ================= */

.service-card {
  background: #ffffff;
  color: #021061;
  height: 230px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card h5 {
  font-weight: 700;
  letter-spacing: 1px;
}

.service-card:hover {
  transform: translateY(-10px);
  background: #4AAFFA;
  color: #021061;
  box-shadow: 0 20px 50px rgba(74, 175, 250, 0.35);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .outline-text {
    font-size: 70px;
    top: -40px;
  }

  .main-title {
    font-size: 28px;
  }

  .service-card {
    height: 180px;
  }
}


/* ================= OUR SERVICES SECTION ================= */

.services-section {
  background: linear-gradient(135deg, #021061, #021061);
  padding: 120px 0;
  color: white;
  position: relative;
}

.services-header {
  position: relative;
}

/* Outline Text */
.outline-text {
  font-size: 120px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(74, 175, 250, 0.15);
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 0;
}

.main-title {
  font-size: 42px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.services-subtitle {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.85);
  text-align: justify;
}

/* Button */
.connect-btn {
  background: #4AAFFA;
  color: #021061;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.connect-btn:hover {
  background: white;
  color: #021061;
}


/* ================= SERVICE CARDS ================= */

.service-card {
  background: #e6f2ff;
  color: #021061;
  height: 160px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card h5 {
  font-size: 14px;
  font-weight: 600;
}

.service-card:hover {
  background: #4AAFFA;
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(74, 175, 250, 0.35);
}


/* ===== Make 5 Equal Columns On Large Screens ===== */

@media (min-width: 992px) {
  .service-col {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .outline-text {
    font-size: 70px;
    top: -40px;
  }

  .main-title {
    font-size: 28px;
  }

  .service-card {
    height: 140px;
  }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .outline-text {
    font-size: 70px;
    top: -40px;
  }

  .main-title {
    font-size: 28px;
  }

  .service-card {
    height: 180px;
  }
}

/* ================= TESTIMONIAL ================= */

.testimonial-section {
  background-color: #eef3f9;
  padding: 100px 0;
}

.testimonial-box {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 10px;
  border-top: 4px solid #4AAFFA;
  border-bottom: 4px solid #4AAFFA;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.quote-icon {
  position: absolute;
  right: 25px;
  top: 10px;
  font-size: 60px;
  color: #d9d9d9;
  font-weight: bold;
}

.testimonial-text {
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: auto;
  text-align: justify;
}

.testimonial-author {
  margin-top: 25px;
  font-style: italic;
  color: #666;
}


/* ================= OUR COLLABORATORS ================= */

.trusted-section {
  background: #021061;
  padding: 100px 0 110px;
  overflow: visible;
  /* allow arrow shadows to show */
}

/* Section Title */
.trusted-title {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 2px;
  color: #f4f8ff;
  margin-bottom: 50px;
  text-transform: uppercase;
}

/* ===== Slider Wrapper (contains arrows + slider) ===== */
.collab-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Arrow Buttons */
.collab-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(74, 175, 250, 0.15);
  border: 2px solid #4AAFFA;
  color: #4AAFFA;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 10;
  position: relative;
}

.collab-arrow:hover {
  background: #4AAFFA;
  color: #021061;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(74, 175, 250, 0.4);
}

.collab-arrow-left {
  margin-right: 16px;
}

.collab-arrow-right {
  margin-left: 16px;
}

/* Slider Viewport */
.logo-slider {
  overflow: hidden;
  flex: 1;
  position: relative;
  /* subtle fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* Moving Track */
.logo-track {
  display: flex;
  align-items: stretch;
  /* equal height rows */
  gap: 24px;
  width: max-content;
  animation: collabScroll 30s linear infinite;
  padding: 16px 0;
  /* room for scale on hover */
}

/* Logo Card Style — UNIFORM SIZE */
.logo-item {
  width: 160px;
  /* fixed width */
  height: 160px;
  /* fixed height — makes all tiles equal size (square) */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  padding: 16px 12px;
  gap: 10px;
  cursor: default;
}

/* SCALE on hover — NOT shift up */
.logo-item:hover {
  transform: scale(1.10);
  box-shadow: 0 12px 36px rgba(74, 175, 250, 0.35);
  z-index: 5;
  position: relative;
}

/* Logo Image Box — ensures logo fills evenly without being cropped */
.logo-img-box {
  width: 100%;
  height: 70px;
  /* fixed container height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* keeps the box clean */
}

.brand-logo {
  max-width: 100%;
  max-height: 60px;
  /* logo inside its box */
  width: auto;
  height: auto;
  object-fit: contain;
  /* never distorts or clips logo */
  transition: 0.3s ease;
}

/* Subtitle */
.logo-subtitle {
  font-size: 11px;
  color: #021061;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  max-width: 130px;
}

/* Infinite Scroll Animation */
@keyframes collabScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on Hover on the slider area */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {

  .logo-item {
    width: 130px;
    height: 130px;
  }

  .logo-img-box {
    height: 55px;
  }

  .brand-logo {
    max-height: 44px;
  }

  .logo-subtitle {
    font-size: 10px;
    max-width: 110px;
  }

  .collab-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .collab-arrow-left {
    margin-right: 10px;
  }

  .collab-arrow-right {
    margin-left: 10px;
  }
}

@media (max-width: 480px) {

  .logo-item {
    width: 110px;
    height: 110px;
  }

  .logo-img-box {
    height: 44px;
  }

  .brand-logo {
    max-height: 36px;
  }

  .collab-arrow {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .collab-arrow-left {
    margin-right: 6px;
  }

  .collab-arrow-right {
    margin-left: 6px;
  }
}


/* ================= WHY SECTION ================= */
/* ======================================
   WHY SECTION
====================================== */
.why-section {
  background: linear-gradient(135deg, #021061, #021061);
  padding: 120px 0;
  color: white;
  position: relative;
  overflow: hidden;
}



/* ======================================
   OUTLINE TEXT
====================================== */
.why-outline {
  font-size: 120px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(74, 175, 250, 0.25);
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 0;
  opacity: 0.2;
}


/* ======================================
   STATS ROW
====================================== */
.stats-row {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stats-item {
  flex: 1 1 120px;
}

.stats-item h2 {
  font-size: 48px;
  font-weight: 700;
  color: #f4f8ff;
  margin-bottom: 10px;
}

.stats-item p {
  font-size: 15px;
  opacity: 0.9;
}


/* ======================================
   CURVE LINE
====================================== */
.curve-line {
  width: 100%;
  height: 140px;
  margin-top: 60px;
}

.curve-line svg {
  width: 100%;
  height: 100%;
}

.curve-line circle {
  fill: #021061;
  stroke: #4AAFFA;
  stroke-width: 3;
}


/* ======================================
   TABLET RESPONSIVE
====================================== */
@media (max-width: 992px) {

  .stats-item {
    flex: 1 1 45%;
  }

  .why-outline {
    font-size: 80px;
  }
}


/* ======================================
   MOBILE RESPONSIVE
====================================== */
@media (max-width: 576px) {

  .stats-item {
    flex: 1 1 100%;
  }

  .stats-item h2 {
    font-size: 36px;
  }

  .why-outline {
    font-size: 60px;
  }

  /* Hide curve on small screens */
  .curve-line {
    display: none;
  }
}



/* ================= WHY CARDS ================= */

.why-card {
  background: #ffffff;
  color: #021061;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}


.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(2, 16, 97, 0.2);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e6f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 2px solid #4AAFFA;
}

.why-card h5 {
  font-weight: 700;
}

.why-card p {
  font-size: 14px;
  margin-bottom: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .why-outline {
    font-size: 60px;
    top: 10px;
  }

  .stats-row {
    text-align: center;
  }

}

/* ================= CAREER SECTION ================= */

.career-section {
  background: #f4f8ff;
  padding: 120px 0;
}

.career-title {
  font-size: 36px;
  font-weight: 700;
  color: #021061;
  max-width: 800px;
  margin: auto;
}

/* ================= JOB CARDS ================= */

.job-card {
  background: #021061;
  color: white;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(2, 16, 97, 0.25);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  transform: translateY(-8px);
  background: #4AAFFA;
  color: #021061;
}

.job-card h5 {
  font-weight: 700;
}

.experience {
  font-size: 14px;
  opacity: 0.85;
}

.job-card h6 {
  margin-top: 20px;
  font-weight: 600;
}

.job-card p {
  font-size: 14px;
  flex-grow: 1;
}

/* Apply Button */

.apply-btn {
  background: white;
  color: #021061;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #021061;
  color: white;
}

/* ================= VIEW ALL BUTTON ================= */

.view-all-btn {
  border: 2px solid #021061;
  padding: 10px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #021061;
  transition: 0.3s;
}

.view-all-btn:hover {
  background: #021061;
  color: white;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .career-title {
    font-size: 24px;
  }
}

.why-section {
  position: relative;
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}

/* Background Big Text */
.why-section .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 120px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);

  white-space: nowrap;
  pointer-events: none;
}

/* Main White Heading */
.why-section h2 {
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: white;
  z-index: 2;
}

/* ================= OUR HIGHLIGHTS ================= */

.highlights-section {
  background: linear-gradient(135deg, #021061, #021061);
  padding: 120px 0;
  position: relative;
  color: white;
  overflow: hidden;
}

/* Big Outline Text */
.highlights-outline {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 130px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(74, 175, 250, 0.25);
  white-space: nowrap;
  z-index: 0;
}

.highlights-title {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: #ffffff;
}

/* Cards */
.highlight-card {
  background: #ffffff;
  color: #021061;
  padding: 50px 30px;
  border-radius: 12px;
  text-align: left;
  min-height: 280px;
  box-shadow: 0 15px 40px rgba(2, 16, 97, 0.25);
  transition: 0.4s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  background: #f4f8ff;
  color: #021061;
  box-shadow: 0 20px 50px rgba(74, 175, 250, 0.5);
}

.highlight-card h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

.highlight-card p {
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .highlights-outline {
    font-size: 60px;
    top: 20px;
  }

  .highlight-card {
    min-height: auto;
  }

}


.highlight-card {
  position: relative;
  background: #f4f8ff;
  padding: 30px;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s ease;
}

/* Background Symbol */
.highlight-card::before {
  content: "🏆";
  /* You can change icon here */
  position: absolute;
  font-size: 120px;
  right: 10px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.05);
  transition: 0.4s ease;
  pointer-events: none;
}

/* Hover Effect */
.highlight-card:hover::before {
  transform: scale(1.2) rotate(10deg);
  color: rgba(255, 255, 255, 0.08);
}

.highlight-card:hover {
  transform: translateY(-6px);
}


/* ================= TRUST SECTION ================= */

.trust-section {
  background: #f4f8ff;
  padding: 120px 0;
}

/* Left Title */

.trust-title {
  font-size: 34px;
  font-weight: 800;
  color: #021061;
}

.trust-sub {
  margin-top: 15px;
  color: #555;
  max-width: 250px;
}

/* ================= VIDEO CARD ================= */

.video-card {
  background: #021061;
  border-radius: 14px;
  padding: 20px;
  color: white;
  box-shadow: 0 20px 40px rgba(2, 16, 97, 0.25);
  transition: 0.4s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  background: #4AAFFA;
  color: #021061;
  box-shadow: 0 20px 50px rgba(74, 175, 250, 0.5);
}

/* Placeholder */

.video-placeholder {
  height: 180px;
  background: linear-gradient(135deg, #4AAFFA, #021061);
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Video Info */

.video-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-info h6 {
  margin: 0;
  font-weight: 700;
}

.video-info p {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
}

/* Avatar */

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #4AAFFA;
}

/* ================= SLIDER DOTS ================= */

.slider-dots span {
  width: 10px;
  height: 10px;
  background: #c9dfff;
  display: inline-block;
  border-radius: 50%;
  margin: 0 6px;
  transition: 0.3s;
}

.slider-dots .active {
  background: #021061;
}



/* ================= SOCIAL SECTION ================= */

.social-section {
  background: #f4f8ff;
  padding: 120px 0;
  position: relative;
}

/* Big Outline Text */

.social-outline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  font-size: 110px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(74, 175, 250, 0.25);
  white-space: nowrap;
}

.social-content {
  position: relative;
  z-index: 2;
}

.social-title {
  font-size: 30px;
  font-weight: 800;
  color: #021061;
}

.social-desc {
  margin-top: 15px;
  color: #555;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

/* Social Icons */

.social-icons {
  margin-top: 30px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #021061;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 10px;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #4AAFFA;
  color: #021061;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(74, 175, 250, 0.4);
}

/* ================= CTA SECTION ================= */

.cta-section {
  background: linear-gradient(135deg, #021061, #021061);
  padding: 120px 0;
  position: relative;
  color: white;
  overflow: hidden;
}

/* Subtle blue glow overlay */

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(74, 175, 250, 0.2), transparent 70%);
}

/* Keep content above overlay */

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1px;
}

.cta-desc {
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  opacity: 0.9;
  text-align: justify;
}

.cta-btn {
  margin-top: 35px;
  display: inline-block;
  padding: 14px 32px;
  background: #f4f8ff;
  color: #021061;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #4AAFFA;
  color: #021061;
  box-shadow: 0 15px 40px rgba(74, 175, 250, 0.4);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .social-outline {
    font-size: 55px;
    top: 15px;
  }

}

@media (max-width: 768px) {

  .cta-title {
    font-size: 22px;
  }

  .cta-desc {
    font-size: 14px;
    text-align: justify;
  }

}


/* ================= FOOTER ================= */



/* ================= MAIN FOOTER ================= */

.main-footer {
  background: #021061;
  padding: 100px 0;
  color: #ddd;
}

/* ================= LOGO SECTION ================= */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-wrapper {
  position: relative;
  display: inline-block;
}

.footer-logo img {
  width: 40px;
}

/* TM MARK */
.footer-tm {
  position: absolute;
  top: -4px;
  right: -6px;

  width: 11px;
  height: 11px;

  background: #021061;
  color: #fff;
  border: 1.2px solid white;

  border-radius: 50%;
  font-size: 6px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-text {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

/* ================= DESCRIPTION ================= */

.footer-desc {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  text-align: justify;
}

/* ================= NEWSLETTER ================= */

.newsletter-title {
  margin-top: 25px;
  font-weight: 600;
  color: white;
}

.newsletter-box {
  display: flex;
  margin-top: 10px;
}

.newsletter-box input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px 0 0 6px;
  border: none;
  outline: none;
}

.newsletter-box button {
  padding: 8px 15px;
  background: linear-gradient(135deg, #021061, #4AAFFA);
  border: none;
  color: white;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-box button:hover {
  background: #4AAFFA;
}

/* ================= LINKS ================= */

.footer-heading {
  color: white;
  font-weight: 600;
  margin-bottom: 15px;
}

.main-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer ul li {
  margin-bottom: 8px;
}

.main-footer ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.main-footer ul li a:hover {
  color: #4AAFFA;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .newsletter-box {
    flex-direction: column;
  }

  .newsletter-box input {
    border-radius: 6px;
    margin-bottom: 8px;
  }

  .newsletter-box button {
    border-radius: 6px;
  }

}

@media (max-width: 576px) {

  .footer-tm {
    width: 9px;
    height: 9px;
    font-size: 5px;
    top: -3px;
    right: -5px;
  }

}

/* ================= FOOTER BOTTOM BAR ================= */
/* ================= SAFEQBIT CHAT UI ================= */

.sq-chat-toggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #021061, #4AAFFA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.sq-chatbox {
  position: fixed;
  bottom: 110px;
  right: 25px;
  width: 340px;
  height: 460px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

/* Header */
.sq-chat-header {
  background: linear-gradient(135deg, #021061, #4AAFFA);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.sq-chat-header button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* Body */
.sq-chat-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #f4f8ff;
}

.sq-message {
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  max-width: 80%;
}

.sq-message.bot {
  background: #021061;
  align-self: flex-start;
}

.sq-message.user {
  background: #4AAFFA;
  color: white;
  align-self: flex-end;
}

/* Footer */
.sq-chat-footer {
  display: flex;
  padding: 10px;
  background: white;
  border-top: 1px solid #ddd;
}

.sq-chat-footer input {
  flex: 1;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
}

.sq-chat-footer button {
  margin-left: 8px;
  background: #021061;
  color: white;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
}

/* Quick Option Buttons */
.sq-quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.sq-quick-options button {
  background: #4AAFFA;
  border: none;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}

.sq-quick-options button:hover {
  background: #021061;
}

/* ================= CHAT AVATAR ================= */

.sq-chat-toggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: visible;
  background: none;
  box-shadow: none;
}

/* Avatar Image */
.sq-chat-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.sq-chat-avatar:hover {
  transform: scale(1.08);
}

/* Online Dot */
.sq-online-dot {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  background: #2ecc71;
  border-radius: 50%;
  border: 3px solid white;
}

/* ================= CHAT NOW BUBBLE ================= */

.sq-chat-bubble {
  position: absolute;
  right: 85px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #555;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: sqFloat 2s ease-in-out infinite;
  transition: opacity 0.3s ease;
}

/* Bubble pointer */
.sq-chat-bubble::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}

/* Floating animation */
@keyframes sqFloat {
  0% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(-55%);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* Message Row Layout */
.sq-message-row {
  display: flex;
  align-items: flex-end;
  margin-bottom: 12px;
  gap: 8px;
}

/* Bot alignment */
.sq-message-row.bot {
  justify-content: flex-start;
}

/* User alignment */
.sq-message-row.user {
  justify-content: flex-end;
}

/* Bot Avatar */
.sq-bot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

/* Bot Message Bubble */
.sq-message.bot {
  background: #021061;
  color: white;
  padding: 12px 16px;
  border-radius: 18px;
  border-top-left-radius: 6px;
  max-width: 75%;
}

/* User Bubble */
.sq-message.user {
  background: #4AAFFA;
  color: white;
  padding: 12px 16px;
  border-radius: 18px;
  border-top-right-radius: 6px;
  max-width: 75%;
}

/* ================= BOT BLOCK ================= */

.sq-bot-block {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

/* Avatar */
.sq-bot-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

/* Bot Messages Container */
.sq-bot-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Bot Bubble */
.sq-message.bot {
  background: #f1f1f1;
  color: #444;
  padding: 12px 16px;
  border-radius: 20px;
  border-top-left-radius: 6px;
  max-width: 250px;
  font-size: 15px;
  line-height: 1.4;
}

/* Smaller bubble */
.sq-message.bot.small {
  padding: 10px 14px;
}

/* Time text */
.sq-time {
  font-size: 12px;
  color: #9aa0a6;
  margin-top: 2px;
}

/* ================= USER MESSAGE ================= */

.sq-message.user {
  align-self: flex-end;
  background: #021061;
  color: white;
  padding: 12px 16px;
  border-radius: 20px;
  border-top-right-radius: 6px;
  max-width: 250px;
  margin-bottom: 15px;
  font-size: 15px;
}

.sq-chat-bubble {
  white-space: nowrap;
  display: inline-block;
}

.sq-header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

#sqRefreshChat,
#sqCloseChat {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

#sqRefreshChat:hover,
#sqCloseChat:hover {
  opacity: 0.7;
}


/* ================= WHATSAPP HELP BUTTON ================= */

/* .sq-whatsapp-wrapper {
  position: fixed;
  bottom: 25px;
  left: 25px;  */
/* Left bottom */
/* display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9998;
} */

/* WhatsApp Button */

/* .sq-whatsapp-btn {
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.sq-whatsapp-btn:hover {
  transform: scale(1.08);
} */

/* Help Text Bubble */

/* .sq-help-text {
  background: #ffffff;
  color: #000;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  white-space: nowrap;   */

/* One line only */

/* transition: opacity 0.5s ease, transform 0.5s ease;
} */

/* Hidden State */

/* .sq-help-text.hide {
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
} */

/* to solve overflow problem */

html,
body {
  overflow-x: hidden;
}

html,
body {
  height: 100%;
}






/* ================= CONTACT INFO SECTION ================= */

.contact-info-section {
  background: linear-gradient(135deg, #021061, #021061);
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Subtle Accent Glow Effect */
.contact-info-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: #4AAFFA;
  opacity: 0.08;
  border-radius: 50%;
}

.contact-title {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 60px;
  color: white;
  letter-spacing: 1px;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.contact-item {
  max-width: 420px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}

.contact-item h4 {
  color: #4AAFFA;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-item p {
  color: white;
  line-height: 1.7;
  font-size: 15px;
}

.contact-item a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}





/* Products */
/* Small Navbar Popup */

.product-mini-popup {
  position: absolute;
  top: 45px;
  /* Navbar ke niche */
  right: 0;
  width: 320px;
  background: #021061;
  color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  font-size: 13px;
  line-height: 1.5;
  display: none;
  z-index: 999;
  animation: fadeSlide 0.25s ease;
}

/* Arrow effect */
.product-mini-popup::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #021061 transparent;
}

/* Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .product-mini-popup {
    right: auto;
    left: 0;
    width: 260px;
  }
}

/* ================= ENHANCEMENT: ANIMATIONS AND HOVER EFFECTS ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-heading,
.hero-desc,
.hero-btn {
  animation: fadeInUp 0.8s ease-out forwards;
}

.service-card {
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(74, 175, 250, 0.4);
}

.highlight-card {
  transition: all 0.4s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.main-footer ul li a {
  color: #9ab3d9;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.main-footer ul li a::before {
  content: '\2192';
  /* Unicode Right Arrow Icon */
  font-family: Arial, sans-serif;
  font-size: 14px;
  margin-right: 8px;
  color: #4AAFFA;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.main-footer ul li a:hover {
  color: #4AAFFA;
  transform: translateX(5px);
}

.main-footer ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.stats-item {
  transition: all 0.3s ease;
}

.stats-item:hover {
  transform: scale(1.05);
  color: #4AAFFA;
}

/* Navbar consistency fix */
.custom-navbar {
  min-height: 72px !important;
  padding: 8px 0 !important;
}

.brand-logo-img {
  height: 52px !important;
  width: auto !important;
}

/* ================= FOOTER BOTTOM BAR ================= */
.footer-bottom-bar {
  background: rgba(2, 16, 97, 1);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social-links a {
  color: #f4f8ff;
  font-size: 18px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
}

.footer-social-links a:hover {
  color: #4AAFFA;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= GLOBAL ANIMATIONS ================= */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}