/* css/style.css */

/* Custom font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

button {
  transition: background-color 0.3s ease;
}

/* Responsive fixes for hero */
@media (max-width: 1024px) {
  section {
    flex-direction: column;
    text-align: center;
    padding-top: 4rem;
  }

  section img {
    margin-top: 2rem;
    width: 100%;
    max-width: 400px;
  }
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-text {
  color: #f2be00;
  margin-left: 5px;
}

.home-logo {
  height: 36px !important;
  width: 24px !important;
}

.section-enterprise {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

 body {
      background: #f8f9fa;
    }

    .contact-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 1100px;
      margin: 4rem auto;
      padding: 2rem;
      background: white;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    /* Left Info */
    .contact-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 1rem;
    }

    .contact-info h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #222;
    }

    .contact-info p {
      color: #555;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }

    .info-item i {
      font-size: 20px;
      margin-right: 12px;
      color: #f2be00;
    }

    /* Right Form */
    .contact-form {
      display: flex;
      flex-direction: column;
    }

    .contact-form label {
      margin-bottom: 6px;
      font-weight: 600;
      color: #444;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 12px;
      margin-bottom: 16px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 15px;
      transition: border 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #f2be00;
      box-shadow: 0 0 0 3px rgba(242, 190, 0, 0.2);
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 120px;
    }

    .contact-form button {
      padding: 14px;
      background: #f2be00;
      color: #222;
      font-weight: 600;
      font-size: 16px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .contact-form button:hover {
      background: #d9a900;
      transform: translateY(-2px);
    }

    .confirmation-message {
      margin-top: 20px;
      color: green;
      font-weight: bold;
      display: none;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .contact-section {
        grid-template-columns: 1fr;
      }
    }

    @keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}
