/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  
}


 .hero-section {
  position: relative;
  overflow: hidden;
  color: white;
  text-align: left;
  padding: 100px 20px;
  background-size: contain;
  background-position: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /*background-size: cover;*/
  background-position: center;
  background-repeat: no-repeat;
  /*background-attachment: fixed;*/
  transition: opacity 1.5s ease-in-out;
  background-size: 100% 100%;
  z-index: 1;
  opacity: 1;
}
.hero-bg-1 {
  background-image: url('images/slide1.webp');
}

.hero-bg-1,
.hero-bg-2 {
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}


/* End of hero slide section */

.hero-content {
  display: flex;
  max-width: 1400px; /* Match navbar max-width */
  width: 90%; /* Match navbar width */
  margin: 0 auto; /* Center align */
  align-items: left;
  z-index: 1100;
  box-sizing: border-box;
}

.hero-text {
  flex: 1;
  padding-right: 20px;
  text-align: left;
}


/* Hero Text & Button */
.hero h1,
.hero p,
.hero .buttons {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 2rem;
}

/* Welcome Section */
.welcome {
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: #fff; */
  color: rgb(2, 2, 2);
  margin: 0 auto; /* Center align */
  max-width: 1400px; /* Match navbar max-width */
  width: 90%; /* Match navbar width */
}

.welcome-content {
  display: flex;
  width: 100%;
  max-width: 1400px; /* Match navbar max-width */
  margin: 0 auto; /* Center align */
  align-items: center;
}

.welcome-text {
  flex: 1;
  padding-right: 20px;
  text-align: left;
}

.welcome-text h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.welcome-text p {
  font-size: 2rem;
}

.welcome-media {
  flex: 1;
  text-align: right;
}

.welcome-image,
.welcome-video {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Buttons */
.buttons {
  display: block;
  justify-content: center;
  gap: 15px;
}

button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  align-items: left;
}

/* Base shared style */
.sponsor-btn,
.sponsor-btns {
  box-sizing: border-box; /* ✅ Prevents border from affecting dimensions */
  padding: 12px 24px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
  border-radius: 5px;
  margin: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  min-width: 48px;
  min-height: 48px;
  transition: background 0.3s, color 0.3s;
  box-shadow: none;
}

/* Solid orange button */
.sponsor-btn {
  background-color: #FF6900;
  color: white;
  border: 2px solid #FF6900; /* ✅ Add same border thickness */
}

.sponsor-btn:hover {
  background-color: #e65f00;
  border-color: #e65f00;
  color: white;
}

/* Outline white button */
.sponsor-btns {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.sponsor-btns:hover {
  background-color: white;
  color: black;
}


/*.sponsor-btn {*/
/*  background-color: #FF6900;*/
/*  color: white;*/
/*  padding: 12px 24px;*/
/*  font-weight: bold;*/
/*  font-size: 20px;*/
/*  border-radius: 5px;*/
/*  margin: 8px;*/
/*  text-align: center;*/
/*  text-decoration: none;*/
/*  display: inline-block;*/
/*  min-width: 48px;*/
/*  min-height: 48px;*/
/*  transition: background 0.3s;*/
/*  box-shadow: none;*/
/*}*/

/*.sponsor-btn:hover {*/
/*  background-color: #e65f00;*/
/*  color: white;*/
/*}*/


/*.sponsor-btns {*/
/*  background: transparent;*/
/*  color: white;*/
/*  border: 2px solid white;*/
/*  padding: 12px 24px;*/
/*  font-weight: bold;*/
/*  font-size: 20px;*/
/*  border-radius: 5px;*/
/*  margin: 8px;*/
/*  text-align: center;*/
/*  text-decoration: none;*/
/*  display: inline-block;*/
/*  min-width: 48px;*/
/*  min-height: 48px;*/
/*  transition: background 0.3s, color 0.3s;*/
/*  box-shadow: none;*/
/*}*/

/*.sponsor-btns:hover {*/
/*  background-color: white;*/
/*  color: black;*/
/*}*/


/* Footer Styles */
.footer {
  background-color: #000;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1400px; /* Match navbar max-width */
  width: 90%; /* Match navbar width */
  margin: 0 auto; /* Center align */
  padding: 0 20px;
}

.footer-column {
  flex: 1;
  margin: 0 10px;
  text-align: left;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 10px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #ff9800;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 3px solid #444;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: white;
}

/* Section Title */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 50px;
  max-width: 1400px; /* Match navbar max-width */
  width: 90%; /* Match navbar width */
  margin: 0 auto; /* Center align */
  padding: 0 20px; /* Consistent spacing */
}

.section-title .line {
  flex: 1;
  height: 10px;
  width: 30px;
  background-color: #000;
  margin-right: auto;
}

.section-title h2 {
  margin: 0;
  white-space: nowrap;
}
/* Hamburger Menu Styles */
.hamburger {
  display: none; 
  cursor: pointer;
  margin-left: auto;
  z-index: 1001; 
}


/* Nav Links Styles */
.nav-links {
  display: flex;
  gap: 15px;
  list-style: none;
  margin-left: auto; /* Push links to the right */
}
/* Partners Section */
.partners {
  text-align: center;
  padding: 2rem 0;
}

/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}


/* Partner Logo */
.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}


.partner-logo:hover {
  transform: scale(1.1); /* Slightly enlarge on hover */
  opacity: 0.9; /* Slightly fade on hover */
}

.partner-logo {
  border: 2px solid green; /* Debugging */
}
/* Base hidden state for animations */
.animated {
  opacity: 0;
  transform: translateY(30px); /* Start below and move up */
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* When visible, the element will fade in and move into place */
.animated.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Delay animations for staggered effects */
.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}
/* Campaigns Section */
.campaigns {
  padding: 3rem 1rem;
  background: #f8f9fa;
}

.campaigns-container {
  max-width: 1200px;
  margin: 0 auto;
  max-width: 1400px; /* Match navbar max-width */
  width: 90%; /* Match navbar width */
  margin: 0 auto; /* Center align */
  align-items: left;
  z-index: 1100;
  box-sizing: border-box;

}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.section-title .line {
  flex: 1;
  height: 10px;
  background: #ddd;
  margin: 0 1rem;
  color: #000;
}

.section-title h2 {
  text-align: center;
  color: #000000;
  font-size: 1.8rem;
}

/*#authLinks a,*/
/*#dashboardLinks a,*/
/*#dashboardLinks button {*/
/*  margin-right: 0.5rem;*/
/*}*/

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.campaign-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.campaign-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.campaign-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-content {
  padding: 1.2rem;
}

.campaign-content h3 {
  margin-bottom: 0.5rem;
  color: #222;
  font-size: 1.2rem;
}

.campaign-content p {
  margin-bottom: 1rem;
  color: #271717;
  font-size: 0.9rem;
  line-height: 1.5;
}

.campaign-btn {
  background: #FF6B00;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 90%;
}

.campaign-btn:hover {
  background: #FF6B00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .campaigns {
    padding: 2rem 0.5rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .campaigns-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .campaign-image-container {
    height: 180px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .campaigns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}