@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/WEBSITE.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" */
}
/* 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" */
}
.new-section h2 {
    font-size: 40px; /* Increase title size */
    font-weight: bold;
    margin-bottom: 20px;
    color: #3399ff;
  }
  
  .new-section p {
    font-size: 12px; /* Adjust paragraph font size */
    text-align: center; /* Center align text */
    max-width: 600px; /* Limit the width */
    margin: 0 auto; /* Center align block */
  }
  
  .new-section img {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 20px;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow */
    border: 5px solid #00557f; /* Blue border to match theme */
    transition: transform 0.3s; /* Smooth transition for hover effect */
  }
 /* Timeline Styles (remains untouched) */
.timeline {
    margin-top: 40px;
    position: relative;
    max-width: 800px;
    margin: 0 auto; /* Center the timeline */
    padding: 20px;
    border-left: 3px solid #3399ff; /* Blue timeline line */
}

.timeline h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3399ff; /* Lighter blue accent color */
    text-align: center; /* Center the header */
}

.timeline .description {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px; /* Space between description and timeline */
    text-align: center; /* Align description text to the left */
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.5s ease-out;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: #3399ff;
    border-radius: 50%;
}

.timeline-item.slide-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-date {
    position: absolute;
    left: -140px;
    top: 0;
    width: 120px;
    background-color: #3399ff;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 5px 10px;
    font-weight: bold;
}

.timeline-content {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    color: #fff;
    margin-bottom: 20px; /* Space for images */
}

.timeline-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #3399ff; /* Lighter blue accent color */
}

.timeline-content p {
    font-size: 18px;
    margin-bottom: 10px;
}

.timeline-image {
    display: block;
    margin: 10px auto 0;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
}
