* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 font-family: Arial, sans-serif;
}


.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  color: white;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.contact-info a {
  color: #cbcaca;
  text-decoration: none;
  margin-right: 20px;
  font-size: 0.95rem;
}

.contact-info a i {
  margin-right: 6px;
  color: #ff0033;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin-left: 15px;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #00ccff;
  transform: scale(1.2);
}


.main-header {
  background-color: #f4f4f4;
  padding-bottom: 30px;
}

.navbar {
  background-color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #003366;
  
}

.navbar-links ul {
  list-style: none;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  display: flex;
  gap: 20px;
  font-weight: bold;
  margin: 0;
}

.navbar-links a {
  text-decoration: none;
  color: #111;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.navbar-links a:hover {
  background-color: #ddd;
  color: #003366;
}

.toggle-button {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.toggle-button .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
  border-radius: 3px;
}


.hero-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
  font-family: "Open Sans", sans-serif;
  flex-wrap: wrap;
  gap: 30px;
}



.text-content h1 {
font-size: 47px;
    color: #ffffff;
    margin-bottom: 40px;
  
}

.text-content p {
     font-size: 25px;
  
   
}


.btn-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007acc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-link:hover {
  background-color: #005999;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  width: 500px;
  
    margin-top: 140px;

}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    width: 100%;
  }

  .navbar-links.active {
    display: block;
  }

  .navbar-links ul {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .navbar-links li {
    padding: 10px 0;
  }

  .toggle-button {
    display: flex;
    margin-left: 270px;
        margin-top: -36px;
  }

  }





.footer {
      background-color: #001b44;
  
      padding: 40px 20px 20px;
     
      height: 400px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      background-color: #f5f5f5;
    }

    header {
      background-color: #008080;
      color: rgb(15, 11, 11);
      padding: 20px;
      text-align: center;
    }

    nav {
      display: flex;
      justify-content: center;
      background-color: #006666;
      flex-wrap: wrap;
    }

    nav a {
      color: rgb(8, 8, 8);
      padding: 14px 20px;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: bold;
    }

    nav a:hover {
      background-color: #004d4d;
      color: #ffcc00;
      transition: 0.3s;
    }

    section {
      padding: 40px 20px;
      max-width: 1100px;
      margin: auto;
      background-color: white;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    h2 {
      margin-bottom: 20px;
      color: #008080;
    }

    .social-icons {
      text-align: center;
      margin: 20px 0;
    }

    .social-icons a img {
      height: 40px;
      transition: transform 0.3s ease;
    }

    .social-icons a img:hover {
      transform: scale(1.2);
    }

    footer {
      background-color: #008080;
      color: white;
      text-align: center;
      padding: 15px;
    }

    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        text-align: center;
      }
    }
 
    .footer-logo {
      flex: 1 1 250px;
      text-align: center;
    }

    .footer-logo img {
      max-width: 180px;
      margin-bottom: 15px;
    }

    .footer-logo h2 {
      font-size: 18px;
      margin: 0;
      font-weight: bold;
    }

    .footer-column {
      flex: 1 1 200px;
    color: white;
    
    }

    .footer-column h3 {
      font-size: 28px;
      margin-left: 30px;
      margin-bottom: 10px;
      border-bottom: 2px solid #2a5bd7;
      display: inline-block;
      padding-bottom: 5px;

    }

    .footer-column ul {
      list-style: none;
      margin-top: 10px;
      margin-left: 30px;
      padding: 0;
    }

    .footer-column ul li {
      margin: 8px 0;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #ffffff;
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      transition: color 0.3s ease;
      font-size: 18px;
    }

    .footer-column ul li a:hover {
      color: #2a5bd7;
    }

    .footer-bottom {
      text-align: center;
      padding: 15px;
     
      color: #ccc;
      font-size: 17px;
      margin-top: -10px;
    }

    .footer-bottom a {
      color: #2a5bd7;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }

    .contact-info i {
      margin-right: 8px;
      color: #2a5bd7;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        background-color: #000;
     margin-right: -20px;
        margin-left: -41px;
      }

      .footer-column,
      .footer-logo {
        text-align: center;
            color: #f8f2f2;
      }
    }
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #1a1a1a;
      background-color: #191919;
     
    }

    .container {
      max-width: 1000px;
      margin: 0 auto;
  
    }

    .sub-heading {
      color: #2b4ea2;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .main-heading {
      font-size: 2rem;
      font-weight: 800;
      color: #0a1445;
      margin-bottom: 20px;
    }

    .content {
      font-size: 1rem;
      color: #2d3a4b;
    }

    @media (max-width: 768px) {
      .main-heading {
        font-size: 1.5rem;
      }

      .content {
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
      .main-heading {
        font-size: 1.3rem;
      }

      .content {
        font-size: 0.9rem;
      }
    }