



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    scroll-behavior: smooth;
    font-family: 'Helvetica Neue', sans-serif;
  }

  body {
  background-color: #0A0A2A;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
  
  /* Navbar */
  /* Default Navbar */
.navbar {
    width: 100%;
    z-index: 1000;
    background-color: #faf3e0;
    padding: 1rem 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: fixed;
    top: 30;
    left: 0;
    transition: background-color 0.3s ease;

  }
.navbar.transparent,
.navbar.hero-transparent {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.logo img,
.logo svg {
  height: 10px;
  width: auto;
  display: block;
  
}

#logo-img {
    margin-left: -3rem; /* or less */
  }
  
  
  /* Transparent navbar style for hero section */
  .navbar.transparent {
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 10;
    transition: background 0.3s ease;
  }
  .navbar.nav-hidden {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.navbar {
  transition: transform 0.4s ease;
}

  
  .navbar.solid {
    
    box-shadow: 0 1px 10px rgba(0,0,0,0.1);
  }


  .navbar.hero-transparent {
    background-color: transparent !important;
    box-shadow: none !important;
    color: white;
    transition: background-color 0.3s ease;
  }
  
  .navbar.hero-transparent a,
  .navbar.hero-transparent .logo,
  .navbar.hero-transparent button {
    color: white;
  }
    
  
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    justify-content: space-between; /* logo on left, rest on right */
    padding-top: 30px; /* add some top padding */
    margin-right: 70px;
    
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.8rem;
  }
  
  .nav-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    z-index: 10;
    transition: background-color 0.3s ease;
    margin-left: auto; /* pushes nav box away from logo */
    margin-right: 30px; /* space before lang switcher */
  }
  
  /* Make sure nav links inside look good */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
  }

  /* Style on hero section (default) */
.nav-box.transparent {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .nav-box.transparent .nav-links li a {
    color: white;
  }
  
  /* Style after scrolling down */
  .nav-box.solid {
    background: rgba(255, 255, 255, 0.95);
    background-color: #0A0A2A;
  }
  
  .nav-box.solid .nav-links li a {
    color: #222;
  }
  
  
  
  .nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    transition: background 0.3s ease;
  }
  
  .nav-links li a:hover {
    background: white(255, 255, 255, 0.2);
  }
  
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    display: flex;
    height: 100%; /* Make sure it fills the navbar height */
    padding: 0 0.5rem; /* Horizontal spacing between links */
  }
  
  .nav-box.solid .nav-links li a {
  color: white !important;
}

  

 body.about-page #nav-box.nav-box {
  background: #0A0A2A;  /* Apple gray */
}



  
  .lang-switch button {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    color: #333;
    

  }
  
  #lang-options {
    position: absolute;
    top: 110%;
    left: 0;
    background: transparent;  /* no white background */
    border: none;             /* no border */
    box-shadow: none;         /* no shadow */
    min-width: auto;
    padding: 0;
    margin: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
  }
  
  .lang-option-item {
    padding: 2px 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    color: inherit;  /* inherits text color */
  }
  
  .lang-option-item:hover {
    background-color: rgba(0,0,0,0.1); /* subtle highlight */
    border-radius: 4px;
  }
  
  #lang-active-btn {
    background: none;
    border: none;
    padding: 6px 10px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: inherit;
  }
  
  /* Transparent style for hero */
.lang-btn.transparent {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  
  /* Solid style after scrolling */
  .lang-btn.solid {
    background: white;
    color: #222;
    border: 1px solid #ccc;
  }
  
  
   /* Lang part */
  .lang-switcher {
  position: relative;
  display: inline-block;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
  font-weight: 600;
  margin-right: -100px;
}

.lang-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  min-width: 90px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.lang-btn:hover,
.lang-btn:focus {
  border-color: #0077cc;
  background-color: #f0f8ff;
  outline: none;
}

.flag {
  font-size: 18px;
  line-height: 1;
}

.lang-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  min-width: 90px;
  z-index: 1000;
  padding: 4px 0;
  user-select: none;
}

.lang-options button {
  background: none;
  border: none;
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  text-align: left;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 0;
}

.lang-options button:hover,
.lang-options button:focus {
  background-color: #0077cc;
  color: #fff;
  outline: none;
}

.hidden {
  display: none !important;
}

/* === Hamburger menu (next to language) === */
/* === Minimal hamburger — no background === */
.menu-wrapper { position: relative; display: inline-block; margin-left: 8px; }

.icon-btn {
  background: transparent;   /* no box */
  border: none;              /* no border */
  padding: 8px;              /* keeps a11y hit-area */
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 44px;           /* a11y size */
  min-height: 44px;
  color: currentColor;       /* inherits from .transparent/.solid below */
}

.icon-btn .bar {
  width: 20px;
  height: 2px;
  background: currentColor;  /* line color follows button color */
  border-radius: 2px;
  transition: opacity .2s ease;
}

.icon-btn:hover .bar { opacity: .8; }
.icon-btn:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(0,0,0,.15); border-radius: 8px; }

/* Color states synced with navbar scroll logic */
.icon-btn.transparent { color: #fff; }  /* on hero */
.icon-btn.solid { color: #222; }        /* after scroll */

/* Drawer Styles */
.drawer {
  position: fixed;
  top: 0;
  right: -50%; /* hidden initially */
  width: 50%;
  height: 100%;
  background-color: rgb(75, 139, 223);
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.drawer.open {
  right: 0;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 2rem;
}

.drawer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.drawer-menu li a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  color: whitesmoke;
  transition: color 0.2s;
  padding-top: 0.5rem 0;
}

.drawer-menu li a:hover {
  color: #1e3a8a; /* highlight color */
}

/* Overlay behind the drawer */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Menu Toggle Button */
.menu-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1100;
  background: #1e3a8a;
  color: #fff;
  border: none;
  padding: 0.7rem 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 6px;
}



  
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  




/* 1) Make sure the navbar really sits at the top */
.navbar {
  top: 0;                 /* you had `top: 30` (invalid) */
  /* ...keep your other navbar styles */
}

/* 2) Reserve vertical space for the fixed navbar */
:root {
  --nav-h: 110px;         /* adjust to your real header height */
}

/* Easiest: push the whole page down by the header’s height */
body {
  padding-top: var(--nav-h);
}

/* 3) When you jump to a section (e.g., #why-us), keep it below the header */
section[id] {
  scroll-margin-top: var(--nav-h);
}

/* If #why-us is still a bit tight, give it a tiny extra cushion */
#why-us { 
  padding-top: 200px;       /* optional micro buffer */
}


/* ====================
   Sections
   ==================== */
.about-section {
  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  color: lightblue
}

/* Make in-page anchors stop below your fixed navbar */
:root { --nav-h: 96px; }              /* adjust to your header height */
#why-us-hero, #why-us { scroll-margin-top: var(--nav-h); }

/* Fullscreen hero */
.why-us-hero {
  background-color: #0A0A2A; /* Deep blue backdrop */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
 
}

.why-us-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  border-radius: 50px;
  overflow: hidden;
  margin-top: 40px; /* Shift entire container down */
}

.why-us-bg {
  width: 100%;
  display: block;
  border-radius: 50px;
  padding-top: 50px;
}

.trust-section {
  background-color: #0A0A2A; /* deep blue */
  padding: 10px 20px 100px; /* top padding reduced from 100px to 40px */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -100px;
}

.trust-hero img,
.trust-cards img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.trust-hero {
  margin-bottom: 80px;
  text-align: center;
  margin-right: 100px
}

.trust-cards {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  margin-top: -470px;
  margin-right: 60px;
}

.triptych-section {
  background-color: #0A0A2A; /* deep blue background */
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.triptych-images {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Optional: wrap on small screens */
}

.triptych-images img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  border-radius: 24px;
  margin-top: -200px;
}

.stand-section {
  background-color: #0A0A2A;
  color: #FDFDE5;
  padding: 120px 20px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stand-logo img {
  width: 500px; /* or 120px, 140px — test it */
  height: auto;
  margin-bottom: 50px;
  margin-top: -50px;
}

.stand-text {
  width: 100%;
  max-width: 1000px;
  text-align: left;
  margin-right: 200px;
}

.stand-text p {
  font-family: var(--font-owners-black);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.4;
  color: #FDFDE5;
}


/* SECTION WRAPPER */
.two-images-section {
  padding: 80px 0;
}

.two-images-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;   /* keep same top line */
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

/* LEFT IMAGE */
.img-left {
  width: 100%;
  max-width: 600px;          /* make it as big as you want */
  height: auto;
  border-radius: 32px;
  object-fit: cover;         /* if needed */
}

/* RIGHT IMAGE */
.img-right {
  width: 100%;
  max-width: 680px;          /* completely separate size */
  height: auto;
  border-radius: 32px;
  object-fit: cover; 
  margin-top: -20px;        /* if needed */
}

.img-box {
  position: relative;         /* allows absolute elements inside */
  display: inline-block;
}

.img-box img {
  display: block;
  width: 100%;
  border-radius: 32px;
}

/* BUTTON INSIDE IMAGE */
/* ABOUT button */
.cta-btn-about {
  position: absolute;
  left: 40px;
  bottom: 70px;
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  background: #F6EEDC;        /* cream */
  color: rgb(75, 139, 223);             /* blue text */
  font-weight: 700;
  padding: 14px 32px;         /* gives the pill thickness */
  border-radius: 999px;       /* FULL pill shape */
}

/* CONTACT button */
.cta-btn-contact {
  position: absolute;
  left: 80px;
  bottom: 80px;
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  background: #F6EEDC;        /* cream */
  color: rgb(75, 139, 223);             /* blue text */
  padding: 14px 32px;         /* gives the pill thickness */
  border-radius: 999px;       /* FULL pill shape */
  font-weight: 700;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}


/* SECTION: One centered image */
.single-image {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.single-image img {
  width: 100%;
  max-width: 400px;   /* adjust size of center image */
  height: auto;
  border-radius: 20px; /* optional */
}



/* Fade-in (matches your site) */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .6s ease-out, transform .6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ====================
   Footer (keep global feel)
   ==================== */
.site-footer {
  background-color: #111135;
  color: #fff;
  font-family: "owners", sans-serif;
}

.footer-main { padding: 40px 10%; }
.footer-columns { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
.footer-columns h3 { font-size: 1.2rem; margin-bottom: 15px; }
.footer-columns ul { list-style: none; padding: 0; margin: 0; }
.footer-columns ul li { margin-bottom: 8px; }
.footer-columns a { color: #ccc; text-decoration: none; }
.footer-columns a:hover { color: #fff; }

.footer-logo {
  max-width: 120px;   /* safe logo size in footer */
  height: auto;
  display: block;
}

/* Footer language bar + active state */
.footer-lang {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px;
  background-color: #fff;
  color: #333;
  font-size: 0.95rem;
}
.footer-lang span { cursor: pointer; display: flex; align-items: center; gap: 6px; }
.footer-lang span:hover { text-decoration: underline; }
.footer-lang-btn.active { font-weight: 700; text-decoration: underline; }

/* ====================
   Responsive tweaks
   ==================== */
@media (max-width: 980px) {
  #nav-box.nav-box {
    max-width: min(92vw, 820px);
    padding: 10px 14px;
    gap: 1rem;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 20px; /* adjust value until it looks right */
  }
  .nav-links li a { padding: 7px 10px; }
}

@media (max-width: 768px) {
  #logo-img { height: 48px; }
  .section-content h2 { font-size: 2rem; }
  .section-content .lead { font-size: 1.05rem; }
  .section-content p { font-size: 1rem; }
}

.section-three {
  background-color: white;
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.section-three-row {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.logo-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.black-logo {
  max-width: 250px;
  height: auto;
}

.blue-box-right {
  flex: 1;
  background-color: #191951; /* dark blue */
  padding: 50px 40px;         /* more padding for rectangle */
  border-radius: 50px;        /* very rounded edges for "circley" style */
  max-width: 500px;           /* wider for rectangle shape */
  min-height: 220px;          /* taller to fit text nicely */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* subtle depth */
  
}

.blue-box-right p {
  color: #fdfbee; /* beige */
  font-family: 'owners', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
}

.thank-you-text {
  font-family: 'tangier', serif; /* your Adobe italic font */
  font-style: italic;
  font-size: 3rem;
  color: #222;
  text-align: center;
  margin-top: 40px;
  font-weight: 800;
}

.bottom-design {
  margin-top: 40px;
  width: 100vw;        /* full viewport width */
  position: relative;  /* optional if you need absolute positioning */
  left: 0;             /* make sure it aligns with the left edge */
}

.toplar-img {
  width: 100vw;        /* spans entire screen */
  height: auto;        /* maintain aspect ratio */
  display: block;
  object-fit: cover;   /* optional, fills container nicely */
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .section-three-row {
    flex-direction: column;
    gap: 30px;
  }

  .blue-box-right {
    text-align: center;
  }
}










/* ===== Global Font Setup (Adobe Fonts: Tangier + Owners) ===== */

:root {
  --font-tangier-bold: "tangier", sans-serif;           /* 700 normal */
  --font-owners-regular: "owners", sans-serif;          /* 400 normal */
  --font-owners-medium: "owners", sans-serif;           /* 500 normal */
  --font-owners-medium-italic: "owners", sans-serif;    /* 500 italic */
  --font-owners-bold: "owners", sans-serif;             /* 700 normal */
  --font-owners-bold-italic: "owners", sans-serif;      /* 700 italic */
  --font-owners-black: "owners", sans-serif;            /* 800 normal */
  --font-owners-black-italic: "owners", sans-serif;     /* 800 italic */
}

/* Base text */
html, body {
  font-family: var(--font-owners-regular);
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Form elements inherit font */
button, input, select, textarea {
  font-family: inherit;
}

/* =====================================================
   LAST PAGE — MOBILE NAVBAR ONLY
   ===================================================== */

@media (max-width: 768px) {

  /* Hide desktop nav links */
  #nav-box {
    display: none !important;
  }

  /* Compact navbar */
  .navbar {
    padding: 10px 16px;
  }

  .nav-container {
    padding-top: 0;
    margin-right: 0;
    align-items: center;
  }

  #logo-img {
    width: 120px;
    margin-left: 0;
  }

  .lang-switcher {
    margin-right: 0;
  }

  .menu-wrapper {
    margin-left: 6px;
  }

  /* Kill desktop body padding hack */
  body {
    padding-top: 0;
  }
}

/* =====================================================
   LAST PAGE — RESET DESKTOP HACKS ON MOBILE
   ===================================================== */

@media (max-width: 768px) {

  .trust-section,
  .trust-cards,
  .trust-hero,
  .triptych-images img,
  .stand-logo img,
  .why-us-container {
    margin-top: 0 !important;
    margin-right: 0 !important;
  }

  .triptych-images {
    gap: 24px;
    justify-content: center;
  }
}
/* =====================================================
   LAST PAGE — TWO IMAGES SECTION (MOBILE)
   ===================================================== */

@media (max-width: 768px) {

  .two-images-wrapper {
    flex-direction: column;
    gap: 32px;
    padding: 0 16px;
  }

  .img-left,
  .img-right {
    max-width: 100%;
    margin-top: 0;
  }
}
/* =====================================================
   LAST PAGE — IMAGE CTA BUTTONS (MOBILE)
   ===================================================== */

@media (max-width: 768px) {

  .cta-btn-about,
  .cta-btn-contact {
    position: static;
    display: inline-block;
    margin-top: 16px;
  }

  .img-box {
    text-align: center;
  }
}
/* =====================================================
   LAST PAGE — TEXT CONTAINMENT (MOBILE)
   ===================================================== */

@media (max-width: 768px) {

  .stand-text {
    margin-right: 0;
    text-align: center;
    padding: 0 16px;
  }

  .stand-text p {
    font-size: 1.2rem;
  }

  .blue-box-right {
    max-width: 100%;
    padding: 32px 24px;
  }

  .section-three {
    padding: 60px 20px;
  }
}



/* =====================================================
   TRUST SECTION — IMAGE GAP FIX (MOBILE ONLY)
   ===================================================== */

@media (max-width: 800px) {

  .trust-cards {
    margin-top: 0 !important;
    gap: 4px !important;      /* was huge visually */
    flex-direction: column;   /* stack cleanly */
    align-items: center;
  }

  .trust-cards img {
    margin: 0 !important;
    max-width: 100%;
  }

  .trust-hero {
    margin-bottom: 1px;      /* tighter spacing above */
  }
}
/* =====================================================
   STAND SECTION — LOGO SCALE FIX (MOBILE ONLY)
   ===================================================== */

@media (max-width: 768px) {

  .stand-logo img {
    width: 300px;     /* ideal mobile size */
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 32px;
  }
}
/* =====================================================
   TRUST SECTION — HERO BIGGER + TIGHTER FLOW (MOBILE)
   ===================================================== */

@media (max-width: 800px) {

  /* 1️⃣ Make Trust Hero image bigger */
  .trust-hero img {
    width: 100%;
    max-width: 95vw;          /* nearly full width */
    transform: scale(1.05);  /* subtle visual boost */
  }

  .trust-hero {
    margin-bottom: 12px !important; /* reduce gap below hero */
    text-align: center;
  }

  /* 2️⃣ Pull cards closer to hero */
  .trust-cards {
    margin-top: -20px !important;   /* ⬆️ key move */
    gap: 8px !important;            /* tight but clean */
    flex-direction: column;
    align-items: center;
  }

  .trust-cards img {
    max-width: 100%;
    margin: 0 !important;
  }
}
