.hero_bg {
  background-image: url("../images/hero_sec.png");
  height: 200px;
}

body {
  margin: 0;
  background: black;
}

canvas {
  display: block;
}

.main__header{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
}

/* FORM SECTION */
.form-wrapper{
    max-width:1200px;
    margin:auto;
    padding:60px 0px;
    color:#fff;
}

/* TWO COLUMN LAYOUT */
.contact-layout{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:60px;
    align-items:start;
}

/* LEFT INFO */
.contact-info h4{
    color:#f4c400;
    font-size:20px;
    margin-bottom:8px;
}

.contact-info p{
    color:#fff;
    font-size:18px;
    line-height:1.6;
    margin-bottom:50px;
}

/* FORM TITLE */
.form-title{
    font-size:72px;
    font-weight:400;
    margin-bottom:40px;
    line-height:1;
    color:#fff;
}

/* FORM ROW */
.field-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

/* FIELD */
.field-group{
    margin-bottom:28px;
}

/* LABEL */
.field-group label{
    display:block;
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
    color:#fff;
}

.required{
    color:red;
}

/* INPUT + TEXTAREA */
.field-group input,
.field-group textarea{
    width:100%;
    background:#1a1a1a;
    border:1px solid #333;
    border-radius:12px;
    padding:18px 20px;
    font-size:16px;
    outline:none;
    transition:0.3s ease;
    color:#fff; /* input text color */
}

/* PLACEHOLDER COLOR */
.field-group input::placeholder,
.field-group textarea::placeholder{
    color:#bdbdbd;
    opacity:1;
}

/* FOCUS */
.field-group input:focus,
.field-group textarea:focus{
    border-color:#f4c400;
    background:#111;
}

/* BUTTON */
.submit-btn{
    display:inline-block;
    background:#f4c400;
    color:#000;
    border:none;
    padding:16px 40px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
}

.submit-btn:hover{
    background:#fff;
}



/* MOBILE */
@media(max-width:991px){

    .contact-layout{
        grid-template-columns:1fr;
        gap:40px;
    }

    .form-title{
        font-size:48px;
    }

    .field-row{
        grid-template-columns:1fr;
        gap:0;
    }
}
/*.svelte-25ec4j p {*/
/*    font-size: var(--text-para-xs);*/
/*    line-height: var(--tw-leading, var(--text-para-xs--line-height));*/
/*    font-weight: var(--tw-font-weight, var(--text-para-xs--font-weight));*/
/*    color: var(--color-dark-40);*/
/*}*/
