/* ============================================================
   ELEKORE — CONTACT PAGE  |  contact.css
   ============================================================ */
.social-hero {
    position: absolute;
    bottom: 50px;
    left: 31% !important;
    z-index: 4;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.follow-us-title {
    color: #fff;
    text-align: left;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 18px 0;
    display: block;
    position: absolute;
    z-index: 10;
    left: 22%;
    bottom: 40px !important;
}
h2{
    font-family: 'Albert Sans', sans-serif !important;
}
.container.text-white.content {
    margin-top: 0px !important;
}
   section.hero.position-relative {
    height: 85vh;
}
div#footer {
    padding-top: 60px;
}
.contact-form {
    padding: 40px 0;
}

.contact-form h2 {
    margin-bottom: 25px;
    font-weight: 600;
    color: #000;
}
    

/* Form Group */
.form-group {
    position: relative;
    margin-bottom: 10px;
}

/* Input & Textarea */
.form-group input,
.form-group textarea {
   width: 100%;
    padding: 12px 10px;
    border: 0px solid #000;
    outline: none;
    color: #fff !important;
    background: #32628a4a;
    font-size: 14px;
    border-radius: 10px;
    border-bottom: 3px solid #003084;
}

/* Textarea height */
.form-group textarea {
    height: 120px;
    resize: none;
}

/* Label */
.form-group label {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #000;
    font-size: 14px;
    background: #37578f00;
    padding: 0 5px;
    transition: 0.3s ease;
    pointer-events: none;
}

/* Focus / Filled Effect */
.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -20px;
    font-size: 12px;
    color: #000;
}

/* Button */
.power-btn1 {
    display: block;
    width: fit-content;
    padding: 15px 30px;
    border: 2px solid rgba(0, 0, 0, 0.24);
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background: #133061;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s;
    margin: 0;
}
.power-btn1:hover{
    background-color: #113377 !important;
}
/* .contact-form button:hover {
    background: #333;
} */
.contact-form.success-msg{
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ecfdf5;
    color: #065f46;
    padding: 16px 20px;
    border: 1px solid #10b981;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    animation: fadeIn 0.4s ease;

}

/* Icon */

.contact-form.success-msg i {
    font-size: 24px;
    color: #10b981;

}

/* Text */

.contact-form.success-msg p {
    color: #000;
    margin: 0;
}


/* Animation */

@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(10px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}
section.contact-form {
    background: #fff;
}
/* Contact Info Box */
.contact-info-box {
  position: relative; /* IMPORTANT */
  background: url('../../images/restart_2026/aboutnew.webp') center/cover no-repeat;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden; /* overlay bahar na nikle */
}

/* overlay */
.contact-info-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(186, 204, 234, 0.6) -50%, /* fix color */
    #0a0319 90%
  );
  z-index: 1;
  pointer-events: none;
}

/* content overlay de upar */
.contact-info-box > * {
  position: relative;
  z-index: 2;
}
.contact-info-box h2 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.contact-info-box p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

.info-item {
    margin-top: 20px;
}

.info-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.info-item p {
    margin: 0;
    font-size: 14px;
}
.hero {
    height: 95vh;
    position: relative;
    overflow: hidden;
}
/* ============================================================
   TABLET  768px – 1024px
   ============================================================ */
@media (min-width: 768px) and (max-width: 1024px) {
    section.hero.position-relative {
    height: 75vh;
}
.success-msg {
    background: #133061;
    border-radius: 20px;
    margin-top: 20px;
    padding: 14px 20px 0px;
    display: flex;
    gap: 10px;
}
.row.g-5.align-items-center {
    margin-top: -20px;
}
.col-md-6 {
    margin: 0;
}
.social-item{
    padding: 7px 15px;
}
    /* HERO */
    .hero {
        height: 77vh;
        position: relative;
        overflow: hidden;
    }
h1.headings {
    font-size: 60px;
    font-weight: 500;
    line-height: 64px;
    font-family: 'Playfair Display', serif;
}

    .hero .content p {
        font-size: 15px;
    }

    /* CONTACT FORM SECTION */
   .contact-form {
    padding: 50px 25px;
}

    .contact-form h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    /* Stack columns on tablet */
    .contact-form .row {
        flex-direction: column;
        gap: 30px !important;
    }

    .contact-form .col-md-6 {
        width: 100% !important;
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* Info box */
    .contact-info-box {
        padding: 30px 28px;
        height: auto;
    }

    .contact-info-box h2 {
        font-size: 24px;
    }

    .contact-info-box p {
        font-size: 15px;
    }

    .info-item h4 {
        font-size: 17px;
    }

    .info-item p {
        font-size: 14px;
    }

    /* Form button */
    .contact-form button {
        font-size: 16px;
        padding: 8px 38px;
    }
}

/* ============================================================
   MOBILE  < 768px
   ============================================================ */
@media (max-width: 767px) {
.social-hero {
    display: none;
}
.hero {
    height: auto !important;
    min-height: 77vh;
    display: flex;
    align-items: center;
    padding: 109px 0 0px;
}
.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    background: #00000000;
    z-index: 3;
}
.container.text-white.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 51px;
}
.contact-form {
    padding: 0px 0;
}
.contact-form h2 {
   display: none;
}
  .hero .content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
    text-align: center;
  }
h1.headings {
    font-size: 32px;
    line-height: 37px;
}

  .hero .content p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  .hero .content .power-btn {
    display: inline-block;
    margin: 0 auto;
  }

  /* ── SUBMIT BUTTON FIX ── */
  .contact-form button[type="submit"] {
    width: auto !important;
    display: inline-block !important;
    padding: 10px 40px;
    font-size: 15px;
    border-radius: 90px;
    margin: 0 auto;
  }

  /* Center karo button */
  .contact-form .col-md-6:first-child {
    text-align: center;
  }
  .form-group {
    position: relative;
    margin-bottom: 12px;
}
.contact-form {
    padding: 40px 0;
}
}


/* ============================================================
   SMALL MOBILE  < 400px
   ============================================================ */
@media (max-width: 399px) {

h1.headings {
    font-size: 32px;
    line-height: 37px;
}

    .contact-form h2 {
        font-size: 19px;
    }

    .contact-info-box {
        padding: 18px 14px;
    }
.info-item h4 {
    font-size: 17px;
}
}