/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Global Styles */
  body {
    font-family: 'Poppins', sans-serif;
    color: #444;
    background-color: #fdfdfd;
    line-height: 1.6;
  }
  
  /* Utility Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Header Styles */
  header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    z-index: 999;
    padding: 10px 0;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    font-size: 1.8em;
    font-weight: 600;
    color: #004080;
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav ul li {
    margin-left: 25px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    color: #004080;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px; /* height of header */
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,64,128,0.65) 0%, rgba(0,64,128,0.25) 100%);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    color: #fff;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
  
  .btn {
    display: inline-block;
    padding: 14px 36px;
    background: #004080;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #003366;
  }
  
  /* About Section */
  .about-section {
    padding: 120px 0;
    text-align: center;
    background-color: #f9f9f9;
    margin-top: 60px;
  }
  
  .about-section h1 {
    font-size: 2.8em;
    margin-bottom: 25px;
    color: #004080;
  }
  
  .about-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.8;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 120px 0;
    text-align: center;
    margin-top: 60px;
  }
  
  .contact-section h1 {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #004080;
  }
  
  /* Form Styles */
  form {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #004080;
  }
  
  .form-group textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  form .btn {
    width: 100%;
    text-align: center;
    padding: 14px 0;
  }
  
  /* Footer Styles */
  footer {
    background: #004080;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
  }
  
  .footer-container p {
    font-size: 0.9em;
  }
  