html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f3f3f3;
  }
  
  .custom-navbar {
    background: rgba(10, 40, 72, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
  }
  
  .custom-navbar .nav-link {
    color: white !important;
    font-weight: 500;
    margin-left: 15px;
    transition: all 0.3s ease;
  }
  
  .custom-navbar .nav-link:hover {
    color: #ffd700 !important;
    transform: scale(1.05);
  }
  
  .navbar-brand img {
    margin-right: 10px;
  }
  
  .jobs-alert {
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
    margin-right: 10px;
  }
  
  .jobs-alert img {
    width: 140px;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .video-wrapper video {
    width: 100%;
    height: 100vh;
    opacity: 0.95;
    object-fit: cover;
  }
  
  .overlay {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
  }
  
  .cta-btn {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: black;
    background: linear-gradient(135deg, #0a2848, #005f99);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 95, 153, 0.5);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
  }
  
  .cta-btn:hover {
    background: linear-gradient(135deg, #005f99, #0a2848);
    box-shadow: 0 0 25px rgba(0, 95, 153, 0.7);
    transform: scale(1.05);
  }
  
  .section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a2848;
  }
  
  .section-icon {
    width: 80px;
    margin: 15px auto;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
  }
  
  .section-icon.right {
    float: right;
    margin-left: 30px;
  }
  
  .features-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
  }
  
  .features-list li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .highlight {
    color: #005f99;
    font-weight: 600;
  }
  
  .footer {
    background: #0a2848;
    color: #ddd;
  }
  
  .footer-logo {
    width: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .footer h5 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
  }
  
  .footer p, .footer a {
    font-size: 0.95rem;
    color: #bbb;
    text-decoration: none;
  }
  
  .footer a.footer-link:hover {
    text-decoration: underline;
    color: #fff;
  }
  
  .social-icons .social {
    color: #007bff;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: color 0.3s ease;
  }
  
  .social-icons .social:hover {
    color: #ffd700;
  }
  
  @media (max-width: 768px) {
    .footer-logo {
      margin: 0 auto 10px;
    }
  }
  
  /* Reveal animations */
  .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .fade-in.active {
    animation: fade-in 1.5s forwards;
  }
  
  .slide-in-left.active {
    animation: slide-in-left 1s forwards;
  }
  
  .slide-in-right.active {
    animation: slide-in-right 1s forwards;
  }
  
  @keyframes fade-in {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes slide-in-left {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes slide-in-right {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  
  /* Contact Page Styles */
  .contact-form-container {
    background: #fff;
    padding: 40px;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form-container .form-label {
    font-weight: 600;
    color: #0a2848;
  }
  
  .contact-form-container .form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 12px 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-form-container .form-control:focus {
    border-color: #005f99;
    box-shadow: 0 0 8px rgba(0, 95, 153, 0.2);
  }
  
  .contact-form-container .btn-primary {
    background-color: #005f99;
    border: none;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .contact-form-container .btn-primary:hover {
    background-color: #003d66;
  }
  
  .contact-icons {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 15px;
    transition: transform 0.3s ease;
  }
  
  .contact-icons:hover {
    transform: scale(1.2);
  }
  
  /* Contact Information Styling */
  .contact-info {
    margin-top: 40px;
    text-align: left;
  }
  
  .contact-info h5 {
    font-size: 1.5rem;
    color: #0a2848;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .contact-info p {
    font-size: 1.1rem;
    color: #555;
    margin: 10px 0;
  }
  
  .contact-info i {
    color: #005f99;
  }
  
  .social-icons a {
    font-size: 1.5rem;
    color: #005f99;
    margin-right: 20px;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #ffd700;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .cta-btn {
      padding: 10px 20px;
      font-size: 1rem;
    }
  
    .section-icon.right {
      float: none;
      margin: 15px auto;
      display: block;
    }
  
    .features-list {
      text-align: left;
    }
  
    .contact-form-container {
      padding: 20px;
    }
  }