@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/outreach.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 */
}

/* Fade-In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* BANNER Section Styles */
.banner-section {
    text-align: center;
    margin: 40px 0 20px 0; /* Added margin on top */
}

.banner-image {
    width: 80%; /* Adjusted width */
    max-width: 600px; /* Constrained width */
    height: auto; /* Maintain aspect ratio */
}

/* PRESS IT Section Styles */
.robot-section {
    padding: 40px 10px; /* Reduced padding */
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
    text-align: center;
}

.robot-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; /* Center vertically */
    gap: 20px; /* Space between columns */
    padding: 20px; /* Added padding for content */
    margin: 0 auto; /* Centered horizontally */
    max-width: 1200px; /* Constrained width */
}

.robot-text {
    flex: 1;
    max-width: 500px; /* Adjusted max-width */
    text-align: left; /* Align text to the left */
}

.robot-text h2 {
    font-size: 32px; /* Smaller font size */
    margin-bottom: 10px;
    color: #3399ff; /* Lighter blue accent color */
}

.robot-text p {
    font-size: 16px; /* Smaller font size */
    margin-bottom: 15px;
}

.robot-image-container {
    flex: 1;
    max-width: 500px; /* Adjusted max-width */
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot-image {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .robot-content {
        flex-direction: column;
        align-items: center;
        padding: 10px; /* Adjusted padding */
    }

    .robot-text, .robot-image-container {
        max-width: 100%;
    }
}

 