  .navbar-brand {
      font-size: 1.4rem;
      letter-spacing: 0.5px;
    }
    .nav-link {
      font-weight: 500;
      transition: 0.3s;
    }
    .nav-link:hover {
      color: #ffc107 !important;
    }
     .navbar {
      background: linear-gradient(90deg, #2c2d2f, #007bff);
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                  url('contact-bg.jpg') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 100px 20px;
      background-attachment: fixed;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    /* Contact Section */
    .contact-section {
      padding: 80px 0;
    }
    .contact-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      padding: 40px 30px;
    }
    .form-control, .form-select {
      border-radius: 10px;
    }
    .btn-custom {
      background: linear-gradient(90deg, #007bff, #00bfff);
      border: none;
      color: #fff;
      padding: 12px 20px;
      border-radius: 10px;
      transition: all 0.3s;
    }
    .btn-custom:hover {
      transform: translateY(-3px);
      background: linear-gradient(90deg, #0056b3, #0088cc);
    }

    /* Info Cards */
    .info-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 25px;
      text-align: center;
      transition: 0.3s;
    }
    .info-card i {
      font-size: 2rem;
      color: #007bff;
      margin-bottom: 10px;
    }
    .info-card:hover {
      transform: scale(1.03);
    }

    /* Footer */
    footer {
      background-color: #111;
      color: #bbb;
      padding: 40px 0;
    }
    footer a {
      color: #bbb;
      text-decoration: none;
      margin: 0 10px;
    }
    footer a:hover {
      color: white;
    }

    /* Responsive Fix */
    @media (max-width: 991px) {
      .contact-section {
        padding-top: 60px;
      }
      .hero h1 {
        font-size: 2rem;
      }
    }
  