
:root {
    --primary-blue: #3b82f6;
    --secondary-gold: #f59e0b;
    --accent-green: #10b981;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-2.jpg');
    background-size: cover;
    background-position: center;
    min-height: 87vh;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    padding: 2rem;


}

.kite-float {
    animation: kiteFloat 6s ease-in-out infinite alternate;
}

@keyframes kiteFloat {
    0% {
        transform: translateY(0) rotate(-5deg);
    }
    100% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.fade-in {
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.program-card {
    transition: all 0.3s ease;
}

.marquee-banner {
  position: absolute;       
  top: 0;                   
  left: 0;
  width: 100%;
  background-color: #f87171; 
  color: white;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 0.5rem 0;
  overflow: hidden;
  z-index: 60;              
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.marquee-banner p {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;       
  animation: marquee 15s linear infinite;
  font-size: 1.1rem;
}

/* marquee animation */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
blockquote.text-gray-600 {
    position: relative;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-left: 4px solid #e2e8f0;
    font-style: italic;
    margin-bottom: 1rem;
}
blockquote .founder {
    display: inline-block;
    margin-top: 0.75rem;
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
blockquote .founder:hover {
    color: #04c766;
    text-decoration: underline;
}
blockquote.text-gray-600:hover {
    background-color: #f1f5f9;
    transition: background-color 0.3s ease;
}


