@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
}

nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8); /* Sleek black background with slight transparency */
    transition: all 0.4s ease;
    z-index: 1000; /* Ensures the navbar stays above other elements */
}

nav.sticky {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.9); /* Slightly darker when sticky */
}

nav .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: auto;
}

.nav-content .logo a {
    font-size: 35px;
    font-weight: 500;
    color: #fff; /* Default white color */
    transition: color 0.4s ease;
}

nav.sticky .nav-content .logo a {
    color: #fff;
}

.nav-content .nav-links {
    display: flex;
    align-items: center;
}

.nav-content .nav-links li {
    list-style: none;
    margin: 0 8px;
}

.nav-links li a {
    font-size: 18px;
    font-weight: 500;
    color: #fff; /* Default white color */
    padding: 10px 4px;
    transition: all 0.4s ease;
}

.nav-links li a:hover {
    color: #00509e; /* Blue when hovered */
}

nav.sticky .nav-links li a {
    color: #fff;
}
.home {
    height: 100vh;
    width: 100%;
    background: url("/src/images/sponsor\ us.png") no-repeat;
    background-size: cover;
    background-position: center;
  }
  /* Footer Styling */
.footer-container {
    display: flex;
    justify-content: space-between; /* Distribute logo and other sections */
    align-items: center; /* Vertically center the sections */
    padding: 30px;
    background-color: #000;
    color: #fff;
}

.logo-section img {
    display: block;
    margin: 0 auto;
    max-width: 100px; /* Adjust the logo size */
}

.teams-section,
.social-section {
    text-align: left; /* Align titles and content to the left */
    margin: 0; /* Remove extra margin for better alignment */
}

.teams-section {
    margin-right: 240px; /* Place "Follow Us" closer to "Other Teams" */
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.title-underline {
    height: 3px;
    background-color: #007BFF;
    margin: 4px 0; /* Space between underline and text */
    width: 60px; /* Match the title width (adjustable if necessary) */
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

ul li {
    margin-bottom: 10px;
    font-size: 10px; /* Slightly smaller text */
}

ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease-in-out;
}

ul li a:hover {
    color: #007BFF;
}

.social-icons {
    display: flex;
    gap: 15px; /* Space between social icons */
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s, transform 0.3s;
    color: #fff; /* Icon color */
    font-size: 20px; /* Icon size */
}

.social-icons a i {
    display: inline-block;
    line-height: inherit; /* Ensure proper vertical alignment */
    font-size: 18px; /* Adjust icon size */
}

.social-icons a:hover {
    background-color: #007BFF; /* Change circle color on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Alignments for precise positioning */
.footer-container {
    justify-content: flex-start; /* Push logo to the far left */
}

.teams-section,
.social-section {
    display: inline-block;
    vertical-align: top; /* Align sections at the top */
}

.social-section {
    margin-right: 150px; /* Place "Follow Us" right next to "Other Teams" */
}
/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
  }
  
 /* General Styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
  }
  
  /* SPONSOR US Section Styles */
  .sponsor-us-section {
    padding: 60px 20px;
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
    text-align: center;
  }
  
  .sponsor-us-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #3399ff; /* Blue accent color */
  }
  
  .sponsor-us-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px auto;
  }
  
  .sponsor-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px; /* Space between columns */
    margin-bottom: 40px;
  }
  
  .sponsor-details .sponsor-reasons,
  .sponsor-details .current-sponsors {
    flex: 1 1 400px;
    max-width: 500px;
    background-color: #333; /* Dark grey background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Darker shadow */
    text-align: left; /* Left-aligned text */
  }
  
  .sponsor-details h3 {
    font-size: 28px;
    color: #ffffff; /* Blue accent color */
    margin-bottom: 20px;
  }
  
  .sponsor-details ul {
    list-style-type: none; /* Remove default list styles */
    padding: 0;
    margin: 0;
  }
  
  .sponsor-details ul li {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .sponsor-details ul li strong {
    color: #ffffff; /* Blue accent color */
  }
  
  
  .sponsor-contact {
    margin-top: 40px;
  }
  
  .sponsor-contact a {
    color: #ffffff; /* Blue link color */
    text-decoration: none;
  }
  
  .sponsor-contact a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .sponsor-details {
      flex-direction: column;
      align-items: center;
    }
  
    .sponsor-details .sponsor-reasons,
    .sponsor-details .current-sponsors {
      max-width: 100%;
      flex: 1 1 400px;
      max-width: 500px;
      background-color: #333; /* Dark grey background */
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Darker shadow */
      text-align: left; /* Left-aligned text */
    }
  }
  .sponsor-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}
.donation-description, .sponsor-details {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin-top: 20px;
}