* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.fullscreen-view {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
}

.fullscreen-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

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: #00bfff;
}

.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 {
  max-width: 300px;
  background-image: url('image/3hs8indr.png');

}

.text-content h1 {
font-size: 47px;
    color: #222;
    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;
  }

}

    .container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .box {
      flex: 1 1 300px; /* responsive width, min 300px */
    width: 250px;
    height: 400px;
      aspect-ratio: 1/1; /* makes it square */
      background-color: #f0f0f0;
      border: 2px solid #ccc;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px;
     
    }

    .box img {
      width: 100%;
      height:300px;

      border-bottom: 1px solid #ccc;
    }

  
.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;
    }

    .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: 17px;
      font: bold;
    }

    .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;
      }
    }
