@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/contact\ 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;
  }
  
/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
  }
  
  /* 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 */
  }
  
  /* CONTACT US Section Styles */
  .contact-us-section {
    padding: 60px 20px;
    background-color: #191919; /* Black background */
    color: #fff; /* White text color */
    text-align: center;
  }
  
  .contact-us-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #3399ff; 
  }
  
  .contact-us-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px auto;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  
  .contact-form,
  .map-section {
    flex: 1 1 400px;
    max-width: 500px;
    margin: 20px;
  }
  
  .contact-form {
    background-color: #333; /* Dark grey background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Darker shadow */
  }
  
  .contact-form form .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #ffffff; 
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #00557f; /* Blue border */
    border-radius: 4px;
    background-color: #222; /* Darker background for inputs */
    color: #fff; /* White text color */
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #007acc; /* Lighter blue focus border */
    outline: none;
  }
  
  .contact-form button {
    background-color: #00557f; /* Blue background */
    color: #fff; /* White text color */
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #003f63; /* Darker blue on hover */
  }
  
  .map-section {
    text-align: center;
  }
  
  .map-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff; 
  }
  
  .map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-form,
    .map-section {
      max-width: 100%;
    }
  
    .contact-form {
      margin-bottom: 40px;
    }
  }
  