/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {

    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
  }
  
  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
  .brand-main {
    font-family: 'Oswald', sans-serif;
    font-size: 2.1rem; /* Adjust as needed; you can use responsive units too */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em; /* Adjust for visual spacing */
    color: #ffffff; /* Tailwind's blue-700, or your preferred color */
  }

  .brand-tagline {
    font-family: 'Satisfy', sans-serif;
    font-size: 1.15rem; 
    font-weight: 400;
    text-transform: none;
    color: #f0f0f0;
    text-align: center; 
  }

  /* Default header (transparent) */
.main-header {
    background-color: transparent;
    backdrop-filter: blur(0px); /* Optional: Smooth blur effect */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* When scrolled, change background */
.main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.8); /* Dark semi-transparent background */
    backdrop-filter: blur(8px); /* Optional blur effect */
}

  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  .nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
  }
  .nav-menu a:hover {
    color: #9acbff;
  }
  .btn-hover:hover{
    background-color: #9acbff;
  }
  /* HERO SECTION */
  .hero-section {
    background: url('https://via.placeholder.com/1600x900') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 4rem 0;
  }
  .hero-content {
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  .btn-primary:hover {
    background-color: #0056b3;
  }
  
  /* EVENTS SECTION */
  .events-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
  }
  .events-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
  }
  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  .event-card {
    background-color: #fff;
    border: 2px solid #9acbff;
    overflow: hidden;
    box-shadow: 2px 10px 0px -4px #9acbff; /* Slightly stronger shadow on hover */
  }  
  .event-card img {
    width: 100%;
    display: block;
  }
  .card-content h3 {
    padding: 0.4rem 5px;
  }
  .card-content p {
    padding-bottom: 0.5rem;
  }
  .btn-secondary {
    background-color: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  .btn-secondary:hover {
    background-color: #555;
  }
  
  #plan {
    background-color: #00162e;
    padding: 3rem 0;
  }

    #plan h2, #plan h3 {
        color: #fff;
    }

    #plan p {
        color: #fff;
    }
  #plan span {
    color: #9acbff;
  }

  #newsletter span{
    color: #79b9fe;
  }

  #newsletter input{
    border: 1px solid #79b9fe;
  }

  #newsletter button{
    background-color: #79b9fe;
    border: 1px solid #79b9fe;
    color: #ffffff;
  }

  #newsletter button:hover{
    background-color: #5aa7f9;
    border: 1px solid #79b9fe;
    border: 0;
  }
  .swiper-button-disabled {
    cursor: not-allowed;
    pointer-events: all !important;
}
.swiper-wrapper {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes blob {
    0% { transform: translate(0,0) scale(1) }
    33% { transform: translate(30px,-50px) scale(1.1) }
    66% { transform: translate(-20px,20px) scale(0.9) }
    100% { transform: translate(0,0) scale(1) }
}
.animate-blob {
    animation: blob 7s infinite;
}
.animation-delay-2000 {
    animation-delay: 2s;
}

/* Add to your CSS file */
.swiper-container.clients-slider {
    overflow: visible !important;
}

.swiper-wrapper.clients-slider {
    transition-timing-function: linear !important;
}

.clients-slider .swiper-slide {
    transition: transform 0.3s ease;
    width: auto !important;
}

.btn-who:hover{
    background-color: #79b9fe;
}

footer button {
    background-color: #79b9fe;
    border: 1px solid #79b9fe;
    color: #000000;
}

footer button:hover {
    background-color: #5aa7f9;
}