:root {
  --dark-bg: #131619;
  --light-bg: #f8f9fa;
  --accent: #d0b36c;
  --text: #2c2c2c;
  --white: #ffffff;
}

/* Base Styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
}

h1, h2, h4 {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 10px;
}
h1 {
  font-size: 3rem;
  color: var(--accent);
}
h2.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--accent);
}
h4 {
  font-size: 1.1rem;
  margin-top: 12px;
}

p, blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: #7b7b7b;
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 40px 20px;
}

/* Navbar: Glass Floating */
.m-glass-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  z-index: 9999;
  padding: 10px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m-logo {
  height: 42px;
}
.m-glass-nav {
  display: flex;
  gap: 28px;
}
.m-glass-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--accent);
  transition: color 0.3s;
}
.m-glass-nav a:hover {
  color: var(--text);
}
.m-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.m-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark-bg);
  display: block;
}

/* Hero Section */
.m-hero {
    height: auto;
  padding-top: 80px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-height: 540px;         /* Reduced from full-screen */
  background: var(--white);
  color: var(--text);
  text-align: center;
  overflow: hidden;
}
.m-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('assets/m-eagle.png');
  background-repeat: repeat;
  background-size: 120px;
  opacity: 0.07;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}
.hero-content h1 {
  margin-bottom: 4px;
}



.hero-sub {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
  margin: 2px 0;

}
.hero-locations {
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 4px;
  font-size: 0.95rem;
  color: var(--accent);
}


/* Hero Logo Reveal */
.hero-logo-reveal {
  display: flex;
  justify-content: center;
    margin-top: 26px;      /* moves logo downward */
  margin-bottom: 4px;    /* space below the logo */
}
.hero-logo-reveal img {
  height: 160px;
  opacity: 0;
  animation: fadeInUp 1.4s ease forwards 0.2s;
  transform: translateY(30px);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-indicator span {
  display: block;
  width: 20px;
  height: 30px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  50% { top: 16px; opacity: 0.3; }
  100% { top: 6px; opacity: 1; }
}

/* Section Base */
.m-section {
  padding: 80px 20px;
}
.alt-bg {
  background: #f4f4f4;
}
.section-lead {
  max-width: 700px;
  margin: 20px auto;
  text-align: center;
  font-size: 1.1rem;
}

/* Parallax Section */
.m-parallax {
  position: relative;
  height: 380px;
  background-image: url('assets/parallax.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.m-parallax-overlay {
  background-color: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-align: center;
  padding: 0 20px;
}

/* Grid Layouts */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.grid.two-cols {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards & Projects */
.card {
  background: var(--white);
  padding: 32px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.card img {
  height: 80px;             /* or 80px if you want them bigger */
  margin-bottom: 20px;
}

.project img {
  width: 100%;
  border-radius: 16px;
}
.project p {
  font-size: 0.95rem;
  color: #666;
}

.btn-container {
  text-align: center;
  margin-top: 15px;
}

.know-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--accent); /* change to your theme color */
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s ease;
}

.know-more-btn:hover {
  background-color: var(--light-bg);
}


/* Blockquote */
blockquote {
  font-size: 1.3rem;
  text-align: center;
  max-width: 700px;
  margin: auto;
  font-style: italic;
  color: #555;
}

/* CTA */
.m-cta {
  background: var(--accent);
  color: var(--white);
  text-align: center;
}
.m-btn {
  display: inline-block;
  margin-top: 20px;
  background: #000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}
.m-btn:hover {
  background: #333;
}

/* Timeline */
.timeline {
  border-left: 3px solid var(--accent);
  margin: 40px 0;
  padding-left: 30px;
  position: relative;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -13px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
}
.timeline-year {
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}

/* Partner Strip */
.partner-strip {
  overflow-x: hidden;
  position: relative;
  padding: 20px 0;
}
.partner-track {
  display: flex;
  gap: 30px;
  animation: scrollLogos 20s linear infinite;
}
.partner-track img {
  height: 190px;
  transition: filter 0.3s;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Awards */
/* Lightbox Modal */
.modal {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.8);
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  cursor: zoom-out;
  padding: 20px;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


.award {
  text-align: center;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.award img {
  height: 150px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.award p {
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
  margin: 0;
}

.award:hover img {
  transform: scale(1.08);
}

/* Footer */
.m-footer {
  background: #0f0f0f;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .m-glass-nav {
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 12px;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    display: none;
  }
  .m-glass-nav.active {
    display: flex;
  }
  .m-menu-toggle {
    display: flex;
  }
  .m-hero {
    padding-top: 140px;
  }
  .grid {
    grid-template-columns: 1fr !important;
  }
  .timeline {
    padding-left: 20px;
  }
}
