/* ============ RESET & BASE ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --clr-white: #FFFFFF;
  --clr-navy: #00173C;
  --clr-red: #B40000;
  --clr-black: #0A0A0A;
  --clr-gray: #5A6473;
  --clr-light: #F5F7FA;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--clr-black);
  background: var(--clr-white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ============ SECTION ============ */
.about {
  position: relative;
  padding: 110px 24px;
  overflow: hidden;
  background: var(--clr-white);
}

.about__bg-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.about__bg-shape--top {
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: var(--clr-light);
  border-radius: 50%;
}

.about__bg-shape--bottom {
  bottom: -160px;
  left: -100px;
  width: 320px;
  height: 320px;
  border: 60px solid var(--clr-light);
  border-radius: 50%;
}

.about__container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ============ LEFT : MEDIA ============ */
.about__media {
  position: relative;
  padding: 40px 30px 60px 0;
}

.about__deco {
  position: absolute;
  z-index: 0;
}

.about__deco--square {
  top: 60px;
  left: 20px;
  width: 220px;
  height: 260px;
  background: var(--clr-navy);
  border-radius: 8px;
}

.about__deco--dots {
  bottom: 10px;
  right: 0;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(var(--clr-red) 2.5px, transparent 2.5px);
  background-size: 16px 16px;
  opacity: 0.35;
}

.about__image-wrap {
  position: relative;
  z-index: 2;
  margin-left: 60px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 23, 60, 0.22);
  border: 8px solid var(--clr-white);
  aspect-ratio: 4 / 5;
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about__media:hover .about__image {
  transform: scale(1.06);
}

.about__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--clr-red);
  border: none;
  color: var(--clr-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 10px 26px rgba(180, 0, 0, 0.4);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.about__play i { transform: translateX(2px); }

.about__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--clr-navy);
}

.about__play-ring {
  position: absolute;
  inset: -14px;
  border: 2px solid var(--clr-white);
  border-radius: 50%;
  opacity: 0.6;
  animation: ring-pulse 2.6s ease-out infinite;
}

@keyframes ring-pulse {
  0%   { transform: scale(0.85); opacity: 0.7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.about__badge {
  position: absolute;
  top: 90px;
  left: -10px;
  z-index: 3;
  background: var(--clr-red);
  color: var(--clr-white);
  width: 130px;
  padding: 20px 14px 26px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 16px 30px rgba(180, 0, 0, 0.3);
}

.about__badge::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  border-left: 65px solid transparent;
  border-right: 65px solid transparent;
  border-top: 14px solid #7d0000;
}

.about__badge i {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}

.about__badge-line1 {
  display: block;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}

.about__badge-line2 {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2px;
}

.about__gear {
  position: absolute;
  color: var(--clr-navy);
  opacity: 0.08;
  z-index: 0;
}

.about__gear--1 {
  font-size: 90px;
  bottom: 20px;
  left: -20px;
  animation: spin-slow 18s linear infinite;
}

.about__gear--2 {
  font-size: 50px;
  top: 10px;
  right: 10px;
  animation: spin-slow-rev 14s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spin-slow-rev {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}

/* ============ RIGHT : CONTENT ============ */
.about__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(180, 0, 0, 0.08);
  color: var(--clr-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.about__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--clr-navy);
  margin-bottom: 20px;
}

.about__heading span {
  color: var(--clr-red);
}

.about__text {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--clr-gray);
  margin-bottom: 32px;
  max-width: 560px;
}

.about__text strong {
  color: var(--clr-navy);
}

/* ---- Features ---- */
.about__features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.35s var(--ease);
}

.about__feature:hover {
  transform: translateX(6px);
}

.about__feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(180, 0, 0, 0.08);
  color: var(--clr-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.about__feature:hover .about__feature-icon {
  background: var(--clr-red);
  color: var(--clr-white);
  transform: rotate(-8deg);
}

.about__feature-info h3 {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: 6px;
}

.about__feature-info p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-gray);
  max-width: 480px;
}

/* ---- Product tags ---- */
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.about__tag {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--clr-navy);
  background: var(--clr-light);
  border: 1px solid rgba(0, 23, 60, 0.08);
  padding: 8px 14px;
  border-radius: 30px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.about__tag:hover {
  background: var(--clr-navy);
  color: var(--clr-white);
  border-color: var(--clr-navy);
  transform: translateY(-3px);
}

/* ---- Bottom : Button + Contact ---- */
.about__bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-red);
  color: var(--clr-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 16px 30px;
  border-radius: 4px;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.about__btn i {
  transition: transform 0.35s var(--ease);
}

.about__btn:hover {
  background: var(--clr-navy);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 23, 60, 0.25);
}

.about__btn:hover i {
  transform: translateX(5px);
}

.about__contact-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--clr-navy);
}

.about__contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-light);
  color: var(--clr-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.about__contact-mini:hover .about__contact-icon {
  background: var(--clr-red);
  color: var(--clr-white);
}

.about__contact-text {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
}

.about__contact-text small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--clr-gray);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: transform, opacity;
}

.reveal--up {
  transform: translateY(36px);
}

.reveal--left {
  transform: translateX(-60px);
}

.reveal--pop {
  transform: translateY(20px) scale(0.85);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .about__media {
    max-width: 460px;
    margin: 0 auto;
    padding-bottom: 30px;
  }

  .about__text,
  .about__feature-info p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .about {
    padding: 80px 18px;
  }

  .about__heading {
    font-size: 27px;
  }

  .about__media {
    padding: 20px 16px 40px 0;
  }

  .about__deco--square {
    width: 160px;
    height: 190px;
    top: 30px;
  }

  .about__image-wrap {
    margin-left: 34px;
  }

  .about__badge {
    width: 110px;
    top: 60px;
    left: -6px;
    padding: 14px 8px 20px;
  }

  .about__badge-line1 { font-size: 11.5px; }
  .about__badge-line2 { font-size: 12.5px; }

  .about__play {
    width: 54px;
    height: 54px;
    font-size: 15px;
  }

  .about__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about__gear,
  .about__play-ring {
    animation: none;
  }
}















/* WHY */

:root {
  --clr-white: #FFFFFF;
  --clr-navy: #00173C;
  --clr-red: #B40000;
  --clr-black: #0A0A0A;
  --clr-gray: #6B7280;
  --clr-line: #ECEDF1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--clr-black);
  background: var(--clr-white);
  overflow-x: hidden;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

h2 { line-height: 1.25; }

/* ---------- shared badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.badge-pill {
  width: 26px;
  height: 10px;
  border-radius: 20px;
  background: var(--clr-red);
  display: inline-block;
}

.arrow-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-red);
  background: var(--clr-white);
  color: var(--clr-red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.arrow-btn svg { width: 18px; height: 18px; }

.arrow-btn:hover {
  background: var(--clr-red);
  color: var(--clr-white);
}

.arrow-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--clr-white);
  color: var(--clr-red);
}

.arrow-btn.light {
  border-color: rgba(0, 0, 0, 0.89);
  background: transparent;
  color: var(--clr-navy);
}

.arrow-btn.light:hover {
  background: var(--clr-red);
  border-color: var(--clr-red);
}

/* ==================================================== */
/* SECTION 1 : GALLERY                                   */
/* ==================================================== */
.gallery-section {
  padding: 90px 0 100px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}

.head-text h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--clr-navy);
  max-width: 560px;
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.gallery-viewport {
  overflow: hidden;
  padding-left: 24px;
}

.gallery-track {
  display: flex;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
}

.gallery-item {
  flex: 0 0 25%;
  padding: 0 12px;
}

.gallery-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #0d2557 0%, var(--clr-navy) 60%, #001028 100%);
  cursor: pointer;
}

.gallery-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-icon {
  width: 34%;
  height: 34%;
  color: rgba(255,255,255,0.35);
  transition: transform 0.4s ease, color 0.4s ease;
}

.gallery-card:hover .gallery-icon {
  transform: scale(1.08);
  color: rgba(180,0,0,0.55);
}

.gallery-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 18px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
  transform: translateY(58%);
  transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: var(--clr-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}

.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-white);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--clr-red);
  padding-bottom: 2px;
}

.gallery-link svg { width: 14px; height: 14px; color: var(--clr-red); }

/* ==================================================== */
/* SECTION 2 : WHY CHOOSE US                             */
/* ==================================================== */
.why-section {
  position: relative;
  background: var(--clr-navy);
  color: var(--clr-white);
  padding: 100px 0;
  margin: 20px 0px;
  overflow: hidden;
}

.why-lines {
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
}

.why-lines svg { width: 100%; height: 100%; }

.why-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.why-text h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 38px;
  max-width: 480px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.why-list li {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.why-list li:first-child { padding-top: 0; }
.why-list li:last-child { border-bottom: none; }

.why-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--clr-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-red);
}

.why-icon svg { width: 28px; height: 28px; }

.why-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--clr-white);
}

.why-content p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
}

.why-media {
  position: relative;
  display: flex;

  justify-content: center;
}

.why-photo {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #ffffff 0%, #f4f5f8 100%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.why-photo svg { width: 42%; height: 42%; }

.why-photo-caption {
  text-align: center;
  color: var(--clr-navy);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
}

.why-photo-caption span {
  display: block;
  font-weight: 400;
  font-size: 12.5px;
  color: var(--clr-gray);
  margin-top: 2px;
}

.why-tag {
  position: absolute;
  bottom: -14px;
  right: 6%;
  background: var(--clr-red);
  color: var(--clr-white);
  border-radius: 8px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(180,0,0,0.4);
}

.why-tag strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.why-tag span {
  font-size: 11.5px;
  font-weight: 500;
}

/* ==================================================== */
/* SECTION 3 : TESTIMONIALS                              */
/* ==================================================== */
.testimonial-section {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 640px;
  align-items: center;
   margin: 20px 0px;
}

.testi-media {
  position: relative;
  aspect-ratio: 500 / 500;
  margin-top: 20px;

  background: linear-gradient(150deg, #12213f, #0a1730 70%);
  overflow: hidden;
}

.testi-media-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-media-inner img{
  object-fit: contain;
  height:90%;


}
.testi-bg-icon {
  position: absolute;
  width: 65%;
  height: 65%;
}

.play-btn {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--clr-red);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(180,0,0,0.18);
  transition: transform 0.25s ease;
}

.play-btn:hover { transform: scale(1.08); }

.play-btn svg { width: 26px; height: 26px; margin-left: 3px; }

.testi-panel {
  position: relative;
  background: var(--clr-white);
  color: var(--clr-navy);
  padding: 90px 60px 70px;
  overflow: hidden;
}

.testi-panel h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 44px;
}

.testi-viewport {
  overflow: hidden;
}

.testi-track {
  display: flex;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
}

.testi-item {
  flex: 0 0 50%;
  padding-right: 26px;
}

.testi-card {
  position: relative;
  background: var(--clr-white);
  color: var(--clr-black);
  border-left: 4px solid var(--clr-red);
  border-radius: 4px;
  padding: 32px 28px 30px;
  min-height: 260px;
}

.quote-mark {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 46px;
  color: var(--clr-red);
  font-family: Georgia, serif;
  line-height: 1;
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-navy);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.testi-top h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-navy);
}

.testi-top span {
  font-size: 12.5px;
  color: var(--clr-gray);
}

.stars {
  color: var(--clr-red);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 14px;
}

.testi-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #3a3f4b;
}

.testi-arrows {
  display: flex;
  color: #001028;
  gap: 12px;
  margin-top: 40px;
}

/* ==================================================== */
/* FOOTER (minimal, for company info)                    */
/* ==================================================== */
.mini-footer {
  background: var(--clr-black);
  color: rgba(255,255,255,0.6);
  padding: 26px 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
}

.mini-footer strong { color: var(--clr-white); }

/* ================================================================ */
/* RESPONSIVE                                                        */
/* ================================================================ */

/* Large tablets / small laptops */
@media (max-width: 1199px) {
  .gallery-item { flex: 0 0 33.3333%; }
}

@media (max-width: 991px) {
  .gallery-item { flex: 0 0 50%; }

  .why-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .why-media { order: -1; margin-bottom: 20px; }
  .why-photo { max-width: 300px; }

  .testimonial-section {
    grid-template-columns: 1fr;
  }

  .testi-media { min-height: 260px; }

  .testi-panel { padding: 60px 40px 50px; }

  .testi-item { flex: 0 0 100%; padding-right: 0; }
}

@media (max-width: 767px) {
  .gallery-section { padding: 60px 0 70px; }

  .section-head {
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .head-text h2 { font-size: 26px; }

  .gallery-viewport { padding-left: 24px; }

  .gallery-item { flex: 0 0 78%; }

  .why-section { padding: 70px 0; }

  .why-text h2 { font-size: 26px; }

  .why-icon { width: 50px; height: 50px; }
  .why-icon svg { width: 22px; height: 22px; }

  .why-tag {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    border-radius: 30px;
    padding: 10px 20px;
  }

  .why-tag strong { font-size: 18px; }

  .testi-panel { padding: 50px 20px 40px; }
  .testi-panel h2 { font-size: 24px; }

  .arrow-btn { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery-viewport { padding-left: 16px; }
  .gallery-item { flex: 0 0 88%; }
  .testi-card { padding: 26px 20px 24px; }
  .quote-mark { font-size: 36px; top: 16px; right: 18px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gallery-track, .testi-track, .gallery-overlay, .gallery-icon {
    transition: none !important;
  }
}