@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Syne:wght@400..800&display=swap');

:root {
    --accent-color: #f8f9fa;
    --navbar-bg: #212529;
    --nav-link-hover: #4a7c59;
    --btn-hero-border: #fff;
    --btn-hero-bg-hover: #fff;
    --btn-hero-color-hover: #000;
    --overlay-dark: #000000a6; /* approximate hex for rgba(0,0,0,0.5) */
}

.body{
    font-family: Poppins, sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.team-title{
    margin-top: 150px;
}

.hero-logo {
  height: 30px; /* Adjust size as needed */
  width: auto;
  object-fit: contain;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Background video styling */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Like background-size: cover */
  z-index: -2;
}

/* Dark overlay */
.hero-overlay {
  background: linear-gradient(var(--overlay-dark), var(--overlay-dark));
  z-index: -1;
}

.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: var(--navbar-bg) !important;
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
}

.navbar-nav .nav-link {
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--nav-link-hover) !important;
}

.hero-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 800px;
}

.btn-hero {
    border: 2px solid var(--btn-hero-border);
    color: var(--btn-hero-border);
    padding: 12px 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background: var(--btn-hero-bg-hover);
    color: var(--btn-hero-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #ffffff4d; /* approximate for rgba(255,255,255,0.3) */
}

.content-section {
    padding: 80px 0;
    background: var(--accent-color);
}

.stats-section {
    height: 40vh;
    background: url('/assets/images/background.jpg') center/cover no-repeat;
}

@media (width < 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}
