
    .contact-section{
      padding:100px 8%;
    }

    .contact-card{
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(10px);
      border-radius:12px;
      padding:50px;
      box-shadow:0 20px 60px rgba(0,0,0,0.1);
    }

    .section-title{
      font-size:2.4rem;
      margin-bottom:25px;
      position:relative;
      display:inline-block;
    }

    .section-title::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-8px;
      width:0;
      height:2px;
      background:#000;
      transition:0.4s ease;
    }

    .section-title:hover::after{
      width:100%;
    }

    .contact-info p{
      font-size:1.05rem;
      color:#555;
      line-height:1.8;
    }

    input, textarea{
      border-radius:0;
      border:1px solid #ccc;
      transition:0.3s ease;
      font-family: 'Poppins', sans-serif;
    }

    input:focus, textarea:focus{
      border-color:#000;
      box-shadow:none;
    }

    .send-btn{
      background:#000;
      color:#fff;
      border:none;
      padding:12px 28px;
      transition:0.4s ease;
    }

    .send-btn:hover{
      background:#333;
      transform:translateY(-4px);
      box-shadow:0 10px 25px rgba(0,0,0,0.2);
    }

    /* Scroll Animation */
    .animate{
      opacity:0;
      transform:translateY(50px);
      transition:1s ease;
    }

    .animate.show{
      opacity:1;
      transform:translateY(0);
    }
