/* =========================================================
   INSTAPROP - MAIN STYLESHEET
   ========================================================= */


/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */

:root {
    --green: #ffb336;
    --green2: #ffb336;
    --navy: #06263a;
    --ink: #102b3a;
    --muted: #687983;
}


/* =========================================================
   02. GLOBAL / RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Manrope, sans-serif;
    color: var(--ink);
    background: #fff;
}


/* =========================================================
   03. NAVBAR
   ========================================================= */

.navbar {
    min-height: 76px;
    box-shadow: 0 2px 20px #0b26340c;
}

.navbar-brand b {
    font-size: 24px;
}

.navbar-brand b span,
.footer-logo span {
    color: var(--green2);
}

.navbar-brand small {
    display: block;
    font-size: 7px;
    letter-spacing: 0.2px;
}

.logo-mark {
    font-size: 30px;
    color: var(--green2);
}

.nav-link {
    font-size: 13px;
    font-weight: 700;
    color: #1a2d37 !important;
}


/* =========================================================
   04. BUTTONS
   ========================================================= */

.btn {
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    padding: 12px 22px;
}

.btn-brand {
    background: linear-gradient(
        90deg,
        var(--green2),
        #50dd87
    );
    border: 0;
    color: #05283a;
}

.btn-outline-brand {
    border: 1px solid var(--green2);
    color: var(--green2);
}

.btn-ghost {
    border: 1px solid #fff;
    color: #fff;
}


/* =========================================================
   05. HERO SECTION
   ========================================================= */

.hero {
    min-height: 680px;
    padding-top: 76px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #092b3d;
}


/* Hero Video */

.hero video {
    position: absolute;
    inset: 76px 0 0;
    width: 100%;
    height: calc(100% - 76px);
    object-fit: cover;
}


/* Hero Overlay */

.hero-overlay {
    position: absolute;
    inset: 76px 0 0;
    background: linear-gradient(90deg, rgb(2 23 34 / 73%), rgba(2, 28, 40, 0.46), rgb(2 20 29 / 44%));
}


/* Hero Content */

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 45px;
    padding-bottom: 90px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.04;
    font-weight: 800;
    margin: 22px 0;
}

.hero h1 em {
    font-style: normal;
    color: var(--green);
}

.hero > .container p,
.hero-content > .row > .col-lg-7 > p {
    max-width: 600px;
    color: #e5ecef;
    line-height: 1.8;
}


/* Hero Eyebrow */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    border: 1px solid #ffffff55;
    border-radius: 30px;

    padding: 6px 12px;

    font-size: 10px;
    font-weight: 800;
}

.eyebrow span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}


/* Watch Video */

.watch {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    text-decoration: none;

    margin-top: 30px;
}

.watch > span {
    width: 42px;
    height: 42px;

    border: 2px solid #fff;
    border-radius: 50%;

    display: grid;
    place-items: center;
}

.watch b {
    font-size: 12px;
}

.watch small {
    display: block;
    font-weight: 400;
}


/* =========================================================
   06. HERO LEAD FORM
   ========================================================= */

.lead-form {
    background: rgba(10, 23, 30, 0.76);
    border: 1px solid #ffffff66;
    border-radius: 12px;

    padding: 27px;

    backdrop-filter: blur(10px);

    max-width: 390px;
    margin-left: auto;
}

.lead-form h3 {
    text-align: center;
    font-size: 19px;
    margin: 0;
}

.lead-form > p {
    text-align: center;
    font-size: 11px;
    color: #d5dfe4;
    margin: 6px 0 18px;
}


/* Form Inputs */

.input-icon {
    height: 45px;

    border: 1px solid #ffffff45;
    border-radius: 4px;

    margin-bottom: 10px;
    padding: 0 13px;

    display: flex;
    align-items: center;
    gap: 10px;
}

.input-icon input,
.input-icon select {
    width: 100%;

    background: transparent;
    border: 0;
    outline: 0;

    color: #fff;
    font-size: 12px;
}

.input-icon input::placeholder {
    color: #dfe7e9;
}

.input-icon select option {
    color: #222;
}


/* =========================================================
   07. TRUST BAR
   ========================================================= */

.trust-wrap {
    margin-top: -46px;
    position: relative;
    z-index: 4;
}

.trustbar {
    background: #082d42;
    color: #fff;

    border-radius: 10px;
    padding: 18px;

    box-shadow: 0 12px 30px #05223530;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 8px 18px;

    border-right: 1px solid #ffffff15;
}

.trust-item:last-child {
    border: 0;
}

.trust-item > i {
    font-size: 30px;
    color: var(--green);
}

.trust-item b,
.trust-item small {
    display: block;
}

.trust-item b {
    font-size: 12px;
}

.trust-item small {
    font-size: 10px;
    color: #cbd7dc;
    margin-top: 3px;
}


/* =========================================================
   08. COMMON SECTIONS
   ========================================================= */

.section {
    padding: 70px 0;
}

.section-kicker {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #218b58;
    font-weight: 800;
    margin-bottom: 9px;
}

.section-kicker.light {
    color: #51db89;
}

.heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.heading-row h2,
.section h2,
.why h2 {
    font-weight: 800;
}

.heading-row p,
.intro {
    font-size: 12px;
    color: var(--muted);
}


/* =========================================================
   09. PROJECT CARDS
   ========================================================= */

.project-card {
    border: 1px solid #e5e9eb;
    border-radius: 8px;
    overflow: hidden;

    background: #fff;

    box-shadow: 0 8px 25px #1838460b;
}


/* Project Image */

.project-img {
    height: 235px;

    background-size: cover;
    background-position: center;
    background-color: #dce8ec;

    position: relative;
}

.project-img span {
    position: absolute;
    top: 12px;
    left: 12px;

    background: var(--green2);
    color: #fff;

    padding: 6px 10px;
    border-radius: 4px;

    font-size: 9px;
}


/* Project Content */

.project-card h5 {
    font-size: 14px;
    font-weight: 800;
}

.project-card strong {
    font-size: 12px;
    white-space: nowrap;
}

.project-card small {
    font-size: 10px;
    color: #687b84;
}

.project-card small i {
    color: var(--green2);
}


/* Project Features */

.features {
    display: flex;
    gap: 14px;

    border-top: 1px solid #edf0f1;

    margin-top: 13px;
    padding-top: 12px;

    font-size: 9px;
    color: #64747d;
}


/* =========================================================
   10. WHY CHOOSE US
   ========================================================= */

.why {
    background: linear-gradient(
        110deg,
        #052b40,
        #082538
    );

    padding: 65px 0;

    color: #fff;
}

.why h2 {
    font-size: 30px;
}

.why h2 span {
    color: var(--green);
}

.why p {
    font-size: 12px;
    line-height: 1.8;
    color: #cad7dc;
}


/* Why Cards */

.why-card {
    height: 130px;

    background: #ffffff0c;
    border: 1px solid #ffffff08;
    border-radius: 6px;

    padding: 18px;
}

.why-card i {
    font-size: 26px;
    color: var(--green);

    display: block;

    margin-bottom: 10px;
}

.why-card b,
.why-card small {
    display: block;
}

.why-card b {
    font-size: 12px;
}

.why-card small {
    font-size: 9px;
    color: #c7d3d8;
    margin-top: 5px;
}


/* =========================================================
   11. ABOUT SECTION
   ========================================================= */

.about-photo {
    height: 310px;
    position: relative;
}

.placeholder-building {
    height: 100%;

    border-radius: 8px;

    background: url('../images/about.png') center / cover;

    display: grid;
    place-items: center;

    text-align: center;
}

.placeholder-building i {
    font-size: 90px;
    color: #ffffffb5;
}

.placeholder-building span {
    display: block;
}


/* Experience Badge */

.experience {
    position: absolute;
    right: -10px;
    bottom: -20px;

    background: #fff;
    color: #1c3039;

    border-radius: 8px;

    padding: 15px 25px;

    text-align: center;
    font-size: 10px;

    box-shadow: 0 10px 30px #0003;
}

.experience strong {
    display: block;

    color: var(--green2);

    font-size: 30px;
}


/* =========================================================
   12. SERVICES
   ========================================================= */

.service-row {
    margin-top: 40px;
}

.service > i {
    font-size: 38px;
}

.service h5 {
    font-size: 14px;
    font-weight: 800;
    margin-top: 15px;
}

.service p {
    font-size: 10px;
    color: #667984;
    line-height: 1.7;
}


/* =========================================================
   13. STATS SECTION
   ========================================================= */

.stats {
    padding: 40px 0;

    background:
        linear-gradient(
            #052b40ee,
            #052b40ee
        ),
        url('../images/stats-bg.jpg') center / cover;

    color: #fff;
}

.stats strong,
.stats span {
    display: block;
}

.stats strong {
    font-size: 34px;
    color: var(--green);
}

.stats span {
    font-size: 12px;
}


/* =========================================================
   14. TESTIMONIALS
   ========================================================= */

.testimonials {
    background: #fbfcfc;
}

.testimonial {
    text-align: left;

    background: #fff;

    border: 1px solid #e8edef;
    border-radius: 7px;

    padding: 28px;

    min-height: 220px;

    box-shadow: 0 8px 25px #173a4709;
}

.testimonial > i {
    font-size: 24px;
    color: #60737c;
}

.testimonial p {
    font-size: 11px;
    line-height: 1.8;
}

.testimonial b,
.testimonial small {
    display: block;
    font-size: 11px;
}

.testimonial small {
    color: #6c7d85;
}


/* Stars */

.stars {
    color: #ffb000;
    letter-spacing: 2px;
    margin: 12px 0;
}


/* =========================================================
   15. CALL TO ACTION
   ========================================================= */

.cta {
    background: #fff;
}

.cta-inner {
    background: linear-gradient(
        90deg,
        #16bd68,
        #5dde85
    );

    border-radius: 9px;

    padding: 20px 45px;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta h2 {
    font-size: 24px;
    margin: 0;
}

.cta p {
    font-size: 11px;
    margin: 3px 0 0;
}


/* =========================================================
   16. FOOTER
   ========================================================= */

footer {
    background: #05283b;
    color: #d2dde1;

    padding: 50px 0 25px;

    font-size: 11px;
}

footer h6 {
    color: #fff;
    font-size: 12px;
}

footer a {
    display: block;

    color: #d2dde1;
    text-decoration: none;

    margin: 6px 0;
}

.footer-logo {
    font-size: 25px;
    font-weight: 800;
    color: #fff;
}


/* =========================================================
   17. WHATSAPP FLOATING BUTTON
   ========================================================= */

.whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: #25d366;
    color: #fff;

    font-size: 25px;

    z-index: 10;

    box-shadow: 0 8px 20px #0003;
}


/* =========================================================
   18. TOAST / SUCCESS MESSAGE
   ========================================================= */

.toast-msg {
    position: fixed;
    right: 20px;
    top: 95px;

    background: #159b55;
    color: #fff;

    padding: 15px 22px;

    border-radius: 6px;

    z-index: 20;
}


/* =========================================================
   19. TABLET RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .navbar-collapse {
        padding: 15px 0;
    }

    .hero {
        min-height: 900px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .lead-form {
        margin: 0;
        max-width: none;
    }

    .trust-wrap {
        margin-top: -25px;
    }

    .trust-item {
        border: 0;
    }

    .heading-row {
        align-items: start;
        flex-direction: column;
    }

    .about-photo {
        margin-top: 20px;
    }
}


/* =========================================================
   20. MOBILE RESPONSIVE
   ========================================================= */

@media (max-width: 575px) {

    .hero h1 {
        font-size: 40px;
    }

    .hero-content {
        padding-top: 35px;
    }

    .project-img {
        height: 220px;
    }

    .trust-item {
        padding: 10px;
    }

    .trust-item > i {
        font-size: 22px;
    }

    .trust-item b {
        font-size: 10px;
    }

    .cta-inner {
        padding: 20px;

        flex-direction: column;

        text-align: center;

        gap: 15px;
    }

    .service {
        padding-right: 10px;
    }
}

/* =====================================================
   TEAM SECTION
===================================================== */

.team-section {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(54, 212, 119, .07),
            transparent 30%
        ),
        #fff;
}

.team-heading {
    max-width: 650px;
    margin: auto;
}

.team-heading h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--navy);
}

.team-heading h2 span {
    color: var(--green2);
}

.team-heading p {
    max-width: 580px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}


/* CARD */

.team-card {
    position: relative;
    background: #fff;
    border: 1px solid #e7ecee;
    border-radius: 12px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 12px 35px rgba(6, 38, 58, .06);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(6, 38, 58, .13);
}


/* IMAGE */

.team-image {
    height: 330px;
    position: relative;
    overflow: hidden;
    background: #e9f1f3;
}

.team-image::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(
        transparent,
        rgba(3, 29, 43, .8)
    );
    opacity: 0;
    transition: .35s;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.06);
}

.team-card:hover .team-image::after {
    opacity: 1;
}


/* SOCIAL BUTTONS */

.team-social {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translate(-50%, 20px);
    display: flex;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transition: .35s;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translate(-50%, 0);
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    transition: .25s;
}

.team-social a:hover {
    background: var(--green);
    color: var(--navy);
    transform: translateY(-3px);
}


/* MEMBER DETAILS */

.team-info {
    position: relative;
    padding: 21px 20px 18px;
    text-align: center;
}

.team-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 38px;
    height: 3px;
    border-radius: 5px;
    transform: translateX(-50%);
    background: var(--green);
}

.team-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
}

.team-info > span {
    display: block;
    margin-top: 5px;
    color: var(--green2);
    font-size: 10px;
    font-weight: 700;
}

.team-contact {
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid #edf1f2;
    color: #74858d;
    font-size: 10px;
}

.team-contact i {
    margin-right: 5px;
    color: var(--green2);
}


/* MOBILE */

@media (max-width: 767px) {

    .team-heading h2 {
        font-size: 28px;
    }

    .team-image {
        height: 380px;
    }

    .team-social {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}