 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
    }

    body {
      overflow-x: hidden;
      color: #333;
      background-color: #fff;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Hero Section Styles */
    .hero {
      position: relative;
      height: 90vh;
      width: 100%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .slide {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .slide-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      filter: brightness(0.4);
      animation: zoomEffect 20s infinite;
      z-index: 1;
    }

    @keyframes zoomEffect {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    .slide-content {
      position: relative;
      z-index: 2;
      color: #fdfdf9; /* #14086a text */
      text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
      top: 50%;
    }

    .slide-content h1 {
      font-size: 56px;
      font-weight: 800;
      line-height: 1.2;
    }

    /* Contact Info Form Section */
    .contact-info-form {
      background: #fff;
      padding: 60px 20px;
    }

    .info-boxes {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      text-align: center;
      margin-bottom: 50px;
    }

    .info-box {
      flex: 1 1 30%;
      background: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }

    .info-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      background-color: #63636234; /* slight #14086aen tint on hover */
    }

    .info-box .icon {
      font-size: 44px;
      margin-bottom: 15px;
      color: #0144fd;
      transition: color 0.3s ease;
    }

    .info-box:hover .icon {
      color: #3886fa;
    }

    .info-box h4 {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #2d2d2d;
    }

    .info-box p {
      font-size: 16px;
      color: #666;
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .info-box a {
      color: #0144fd;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .info-box a:hover {
      color: #0f7be0;
      text-decoration: underline;
    }

    /* Form Section */
    .form-section {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      background: white;
      padding: 50px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .form-section h2 {
      font-size: 36px;
      margin-bottom: 10px;
      color: #0144fd;
    }

    .form-section p {
      color: #666;
      margin-bottom: 20px;
      font-size: 16px;
    }

    .form-section hr {
      width: 60px;
      height: 4px;
      margin: 10px auto 30px;
      border: none;
      background: #2c7bf1;
      border-radius: 2px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: row;
      gap: 20px;
    }

    .form-group input {
      flex: 1;
    }

    input, textarea {
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      width: 100%;
      font-size: 16px;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: #0144fd;
      box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
    }

    button {
      padding: 15px;
      background: #0144fd;
      color: white;
      font-weight: bold;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 18px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    button:hover {
      background-color: #0144fd;
    }

    button:active {
      transform: scale(0.97);
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .info-boxes {
        flex-direction: column;
      }

      .form-group {
        flex-direction: column;
      }

      .slide-content h1 {
        font-size: 40px;
      }

      .form-section {
        padding: 30px 20px;
      }
    }

    @media (max-width: 480px) {
      .slide-content h1 {
        font-size: 30px;
      }

      .form-section h2 {
        font-size: 26px;
      }
    }

.form-success {
  color: green;
  background: #e6ffe6;
  padding: 10px;
  border: 1px solid #b3ffb3;
  margin-top: 10px;
}
