  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .contact-container {
    padding: 40px 0px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
  }

  .contact-form-section {
    padding: 30px 50px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 12px;
  }

  .text-content-section {
    padding: 0px 50px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.2;
    background: linear-gradient(to right, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .supporting-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
  }

  .trust-lines {
    list-style: none;
    margin-top: 30px;
  }

  .trust-lines li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
  }

  .trust-lines li::before {
    content: "✔";
    color: #27ae60;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 12px;
  }


  .form-group {
    margin-bottom: 25px;
  }

  label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
  }

  /* REPLACE your existing input/select/textarea rules with this */
  input,
  select,
  textarea {
    width: 100%;
    padding: 8px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(253, 253, 253, 0.3) !important;
    color: white !important;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: rgba(253, 249, 249, 0.5);
    background: rgba(248, 246, 246, 0.4) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' stroke='white'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 50px;
    background: rgba(253, 253, 253, 0.3) !important;
    color: white !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
  }

  select option {
    background: #ffffff !important;
    color: rgb(0, 0, 0) !important;
    padding: 10px !important;
  }




  textarea {
    resize: vertical;
    min-height: 120px;
  }

  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 25px 0;
    font-size: 0.9rem;
  }

  .checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #fff;
    transform: scale(1.2);
  }

  .submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
  }

  .submit-btn:active {
    transform: translateY(-1px);
  }

  @media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
      border-radius: 15px;
      margin: -30px 20px;
    }

    .contact-form-section,
    .text-content-section {
      padding: 40px 30px;
    }

    h1 {
      font-size: 2rem;
    }
  }

  /* NEW STYLES FOR ENHANCED SECTION */
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 10px 0;
    color: #000;

  }

  .feature-card {
    background: rgba(51, 49, 49, 0.1);
    color: #000;
    padding: 5px 10px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    background: rgba(95, 171, 243, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .icon {
    font-size: 1.5rem;
    margin-bottom: 1px;
    display: block;
  }

  .feature-card h3 {
    color: rgb(82, 99, 255);
    font-size: 1.1rem;
    margin-bottom: 1px;
    font-weight: 600;
  }

  .feature-card p {
    color: rgba(54, 53, 53, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .trust-lines li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
  }

  .icon-small {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: #27ae60;
    font-weight: bold;
  }


  /* Responsive */
  @media (max-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }

  }



  /* ================= CoderStar Social Media ================= */
  .social-media-main {
    padding: 0px 20px 90px 20px;
    text-align: center;
  }

  .coderstar-social-media {
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
    flex-wrap: wrap;
    /* responsive */
  }

  .cs-social {
    text-decoration: none;
  }

  /* BIG Social Card */
  .cs-social {
    width: 180px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    transform-style: preserve-3d;
    transition: all 0.35s cubic-bezier(0.68, 0.85, 0.265, 1.85);
    background: #ffffff;
    box-shadow:
      inset 2px 2px 4px #ffffff,
      0 12px 30px rgba(0, 0, 0, 0.12);
  }

  /* Default icon colors */
  .cs-instagram .cs-btn {
    color: #e1306c;
  }

  .cs-linkedin .cs-btn {
    color: #0a66c2;
  }

  .cs-youtube .cs-btn {
    color: #ff0000;
  }

  .cs-github .cs-btn {
    color: #24292e;
  }

  .cs-telegram .cs-btn {
    color: #3d92e7;
  }


  /* Hover Effect */
  .cs-social:hover {
    transform: perspective(280px) rotateX(55deg) translateY(6px);
  }

  /* Change icon color on hover */
  .cs-instagram:hover .cs-btn {
    color: #ff7ad9;
  }

  .cs-linkedin:hover .cs-btn {
    color: #4ea1ff;
  }

  .cs-youtube:hover .cs-btn {
    color: #ff5a5a;
  }

  .cs-github:hover .cs-btn {
    color: #000000;
  }

  /* Platform Glow */
  .cs-instagram:hover {
    box-shadow: 0 25px 40px #ff00ff55;
  }

  .cs-linkedin:hover {
    box-shadow: 0 25px 40px #0a66c255;
  }

  .cs-youtube:hover {
    box-shadow: 0 25px 40px #ff000055;
  }

  .cs-github:hover {
    box-shadow: 0 25px 40px #00000055;
  }

  /* Button */
  .cs-btn {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 56px;
    /* 🔥 BIG ICON */
    color: #111;

    transition: transform 0.5s cubic-bezier(0.68, -0.85, 0.265, 1.55);
  }

  /* Icon 3D Lift */
  .cs-social:hover .cs-btn {
    transform: translate3d(0, 40px, 60px) perspective(120px) rotateX(-55deg) translateZ(30px);
  }

  /* ================= MOBILE ================= */
  @media (max-width: 768px) {
    .coderstar-social-media {
      gap: 14px;
    }

    .cs-social {
      width: 140px;
      height: 150px;
    }

    .cs-btn {
      font-size: 70px;
    }
  }