/* ===============================
   VARIABLES & RESET
=============================== */
:root {
  --bg: #ffffff;
  --fg: #E88C00; /* Primary yellow */
  --muted: #333333;
  --accent: #0000ff;
  --surface: #f9f9f9;
  --nav-height: 72px;
  --transition: 0.4s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--muted); line-height: 1.6; overflow-x: hidden; }

.container { max-width: 1200px; margin: auto; padding: 0 20px; }

img { max-width: 100%; height: auto; }

/* ===============================
   NAVBAR
=============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: #0a0a0a;
  display: flex; align-items: center;
  z-index: 1200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.nav-inner { width: 100%; display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 900; color: #fff; text-decoration: none; font-size: 1.1rem; }

.logo-img { height:36px; transition: transform var(--transition); }
.logo:hover .logo-img { transform: scale(1.05); }

.nav-list { display: flex; gap: 22px; list-style: none; }

.nav-list li a {
  color: var(--fg); text-decoration: none; font-weight: 500; position: relative; transition: color var(--transition);
}

.nav-list li a::after {
  content: ""; position: absolute; left:0; bottom:-4px; width:0%; height:2px;
  background: var(--accent); transition: width var(--transition);
}

.nav-list li a:hover::after { width:100%; }
.nav-list li a.active { color: var(--accent); }

.contact-link {
  color:#fff; background: var(--accent); border: 2px solid var(--accent);
  padding:8px 14px; border-radius:999px; font-weight:700; text-decoration:none;
  transition: all var(--transition);
}

.contact-link:hover { background:transparent; color: var(--accent); transform: translateY(-1px); }

/* ===============================
   HAMBURGER MENU
=============================== */
.nav-toggle {
  display: none; 
  background:none; 
  border:none; 
  color: var(--fg); 
  font-size:1.8rem; 
  cursor:pointer; 
  position: relative;
  z-index: 1400;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px 0;
  background: var(--fg);
  transition: all 0.4s ease;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--accent); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--accent); }

/* ===============================
   MOBILE NAV PANEL
=============================== */
@media(max-width:700px) {
  .nav-toggle { display:block; }

  .nav-list {
    position: fixed;
    top: var(--nav-height);
    left: -240px;
    width: 240px;
    height: auto; /* fits content only */
    background: #0a0a0a;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: left 0.4s ease;
    z-index: 1300;
  }

  .nav-list.show { left:0; }

  .nav-list li a { font-size: 1.1rem; color:#E88C00; }

  .contact-link { display:inline-block; text-align:left; }
}

/* ===============================
   HERO
=============================== */
.hero-section { padding: 120px 0 60px; text-align: center; background: var(--surface); height: 100vh; }

.hero-content { width: 100%; height: 100%; display:flex; justify-content:center; align-content:space-around; flex-direction:column; }

.hero-headline { font-size:2.5rem; color:var(--muted); margin-bottom:20px; }
.hero-subtext { font-size:1.2rem; color:#555; }

/* ===============================
   STORY SECTION
=============================== */
.story-section { padding:80px 0; }
.story-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:40px; align-items:center; }
.story-text h2 { font-size:2rem; margin-bottom:15px; color:var(--fg); }
.story-text h3 { margin-top:20px; font-size:1.3rem; color:var(--muted); }
.story-text p { margin-top:10px; font-size:1rem; color:#555; }
.story-img { position:relative; }
.story-img img { width:100%; border-radius:8px; }
.story-img .overlay { position:absolute; top:0; left:0; width:100%; height:100%; background: rgba(232,140,0,0.1); border-radius:8px; }

/* ===============================
   VALUES
=============================== */
.values-section { padding:80px 0; position:relative; color:#fff; }
.values-section .banner-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background: rgba(232,140,0,0.9); z-index:1; }
.values-section .container { position:relative; z-index:2; }
.values-section h2 { text-align:center; font-size:2rem; margin-bottom:40px; }
.values-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:20px; }
.value-card { background: rgba(255,255,255,0.1); padding:30px 20px; text-align:center; font-weight:500; border-radius:8px; transition: transform 0.3s ease, background 0.3s ease; }
.value-card:hover { transform:translateY(-10px); background: rgba(255,255,255,0.2); }

/* ===============================
   CAPABILITIES
=============================== */
.capabilities-section { padding:80px 0; }
.capabilities-section h2 { text-align:center; font-size:2rem; margin-bottom:40px; }
.capabilities-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; }
.cap-card { background: var(--surface); padding:30px 20px; border-radius:8px; text-align:center; font-weight:500; transition: all 0.3s ease; cursor:default; }
.cap-card i { font-size:2rem; color:var(--fg); margin-bottom:15px; }
.cap-card:hover { transform:translateY(-10px); box-shadow:0 10px 20px rgba(0,0,0,0.1); }

/* ===============================
   TEAM SECTION
=============================== */
/* ===============================
   TEAM SECTION (PREMIUM)
=============================== */
.team-section {
  padding: 6rem 0;
  text-align: center;
}

.team-section h2 {
  font-size: 2.6rem;
  margin-bottom: 3rem;
  color: var(--fg);
}

/* ===============================
   LEAD DESIGNER CARD
=============================== */
.lead-team-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--surface, #fff);
  padding: 3rem;
  border-radius: 22px;
  box-shadow: 0 35px 90px rgba(0,0,0,0.18);
  max-width: 1000px;
  margin: 0 auto 4rem;
}

.lead-img img {
  width: 100%;
  border-radius: 80%;
  object-fit: cover;
}

.lead-info h3 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.lead-info p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.8rem;
  color: #333;
}

.lead-socials a {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--fg);
  transition: transform 0.3s ease, color 0.3s ease;
}

.lead-socials a:hover {
  color: var(--accent);
  transform: translateY(-4px);
}

/* ===============================
   TEAM GRID
=============================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.2rem;
}

.team-card {
  background: var(--surface, #fff);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
/* ===============================
   VIEW MY PORTFOLIO BUTTON
=============================== */
.portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;

  padding: 0.85rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;

  color: #fff;
  text-decoration: none;

  background: linear-gradient(135deg, var(--fg), var(--accent));
  border-radius: 999px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-btn i {
  transition: transform 0.35s ease;
}

.portfolio-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

.portfolio-btn:hover i {
  transform: translateX(6px);
}

/* Mobile responsiveness */
@media (max-width: 700px) {
  .portfolio-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
  }
}
/* ===============================
   VIEW MY PORTFOLIO BUTTON (MOBILE SAFE)
=============================== */
.portfolio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-top: 1.5rem;
  padding: 0.85rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;

  color: #fff;
  text-decoration: none;

  background: linear-gradient(135deg, var(--fg), var(--accent));
  border-radius: 999px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-btn i {
  transition: transform 0.35s ease;
}

.portfolio-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

.portfolio-btn:hover i {
  transform: translateX(6px);
}

/* ===============================
   MOBILE / RESPONSIVE FIX
=============================== */
@media (max-width: 700px) {
  .portfolio-btn {
    width: 100%;              /* full width on small screens */
    justify-content: center;  /* center text & icon */
    font-size: 0.95rem;       /* slightly smaller font */
    padding: 0.8rem 2rem;     /* adjusted padding */
  }
}


.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

.team-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border: 3px solid var(--accent);
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.team-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #444;
}

/* ===============================
   RESPONSIVE (700px)
=============================== */
@media (max-width: 700px) {
  .lead-team-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }

  .lead-img img {
    max-width: 260px;
    margin: 0 auto;
  }

  .team-section h2 {
    font-size: 2.1rem;
  }
}
/* Trustees  */
/* ===============================
   TRUSTED BY BRANDS (PROOF)
=============================== */
.proof-section {
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.proof-section h2 {
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  color: var(--fg);
}

/* Wrapper to control overflow */
.proof-section .logo-strip {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  will-change: transform;
}

/* Brand icons */
.proof-section .logo-strip img {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Premium interaction */
.proof-section .logo-strip img:hover {
  transform: scale(1.15);
  opacity: 1;
}

/* ===============================
   FADE EDGES (PREMIUM)
=============================== */
.proof-section::before,
.proof-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.proof-section::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--bg, #fff),
    transparent
  );
}

.proof-section::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--bg, #fff),
    transparent
  );
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 700px) {
  .proof-section h2 {
    font-size: 2rem;
  }

  .proof-section .logo-strip img {
    height: 30px;
  }

  .proof-section::before,
  .proof-section::after {
    width: 60px;
  }
}

/* ===============================
   CTA SECTION
=============================== */
.cta-section {
  background: linear-gradient(135deg, var(--accent), var(--fg));
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
  border-radius: 20px;
  margin: 6rem auto;
  max-width: 900px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.25);
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.85);
}

/* ===============================
   CTA BUTTON WITH GRADIENT GLOW
=============================== */
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--fg));
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Glow effect using pseudo-element */
.cta-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(270deg, var(--accent), var(--fg), var(--accent));
  filter: blur(20px);
  opacity: 0.7;
  z-index: -1;
  border-radius: 50px;
  animation: glowing 3s linear infinite;
}

/* Hover effect */
.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.cta-btn:hover::before {
  opacity: 1;
  filter: blur(25px);
}

/* Glow animation */
@keyframes glowing {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 700px) {
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 2.2rem;
  }

  .cta-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

/* ===============================
   FOOTER
=============================== */
.site-footer { background:var(--fg); color:#fff; padding:48px 20px 26px; margin-top:40px; font-size:14px; }
.footer-top { display:grid; grid-template-columns:minmax(220px,1fr) repeat(3,minmax(160px,1fr)); gap:32px; }
.footer-logo { font-weight:900; font-size:1.2rem; margin-bottom:10px; display:block; }
.footer-desc { color:#f0f0f0; line-height:1.6; margin-bottom:12px; }
.footer-links h4 { margin-bottom:12px; font-weight:700; }
.footer-links ul { list-style:none; padding-left:0; }
.footer-links ul li { margin-bottom:6px; }
.footer-links ul li a { color:#fff; text-decoration:none; transition:color var(--transition); }
.footer-links ul li a:hover { color:var(--accent); }
.footer-bottom { margin-top:28px; border-top:1px solid rgba(255,255,255,0.2); padding-top:16px; display:flex; flex-wrap:wrap; justify-content:center; font-size:1rem; }
.socials { display:flex; gap:14px; }
.socials a { color:#fff; text-decoration:none; transition:color var(--transition); }
.socials a:hover { color:var(--accent); transform:translateY(-2px); }

/* ===============================
   RESPONSIVE GRID & TEXT
=============================== */
@media(max-width:768px){
  .story-grid, .founder-grid, .values-grid, .capabilities-grid, .team-grid, .footer-top {
    grid-template-columns:1fr !important;
  }
  .hero-headline { font-size:1.9rem; }
  .hero-subtext { font-size:1rem; }
}

/* Small phones */
@media(max-width:480px){
  .hero-headline { font-size:1.6rem; }
  .cta-btn { padding:12px 24px; font-size:0.95rem; }
}
/* ===============================
   GLOBAL SCROLL REVEAL ANIMATION
=============================== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional variations */
.reveal.fade-left {
  transform: translateX(-60px);
}

.reveal.fade-right {
  transform: translateX(60px);
}

.reveal.fade-left.active,
.reveal.fade-right.active {
  transform: translateX(0);
}
