/* style.css — custom page CSS */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  background: url('/assets/landing/img/hero.jpg') center center / cover no-repeat;
}

/* dark overlay similar to screenshot */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,7,7,0.55);
  backdrop-filter: blur(0.3px);
}

/* container max-width rule: if viewport >= 1440px then 1240px */
:root {
  --container-max: 1240px;
  --accent: #EE9B36; /* orange used for CTA */
  --dark-gray: #444;
}

.custom-container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* enforce 1240px at wide screens */
@media (min-width: 1440px) {
  .custom-container {
    max-width: var(--container-max);
}
}

/* a slightly narrower container for mid screens */
@media (min-width: 1200px) and (max-width: 1439px) {
  .custom-container {
    max-width: 1140px;
}
}

/* navbar */
.navbar {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 40;
  top: 50px;
  left: 0;
}


/* hero inner content */
.hero-inner {
    position: relative;
    z-index: 30;
    padding-top: 100px;
    padding-bottom: 30px;
}

.upper-small {
    margin-bottom: 14px;
    opacity: 0.95;
    text-align: center;
    color: #FFFFFF;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 2.7em;
}

.hero-title {
    font-family: "Inter", Sans-serif;
    font-size: 65px;
    font-weight: 800;
    line-height: 1.2em;
    color: #FFFFFF;
    margin: 0;
}


.hero-sub {
  max-width: 885px;
  margin: 0 auto;
  opacity: 0.95;
  text-align: center;
  color: #FFFFFF;
  font-family: "Inter", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding-top: 20px;
  padding-bottom: 30px;
}


/* CTA */
/* Infinite pulse animation */
@keyframes zoomPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.09); }
    100% { transform: scale(1); }
}

/* Default Button */
.btn-cta {
    background: var(--accent);
    border: none;
    box-shadow: 0 6px 18px rgba(243, 156, 31, 0.18);
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    border-radius: 16px;
    padding: 16px 30px;
    animation: zoomPulse 1.7s ease-in-out infinite; /* Always pulsing */
    transition: background 0.25s ease, color 0.25s ease;
}

/* Hover Effect */
.btn-cta:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

.btn-cta-outline {
  background: #ffc77a;
  color: #111;
  border-radius: 28px;
  padding: 10px 20px;
  font-weight: 700;
  text-decoration: none;
}

.why_choose_sec{
    padding-block: 50px;
}
/* Section titles */
.section-title {
  font-family: "Inter", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}
.p_b{
    padding-top: 30px;
    margin: 15px;
}
.feature-card {
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    padding: 25px;
    min-height: 277px;
    height: 100%;
    width: 100%;
    transition: all 0.5s;
}

.feature-card:hover{
    box-shadow: 0px 0px 10px 0px rgba(21.51608695652174, 97.88436105860114, 139.40000000000003, 0.66);
}
.feature-icon img {
    max-width: 66px;
    width: 100%;
}
.feature-card h5 {
    padding-top: 15px;
    padding-bottom: 20px;
    text-align: left;
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-size: 20px;
    font-weight: 500;
}
.feature-card p {
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 15px;
}

/* testimonial band */
.testimonial-band {
    position: relative;
    background: url(/assets/landing/img/testimonial-bg.jpg) center / cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1;
    min-height: 450px;
    place-content: center;
}

/* Dark overlay */
.testimonial-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* darkness level */
  z-index: -1;
}

.testimonial-title {
    margin-bottom: 0;
    font-family: "Inter", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    font-style: italic;
    color: #FFFFFF;
}

.testimonial-quote {
    margin: 20px 20px 20px;
    text-align: center;
    color: #FFFFFF;
    font-family: "Inter", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    color: #FFFFFF;
    font-family: "Inter", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 15px;
}

.our_process_sec{
    padding-block: 50px;
}
.our_process_sec .p_b{
    padding-top: unset;
}
.our_process_sec .feature-card h5 {
    text-align: center;
    color: #EE9B36;
    font-family: "Inter", Sans-serif;
    font-size: 24px;
    font-weight: 600;
}
.our_process_sec .feature-card p {
    font-weight: 500;
}
.pro_pic {
    width: 100%;
    height: 100%;
}
.pro_pic img {
    width: 100%;
    height: 100%;
}
.p-image{
    padding: 10px !important;
}

/* process cards */
.process-card .process-icon {
  font-size: 26px;
  color: var(--accent);
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(243,156,31,0.06);
}

/* image tiles */
.image-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 170px;
}

/* CTA box */

.cta-section {
    position: relative;
    background: url(/assets/landing/img/cta-bg.jpg) center / cover no-repeat;
    background-attachment: fixed;
    padding: 15px;
    text-align: center;
    z-index: 1;
    min-height: 500px;
    place-content: center;
    padding-top: 48px;
    padding-bottom: 48px;
}

/* Dark overlay */
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
}

.cta-box {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 50px;
}
.cta-box h4 {
    font-family: "Inter", Sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-style: normal;
    line-height: 1.2em;
    color: #000000;
    margin: 0;
    padding-bottom: 30px;
}
.cta-box p {
    text-align: center;
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3em;
    padding-top: 30px;
}
.cta-box .btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    margin: auto;
}
.cta-box .btn-cta img {
    width: 20px;
    margin: 5px;
}
.cta-box .btn-cta:hover {
    background: #000 !important;
    color: #fff !important;
}


/* footer */
.footer_logo_sec p {
    text-align: left;
    color: #FFFFFF;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4em;
    padding-top: 20px;
    margin-bottom: 15px;
    max-width: 410px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}
.social-icons a {
    background: #ee9b36;
    width: 22px;
    height: 22px;
    border-radius: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icons a svg {
    width: 11px;
}
.email_block {
    width: 100%;
    height: 100%;
    place-content: center;
}
.newsletter .form-control {
    border-radius: 3px;
    padding: .5rem 1rem;
    transition: all .3s;
    font-size: 15px;
    line-height: 1.4;
    min-height: 40px;
    color: #424242;
    font-weight: 400;
}
.btn-subscribe {
    background-color: #EE9B36;
    color: #000000;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 12px 24px;
    fill: #fff;
    text-align: center;
    transition: all .3s;
    border-radius: 3px;
    max-width: 200px;
    width: 100%;
}
.btn-subscribe:hover{
 background-color: #EE9B36; 
}
.email_block h3 {
    font-family: "Inter", Sans-serif;
    font-size: 22px;
    font-weight: 600;
    font-style: normal;
    line-height: 1.2em;
    color: #FFFFFF;
    padding-bottom: 20px;
    margin: 0;
}
.bottom_footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #8D8D8D;
    padding-top: 30px;
    margin-top: 30px;
}
.copyright {
    text-align: left;
    color: #FFFFFF;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3em;
}
.terms_block {
    display: flex;
    align-items: center;
    gap: 15px;
}
.terms_block a {
    color: #FFFFFF;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3em;
}

footer a { color: #d1d1d1; text-decoration: none; }
footer a:hover { color: #fff; }

/* small screens adjustments */

@media (max-width: 991px) {

    .hero-title {
        font-size: 36px;
    }
    .section-title {
        font-size: 28px;
    }
    .cta-box h4 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .hero {
        position: relative;
        min-height: fit-content;}
        .hero-inner {
            padding-top: 80px;
            padding-bottom: 20px;
        }
        .hero-title {
            font-size: 20px;
            line-height: 28px;
        }
        .navbar {
            top: 10px;
        }
        .upper-small {
            line-height: unset;
            font-size: 13px;
        }
        .hero-sub {
            opacity: 1;
            font-size: 16px;
        }
        .section-title {
            font-size: 20px;
        }
        .p_b {
            padding-top: 15px;
            margin: 0;
        }
        .testimonial-band {
            min-height: auto;
        }
        .testimonial-title {
            font-size: 20px;

        }
        .testimonial-quote {
            margin: 20px 0px 20px;
            font-size: 15px;
        }
        .testimonial-author {
            font-size: 16px;
            margin-bottom: 0px;
        }
        .cta-box {
            padding: 15px;
        }
        .cta-box h4 {
            font-size: 18px;
        }
        .btn-cta {
            font-size: 10px;
            padding: 16px 10px;

        }
        .cta-box p {
            font-size: 13px;
        }
        .footer_logo_sec p {
            font-size: 13px;
        }
        .social-icons {
            margin-bottom: 15px;
        }
        .email_block h3 {
            font-size: 16px;
            padding-bottom: 10px;
            margin: 0;
        }
        .bottom_footer {
            width: 100%;
            justify-content: center;
        }
        .terms_block {
            width: 100%;
            justify-content: center;
        }
        .terms_block a {
            font-size: 13px;
            text-align: center;
        }
    }


/* ============================================================================================/
                                        Credential Pages
================================================================================================*/
.sign_modal .modal-header {
    border: none;
    padding: 0;
    padding-top: 15px;
    padding-right: 15px;
}
.sign_modal .modal-content {
    background: #fef7ef;
    background-image: url(img/sign-bg-top.png.);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top right;
}
.sign_content_wrap {
  max-width: 500px;
  margin: auto;
  width: 100%;
  background-image: url(../img/sign-content-top-line.png),
  url(../img/sign-content-bottom-line.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top center, bottom center;
  padding: 50px 0px;
  text-align: center;
}
.sign_content_wrap h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  text-align: center;
  color: #2e2e2e;
}
.forgot_top_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: #525252;
  padding-inline: 50px;
}
.sign_content_wrap p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  color: #525252;
}
.sign_form_wrap-bg {
  position: relative;
  max-width: 500px;
  margin: auto;
}
.sign_form_wrap-bg::after {
  content: "";
  background-image: url(img/sign-form-bg.jpg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left bottom;
  width: 155px;
  height: 170px;
  position: absolute;
  left: -30px;
  bottom: -30px;
}
.sign_form_wrap {
    max-width: 500px;
    margin: auto;
    min-height: 473px;
    padding: 30px 56.58px 30px 56.42px;
    border-radius: 8px;
    box-shadow: 0px 4px 9px 0px #171a1f1c;
    background: #fff;
    position: relative;
    z-index: 9;
    margin-bottom: 30px;
}

.form_content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
  color: #2e2e2e;
  margin-bottom: 30px;
}
.form_content .input_group {
  position: relative;
}
.input_group .form-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    text-align: left;
    color: #424856;
}
.form_content .input_group .form-control {
  width: 100%;
  height: 48px;
  background: #f3f4f6;
  padding: 13px;
  gap: 0px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}
.form_content .form-control:focus, .form_content .input_group .form-select:focus {
    color: #212529;
    background-color: #fff !important;
    border: 1px solid #ee9b36 !important;
    outline: 0;
    box-shadow: unset !important;
}
.eye_icon {
    position: absolute;
    right: 10px;
    top: 45px;
    transform: translate(-10px, 0px);
}
#laravel-notify {
  z-index: 9;
  position: absolute;
}
#laravel-notify .shadow-lg {
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.175) !important;
}
p.text_bottom {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #525252;
}
p.text_bottom a {
    color: #ee9b36 !important;
    text-decoration: none;
}
.forgot_sec {
  display: flex;
  align-items: center;
  justify-content: end;
}
.forgot_sec a {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #ee9b36;
  text-decoration: none;
}
.btn_primary {
    width: 100%;
    height: 48px;
    padding: 13px 0px;
    border-radius: 6px;
    background: #ee9b36;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #fff;
    transition: all 0.7s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_primary:hover {
    background: #ee9b36;
    color: #fff !important;
    transform: translateY(-5px);
}

