:root {
    --primary: #540863;
    --accent: #92487A;
    --highlight: #E49BA6;
    --light: #FFD3D5;
  }

  /* Logo Styling (Modern Design) */
  .logo {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .modern-logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .modern-logo-icon .bar-1 {
    width: 15px;
    height: 35px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px;
  }

  .modern-logo-icon .bar-2 {
    width: 15px;
    height: 35px;
    background-color: var(--highlight);
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    transform: rotate(-15deg);
    box-shadow: 0 0 10px rgba(255, 211, 213, 0.5);
  }

  /* Contact Hero Section */
  .contact-hero {
    height: 50vh;
    background: url('/techyug/image/contact-banner.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
  }

  /* Main Contact Section */
  .contact-main {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .contact-info {
    font-size: 16px;
    padding: 20px;
  }

  .contact-info h3,
  .contact-form h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 3px solid var(--highlight);
    display: inline-block;
    padding-bottom: 5px;
  }

  .contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .contact-info a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
  }

  .contact-info a:hover {
    color: var(--primary);
  }

  /* Contact Form Styling */
  .contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: border-color 0.3s;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--highlight);
    outline: none;
  }

  .contact-form textarea {
    resize: vertical;
  }

  .contact-form button[type="submit"] {
    padding: 12px 20px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
  }

  .contact-form button[type="submit"]:hover {
    background: var(--accent);
    transform: translateY(-2px);
  }

  /* Responsive adjustments */
  @media (max-width: 900px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
    .contact-hero {
      height: 40vh;
    }
  }