
/* General Styles */
body {
    margin: 0;
    font-family: 'Arial, sans-serif';
    color: #333;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Logo Styles */
  .logo {
    font-size: 2em;
    font-weight: bold;
    color: #004aad; /* Primary logo color */
  }
  
  /* Navbar Styles */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #333; /* Navbar background */
    border: 2px solid white;
    padding: 10px;
    border-radius: 10px;
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 20px; 
    transition: background-color 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    border-radius: 10px;
    background-color: #333;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); 
  }
  
  .navbar a:hover {
    background-color: #004aad; 
    border: 2px solid #004aad; 
  }
  
  /* Dropdown Styles */
  .dropdown {
    position: relative;
    display: inline-block; 
  }
  
  .dropdown span {
    color: white;
    cursor: pointer;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    border-radius: 5px;
    top: 100%;
    left: 0;
    z-index: 1;
  }
  
  .dropdown-content a {
    color: #333;
    padding: 10px;
    text-decoration: none;
    display: block;
    border: 2px solid transparent;
    border-radius: 5px;
    background-color: white;
  }
  
  .dropdown-content a:hover {
    background-color: #004aad !important;
    border: 2px solid white !important;
    color: white !important;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Ensure Buttons Stay Aligned */
  .navbar .dropdown {
    margin: 0;
    vertical-align: middle;
  }
  
  /* Mobile Menu Styles */
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #333; /* Mobile menu background matches navbar */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
    max-height: 80vh; /* Restrict menu height to 80% of the viewport */
    overflow-y: auto; /* Allow scrolling if menu exceeds the height */
  }
  
  .mobile-menu.active {
    display: flex;
  }
  
  .mobile-menu a,
  .mobile-menu .dropdown {
    padding: 10px 20px;
    text-decoration: none;
    color: white; /* White text for mobile menu links */
    font-size: 1rem;
    border-bottom: 1px solid #444; /* Darker separator */
  }
  
  .mobile-menu a:hover {
    background-color: #004aad; /* Match navbar hover color */
    color: white; /* Ensure text remains white on hover */
  }
  
  .mobile-menu .close-menu {
    align-self: flex-end;
    margin: 10px 20px 0;
    cursor: pointer;
    font-size: 1.5rem;
    color: white; /* White close icon */
  }
  
  /* Hamburger Menu */
  .menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-toggle i {
    font-size: 1.5rem;
    color: #333;
  }
  
  /* Header Styles */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-sizing: border-box;
  }
  
  /* Mobile Menu Dropdown Styles */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 200px;
    z-index: 1000;
  }
  
  .dropdown-menu li {
    padding: 10px 15px;
    white-space: nowrap;
  }
  
  .dropdown-menu li a {
    color: #333;
    font-size: 0.9rem;
  }
  
  .dropdown-menu li a:hover {
    color: #cc0000;
    background-color: #f9f9f9;
    border-radius: 5px;
  }
  
  .arrow {
    font-size: 0.8rem;
    margin-left: 5px;
  }
  
  /* Responsive Design for Small Screens */
  @media (max-width: 768px) {
    .navbar {
      display: none !important; 
    }
  
    .menu-toggle {
      display: flex; /* Show hamburger menu */
    }
  
    .navbar-links {
      flex-direction: column;
      gap: 10px;
    }
  
    .dropdown-menu {
      position: static;
      box-shadow: none;
    }
  
    /* Mobile Menu Improvement */
    .mobile-menu a,
    .mobile-menu .dropdown {
      padding: 15px; /* Increase padding for better touch interaction */
    }
  
    .mobile-menu a:hover {
      background-color: #004aad; /* Match navbar hover color */
    }
  
    .dropdown-content {
      position: static;
      display: block;
      width: 100%;
      background-color: #333; /* Match mobile menu color */
      box-shadow: none;
      padding-left: 20px;
    }
  
    .mobile-menu .dropdown-content a {
      padding: 12px;
      color: white; /* White text for dropdown items */
      background-color: #333; /* Background matches mobile menu */
    }
  }








/*paste form css here*/




/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .footer-logo h2 {
    font-size: 1.8rem;
    color: #cc0000;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .footer-social a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
  }
  
  .footer-social a:hover {
    color: #cc0000;
  }
  
  .app-links img {
    width: 120px;
    margin-right: 10px;
    transition: transform 0.2s ease-in-out;
  }
  
  .app-links img:hover {
    transform: scale(1.1);
  }
  
  .footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .footer-column ul li a:hover {
    color: #cc0000;
  }
  
  .footer-column p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 10px 0;
  }
  
  .footer-column p i {
    margin-right: 10px;
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
  }
  
  .footer-bottom p {
    font-size: 0.9rem;
    margin: 5px 0;
  }
  
  .footer-bottom a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
  }
  
  .footer-bottom a:hover {
    color: #cc0000;
  }
  
  /* Footer Styling (Second File) */
  .footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .footer-logo {
    text-align: left;
    flex: 1;
    margin-left: 20px;
  }
  
  .footer-social {
    margin-top: 20px;
  }
  
  .footer-logo h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #004aad;
  }
  
  .footer-logo p {
    font-size: 1.2em;
    margin-bottom: 15px;
  }
  
  .footer-social a {
    margin: 0 10px;
    color: white;
    font-size: 1.5em;
  }
  
  .footer-social a:hover {
    color: #004aad;
  }
  
  .footer-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    flex: 3;
  }
  
  .footer-column {
    width: 25%;
    margin-bottom: 20px;
  }
  
  .footer-column h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #004aad;
  }
  
  .footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column li {
    margin-bottom: 10px;
    font-size: 1.1em;
  }
  
  .footer-column li a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }
  
  .footer-column li a:hover {
    color: whitesmoke !important;
  }
  
  .footer-column li::before {
    content: "→";
    margin-right: 10px;
    font-size: 1.5em;
    color: white;
    vertical-align: middle;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    width: 100%;
    padding-top: 20px;
  }
  
  .footer-bottom p {
    font-size: 1em;
    margin: 10px 0;
  }
  
  /* Responsive Design for Footer */
  @media (max-width: 1200px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-logo {
      text-align: center;
      margin: 10px 0;
    }
  
    .footer-social {
      text-align: center;
      margin-top: 10px;
    }
  
    .footer-links {
      flex-direction: column;
      align-items: center;
      margin-top: 20px;
    }
  
    .footer-column {
      width: 50%;
      text-align: center;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-logo h2 {
      font-size: 1.6rem;
    }
  
    .footer-logo p {
      font-size: 1rem;
    }
  
    .footer-social a {
      font-size: 1.3rem;
      margin-right: 10px;
    }
  
    .footer-links {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
  
    .footer-column {
      width: 100%;
      text-align: center;
      margin-bottom: 15px;
    }
  
    .footer-column h3 {
      font-size: 1.3rem;
    }
  
    .footer-bottom p {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .footer-logo h2 {
      font-size: 1.4rem;
    }
  
    .footer-logo p {
      font-size: 0.9rem;
    }
  
    .footer-social a {
      font-size: 1.2rem;
    }
  
    .footer-column h3 {
      font-size: 1.2rem;
    }
  
    .footer-bottom p {
      font-size: 0.7rem;
    }
  }
  