:root {
    --primary: blue;
    --light: #f8f9fa;
    --dark: #222;
    --secondary: rgb(94, 94, 247);   /* optional - used in link hover */
    --light-blue: #4f8df5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, sans-serif;
    background: var(--light);
    color: #333;
}

a { 
    text-decoration: none; 
    color: inherit; 
}

img { 
    max-width: 100%; 
    display: block; 
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ─── Header ─── */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px; /* controls navbar height */
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 85px;           /* make it clearly visible */
    width: auto;
    transform: scale(1.6);  /* IMPORTANT: scales content inside image */
    transform-origin: left center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--light-blue);
    border: 1px var(--light-blue) dashed;
    border-radius: 5px;
    padding: 4px 10px;
}


/* ABOUT INTRO */
.about-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #e5e7eb;
}

.about-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.about-intro p {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cbd5f5;
}

/* TEAM SECTION */
.team-section {
  padding: 90px 0;
  background: #f8fafc;
}

.team-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.team-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  color: #64748b;
  font-size: 1rem;
}

/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* TEAM CARD */
.team-card {
  position: relative;
  background: #f8fafc;
  border-radius: 18px;
  padding: 0px 0px 35px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.team-image {
  width: 100%;
  height: 240px;
  margin: 0 auto 20px;
  /* border-radius: 16px; */
  overflow: hidden;
  background: #e2e8f0;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* z-index: 1000; */
  position: relative;
}

/* NAME & ROLE */
.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.team-card span {
  font-size: 0.95rem;
  color: #64748b;
}

/* LINKEDIN ICON */
.linkedin-icon {
  position: absolute;
  top: 280px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.linkedin-icon img {
  width: 22px;
  height: 22px;
}


/* Footer Wrapper */
.site-footer {
    display: flex;
    flex-direction: column;
    /* min-height: 100vh; */
}

/* Main Footer */
.footer-main {
    background: #fff;
    padding: 4rem 2rem;
}

/* Grid */
.footer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

/* Brand */
.footer-brand img {
    width: 200px;
}

.highlight {
  color: var(--light-blue); /* Blue */
}

.disrupt {
  color: navy; /* Purple */
}
.slogan {
    margin: 1rem 0;
    font-weight: 600;
    color: #333;
    position: relative;
    bottom: 40px;
    left: 20px;
}

.social-icons a {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    color: #333;
    position: relative;
    bottom: 40px;
    left: 20px;
}

/* Sections */
.footer-section h4,
.footer-contact h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    text-decoration: none;
    color: #333;
}

/* Toggle Buttons (mobile only) */
.footer-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: auto;
    background: #3d4652;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}





/* ─── Mobile Menu ─── */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .logo span {
        font-size: 1.3rem;
    }


      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-toggle {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    .footer-brand img{
    margin: auto;
    }

    .footer-heading{
        display: none;
    }

    .footer-section ul {
        display: none;
    }

    .footer-section.active ul {
        display: block;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }


}