

    * {margin:0; padding:0; box-sizing:border-box;}
    body {
      font-family: 'Nunito', sans-serif;
        background: white;
      min-height:200vh;
    }
    html {
  scroll-behavior: smooth;
}

  :root{
    --brand:#203162;
    --accent:#3a4f85;
    --bg:#ffffff;
    --card-bg:#203162;
    --muted:#6b7a99;
    --radius:20px;
    --maxw:1700px;
    --ease: cubic-bezier(.16,.9,.3,1);
  }

  body {
  font-family: 'Quicksand', sans-serif; /* For paragraphs and general text */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Agrandir', sans-serif; 
}


:root { --glass-bg: rgba(255,255,255,0.06); --glass-border: rgba(255,255,255,0.08); --accent: #00bcd4; --accent2:#7c3aed; --fg:#ffffff; }

  .loader-2 { position:fixed; inset:0; z-index:99999; display:flex; align-items:center; justify-content:center; background: linear-gradient(180deg,#071029 0%, #081226 60%); font-family: Inter, system-ui, sans-serif; color:var(--fg); }

  .glass-wrap {
    width: min(88vw, 560px);
    max-width:560px;
    padding: clamp(18px, 3vw, 28px);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
    border: 1px solid var(--glass-border);
    box-shadow: 0 18px 80px rgba(2,8,20,0.6);
    display:flex; gap:20px; align-items:center; position:relative; overflow:visible;
    backdrop-filter: blur(6px);
  }

  .rings { width:120px; height:120px; position:relative; flex:0 0 120px; }
  .ring-svg { width:100%; height:100%; overflow:visible; position:absolute; left:0; top:0; }
  .ring-svg circle { fill:none; stroke: rgba(255,255,255,0.06); stroke-width:6; stroke-linecap:round; transform-origin:center; stroke-dasharray: 280; stroke-dashoffset: 280; }

  .ring-a circle { stroke-width:6; animation: ringA 1.8s cubic-bezier(.2,.9,.2,1) forwards; }
  .ring-b circle { stroke-width:5; animation: ringB 1.6s cubic-bezier(.2,.9,.2,1) .15s forwards; }
  .ring-c circle { stroke-width:4; animation: ringC 1.4s cubic-bezier(.2,.9,.2,1) .3s forwards; }

  @keyframes ringA { to { stroke-dashoffset: 60; stroke: var(--accent); } }
  @keyframes ringB { to { stroke-dashoffset: 80; stroke: var(--accent2); } }
  @keyframes ringC { to { stroke-dashoffset: 160; stroke: linear-gradient(90deg,#00bcd4,#7c3aed); stroke: #ffd; } }

  .glass-content { flex:1; display:flex; flex-direction:column; gap:8px; align-items:flex-start; justify-content:center; min-width:220px; }
  .brand { font-size: clamp(18px, 2.2vw, 22px); font-weight:800; letter-spacing: -0.01em; color:var(--fg); }
  .progress { display:flex; align-items:baseline; gap:6px; font-weight:800; font-size: clamp(34px, 6vw, 42px); color:var(--fg); }
  .progress small { font-size: 14px; font-weight:600; opacity:0.75; }

  .tag { color: rgba(255,255,255,0.85); font-size: clamp(13px, 2vw, 16px); }

  /* exit */
  body.loaded .loader-2 { opacity:0; transform: translateY(-8px); transition: opacity .5s ease, transform .5s ease; pointer-events:none; }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .ring-svg circle { animation:none !important; stroke-dashoffset:0 !important; }
  }

  /* responsive */
  @media (max-width:520px) {
    .glass-wrap { padding:14px; gap:12px; }
    .rings { display:none; }
    .glass-content { align-items:center; text-align:center; }
  }

  

/* ===== Scroll Progress Bar ===== */
    #progress-bar {
      position:fixed;
      top:0;
      left:0;
      height:4px;
      width:0;
      background:#203162;
      z-index:3000;
      transition:width 0.25s ease;
    }


      /* ===== Navbar ===== */
    .navbar {
      position:sticky;
      top:0;
      height: 140px;
      width:100%;
      background:white;
      backdrop-filter:blur(12px);
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 5%;
      z-index:1500; /* below overlay and mobile menu */
      /* box-shadow:0 4px 12px rgba(0,0,0,0.05); */
      transition:all 0.3s ease;
    }

    .navbar img { height:278px; transition:transform 0.3s ease, filter 0.3s ease; }
    .navbar img:hover { transform:scale(1.08); filter:drop-shadow(0 0 6px #203162); }

    /* ===== Nav Links ===== */
    .nav-links { display:flex; align-items:center; gap:32px; }
    .nav-links a {
      text-decoration:none; color:#203162; font-weight:500;
      position:relative; transition:color 0.3s ease;
    }
    .nav-links a::after {
      content:""; position:absolute; left:0; bottom:-4px; width:0; height:2px; background:#203162;
      transition:width 0.3s ease;
    }
    .nav-links a:hover::after { width:100%; }
    .nav-links a.active { font-weight:600; }

    /* ===== Dropdown ===== */
    .dropdown { position:relative; }
    .dropdown-content {
      position:absolute; top:150%; left:0; min-width:180px;
      background:#203162; border-radius:8px; box-shadow:0 4px 20px rgba(0,0,0,0.15);
      opacity:0; visibility:hidden; transform:translateY(10px);
      transition:opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.7s;
    }
    .dropdown:hover .dropdown-content {
      opacity:1; visibility:visible; transform:translateY(0);
      transition:opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
    }
    .dropdown-content a {
      display:block; padding:10px 16px; color:#fff; text-decoration:none; font-size:15px;
      transition:background 0.3s ease, padding-left 0.3s ease;
    }
    .dropdown-content a:hover { background:#2c478a; padding-left:20px; }

    /* ===== Book Now Button ===== */
    .book-btn {
      background:linear-gradient(135deg, #203162, #3a4f85);
      color:#fff; padding:10px 20px; border-radius:30px; text-decoration:none; font-weight:600;
      transition:all 0.3s ease; box-shadow:0 4px 12px rgba(32,49,98,0.3);
    }
    .book-btn:hover { box-shadow:0 6px 18px rgba(32,49,98,0.5); transform:translateY(-2px); }

    /* ===== Mobile Menu ===== */
    .hamburger {
      display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:3500; position:relative;
    }
    .hamburger span { width:26px; height:3px; background:#203162; border-radius:2px; transition:all 0.3s ease; }
    .hamburger.active span:nth-child(1){ transform:rotate(45deg) translate(5px,5px); }
    .hamburger.active span:nth-child(2){ opacity:0; }
    .hamburger.active span:nth-child(3){ transform:rotate(-45deg) translate(5px,-5px); }

    /* Overlay (hidden by default) */
    .overlay {
      position:fixed; inset:0; background:rgba(0,0,0,0.48);
      opacity:0; visibility:hidden; transition:opacity 0.28s ease, visibility 0.28s;
      z-index:1750; /* above navbar (1500) but below mobile menu (2000) */
    }
    .overlay.show { opacity:1; visibility:visible; }

    .mobile-menu {
      position:fixed; top:0; right:-100%; width:320px; max-width:80vw; height:100vh;
        background:  #203162 ; box-shadow:-6px 0 30px rgba(0,0,0,0.12);
      display:flex; flex-direction:column; padding:80px 20px 20px; gap:20px;
      transition:right 0.38s cubic-bezier(.22,.9,.18,1);
      z-index:2000; /* above overlay & navbar */
    }
    .mobile-menu.open { right:0; }

    /* Close button inside drawer */
    .close-btn {
      position:absolute; top:18px; right:18px; font-size:28px; font-weight:700;
      color:#fff; cursor:pointer; transition:color .2s;
    }
    .close-btn:hover { color:#5a77be; }

    .mobile-menu a {
      color:#fff; font-size:18px; text-decoration:none; position:relative; transition:color .2s;
    }
    .mobile-menu a::after {
      content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:#203162; transition:width .25s;
    }
    .mobile-menu a:hover::after { width:100%; color: #5a77be; }

    /* Mobile dropdown */
    .mobile-dropdown { position:relative; }
    .mobile-dropdown-content {
      max-height:0; opacity:0; overflow:hidden; background:#203162; border-radius:6px;
      transition:max-height 0.45s ease, opacity 0.32s ease;
    }
    .mobile-dropdown.open .mobile-dropdown-content { max-height:300px; opacity:1; }
    .mobile-dropdown-content a {
      display:block; padding:10px 16px; color:#fff; text-decoration:none; font-size:15px;
      transition:background .2s, padding-left .25s;
    }
    .mobile-dropdown-content a:hover { background:#2c478a; padding-left:20px; }

    @media (max-width:900px) {
      .nav-links, .book-btn { display:none; }
      .hamburger { display:flex; }
    }

    /* Prevent page scroll when menu open (applied via JS class on body) */
    body.menu-open { overflow:hidden; touch-action:none; }

/* ////////////////////////About Us Page //////////////////////*/


        :root { --maxw:1200px; --accent-blue: #0ea5e9; --bg-dark: #203162; --crumb-bg: #0b4fa0; }

  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

  .services-hero {
    background: var(--bg-dark);
    color: #fff;
    padding: clamp(56px, 10vw, 120px) 0;
    display: flex;
    align-items: center;
  }

  .services-inner {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    max-width: 980px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .services-title {
    font-size: clamp(2rem, 6.6vw, 3.4rem);
    line-height: 1.02;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    font-size: 6rem;
  }

  .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    color: rgba(255,255,255,0.9);
    font-weight: 700;
    font-size: clamp(.9rem, 2.2vw, 1.02rem);
  }

  .breadcrumb .crumb.current {
    background: var(--crumb-bg);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(11,79,160,0.18);
  }

  .breadcrumb .sep { opacity: 0.7; color: rgba(255,255,255,0.75); }

  .services-lead {
    margin: 0;
    max-width: 72ch;
    color: rgba(255,255,255,0.92);
    font-size: clamp(1rem, 2.2vw, 1.14rem);
    line-height: 1.7;
  }

  /* ---------- animation helpers ---------- */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: transform 0.72s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.48s ease var(--delay, 0ms);
    will-change: transform, opacity;
  }
  .animate-item[data-direction="left"]  { transform: translateX(-28px); }
  .animate-item[data-direction="right"] { transform: translateX(28px);  }
  .animate-item[data-direction="top"]   { transform: translateY(-22px);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(22px);   }

  .animate-item.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  /* ---------- responsive ---------- */
  @media (max-width: 920px) {
    .services-inner { padding-inline: 6px; gap: 12px; }
    .services-title { font-size: clamp(4.6rem, 9vw, 2.4rem); }
    .breadcrumb { font-size: .95rem; padding: 7px 12px; }
    .services-lead { font-size: .98rem; padding-inline: 6px; text-align: center; }
  }

  @media (max-width: 520px) {
    .services-hero { padding: clamp(34px, 12vw, 54px) 0; }
    .services-title { font-size: clamp(2.4rem, 12vw, 1.8rem); }
    .breadcrumb { font-size: .92rem; }
  }

  /* prefers reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
  }





/* ================= Company Section ================= */
:root {
    --maxw: 1200px;
    --brand: #203162;
    --muted: #475b7a;
    --accent: #ff8c2b; /* orange label */
    --card-bg: #fff;
  }

  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

  .about-section {
    background: linear-gradient(180deg,#fbfdff,#fff);
    padding: clamp(44px, 6.5vw, 96px) 0;
    color: var(--brand);
    overflow: hidden;
  }

  .about-inner { padding-inline: 4px; }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* text left, image right */
    gap: clamp(20px, 4vw, 44px);
    align-items: center;
  }

  /* TEXT */
  .about-text { max-width: 72ch; }
  .about-text h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    margin: 0 0 12px;
    font-weight: 900;
    color: var(--brand);
    line-height: 1.05;
  }

  .about-paragraph {
    color: var(--muted);
    font-size: clamp(0.98rem, 1.8vw, 1.05rem);
    line-height: 1.7;
    margin: 0 0 16px;
  }

  /* MEDIA (image + label) */
  .about-media {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap: 12px;
  }

  .about-media img {
    width:100%;
    max-width: 520px;
    height: auto;
    display:block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 18px 56px rgba(8,18,48,0.12);
  }

  /* label beneath image: orange, NO border-radius */
  .about-label {
    display:inline-block;
    background: var(--accent);
    color: #fff;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1px;
    align-self: stretch;
    text-align: center;
    box-shadow: 0 8px 28px rgba(32,49,98,0.08);
  }

  /* ---------- reveal animation helpers ---------- */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: transform 0.72s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.48s ease var(--delay, 0ms);
    will-change: transform, opacity;
  }
  .animate-item[data-direction="left"]  { transform: translateX(-32px); }
  .animate-item[data-direction="right"] { transform: translateX(32px);  }
  .animate-item[data-direction="top"]   { transform: translateY(-26px);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(26px);   }

  .animate-item.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  /* Responsive: stack on small screens */
  @media (max-width: 920px) {
    .about-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-media { order: -1; } /* image first on mobile; change if you prefer text first */
    .about-media img { max-width: 92%; }
    .about-label { align-self: center; width: auto; border-radius: 0; } /* keep no radius */
  }

  @media (max-width: 520px) {
    .about-section { padding: clamp(28px, 8vw, 56px) 0; }
    .about-text h2 { font-size: clamp(1.4rem, 7.5vw, 2rem); }
    .about-paragraph { font-size: clamp(0.95rem, 3.8vw, 1rem); }
    .about-label { font-size: 0.92rem; padding: 10px 12px; }
  }

  /* Respect reduced-motion */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
  }










/* ================= Why Choose Section ================= */
.why-choose-section {
  /* padding: clamp(80px, 8vw, 140px) 20px; */
  padding: 20px;
  background: #203162;
  border-radius: 20px;
  margin: 30px;
  overflow: hidden;
}

.why-choose-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.why-choose-media img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(32,49,98,0.15);
}

.why-choose-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.why-choose-content ul {
  list-style: disc inside;
  color: #fff;
  line-height: 1.7;
}

.why-choose-content li {
  margin-bottom: 18px;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
}

/* Animate Items Base */
.animate-item {
  opacity: 0;
  transform: translateX(0) translateY(0);
  transition: all 0.8s ease-out var(--delay, 0ms);
}

/* Directions */
.animate-item[data-direction="left"] { transform: translateX(-50px); }
.animate-item[data-direction="right"] { transform: translateX(50px); }
.animate-item[data-direction="top"] { transform: translateY(-50px); }
.animate-item[data-direction="bottom"] { transform: translateY(50px); }

/* Trigger animation when in view */
.animate-item.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ================= Responsive ================= */
@media (max-width: 920px) {
  .why-choose-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .why-choose-media img {
    max-width: 90%;
    margin: 0 auto;
  }
  .why-choose-content h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .why-choose-content li {
    font-size: clamp(0.95rem, 4vw, 1rem);
  }
}






/* ---------- AML Section ---------- */
.container { max-width: var(--maxw,1200px); margin: 0 auto; padding: 0 20px; }

.aml-section {
  padding: clamp(48px, 6.5vw, 96px) 0;
  background: linear-gradient(180deg,#fbfdff,#fff);
  color: #203162;
  overflow: hidden;
}

.aml-inner { padding-inline: 4px; }

.aml-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

/* Left text */
.aml-text h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  margin: 0 0 14px;
  line-height: 1.06;
  font-weight: 800;
  color: #132742;
}

.aml-text p {
  margin: 0 0 18px;
  color: #334466;
  font-size: clamp(0.98rem, 1.6vw, 1.06rem);
  line-height: 1.7;
  max-width: 80ch;
}

/* Labels row */
.aml-labels {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.aml-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffeb99; /* soft yellow */
  color: #2a2a2a;
  padding: 8px 14px;
  /* border-radius: 999px; */
  font-weight: 700;
  font-size: clamp(0.85rem, 1.4vw, 0.98rem);
  box-shadow: 0 8px 24px rgba(42,46,70,0.06);
}

/* Right image */
.aml-media { display:flex; align-items:center; justify-content:center; min-height: 180px; overflow: visible; }
.aml-media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 56px rgba(32,49,98,0.10);
  display: block;
  object-fit: cover;
}

/* ---------- Animate helpers (lazy on scroll) ---------- */
.animate-item {
  opacity: 0;
  transform: translateX(0) translateY(0);
  transition: transform 0.7s cubic-bezier(.16,.9,.32,1) var(--delay,0ms),
              opacity 0.48s ease var(--delay,0ms);
  will-change: transform, opacity;
}
.animate-item[data-direction="left"]  { transform: translateX(-36px); }
.animate-item[data-direction="right"] { transform: translateX(36px); }
.animate-item[data-direction="top"]   { transform: translateY(-28px); }
.animate-item[data-direction="bottom"]{ transform: translateY(28px); }

.animate-item.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .aml-grid { grid-template-columns: 1fr; gap: clamp(16px, 5vw, 28px); }
  .aml-media { order: -1; } /* show image first on narrow screens if you prefer; remove if you want text first */
  .aml-media img { max-width: 92%; }
  .aml-text p { max-width: 100%; }
  .aml-labels { justify-content: center; }
}

@media (max-width: 520px) {
  .aml-section { padding: clamp(28px, 8vw, 48px) 0; }
  .aml-text h2 { font-size: clamp(1.3rem, 8vw, 1.8rem); }
  .aml-label { font-size: clamp(0.8rem, 4.5vw, 0.9rem); padding: 8px 12px; }
}

/* ---------- prefers-reduced-motion: skip transitions ---------- */
@media (prefers-reduced-motion: reduce) {
  .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
}






/* ---------- PCRT Section CSS ---------- */
.container { max-width: var(--maxw,1200px); margin: 0 auto; padding: 0 20px; }

/* Section outer */
.pcrt-section {
  padding: clamp(48px, 6.2vw, 96px) 0;
  background: linear-gradient(180deg,#ffffff,#fbfdff);
  color: #203162;
  overflow: hidden;
}

/* Grid: image left, text right */
.pcrt-inner { padding-inline: 4px; }
.pcrt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

/* Image column */
.pcrt-media { display:flex; align-items:center; justify-content:center; min-height:180px; overflow:visible; }
.pcrt-media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 56px rgba(32,49,98,0.10);
  object-fit: cover;
  display:block;
}

/* Text column */
.pcrt-text { max-width: 78ch; }
.pcrt-text h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  margin: 0 0 14px;
  line-height: 1.06;
  font-weight: 800;
  color: #132742;
}
.pcrt-text p {
  margin: 0 0 16px;
  color: #334466;
  font-size: clamp(0.98rem, 1.6vw, 1.06rem);
  line-height: 1.72;
  word-break: break-word;
}

/* ---------- Animation helpers (lazy scroll-in) ---------- */
.animate-item {
  opacity: 0;
  transform: translateX(0) translateY(0);
  transition: transform 0.72s cubic-bezier(.16,.9,.32,1) var(--delay,0ms),
              opacity 0.52s ease var(--delay,0ms);
  will-change: transform, opacity;
}

/* directions */
.animate-item[data-direction="left"]  { transform: translateX(-40px); }
.animate-item[data-direction="right"] { transform: translateX(40px);  }
.animate-item[data-direction="top"]   { transform: translateY(-30px);  }
.animate-item[data-direction="bottom"]{ transform: translateY(30px);   }

/* visible state (add .in-view via JS) */
.animate-item.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .pcrt-grid { grid-template-columns: 1fr; gap: clamp(16px, 6vw, 28px); }
  /* On small screens show image first on top (change if you prefer text first) */
  .pcrt-media { order: -1; }
  .pcrt-media img { max-width: 92%; }
  .pcrt-text { max-width: 100%; padding-inline: 2px; }
}

@media (max-width: 520px) {
  .pcrt-section { padding: clamp(28px, 7.5vw, 48px) 0; }
  .pcrt-text h2 { font-size: clamp(1.4rem,7vw,1.95rem); }
  .pcrt-text p { font-size: clamp(0.92rem,3.6vw,0.98rem); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
}








/* basic container */
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

  .ethics-section {
    padding: clamp(50px, 6vw, 100px) 0;
    background: #fff;
    color: #203162;
    overflow: hidden;
  }

  .ethics-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }

  .ethics-text { flex: 1 1 500px; min-width: 260px; }

  .ethics-text h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.2rem);
    margin: 0 0 8px;
    line-height: 1.06;
    font-weight: 800;
    color: #132742;
  }

  .sub-heading {
    font-size: 1rem;
    color: #666;
    margin-bottom: 18px;
    font-style: italic;
  }

  .ethics-text p {
    margin: 0 0 14px;
    color: #334466;
    font-size: clamp(0.98rem, 1.6vw, 1.06rem);
    line-height: 1.7;
    max-width: 78ch;
  }

  .ethics-text ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
    line-height: 1.6;
    display: grid;
    gap: 12px;
  }

  .ethics-text ul li {
    margin: 0;
    font-size: clamp(0.98rem, 1.4vw, 1rem);
    color: #263953;
  }

  .ethics-image {
    flex: 1 1 400px;
    min-width: 260px;
    text-align: center;
  }

  .ethics-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    display: block;
    box-shadow: 0 18px 56px rgba(32,49,98,0.10);
    object-fit: cover;
  }

  /* ---------- animate-item base ---------- */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: transform 0.68s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.48s ease var(--delay, 0ms);
    will-change: transform, opacity;
  }

  /* starting offsets based on direction */
  .animate-item[data-direction="left"]  { transform: translateX(-28px); }
  .animate-item[data-direction="right"] { transform: translateX(28px);  }
  .animate-item[data-direction="top"]   { transform: translateY(-22px);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(22px);   }

  /* visible state toggled by JS */
  .animate-item.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  /* responsive */
  @media (max-width: 920px) {
    .ethics-section .container {
      flex-direction: column-reverse;
      text-align: center;
      gap: 28px;
    }
    .ethics-image { order: -1; }
    .ethics-image img { max-width: 92%; margin: 0 auto; }
    .ethics-text { max-width: 100%; }
    .sub-heading { text-align: left; margin-left: 6px; } /* keep left alignment for subheading if desired */
  }

  @media (max-width: 520px) {
    .ethics-text h2 { font-size: clamp(1.3rem, 7vw, 1.9rem); }
    .ethics-text p { font-size: clamp(0.92rem, 3.8vw, 0.98rem); }
  }

  /* respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
  }






   /* Container helper */
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

  /* Section wrapper */
  .our-story-section {
    background: #203162;           /* requested background */
    color: #ffffff;
    padding: clamp(48px, 7vw, 96px) 0;
    overflow: hidden;
  }

  .our-story-inner { padding-inline: 4px; }

  /* Grid: image left, text right */
  .our-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
    max-width: calc(var(--maxw) - 40px);
    margin: 0 auto;
  }

  /* Image column */
  .story-media {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .story-media img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    display: block;
    object-fit: cover;
  }

  /* Text column */
  .story-text { max-width: 78ch; }
  .story-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0 0 12px;
    line-height: 1.06;
    font-weight: 800;
    color: #fff;
  }
  .story-text p {
    margin: 0 0 16px;
    color: rgba(255,255,255,0.92);
    font-size: clamp(0.98rem, 1.6vw, 1.06rem);
    line-height: 1.72;
    word-break: break-word;
  }
  .story-text em { font-style: italic; color: rgba(255,255,255,0.95); }

  /* ---------- Animate helpers (lazy on-scroll) ---------- */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: transform 0.72s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.48s ease var(--delay, 0ms);
    will-change: transform, opacity;
  }

  .animate-item[data-direction="left"]  { transform: translateX(-36px); }
  .animate-item[data-direction="right"] { transform: translateX(36px);  }
  .animate-item[data-direction="top"]   { transform: translateY(-28px);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(28px);   }

  .animate-item.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  /* ---------- Responsive: stack for small screens ---------- */
  @media (max-width: 920px) {
    .our-story-grid { grid-template-columns: 1fr; gap: clamp(16px, 6vw, 28px); }
    .story-media { order: -1; }               /* image first on small screens */
    .story-media img { max-width: 92%; }
    .story-text { max-width: 100%; margin-left: 10px; }
  }

  @media (max-width: 520px) {
    .our-story-section { padding: clamp(28px, 8vw, 48px) 0; }
    .story-text h2 { font-size: clamp(1.4rem, 7.5vw, 1.95rem); }
    .story-text p { font-size: clamp(0.92rem, 4vw, 0.98rem); }
  }

  /* Respect users who prefer reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
  }





:root { --maxw: 1200px; --accent: #ffdd57; }

   .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

  .enhance-section {
    background: white; /* requested background */
    color: #203162;
    padding: clamp(48px, 6.5vw, 96px) 0;
    overflow: hidden;
  }

  .enhance-inner { padding-inline: 4px; }

  .enhance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: start;
    max-width: calc(var(--maxw) - 40px);
    margin: 0 auto;
  }

  /* TEXT (left) */
  .enhance-text { max-width: 78ch; }

  .enhance-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0 0 14px;
    line-height: 1.06;
    font-weight: 900;
    color: #203162;
    letter-spacing: -0.01em;
  }

  .enhance-block {
    margin-bottom: 18px;
    color:#203162;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  }
  .enhance-block strong {
    display: block;
    font-weight: 800;
    color: #203162;
    margin-bottom: 6px;
    font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  }
  .enhance-block p {
    margin: 0;
    color: #203162;
    font-size: clamp(0.96rem, 1.4vw, 1rem);
    line-height: 1.6;
  }

  /* IMAGE (right) */
  .enhance-media { display:flex; align-items:center; justify-content:center; min-height:180px; }
  .enhance-media img {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin-top: 100px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.36);
    object-fit: cover;
    display: block;
  }

  /* ---------- animate-item base ---------- */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: transform 0.72s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.48s ease var(--delay, 0ms);
    will-change: transform, opacity;
  }
  .animate-item[data-direction="left"]  { transform: translateX(-30px); }
  .animate-item[data-direction="right"] { transform: translateX(30px); }
  .animate-item[data-direction="top"]   { transform: translateY(-24px); }
  .animate-item[data-direction="bottom"]{ transform: translateY(24px); }

  .animate-item.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  /* responsive: stack on small screens (image first) */
  @media (max-width: 920px) {
    .enhance-grid { grid-template-columns: 1fr; gap: clamp(16px, 6vw, 28px); }
    .enhance-media { order: -1; } /* show image first on mobile */
    .enhance-media img { max-width: 92%; }
    .enhance-text { max-width: 100%; }
  }

  @media (max-width: 520px) {
    .enhance-section { padding: clamp(28px, 8vw, 48px) 0; }
    .enhance-text h2 { font-size: clamp(1.4rem, 7.5vw, 1.9rem); }
    .enhance-block p { font-size: clamp(0.92rem, 4vw, 0.98rem); }
  }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
  }





   /* base footer */
  .finanza-footer {
    background: #203162;
    color: white;
    padding: clamp(28px,5vh,48px) 18px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  }

  .footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: start;
  }

  .footer-card {
    background: transparent;
    padding: 6px 4px;
    min-height: 80px;
    text-align: left;
    box-sizing: border-box;
  }

  .footer-heading {
    margin: 0 0 10px 0;
    font-size: clamp(1.05rem, 2.6vw, 1.28rem);
    font-weight: 800;
    color: white;
  }

  .footer-text {
    margin: 0;
    color: white;
    font-size: clamp(.95rem,1.9vw,1rem);
    line-height: 1.6;
  }

  .icaew-row { display:flex; align-items:center; gap:12px; }
  .icaew-logo {
height: 240px; width: 240px;
margin-top: -70px;
    display:block;
    border-radius:8px;
    /* background: rgba(255,255,255,0.04); */
    padding:6px;
    box-shadow: none;
    object-fit: contain;
  }

  .footer-subheading{
    margin:0 0 8px 0;
    font-weight:800;
    font-size: clamp(1rem, 2.2vw, 1.02rem);
    color:white;
  }

  .footer-list{
    margin:0;
    padding-left:18px;
    color:white;
    font-size: clamp(.98rem,1.9vw,1rem);
    line-height:1.7;
  }
  .footer-list li{ margin-bottom:8px; }

  .footer-contact { margin:6px 0; color:var(--muted-contrast); font-size: .98rem; text-decoration: none; }
  .footer-contact a { color: var(--footer-contrast); text-decoration: underline; text-underline-offset: 3px; }

  .cta-book {
    display:inline-block;
    background: #fff;
    color: #203162;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight:700;
    text-decoration:none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: transform .18s cubic-bezier(.2,.9,.2,1), box-shadow .18s ease;
  }
  .cta-book:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.18); }

  .footer-bottom {
    max-width: var(--max-w);
    margin: 18px auto 0;
    color: var(--muted-contrast-2);
    font-size: .92rem;
    text-align:center;
    padding-top:12px;
    border-top: 1px solid rgba(255,255,255,0.04);
  }

  /* responsive layout */
  @media (max-width: 1100px) {
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 880px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-card { text-align: center; }
    .footer-heading { text-align: center; }
    .footer-text { text-align: center; }
    .icaew-row { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
    .footer-list { padding-left: 0; list-style-position: inside; display: inline-block; text-align: left; }
  }
  @media (max-width: 520px) {
    .icaew-logo { width:240px; }
    .footer-card { padding: 10px 6px; }
    .footer-list { font-size: .95rem; }
  }

  /* ------------------ Reveal animation helpers ------------------ */
  .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .7s ease, transform .8s cubic-bezier(.2,.9,.2,1);
    will-change: transform, opacity;
    transition-delay: var(--delay, 0ms);
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }

  /* directional starting positions */
  .reveal[data-direction="left"]  { transform: translateX(-28px); }
  .reveal[data-direction="right"] { transform: translateX(28px); }
  .reveal[data-direction="top"]   { transform: translateY(-18px); }
  .reveal[data-direction="bottom"]{ transform: translateY(18px); }

  /* when visible reset transform - in-view overrides */
  .reveal.in-view[data-direction="left"],
  .reveal.in-view[data-direction="right"],
  .reveal.in-view[data-direction="top"],
  .reveal.in-view[data-direction="bottom"] {
    transform: translateX(0) translateY(0);
  }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .reveal { transition: none !important; transform: none !important; opacity: 1 !important; }
    .cta-book { transition: none !important; }
  }