
    /* Hero Section */
    .contact-hero {
      background: linear-gradient(135deg, #004aad, #0099ff);
      color: white;
      text-align: center;
      padding: 40px 20px;
    }

    .contact-hero h1 {
      font-weight: 700;
      font-size: 3rem;
    }

    .contact-hero p {
      font-size: 1.2rem;
      opacity: 0.9;
    }

    /* Contact Form Section */
    .contact-section {
      padding: 80px 0;
    }

    .contact-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      padding: 40px;
    }

    .form-control {
      border-radius: 10px;
      padding: 12px;
    }

    .btn-custom {
      background: #004aad;
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      border: none;
      transition: all 0.3s ease;
    }

    .btn-custom:hover {
      background: #007bff;
      transform: translateY(-3px);
    }

    /* Info Section */
    .info-box {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s;
    }

    .info-box:hover {
      transform: translateY(-5px);
    }

    .info-box h5 {
      color: #004aad;
      margin-bottom: 10px;
    }
    .info-box button{
      margin-top: 10px;
      border-radius: 10px;
      padding: 0px 20px;
    }


