
    html, body {
      height: 100%;
      margin: 0;
      background: #0068b3 url('../images/1.jpg') no-repeat center center fixed;
      background-size: cover;
      background-repeat: no-repeat;
      overflow-x: hidden;
    }

    .navbar-custom {
      background-color: #1b3d78;
      padding: 10px 0;
    }
.navbar-custom .nav-link {
  font-weight: bold;
  color: #000;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-custom .nav-link:hover {
  color: #b58312; /* or your brand color */
  transform: scale(1.05);
}

    .logo-img {
      height: 50px;
    }

    .main-content {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 30px 15px;
    }

    .square-box {
      background-color: rgba(255, 255, 255, 0.85);
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 200px;
      width: 200px;
      margin: 10px;
    }

    .square-box img {
      max-width: 100%;
      max-height: 100%;
    }

    footer {
      background-color: rgb(253 251 251 / 76%);
      color: white;
      text-align: center;
      padding: 15px 0;
    }

    .nav-area {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    @media (max-width: 768px) {
      .nav-area {
        flex-direction: column;
        gap: 10px;
      }

      .square-box {
        width: 150px;
        height: 150px;
      }
    }
	
    .contact-section {
      text-align: center;
      width: 100%;
    }

    .contact-logo {
      max-width: 120px;
      height: auto;
    }

    .contact-btn {
      font-weight: bold;
      background-color: white;
      border-radius: 10px;
      padding: 8px 25px;
      margin-top: 15px;
      border: none;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

    .contact-card {
      background-color: white;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      text-align: left;
      height: 100%;
    }

    .contact-card a {
      color: #007BFF;
      text-decoration: none;
    }

    .contact-card a:hover {
      text-decoration: underline;
    }
	footer {
  color: #1b3d78;
}
