body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* --- Navigation --- */
.nav-link,
.nav-link-active {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    transform: translateY(0);
    backdrop-filter: blur(4px);
    background-color: rgba(43, 92, 170, 0.8); /* secondary with opacity */
}

.nav-link:hover {
    background-color: #F37021; /* primary */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-link-active {
    background-color: #F37021; /* primary */
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Scrolled Navbar Style */
#navbar.scrolled {
    background-color: rgba(43, 92, 170, 0.95); /* More opaque secondary */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* --- Hero Section --- */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.get-started-btn {
    background: linear-gradient(45deg, #F37021, #f58a49);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.4);
}

.get-started-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.5);
}

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in { transform: translateY(30px); }
.slide-in-left { transform: translateX(-50px); }
.slide-in-right { transform: translateX(50px); }
.scale-in { transform: scale(0.9); }

.animate-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* --- Card Styles --- */
.info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* Add this to your css/style.css file */

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.logo-pulse {
  animation: pulse 5s ease-in-out infinite;
}