:root{
  --bg-page: #f8f6f3;
  --bg-header: #21201f;
  --var: #ffc107;
  --muted: #666;
  --ring: rgba(0,0,0,.08);
  --radius: 14px;
  --shadow: 0 2px 0 rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  background: var(--bg-page);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
}

/* Header wrapper */
.site-header{ padding: 16px; }
.container{
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  background: var(--bg-header);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 18px;
}

/* Grid layout (desktop) */
.nav-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

/* Brand logo */
.brand img{
  display: block;
  height: 45px;
  width: auto;
}

/* Left & right lists */
.nav-left, .nav-right{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.nav-right{ justify-content: flex-end; }

.nav-left a, .nav-right a{
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight:700;
  opacity: .95;
}
.nav-left a:hover, .nav-right a:hover{
  opacity: 1;
  color:#ffc107 ;
}

.nav-left .active, .nav-right .active{
  color:#ffc107 ;
}

/* CTA */
.btn-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background:#ffc107;
  color: #fff !important;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.btn-cta .badge{
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #2b2b2b;
  font-size: 12px;
  opacity: .9;
}

/* ---------- Projects dropdown (desktop) ---------- */
.has-dropdown{ position: relative; }
.link-caret{ display: inline-flex; align-items: center; gap: 6px; }
.link-caret .caret{ transition: transform .18s ease; }

/* Panel */
.dropdown{
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  background: #fff;
  opacity: 10%;
  color: var(--var);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.12), 0 2px 0 rgba(0,0,0,.04);
  min-width: 520px;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.98);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  border: 1px solid var(--ring);
  z-index: 20;
}

/* Grid cards */
.dropdown-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px;
}
.drop-card{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,.06);
}
.drop-card:hover{ background: #f4f4f4; }
.drop-card .icon{
  width: 40px;
  height: 40px;
  object-fit: contain;   /* keeps logo proportions */
  border-radius: 8px;    /* optional – remove if you want sharp edges */
  background: #fff;      /* for transparent SVG/PNG so it pops */
  border: 1px solid rgba(0,0,0,.06);
  padding: 6px;
}
.drop-card .meta p{
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Footer tiny links */
.dropdown-footer{
  display: flex;
  gap: 12px;
  padding: 10px 2px 2px;
}
.mini-link{ font-size: 12.5px; color: var(--muted); text-decoration: none; }
.mini-link:hover{ text-decoration: underline; }

/* Show on hover / focus */
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown{
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.has-dropdown:hover .caret,
.has-dropdown:focus-within .caret{ transform: rotate(180deg); }

/* ---------- Mobile ---------- */
.nav-toggle{ display: none; }
.hamburger{
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 38px; height: 34px; display: none; cursor: pointer; border-radius: 10px;
  align-items: center; justify-content: center;
}
.hamburger span{
  display: block; height: 2px; background: var(--text); margin: 6px 8px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger span:nth-child(1){ width: 60%; }
.hamburger span:nth-child(2){ width: 80%; }
.hamburger span:nth-child(3){ width: 50%; }

.mobile-panel{
  position: absolute; inset: calc(100% + 8px) 0 auto 0;
  background: var(--bg-header); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 12px; opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.mobile-links{ list-style: none; margin: 0; padding: 6px; display: grid; gap: 8px; }
.mobile-links a{
  display: block; padding: 12px 10px; text-decoration: none; color: var(--text);
  border-radius: 10px; font-weight: 500;
}
.mobile-links a:hover{ background: rgba(0,0,0,0.04); }
.mobile-links .divider{ height: 1px; background: rgba(0,0,0,0.08); margin: 4px 0; }

/* Mobile Projects group */
.mobile-group{ padding: 4px 6px; }
.mobile-group > summary{
  list-style: none; cursor: pointer; padding: 12px 10px; border-radius: 10px; font-weight: 600;
}
.mobile-group[open] > summary{ background: rgba(0,0,0,.04); }
.mobile-group a{ padding-left: 18px; display: flex; align-items: center; gap: 10px; }
.mini-icon{
  width: 18px; height: 18px; object-fit: contain; flex: 0 0 auto;
  background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 4px; padding: 2px;
}
.mobile-group .mini-row{ display: flex; gap: 12px; padding: 4px 10px 10px 18px; }

/* Responsive behavior */
@media (max-width: 900px){
  .nav-left, .nav-right{ display: none; }
  .nav-grid{ grid-template-columns: 1fr auto; }
  .brand{ justify-self: start; }
  .hamburger{ display: inline-flex; background: transparent; }
  .nav-toggle:checked ~ .hamburger span:nth-child(1){ transform: translateY(8px) rotate(45deg); width: 80%; }
  .nav-toggle:checked ~ .hamburger span:nth-child(2){ opacity: 0; }
  .nav-toggle:checked ~ .hamburger span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); width: 80%; }
  .nav-toggle:checked ~ .mobile-panel{ opacity: 1; visibility: visible; transform: translateY(0); }

  /* Don’t show desktop dropdown on touch */
  .has-dropdown .dropdown{ display: none; }
}

/* Optional sticky header */
/* .site-header { position: sticky; top: 0; z-index: 50; } */

a:focus-visible, .hamburger:focus-visible, summary:focus-visible{
  outline: 2px solid #111; outline-offset: 2px; border-radius: 10px;
}
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: sans-serif;
    }

    body {
      margin: 0;
      font-family: sans-serif;
      color: white;
      background-color: #000;
    }

    .hero-intro {
      position: relative;
      width: 100%;
      height: 72vh;              /* adjust height as needed */
      overflow: hidden;
      border-radius: 20px;
      max-width: 1180px;
      margin: 16px auto 0;
      margin-bottom: -10px;
      margin-top: 30px;
      box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }
    .hero-intro img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-intro .intro-overlay{
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.15) 40%, rgba(0,0,0,0));
      pointer-events: none;
    }

    .hero-section {
      height: 100vh;
      background-attachment: fixed;
      position: relative;
      transition: ease-in-out;
    }
    
    .trusted-section {
      position: relative;
      background: #21201f;
      border-radius: 30px;
      padding: 100px 20px;
      text-align: center;
      overflow: hidden;
      max-width: 1200px;
      margin: 80px auto;
    }

    .floating-images {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto 60px;
      position: relative;
      animation: floatUpDown 10s ease-in-out infinite;
    }

    .floating-images img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s;
    }

    .floating-images img:hover {
      transform: scale(1.05);
    }

    @keyframes floatUpDown {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    .trusted-content .badge {
      display: inline-block;
      background: #ffc107;
      padding: 6px 14px;
      font-size: 14px;
      border-radius: 20px;
      color: #ffc107;
      margin-bottom: 10px;
    }

    .trusted-content h2 {
      margin-top: -10px;
      font-size: 2.8rem;
      font-weight: 800;
      color: #ffc107;
    }

    .trusted-content h2 span {
      color: #b4b4b4;
    }

    .trusted-content p {
      color: #555;
      font-size: 1.1rem;
      max-width: 600px;
      margin: 20px auto;
    }

    .cta-button {
      display: inline-block;
      background-color: #000;
      color: #fff;
      padding: 14px 28px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .cta-button:hover {
      background-color: #ffc107;
    }

    @media (max-width: 768px) {
      .floating-images {
        gap: 20px;
      }
      .floating-images img {
        width: 80px;
        height: 80px;
      }
      .trusted-content h2 {
        font-size: 2rem;
      }
    }
       * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 0;
}
.curved-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.image-column {
  position: relative;
  flex: 1 1 400px;
  min-width: 300px;
}

.image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 80%;
}

.quote p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.quote span {
  font-size: 0.9rem;
  opacity: 0.85;
}

.text-column {
  flex: 1 1 500px;
  padding: 50px 40px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-column h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
}

.description {
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #555;
}

.accordion {
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  color: #555;
  border-bottom: 1px solid #ddd;
}

.accordion-item input {
  display: none;
  color: #555;
}

.accordion-item label {
  color: #111;
  font-weight: 600;
  padding: 12px 0;
  display: block;
  cursor: pointer;
  position: relative;
}

.accordion-item .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.accordion-item input:checked ~ .content {
  color: #555;
  max-height: 200px;
  padding: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .curved-section2 {
    flex-direction: column;
    border-radius: 20px;
  }

  .text-column {
    padding: 30px 20px;
  }

  .quote {
    font-size: 0.95rem;
    padding: 15px;
  }
}