/* hero section start */
/* :root {
  --brand-blue: #1B2E83;
  --brand-red: #db292f;
} */

/* ================================
   HERO SECTION
================================ */

.hero-about {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 20px;
  background: #0a0f2c;
}

/* ================================
   BACKGROUND IMAGE
================================ */

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: slowZoom 20s ease-in-out infinite alternate;
  transform: scale(1.1);
}

@keyframes slowZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.2); }
}

/* ================================
   DARK OVERLAY
================================ */

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
      135deg,
      rgba(6, 12, 40, 0.85),
      rgba(20, 30, 70, 0.85)
  ); */
  background: linear-gradient(135deg, rgba(6, 12, 40, 0.85), rgb(20 30 70 / 33%));
;
  z-index: 1;
}

/* ================================
   HERO CONTENT (GLASS CARD)
================================ */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 60px 50px;
  border-radius: 25px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);

  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1.2s ease forwards;
}

/* Fade animation */
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   COMPANY BADGE
================================ */

.company-short {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #fff;
}

/* ================================
   MAIN TITLE
================================ */

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #ffffff;
}

/* ================================
   SECTION LABEL
================================ */

.section-label {
  letter-spacing: 6px;
  color: var(--brand-red);
  font-size: 0.85rem;
  font-weight: 600;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .hero-content {
    padding: 40px 25px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }


}
/* hero section end */
/* another section end */
:root {
  --brand-blue: #1B2E83;
  --brand-red: #db292f;
}

/* SECTION BACKGROUND */
.brief-history {
  padding: 100px 8%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Soft background lighting effect */
.brief-history::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(27, 46, 131, 0.05);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  filter: blur(120px);
}

.brief-history::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(219, 41, 47, 0.05);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  filter: blur(120px);
}

/* GRID LAYOUT */
.history-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* CARD DESIGN */
.history-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Animated gradient border */
.history-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Hover Effect */
.history-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* ICON STYLE */
.history-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* TITLE */
.history-card h3 {
  font-size: 22px;
  color: var(--brand-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

/* TEXT */
.history-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* SCROLL ANIMATION */
.history-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.history-card:nth-child(2) {
  animation-delay: 0.2s;
}

.history-card:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .brief-history {
    padding: 70px 5%;
  }

  .history-card {
    padding: 30px 20px;
  }
}
/* end */




:root {
  --brand-blue: #1B2E83;
  --brand-red: #db292f;
  --dark-bg: #0b0f3a; /* close match to your image */
}

/* SECTION BACKGROUND */
.brief-history {
  padding: 100px 8%;
background: linear-gradient(135deg, #000000, #000536);;
  position: relative;
  overflow: hidden;
}

/* Soft glow effect */
.brief-history::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(27, 46, 131, 0.25);
  border-radius: 50%;
  top: -120px;
  left: -120px;
  filter: blur(140px);
}

.brief-history::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(219, 41, 47, 0.2);
  border-radius: 50%;
  bottom: -120px;
  right: -120px;
  filter: blur(140px);
}

/* GRID */
.history-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* DARK GLASS CARD */
.history-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Hover */
.history-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ICON */
.history-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* TITLE */
.history-card h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

/* TEXT */
.history-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* Scroll Animation */
.history-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.history-card:nth-child(2) {
  animation-delay: 0.2s;
}

.history-card:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .brief-history {
    padding: 70px 5%;
  }
}


/* another */
:root {
  --brand-blue: #1B2E83;
  --brand-red: #db292f;
}

/* SECTION */
.aims {
  padding: 110px 8%;
  /* background: linear-gradient(135deg, #0b0f3a, #0e144f); */
  background: linear-gradient(135deg, #0b0f3a, #0e144f);;
  background:linear-gradient(135deg, #2c0f25, #0c0e21);
  position: relative;
  overflow: hidden;
}
/* .aims h2{
  display: block;
  width:100%;
 flex-flow: column;

} */

/* Soft glow lighting */
.aims::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(27, 46, 131, 0.25);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  filter: blur(140px);
}

.aims::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(219, 41, 47, 0.2);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  filter: blur(140px);
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
}

.section-header .line {
  width: 90px;
  height: 4px;
  margin: 15px auto 0;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
  border-radius: 10px;
  animation: expandLine 2s ease infinite alternate;
}

@keyframes expandLine {
  from { width: 90px; }
  to { width: 150px; }
}

/* CONTAINER */
.aims-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* CARD */
.aim-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  transition: 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.aim-card:nth-child(2) {
  animation-delay: 0.3s;
}

/* Hover Lift */
.aim-card:hover {
  transform: translateY(-15px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 35px 70px rgba(0,0,0,0.6);
}

/* ICON */
.aim-card .icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transition: 0.4s ease;
}

/* Icon hover animation */
.aim-card:hover .icon {
  transform: rotate(10deg) scale(1.1);
}

/* TITLE */
.aim-card h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}

/* TEXT */
.aim-card p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.7;
}

/* Fade Up Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .aim-card {
    padding: 35px 25px;
  }
}
/* end another */


/* another */
:root {
  --brand-blue: #1B2E83;
  --brand-red: #db292f;
}

/* SECTION */
.values {
  position: relative;
  padding: 120px 8%;
  overflow: hidden;
  /* background: linear-gradient(135deg, #0b0f3a, #0e144f);
   */
   background: linear-gradient(135deg, #0b0f3a, #4f0e31);
  
}

/* Background image layer */
.values-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("img/teamwork-bg.jpg") center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
}

.section-header .line {
  width: 90px;
  height: 4px;
  margin: 15px auto 0;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
  animation: expandLine 2s ease infinite alternate;
}

.hero-about .line {
  width: 90px;
  height: 4px;
  margin: 15px auto 0;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
  animation: expandLine 2s ease infinite alternate;
}


@keyframes expandLine {
  from { width: 90px; }
  to { width: 150px; }
}

/* GRID */
.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* GLASS CARD */
.value-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 25px;
  padding: 45px 30px;
  text-align: center;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);

  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.4s; }
.value-card:nth-child(4) { animation-delay: 0.6s; }

/* Hover effect */
.value-card:hover {
  transform: translateY(-15px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 35px 70px rgba(0,0,0,0.6);
}

/* ICON */
.value-card .icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  transition: 0.4s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* Icon animation */
.value-card:hover .icon {
  transform: rotate(10deg) scale(1.1);
}

/* TITLE */
.value-card h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

/* TEXT */
.value-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* Fade animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .value-card {
    padding: 35px 20px;
  }
}
/* end another */

/* another
 */
:root {
  --brand-blue: #1B2E83;
  --brand-red: #db292f;
}

/* SECTION */
.team-section {
  padding: 100px 5%;
  /* background: linear-gradient(135deg, #0b0f3a, #0e144f); */
  background: linear-gradient(135deg, #3d080a, #0e254f);
  overflow: hidden;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 38px;
  color: #fff;
}

.section-header .line {
  width: 100px;
  height: 4px;
  margin: 15px auto;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
  border-radius: 10px;
}

/* SLIDER WRAPPER */
.slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* NAV BUTTONS */
.nav {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.nav:hover {
  transform: scale(1.1);
}

/* SLIDER */
.team-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  max-width: 1000px;
  width: 100%;
  padding: 10px 0;
}

.team-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.team-card {
  flex: 0 0 280px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ACTIVE SCALE */
.team-card.active {
  transform: scale(1.05);
}

/* IMAGE */
.image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* INFO */
.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h4 {
  color: #fff;
  margin-bottom: 5px;
}

.team-info span {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 30px;
  }

  .team-card {
    flex: 0 0 250px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .slider-wrapper {
    gap: 10px;
  }

  .nav {
    display: none; /* hide arrows on mobile */
  }

  .team-slider {
    gap: 20px;
  }

  .team-card {
    flex: 0 0 220px;
  }

  .image-wrapper {
    height: 250px;
  }
}

/* Small phones */
@media (max-width: 480px) {

  .team-card {
    flex: 0 0 85%;
  }

  .image-wrapper {
    height: 230px;
  }
}

footer{
  margin-top: 0 !important;
}


/* ===============================
   SCROLL REVEAL SYSTEM
================================*/

/* Hidden state */
.reveal{
    opacity:0;
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2,.65,.3,1);
}

/* Directions */
.reveal-up{
    transform:translateY(60px);
}

.reveal-fade{
    transform:translateY(20px);
}

.reveal-scale{
    transform:scale(.9);
}

/* Visible state */
.reveal.active{
    opacity:1;
    transform:translate(0) scale(1);
}

/* Elegant stagger delay */
.reveal:nth-child(1){transition-delay:.1s;}
.reveal:nth-child(2){transition-delay:.25s;}
.reveal:nth-child(3){transition-delay:.4s;}
.reveal:nth-child(4){transition-delay:.55s;}
.reveal:nth-child(5){transition-delay:.7s;}
/* ===============================
   MGLSD LICENSE SECTION (MODERN PRO)
================================= */
/* ===============================
   MGLSD SECTION (ULTIMATE VERSION)
================================= */

.mglsd-section {
  position: relative;
  padding: 110px 20px;
  overflow: hidden;
}

/* BACKGROUND IMAGE (OPTIONAL) */
.mglsd-bg {
  position: absolute;
  inset: 0;
  background: url('../img/verified.jpg') center/cover no-repeat;
  z-index: 0;
}

/* GLASS OVERLAY */
.mglsd-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,15,40,0.85),
    rgba(20,30,70,0.75)
  );
  backdrop-filter: blur(6px);
  z-index: 1;
}

/* CONTENT */
.mglsd-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
}

/* HEADER */
.mglsd-header {
  text-align: center;
  margin-bottom: 60px;
}

.mglsd-eyebrow {
  display: inline-flex;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mglsd-header h2 {
  font-size: 2.4rem;
  color: #fff;
  margin: 15px 0;
}

.mglsd-subtitle {
  color: rgba(255,255,255,0.75);
}

/* CARD */
.mglsd-card {
  display: flex;
  gap: 35px;
  align-items: center;

  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  border-radius: 25px;
  padding: 45px;

  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);

  transition: 0.4s ease;
}

.mglsd-card:hover {
  transform: translateY(-10px);
}

/* SEAL */
.mglsd-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seal-ring {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
}

/* PULSE EFFECT */
.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.seal-label {
  margin-top: 10px;
  color: #fff;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* DETAILS */
.mglsd-details {
  flex: 1;
}

.mglsd-badge-title {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.mglsd-badge-title strong {
  color: #fff;
  font-size: 1.3rem;
}

.mglsd-license-no {
  background: rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 20px;
  color: #ddd;
}

.mglsd-license-no em {
  color: var(--brand-red);
}

/* TEXT */
.mglsd-desc {
  margin: 15px 0;
  color: rgba(255,255,255,0.8);
}

/* CHECKS */
.mglsd-checks li {
  color: #fff;
  margin-bottom: 10px;
  list-style: none;
}

.mglsd-checks li i {
  color: #2ecc71;
}

/* VERIFY BUTTON */
.verify-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;

  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;

  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  color: #fff;
  font-weight: 600;

  transition: 0.3s ease;
}

.verify-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mglsd-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}


/* ===============================
   VIEW CERTIFICATE BUTTON
================================= */
.view-cert-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  margin-left: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid rgba(200, 169, 110, 0.45);
  background: rgba(200, 169, 110, 0.1);
  color: #c8a96e;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}
.view-cert-btn i {
  font-size: 0.95rem;
}
.view-cert-btn:hover {
  background: rgba(200, 169, 110, 0.22);
  border-color: rgba(200, 169, 110, 0.7);
  color: #e8c97e;
  transform: translateY(-2px);
}

/* ===============================
   TRUST SCORE (CIRCLE)
================================= */
.trust-score {
  margin-top: 25px;
  text-align: center;
}

.trust-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(
    #2ecc71 0deg,
    #2ecc71 0deg,
    rgba(255,255,255,0.1) 0deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
}

.trust-circle::before {
  content: "";
  position: absolute;
  width: 75%;
  height: 75%;
  background: #0b0f3a;
  border-radius: 50%;
}

.trust-value {
  position: relative;
  color: #fff;
  font-weight: bold;
}

/* ══════════════════════════════════════════════════════════
   CERTIFICATE MODAL  —  about.css
══════════════════════════════════════════════════════════ */

/* Backdrop */
.cert-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cert-modal.active {
  display: flex;
}

/* Dark overlay — matches hero-overlay style */
.cert-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 12, 40, 0.92), rgba(20, 30, 70, 0.88));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

/* Modal card */
.cert-content {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #0d1b4b 0%, #091535 100%);
  border-radius: 24px;
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(200, 169, 110, 0.15),
    0 32px 90px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255,255,255,0.07);
  animation: modalIn 0.38s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes modalIn {
  from { transform: scale(0.85) translateY(30px); opacity: 0; }
  to   { transform: scale(1)    translateY(0);    opacity: 1; }
}

/* Close button */
.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  z-index: 3;
}
.close-modal:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}

/* ── Header strip ── */
.cert-header {
  position: relative;
  padding: 36px 32px 28px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

/* Subtle radial glow behind icon */
.cert-header::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.18), transparent 70%);
  pointer-events: none;
}

/* Gold seal icon with ring */
.cert-header i {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8a96e, #a07840);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 0 0 6px rgba(200, 169, 110, 0.15), 0 8px 24px rgba(0,0,0,0.4);
}

.cert-header h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.cert-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Certificate image area ── */
.cert-img-wrap {
  padding: 24px 24px 0;
}
.cert-img-wrap img {
  width: 100%;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* Placeholder shown when image is missing */
.cert-placeholder {
  width: 100%;
  min-height: 200px;
  border: 2px dashed rgba(200, 169, 110, 0.4);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}
.cert-placeholder i {
  font-size: 2.5rem;
  color: #c8a96e;
  opacity: 0.45;
}

/* ── Divider line ── */
.cert-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 24px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 20px;
}

/* License badge */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 162, 68, 0.12);
  border: 1px solid rgba(37, 162, 68, 0.4);
  color: #4cd87a;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.cert-badge i { color: #4cd87a; }

/* Verify link */
.cert-verify-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 16px;
  border-radius: 20px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  letter-spacing: 0.02em;
}
.cert-verify-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* Responsive */
@media (max-width: 480px) {
  .cert-footer { justify-content: center; }
  .cert-header  { padding: 28px 20px 22px; }
  .cert-img-wrap { padding: 16px 16px 0; }
  .cert-content { border-radius: 18px; }
}

/* ══════════════════════════════════════════════════════════
   IMAGE GALLERY — INFINITE AUTO-SCROLL + ARROWS + HOVER PAUSE
   about.css
══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   OUR GALLERY — Big, Modern, Cinematic Redesign
   ═══════════════════════════════════════════════ */

.gallery-section {
  padding: 120px 0 140px;
  background: linear-gradient(160deg, #03050f 0%, #000536 50%, #0a0014 100%);
  position: relative;
  overflow: hidden;
}

/* Multi-layered ambient glows */
.gallery-section::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(27, 46, 180, 0.28) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px; right: -200px;
  pointer-events: none;
}
.gallery-section::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(219, 41, 47, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -180px; left: -180px;
  pointer-events: none;
}

/* Extra mid-glow orb */
.gallery-section .gallery-mid-glow {
  position: absolute;
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(100, 60, 200, 0.14) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ── Section header ── */
.gallery-section .section-header {
  text-align: center;
  margin-bottom: 70px;
  padding: 0 5%;
  position: relative;
  z-index: 2;
}

.gallery-section .section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.gallery-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.1rem;
  margin-top: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Decorative accent line under heading */
.gallery-section .line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #db292f, #1b2e83);
  margin: 14px auto 0;
  border-radius: 4px;
}

/* ── Outer wrapper — positions the arrows ── */
.gallery-section .slider-wrapper {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 88px;
  z-index: 2;
}

/* Edge fade masks */
.gallery-viewport {
  overflow: hidden;
  width: 100%;
  /* Force GPU layer — prevents iOS Safari blank-gap bug during scroll */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* iOS Safari: mask-image causes blank gap during momentum scroll — disable on mobile */
@media (max-width: 768px) {
  .gallery-viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ── Infinite-scroll track — movement handled by JS rAF, not CSS animation ── */
.gallery-slider {
  display: flex;
  gap: var(--gallery-gap, 28px);
  width: max-content;
  will-change: transform;
  animation: none !important;  /* JS drives this via requestAnimationFrame */
}

/* Keep paused/running classes inert — rAF loop handles pause state */
.gallery-slider.running,
.gallery-slider.paused {
  animation: none !important;
}

.gallery-viewport:hover .gallery-slider {
  /* hover pause handled by JS mouseenter/mouseleave */
}

/* ── Each card ── */
.gallery-slide-card {
  flex: 0 0 var(--gallery-card-w, 460px);
  min-width: 0;
  user-select: none;
}

/* ── Image wrap ── */
.gallery-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 5;   /* slightly shorter portrait — good for people & office shots */
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.45s ease;
}

/* Glowing border on hover */
.gallery-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(219,41,47,0.7), rgba(27,46,131,0.7)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-slide-card:hover .gallery-img-wrap {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(219, 41, 47, 0.2);
}

.gallery-slide-card:hover .gallery-img-wrap::after {
  opacity: 1;
}

.gallery-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center; /* keeps faces/heads visible for standing-people shots */
  display: block;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.gallery-slide-card:hover .gallery-img-wrap img {
  transform: scale(1.08);
}

/* ── Caption overlay ── */
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(3, 5, 40, 0.95) 0%, rgba(3,5,40,0.5) 60%, transparent 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 50px 20px 20px;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-radius: 0 0 22px 22px;
}

.gallery-caption::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #db292f;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 2px;
}

.gallery-slide-card:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── Arrow nav buttons ── */
.gallery-section .slider-wrapper .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 12, 40, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.gallery-section .slider-wrapper .nav:hover {
  background: linear-gradient(135deg, #db292f, #b01e24);
  border-color: #db292f;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 12px 32px rgba(219, 41, 47, 0.45);
}

.gallery-section .slider-wrapper .nav:active {
  transform: translateY(-50%) scale(0.97);
}

.gallery-section .slider-wrapper .nav.prev { left: 14px; }
.gallery-section .slider-wrapper .nav.next { right: 14px; }

/* ── Pause indicator pill ── */
.gallery-nudge-indicator {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.gallery-nudge-indicator.show { opacity: 1; }

/* ── Dot indicators (purely decorative rhythm) ── */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
  position: relative;
  z-index: 2;
}

.gallery-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: block;
  transition: all 0.3s;
}

.gallery-dots span.active,
.gallery-dots span:nth-child(2) {
  background: #db292f;
  width: 24px;
  border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .gallery-section .slider-wrapper { padding: 0 76px; }
}

@media (max-width: 992px) {
  .gallery-section .slider-wrapper { padding: 0 64px; }
  .gallery-slide-card { flex: 0 0 var(--gallery-card-w, 320px); }
  .gallery-img-wrap { aspect-ratio: 5 / 5; } /* keep portrait ratio on tablet */
}

@media (max-width: 600px) {
  .gallery-section { padding: 80px 0 100px; }
  .gallery-section .slider-wrapper { padding: 0 52px; }
  .gallery-section .slider-wrapper .nav { width: 44px; height: 44px; font-size: 0.9rem; }
  .gallery-section .section-header { margin-bottom: 50px; }
}

@media (max-width: 480px) {
  .gallery-img-wrap { aspect-ratio: 5 / 5; border-radius: 16px; } /* portrait on mobile */
  .gallery-slide-card { flex: 0 0 var(--gallery-card-w, 240px); }
}