/* =============================================================
   SHREE SHYAM FOREX — style.css
   Author: Agency build
   Notes : All colours are editable variables below.
           Fonts: Sora (display) · Inter (body) · IBM Plex Mono (data)
============================================================= */

/* ----------------------------------------------------------
   THEME VARIABLES  ——  edit these to re-skin the whole site
---------------------------------------------------------- */
:root {
  /* Brand colours */
  --navy: #012E69;
  /* primary deep blue  */
  --navy-700: #023a85;
  /* lighter navy       */
  --navy-900: #021f47;
  /* darkest navy       */
  --red: #E11D02;
  /* accent red         */
  --red-700: #c01702;
  /* darker red (hover) */
  --gold: #c8a24b;
  /* subtle premium accent (logo nod) */

  /* Neutrals */
  --ink: #14213a;
  /* main text          */
  --muted: #5b6781;
  /* secondary text     */
  --line: #e6ebf3;
  /* borders            */
  --bg: #ffffff;
  /* page background     */
  --bg-soft: #f4f7fc;
  /* soft section bg     */
  --bg-tint: #eef3fb;
  /* tinted section bg   */
  --white: #ffffff;

  /* Type */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Effects */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 18px rgba(2, 46, 105, .08);
  --shadow-md: 0 14px 40px rgba(2, 46, 105, .12);
  --shadow-lg: 0 24px 60px rgba(2, 46, 105, .18);
  --transition: .35s cubic-bezier(.22, .61, .36, 1);

  --container: 1200px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------------------------
   BASE / RESET
---------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  max-width: var(--container);
}

.text-accent {
  color: var(--red);
}

.text-primary-deep {
  color: var(--navy);
}

/* ----------------------------------------------------------
   SECTION SHELL + HEADINGS
---------------------------------------------------------- */
.section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(225, 29, 2, .08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.eyebrow-light {
  color: #ffd7cf;
  background: rgba(255, 255, 255, .12);
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.section-desc {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1.05rem;
}

.desc-light {
  color: rgba(255, 255, 255, .8);
}

/* ----------------------------------------------------------
   BUTTONS
---------------------------------------------------------- */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
}

.btn-cta {
  background: var(--red);
  color: var(--white);
  padding: 12px 26px;
  border: 2px solid var(--red);
  box-shadow: 0 10px 24px rgba(225, 29, 2, .28);
}

.btn-cta:hover {
  background: var(--red-700);
  border-color: var(--red-700);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(225, 29, 2, .36);
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .5);
  padding: 12px 26px;
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ----------------------------------------------------------
   1. TOP BAR
---------------------------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
  padding: 9px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-info {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 0;
}

.topbar-info li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar-info i {
  color: var(--red);
}

.topbar-info a:hover {
  color: var(--white);
}

.topbar-social {
  display: flex;
  gap: 8px;
  margin: 0;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .1);
  font-size: .8rem;
}

.topbar-social a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   2. STICKY HEADER
---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(2, 46, 105, .06);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}


.brand-logo {
  height: 60px;
  width: 100%;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  padding: 8px 14px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--navy);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 28px);
}

/* custom hamburger */
.navbar-toggler {
  border: 0;
  padding: 6px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  margin: 5px 0;
  transition: var(--transition);
}

/* ----------------------------------------------------------
   3. HERO (single background image)
---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  /* Fallback gradient shows if the hero image is missing */
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  /* subtle slow zoom for a premium feel */
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.63) 45%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-eyebrow i {
  color: var(--gold);
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}

.hero-sub {
  color: rgba(255, 255, 255, .85);
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: .95rem;
}

.hero-trust i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* floating decorative icons */
.floaty {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, .14);
  font-size: 4rem;
  animation: floatY 6s ease-in-out infinite;
}

.floaty-1 {
  top: 18%;
  right: 8%;
  font-size: 5rem;
}

.floaty-2 {
  bottom: 22%;
  right: 38%;
  animation-delay: 1.5s;
}

.floaty-3 {
  top: 30%;
  right: 26%;
  font-size: 3rem;
  animation-delay: 3s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-22px);
  }
}

/* ----------------------------------------------------------
   4. MARQUEE / TICKER  (signature element)
---------------------------------------------------------- */
.ticker {
  display: flex;
  align-items: stretch;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  border-top: 3px solid var(--red);
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  background: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0 22px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.ticker-viewport {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 40px;
  padding: 14px 0;
  white-space: nowrap;
  will-change: transform;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .92);
}

.ticker-item b {
  color: var(--gold);
  font-weight: 600;
}

.ticker-item .up {
  color: #4ade80;
}

.ticker-item .down {
  color: #ff7a6b;
}

/* ----------------------------------------------------------
   5. ABOUT
---------------------------------------------------------- */
.about {
  background: var(--bg);
}

.about-media {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/3.4;
}

.about-img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  border-radius: var(--radius-sm);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-badge {
  position: absolute;
  top: 22px;
  left: -10px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.about-badge .plus {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
}

.about-badge small {
  display: block;
  font-size: .72rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .8);
}

.lead-text {
  font-size: 1.12rem;
  color: var(--ink);
  font-weight: 500;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 6px;
}

.about-point {
  display: flex;
  gap: 12px;
}

.about-point i {
  color: var(--red);
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-point h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.about-point p {
  font-size: .9rem;
  margin: 0;
}

/* ----------------------------------------------------------
   6. SERVICES
---------------------------------------------------------- */
.services {
  background: var(--bg-soft);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg-tint);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-body {
  padding: 26px 24px 28px;
  position: relative;
}

.service-ico {
  position: absolute;
  top: -28px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-card:hover .service-ico {
  background: var(--red);
  transform: rotate(-8deg);
}

.service-body h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.service-body p {
  font-size: .94rem;
  margin-bottom: 16px;
}

.service-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link i {
  transition: transform var(--transition);
}

.service-link:hover {
  color: var(--red-700);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ----------------------------------------------------------
   7. WHY CHOOSE US
---------------------------------------------------------- */
.why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 2, .22), transparent 70%);
}

.why-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 30px 24px;
  height: 100%;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.why-card:hover {
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-ico {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  background: rgba(225, 29, 2, .15);
  color: #ff8a7a;
  margin-bottom: 18px;
  transition: var(--transition);
}

.why-card:hover .why-ico {
  background: var(--red);
  color: var(--white);
}

.why-card h3 {
  color: var(--white);
  font-size: 1.18rem;
  margin-bottom: 8px;
  transition: var(--transition);
}

.why-card p {
  color: rgba(255, 255, 255, .75);
  font-size: .92rem;
  margin: 0;
  transition: var(--transition);
}

.why-card:hover h3 {
  color: var(--navy);
}

.why-card:hover p {
  color: var(--muted);
}

/* stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding: 36px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
}

.stat .plus {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
}

.stat p {
  color: rgba(255, 255, 255, .75);
  margin: 4px 0 0;
  font-size: .92rem;
}

/* ----------------------------------------------------------
   8. PROCESS
---------------------------------------------------------- */
.process {
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.step-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 600;
  color: var(--bg-tint);
  transition: var(--transition);
}

.process-step:hover .step-num {
  color: rgba(225, 29, 2, .2);
}

.step-ico {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  background: var(--bg-tint);
  color: var(--navy);
  transition: var(--transition);
}

.process-step:hover .step-ico {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.05);
}

.process-step h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: .9rem;
  margin: 0;
}

/* ----------------------------------------------------------
   9. TESTIMONIALS
---------------------------------------------------------- */
.testimonials {
  background: #012E69;
}

.testi-slider {
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

.testi-card {
  min-width: 100%;
  padding: 44px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  text-align: center;
  margin: 0;
}

.testi-quote {
  font-size: 2.4rem;
  color: #ff0000f3;
}

.testi-card blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
  margin: 12px 0 24px;
}

.testi-card figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-card figcaption img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-tint);
}

.testi-card figcaption span {
  text-align: left;
}

.testi-card figcaption strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
}

.testi-card figcaption small {
  color: var(--muted);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.testi-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.testi-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testi-dots button.active {
  background: var(--red);
  width: 26px;
  border-radius: 50px;
}

/* ----------------------------------------------------------
   10. GALLERY
---------------------------------------------------------- */
.gallery {
  background: var(--bg);
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1/1;
  background: var(--bg-tint);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(2, 31, 71, .55);
  color: var(--white);
  font-size: 1.6rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(2, 31, 71, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
  animation: fadeIn .3s ease;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--red);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ----------------------------------------------------------
   11. FAQ
---------------------------------------------------------- */
.faq {
  background: var(--bg-soft);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--navy);
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-q i {
  flex-shrink: 0;
  color: var(--red);
  transition: transform var(--transition);
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-a p {
  padding: 0 22px 20px;
  margin: 0;
  font-size: .96rem;
}

/* ----------------------------------------------------------
   12. CONTACT
---------------------------------------------------------- */
.contact {
  background: var(--bg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: var(--transition);
}

.contact-info-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.ci-ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  transition: var(--transition);
}

.contact-info-item:hover .ci-ico {
  background: var(--red);
}

.contact-info-item small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
}

.contact-info-item strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: .98rem;
}

.contact-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 4px;
}

.contact-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

.form-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .95rem;
  background: var(--white);
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(2, 46, 105, .1);
}

.form-status {
  margin: 14px 0 0;
  font-weight: 600;
  font-size: .92rem;
  text-align: center;
}

.form-status.success {
  color: #1a8f3c;
}

.form-status.error {
  color: var(--red);
}

/* ----------------------------------------------------------
   13. FOOTER
---------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .75);
  padding: 70px 0 0;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
}

.footer-about {
  font-size: .94rem;
  color: rgba(255, 255, 255, .7);
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .7);
  font-size: .94rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .92rem;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--red);
  margin-top: 3px;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: .86rem;
  color: rgba(255, 255, 255, .6);
}

.footer-disclaimer {
  font-size: .78rem !important;
}

/* ----------------------------------------------------------
   FLOATING BUTTONS + BACK TO TOP
---------------------------------------------------------- */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.float-btn:hover {
  transform: scale(1.12);
  color: var(--white);
}

.float-whatsapp {
  left: 22px;
  background: #25d366;
}

.float-call {
  right: 22px;
  background: var(--red);
}

.float-whatsapp::before,
.float-call::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  animation: ring 1.8s ease-out infinite;
}

.float-whatsapp::before {
  background: #25d366;
}

.float-call::before {
  background: var(--red);
}

@keyframes ring {
  0% {
    transform: scale(1);
    opacity: .6;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.back-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 1100;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--red);
}

/* ----------------------------------------------------------
   SCROLL REVEAL
---------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 991.98px) {
  .section {
    padding: 70px 0;
  }

  .navbar-collapse {
    background: var(--white);
    margin-top: 12px;
    padding: 14px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .btn-cta {
    display: inline-block;
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floaty {
    display: none;
  }

  .about-media {
    padding-right: 30px;
  }
}
@media(max-width:767px)
{
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
}
@media (max-width: 575.98px) {
  .section {
    padding: 56px 0;
  }

  .topbar-info {
    gap: 14px;
    font-size: .8rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 16px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    gap: 14px;
    padding: 26px 18px;
  }

  .stat-num {
    font-size: 2rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    padding: 30px 22px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* ----------------------------------------------------------
   ACCESSIBILITY — reduced motion
---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 10000ms !important;
    transition-duration: .001ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* keyboard focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}