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

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Header */
.site-header {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 1rem;
}

.container {
    
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.site-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.site-header .logo img {
    max-height: 35px; /* Adjust logo size */
    margin-right: 10px;
}

.site-header .logo-name {
    font-size: 1.5rem;
    color: black;
    font-weight: bold;
}


/* Navigation */
/* Menu Items */

/* Navigation Menu */
.nav-links {
    display: none;
    flex-direction: column;
    background: white; /* Black background */
    color: black; /* White text */
    position: absolute;
    top: 60px;
    right: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    width: 250px;
    z-index: 999;
    padding: 1rem;
    list-style: none; /* Remove dots */
}

.nav-links a {
    text-decoration: none; /* Remove underline */
    color: black; /* White text color */
    padding: 0.8rem 1rem;
    display: block;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.nav-links a:hover {
    background: #333; /* Darker background on hover */
    color: #66b2ff; /* Light blue hover color */
}

/* Sign-In Button */
.nav-links .sign-in {
    margin-top: 1rem;
    text-align: center;
    padding: 0.8rem 1rem;
    background: #0056b3; /* Blue button background */
    color: white;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.nav-links .sign-in:hover {
    background: #003f7f; /* Darker blue on hover */
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    border: none;
    background: none;
}

.menu-bar {
    height: 3px;
    background-color: white; /* White bars for better visibility */
    border-radius: 2px;
    width: 100%;
}

/* Active Menu */
.nav-links.active {
    display: flex;
    }
    




/* Hide header on scroll */
.site-header {
    transition: transform 0.3s ease-in-out;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



.nav-links.active {
    display: flex;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-bar {
    height: 3px;
    background: #333;
    border-radius: 2px;
    width: 100%;
}

/* Hero Section */
.hero {
    background: url('files/images/hero-bg1.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.btn-primary {
    background: #0056b3;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #003f7f;
}
/* Basic styling for the footer */
footer {
  display: flex;
  justify-content: center;  /* Centers content horizontally */
  align-items: center;      /* Centers content vertically */
  padding: 20px;
  background-color: #333;   /* Change background color as needed */
  color: #fff;              /* Text color */
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

/* Ensures that the text inside the footer adjusts on different screen sizes */
footer p {
  text-align: center;
  margin: 0;
  font-size: 1rem;
}

/* Responsiveness */
@media (max-width: 768px) {
  footer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 10px;
  }
  footer p {
    font-size: 0.9rem;
  }
    }
        
