 ⚠ Important
/* 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 */
/* 
     :root {
         --primary-color: #000000;
         --accent-color: #00ffcc;
           }
   */


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


/* 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 ================= */


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

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

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

.brand-logo-img {
  width: 75px;
}

/* 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: 32px;
  font-weight: 700;
  color: #fff;
}

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

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

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

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


/* .custom-navbar {
  background-color: #021061;
  padding: 18px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 15px #f4f8ff; */
  /* box-shadow: none; */
/* }

.brand-text {
  font-size: 28px;
  font-weight: 700;
  color: #f4f8ff;
}

.logo-img {
  width: 65px;
}

.nav-link {
  font-weight: 600;
  color: #f4f8ff !important;
  font-size: 17px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #f4f8ff !important;
  transform: scale(1.08);
} */

/* .ciso-btn {
  background-color: #021061;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
} */

/* .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: 50px;
  }

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

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

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

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

  .brand-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;
  }
}

/* extra added  */

/* Add body padding */

body {
  padding-top: 100px;
}


/* 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;
}

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

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

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

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

}

/* Image */

.hero-img {
  max-width: 260px;
  border-radius: 20px;
  transition: 0.4s ease-in-out;
}

.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 LOGO TM MARK ===== */

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

.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;
}

.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;
}

/* 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: #021061;
  margin: 8px auto 15px;
  border-radius: 5px;
}

/* 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;
  max-height: 420px;
  object-fit: contain;
  background: #f8f9ff;
  padding: 10px;
}

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

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

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

  .award-img {
    max-height: 320px;
  }
}


/* ================= 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;
}

/* ================= 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);
}

/* 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);
}

/* 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;
}

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


/* ================= our collaborators ================= */

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

.trusted-section {
  background: #021061;
  padding: 100px 0;
  overflow: hidden;
}

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

/* Slider Wrapper */
.logo-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Moving Track */
.logo-track {
  display: flex;
  align-items: center;
  gap: 35px;                /* Reduced gap */
  width: max-content;
  animation: scroll 25s linear infinite;  /* Smooth slower scroll */
}

/* Logo Card Style */
.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 40px 45px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Logo Image */
.brand-logo {
  max-height: 60px;     /* Bigger logo */
  width: auto;
  transition: 0.3s ease;
}

/* Subtitle */
.logo-subtitle {
  font-size: 12px;
  margin-top: 6px;
  color: #4AAFFA;   /* Brand Accent */
  font-weight: 500;
}

/* Infinite Seamless Scroll */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

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

  .logo-track {
    gap: 20px;
  }

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

  .logo-item {
    padding: 10px 15px;
  }

}

/* ================= 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;
}

/* ================= 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;
}

/* 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;
}

.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;
  }

}


/* ================= 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;
}

/* ================= 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 ================= */

/* ================= FOOTER BOTTOM BAR ================= */

/* Bottom section background */
.footer-bottom-bar {
  background: #021061;  /* Brand Dark */
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0;
  color: #aaa;
}

/* ================= SOCIAL ICONS ================= */

.footer-social-icons {
  margin-bottom: 18px;
}

/* Individual icon circle */
.footer-social-icons a {
  width: 42px;
  height: 42px;

  background: rgba(255,255,255,0.08); /* Softer & cleaner */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  margin: 0 8px;

  color: #f4f8ff;
  font-size: 18px;

  transition: all 0.3s ease;
}

/* Hover effect */
.footer-social-icons a:hover {
  background: #4AAFFA;   /* Brand Accent */
  color: #021061;
  transform: translateY(-4px); /* Premium hover lift */
}

/* ================= COPYRIGHT ================= */

.copyright-text {
  font-size: 13px;
  margin: 0;
  opacity: 0.7;
}

/* mobile responsive section */

@media (max-width: 576px) {

  .footer-social-icons a {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin: 0 6px;
  }

  .copyright-text {
    font-size: 12px;
  }

}
/* ================= 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;
  }
}





