*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:#1f2933;
  line-height:1.6;
  background:#f5f7fa;
}

/* HEADER */
header{
  background:#0f172a;
  color:#fff;
}
.header-inner{
  max-width:1100px;
  margin:auto;
  padding:18px 20px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
}
.logo{font-size:20px;font-weight:bold}
nav a{
  color:white;
  text-decoration:none;
  margin-left:18px;
  font-weight:bold;
  font-size:14px;
}
nav a:hover{opacity:.8}

/* LAYOUT */
.container{max-width:1100px;margin:auto;padding:0 20px}
.section{padding:70px 0}

/* HERO */
.hero{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:white;
  padding:110px 20px;
}
.hero h1{font-size:42px;margin:0 0 20px}
.hero p{font-size:18px;max-width:650px}

/* BUTTON */
.btn{
  display:inline-block;
  background:#0f172a;
  color:white;
  padding:14px 22px;
  border-radius:8px;
  text-decoration:none;
  margin-top:15px;
  margin-right:10px;
  font-weight:bold;
}
.btn:hover{background:#020617}
.btn-light{background:white;color:#0f172a}

/* GRID */
.grid{display:grid;gap:28px}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}

/* CARD */
.card{
  background:white;
  padding:28px;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.card h3{margin-top:0}

/* PAGE TITLE */
.page-title{
  background:#e2e8f0;
  padding:50px 20px;
}

/* LIST */
ul{padding-left:20px}

/* FOOTER */
footer{
  background:#0f172a;
  color:#cbd5f1;
  padding:50px 20px;
  margin-top:60px;
}
footer a{color:#cbd5f1;text-decoration:none}
.footer-grid{
  display:grid;
  gap:30px;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.footer-title{color:white;font-weight:bold;margin-bottom:10px}
.copy{
  text-align:center;
  margin-top:30px;
  font-size:14px;
  opacity:.8;
}

/* RESPONSIVE */
@media(max-width:700px){
  .hero h1{font-size:30px}
  nav{margin-top:10px}
  nav a{display:inline-block;margin:6px 10px 0 0}
}

/* ===== TRUST SECTIONS ===== */

.trust-grid{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}

.badge{
  background:#e2e8f0;
  padding:16px;
  border-radius:8px;
  text-align:center;
  font-weight:bold;
  font-size:14px;
}

.highlight{
  background:#ecfeff;
  border-left:6px solid #0891b2;
  padding:20px;
  border-radius:8px;
}

.form-box{
  background:white;
  padding:30px;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  max-width:600px;
}

input, textarea{
  width:100%;
  padding:12px;
  margin-top:8px;
  margin-bottom:18px;
  border:1px solid #cbd5e1;
  border-radius:6px;
  font-size:14px;
}

label{
  font-weight:bold;
  font-size:14px;
}

/* WhatsApp button */

.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:white;
  padding:14px 18px;
  border-radius:50px;
  text-decoration:none;
  font-weight:bold;
  box-shadow:0 6px 16px rgba(0,0,0,.2);
}
/* === GLOBAL IMAGE & PHOTO LAYOUT ADDITIONS — AE INVESTORS SITE === */

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Section image blocks */
.image-block {
  margin-top: 30px;
  margin-bottom: 10px;
}

.image-block img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Three-column gallery */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.photo-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Caption text */
.img-caption {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

/* Hero with background image option */
.hero-image {
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-image .container {
  position: relative;
  z-index: 2;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav .logo a {
  display: flex;
  align-items: center;
}
#google_translate_element {
  margin-left: 20px;
}

.goog-te-gadget {
  font-size: 14px !important;
}
/* Hide Google translate top banner */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}

/* Hide extra branding */
.goog-logo-link {
  display:none !important;
}

.goog-te-gadget span {
  display:none !important;
}

/* Make inline selector clean */
.translate-inline {
  margin-left: 12px;
  font-size: 13px;
}
/* Hide Google translate branding text */
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

.goog-te-gadget {
  font-size: 0 !important;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* translator inline */
.translate-inline {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  white-space: nowrap;
}
.goog-te-gadget select {
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-size: 12px;
}
.lang-switch {
  background-color: #1E40AF; /* Example: a bold blue, change to your preferred color */
  color: #ffffff;            /* White font color */
  font-weight: bold;          /* Make text bold */
  padding: 0.5rem 1rem;       /* Optional: adds spacing inside the selector */
  border: none;               /* Remove default border */
  border-radius: 0.25rem;     /* Optional: rounded corners */
  cursor: pointer;            /* Pointer on hover */
}

.lang-switch option {
  color: #000000; /* Optional: text color inside dropdown options */
}
.trust-grid {
  display: flex;
  gap: 40px; /* space between badges */
  position: relative;
  align-items: center;
}

.badge {
  position: relative;
  padding: 15px 20px;
  background: #f0f0f0;
  border-radius: 8px;
  font-weight: bold;
}

/* Add arrow after each badge except the last one */
.badge:not(:last-child)::after {
  content: '→';  /* simple arrow, can use HTML entity or SVG */
  position: absolute;
  right: -25px;  /* adjust based on gap */
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #333;
}
