/* Hero Banner */
    .hero {
      background: url('https://res.cloudinary.com/dg8ib26kr/image/upload/v1759211233/contact_bnr_ojm39i.jpg') center/cover no-repeat;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      position: relative;
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
    }
    .hero-content h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }
    .hero-content p {
      font-size: 1.3rem;
      line-height: 1.6;
    }
    .hero h6 {
        font-size: 3rem;
        margin-bottom: 20px;
        margin-top: 40px;
        font-weight: 500;
        margin-right: 90px;
        text-decoration: none;
    }

    .hero .tagline {
        font-size: 1.5rem;
        margin-bottom: 30px;
        opacity: 0.9;
        margin-right: 90px;
        font-weight: 500;
    }
    .hero a{
        text-decoration: none;
        color: white;
    }
    /* Contact Section */
    .contact-section {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      padding: 60px 10%;
      align-items: flex-start;
    }

    /* Left Side: Form + Address */
    .contact-left {
      flex: 1;
      min-width: 320px;
    }

    /* Contact Form */
    .contact-form {
      margin-bottom: 30px;
    }
    .contact-form h2 {
      margin-bottom: 15px;
      color: #333;
    }
    .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .contact-form input,
    .contact-form textarea {
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
      width: 100%;
    }
    .contact-form textarea {
      resize: none;
      height: 120px;
    }
    .contact-form button {
      background: #e67e22;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 1rem;
      transition: 0.3s;
    }
    .contact-form button:hover {
      background: #cf650f;
    }

    /* Address Info */
    .contact-info h3 {
      font-size: 1rem;
      color: #555;
      text-transform: uppercase;
      margin-bottom: 5px;
    }
    .contact-info h2 {
      font-size: 1.4rem;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .info-box {
      display: flex;
      align-items: center;
      border: 1px solid #ddd;
      padding: 15px;
      border-radius: 6px;
      margin-bottom: 15px;
      background: #fff;
    }
    .info-box i {
      background: #e53935;
      color: #fff;
      font-size: 18px;
      padding: 12px;
      border-radius: 50%;
      margin-right: 15px;
      flex-shrink: 0;
    }
    .info-box p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.5;
      color: #333;
    }

    /* Right Side: Map */
    .contact-map {
      flex: 1;
      min-width: 350px;
    }
    .contact-map iframe {
      width: 100%;
      height: 500px;
      border: none;
      border-radius: 8px;
    }

    /* Responsive */
    @media(max-width: 768px) {
      .hero-content h1 {
        font-size: 2.2rem;
      }
      .contact-section {
        flex-direction: column;
        padding: 40px 5%;
      }
    }