/*
  font-family: "Poppins", sans-serif;
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/*----------  Body CSS  ----------*/
:root {
    --font-size: 16px;
    --color-white: #fff;
    --color-white2: #F2F3FE;
    --color-white4: #F3F4F3;

    --color-btn: #F6F2ED4D;
    --color-btn1: #F6F2ED1A;
    --text-color: #616161;
    --primary-color: #103144;
    --primary-color2: #D44E54;
    --primary-color3: #A052FF;
    --secondary-color: #01b6ff;

    --title-color: #060F2D;
    --color-black1: #020313;
    --color-black2: #030A09;
    --color-black3: #03070F;

    --color-gray: #696969;
    --color-gray2: #282828;
    --color-orange: #FF9F31;

    --color-border: rgb(6 15 45 / 10%);
    --color-border2: rgb(6 15 45 / 30%);

    --color-white-op5: rgb(255 255 255 / 5%);
    --color-white-op10: rgb(255 255 255 / 10%);
    --color-white-op20: rgb(255 255 255 / 20%);
    --color-white-op30: rgb(255 255 255 / 30%);
    --color-white-op40: rgb(255 255 255 / 40%);
    --color-white-op50: rgb(255 255 255 / 50%);
    --color-white-op60: rgb(255 255 255 / 60%);
    --color-white-op70: rgb(255 255 255 / 70%);
    --color-white-op80: rgb(255 255 255 / 80%);

    --color-black-op10: rgb(6 15 45 / 10%);

    --transition: 500ms ease-in-out;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-semibold: 600;
    --font-weight-medium: 500;
    --text-font: "Poppins", sans-serif;
    --title-font: "Poppins", sans-serif;
    --container-width: 1470px;

    /* background color */
    --bg-color1: #F2F3FE;
    --bg-color2: #E8EAFB;
    --bg-color3: #FEF6F6;
    --bg-color4: #FDF4F4;


    --color-gradient-1: linear-gradient(90deg, #3F5AFF 0%, #31B0FF 100%);
    --border-grdient-2: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);

}


html,
body {
    overflow-x: hidden;
    width: 100%;
    overflow-x: clip;
}

::-webkit-scrollbar-track {
    background-color: var(--title-color);
    border-left: 1px solid var(--title-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--title-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

:root {
    --natural: #fff;
}

body {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
    font-weight: 400;
    font-family: var(--text-font);
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
    font-weight: 400;
    font-family: var(--text-font);
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 40px;
    line-height: 50px;
    color: var(--title-color);
    font-weight: 700;
    font-family: var(--title-font);
    font-style: normal;
    -webkit-transition: .5s;
    transition: .5s;
    margin: 0;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 35px;

}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    color: var(--text-color);
}

.text-right {
    text-align: right;
}

.text-white {
    color: var(--color-white)
}

a:focus,
.btn:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
    text-decoration: none;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize !important;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
    -webkit-transition: .5s;
    transition: .5s;
}

ul {
    margin: 0px;
    padding: 0px;
}

ul li {
    list-style: none;
}

input:focus,
button:focus {
    border-color: none;
    outline-color: none;
    border: 1px solid none;
}

textarea:focus {
    border-color: var(--text-color);
    outline-color: var(--title-color);
}

label {
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

a,
i,
cite,
em,
var,
address,
dfn,
ol,
li,
ul {
    font-style: normal;
    font-weight: 400;
    list-style: none;
}

.body-bg {
    background: var(--bg-color1);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.border-color {
    border-bottom: 1px solid var(--color-border2);
}

.defult-btn a {
    display: inline-block;
    color: var(--color-white);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.3px;
    padding: 12px 12px 12px 40px;
    margin-top: 30px;
    border-radius: 50px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #3F58FF 0%, #31B0FF 100%);
}

.defult-btn.two a {
    background: linear-gradient(90deg, #DA4D4F 0%, #276BD4 100%);
}

.defult-btn.three a {
    background: linear-gradient(90deg, #3F58FF 0%, #A052FF 100%);
}

.defult-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

.defult-btn.two a::before {
    background: var(--primary-color2);
}

.defult-btn.three a::before {
    background: var(--primary-color3);
}

.defult-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

.defult-btn a i {
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-white-op40);
    background: var(--color-white-op20);
    margin-left: 6px;
}

.defult-btn button {
    display: inline-block;
    color: var(--color-white);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.3px;
    padding: 12px 12px 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    border: 0;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}

.defult-btn button::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--color-white);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

.defult-btn button:hover {
    color: var(--primary-color);
}

.defult-btn button:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

.auto-container {
    position: static;
    max-width: var(--container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

/* Default Background */

*::-moz-selection {
    background: var(--primary-color);
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--color-white);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--color-white);
    text-shadow: none;
}

::placeholder {
    font-size: 16px;
    color: var(--color-white);
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--color-white);
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--color-white);
}

:-ms-input-placeholder {
    /* IE 10+ */

    color: var(--color-white);
}

:-moz-placeholder {
    /* Firefox 18- */

    color: var(--color-white);
}

/* Contact Area */
.counter_area ::-moz-selection {
    color: #001d23;
    text-shadow: none;
}

.contact_area ::-moz-selection {
    color: #001d23;
    text-shadow: none;
}

.contact_area ::selection {
    color: #001d23;
    text-shadow: none;
}

.contact_area ::placeholder {
    color: #001d23;
    font-size: 16px;
}

.contact_area ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #001d23;
}

.contact_area ::-moz-placeholder {
    /* Firefox 19+ */
    color: #001d23;
}

.contact_area :-ms-input-placeholder {
    /* IE 10+ */
    color: #001d23;
}

.contact_area :-moz-placeholder {
    /* Firefox 18- */
    color: #001d23;
}

.blog_reply ::-moz-selection {
    color: #151948;
}

.blog_reply ::-moz-selection {
    color: #151948;
}

.blog_reply ::selection {
    color: #151948;
}

.blog_reply::placeholder {
    color: #151948;
}

.blog_reply ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #151948;
}

.blog_reply ::-moz-placeholder {
    /* Firefox 19+ */
    color: #151948;
}

.blog_reply :-ms-input-placeholder {
    /* IE 10+ */
    color: #151948;
}

.blog_reply :-moz-placeholder {
    /* Firefox 18- */
    color: #151948;
}

.border_bg {
    border-bottom: 1px solid #cccdd894;
    padding-bottom: 120px;
}

.m-l-50 {
    margin-left: 50px;
}

/* Padding Top Css */
.pt-10 {
    padding-top: 10px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-22 {
    padding-top: 22px;
}


/* padding bottom css */

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pl-130 {
    padding-left: 130px;
}

.pr-0 {
    padding-right: 0px;
}

.pl-0 {
    padding-left: 0px;
}

.pl-40 {
    padding-left: 40px;
}

.pr-40 {
    padding-right: 40px;
}

/* Global Poppins Font Enforcement (Excluding Icon Elements) */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a:not([class*="fa-"]),
span:not([class*="fa-"]),
button,
input,
select,
textarea,
li,
div:not([class*="fa-"]) {
    font-family: 'Poppins', sans-serif !important;
}

i,
[class*="fa-"],
[class*="bi-"],
.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
    font-family: "Font Awesome 7 Free", "Font Awesome 6 Free", "FontAwesome" !important;
}

/* =====================================================================
 * Hero Title Custom Styles & Responsive
 * ===================================================================== */
.hero-text-accent {
    font-size: 60px;
    font-weight: 500;
    color: var(--secondary-color, #01b6ff);
    vertical-align: middle;
    display: inline-block;
}

.hero-text-highlight {
    font-size: 80px;
    font-weight: 800;
    vertical-align: middle;
    display: inline-block;
}

@media (max-width: 1199px) {
    .hero-text-accent {
        font-size: 44px;
    }

    .hero-text-highlight {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .hero-section-one {
        padding-top: 340px !important;
        padding-bottom: 40px !important;
        margin: 0 !important;
    }
    .hero-section-one .hero_content h1 {
        margin-bottom: 18px !important;
        line-height: 1.15 !important;
    }
    .hero-text-accent {
        font-size: 34px !important;
        line-height: 1.15 !important;
    }

    .hero-text-highlight {
        font-size: 38px !important;
        line-height: 1.15 !important;
    }
}

@media (max-width: 479px) {
    .hero-text-accent {
        font-size: 28px !important;
    }

    .hero-text-highlight {
        font-size: 32px !important;
    }
}

/* =====================================================================
 * Hero Description Custom & Responsive Styles
 * ===================================================================== */
.hero-section-one .hero_content p.text,
.hero-description {
    font-size: 24px;
    line-height: 1.4;
    width: 75%;
    max-width: 700px;
    margin: 20px 0 25px;
}

@media (max-width: 1199px) {

    .hero-section-one .hero_content p.text,
    .hero-description {
        font-size: 20px;
        width: 85%;
        margin: 18px 0 22px;
    }
}

@media (max-width: 767px) {

    .hero-section-one .hero_content p.text,
    .hero-description {
        font-size: 16px !important;
        line-height: 1.45 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px !important;
        color: #2c3e50 !important;
    }
}

@media (max-width: 479px) {

    .hero-section-one .hero_content p.text,
    .hero-description {
        font-size: 15px !important;
        line-height: 1.45 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 18px !important;
    }
}

/* =====================================================================
 * Brand Description Custom Styles & Responsive
 * ===================================================================== */
.brand-desc-custom {
    position: static !important;
    margin-bottom: 70px !important;
}

.brand-desc-custom p,
.brand-desc-custom .brand-desc-label,
.brand-desc-custom .brand-desc-value {
    color: #ffffff;
    font-size: 38px !important;
    margin: 0;
    line-height: 1.3;
}

.brand-desc-custom .brand-desc-label {
    font-weight: 400;
    display: inline-block;
}

.brand-desc-custom .brand-desc-value {
    font-weight: 700;
    display: inline-block;
}

@media (max-width: 991px) {
    .brand-desc-custom {
        margin-bottom: 40px !important;
    }

    .brand-desc-custom p,
    .brand-desc-custom .brand-desc-label,
    .brand-desc-custom .brand-desc-value {
        font-size: 28px !important;
    }
}

@media (max-width: 767px) {
    .brand-desc-custom {
        margin-bottom: 35px !important;
    }

    .brand-desc-custom p,
    .brand-desc-custom .brand-desc-label,
    .brand-desc-custom .brand-desc-value {
        font-size: 22px !important;
    }
}

@media (max-width: 479px) {
    .brand-desc-custom {
        margin-bottom: 25px !important;
    }

    .brand-desc-custom p,
    .brand-desc-custom .brand-desc-label,
    .brand-desc-custom .brand-desc-value {
        font-size: 18px !important;
    }
}



/* =====================================================================
 * Why Choose Us Section - Responsive Images & Top Gradient Mask
 * ===================================================================== */

/* All Why Choose Us images: Top opacity gradient mask */
.why-choose-section-one .single-choose-box .choose-thumb img,
.why-choose-section-one .choose-single-box .choose-thumb img {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 100%) !important;
    mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 100%) !important;
}

/* Small screens (max-width: 991px): Both top and bottom boxes match exactly */
@media (max-width: 991px) {

    .why-choose-section-one .single-choose-box,
    .why-choose-section-one .choose-single-box {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 35px 35px 0 !important;
        margin-bottom: 30px !important;
        overflow: hidden !important;
    }

    .why-choose-section-one .single-choose-box .choose-content,
    .why-choose-section-one .choose-single-box .choose-content {
        margin-bottom: 20px !important;
        flex: 1 !important;
    }

    .why-choose-section-one .single-choose-box .choose-thumb,
    .why-choose-section-one .choose-single-box .choose-thumb {
        display: block !important;
        width: calc(100% + 70px) !important;
        max-width: none !important;
        margin-left: -35px !important;
        margin-right: -35px !important;
        margin-top: 20px !important;
        margin-bottom: 0 !important;
        height: auto !important;
        text-align: center !important;
    }

    .why-choose-section-one .single-choose-box .choose-thumb figure,
    .why-choose-section-one .choose-single-box .choose-thumb figure {
        margin: 0 !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .why-choose-section-one .single-choose-box .choose-thumb img,
    .why-choose-section-one .choose-single-box .choose-thumb img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: initial !important;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 100%) !important;
        mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 100%) !important;
    }
}

/* =====================================================================
 * Video Section Main Title Custom Styles & Responsive
 * ===================================================================== */
.video-title-overlay {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.video-main-title,
.video-section .video-main-title,
.video-title-overlay h1,
.video-title-overlay .section-title h1 {
    color: #ffffff !important;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
}

@media (max-width: 1199px) {

    .video-main-title,
    .video-section .video-main-title,
    .video-title-overlay h1,
    .video-title-overlay .section-title h1 {
        font-size: 28px !important;
    }
}

@media (max-width: 767px) {
    .video-title-overlay {
        top: 70%;
    }

    .video-main-title,
    .video-section .video-main-title,
    .video-title-overlay h1,
    .video-title-overlay .section-title h1 {
        font-size: 20px !important;
        line-height: 1.3 !important;
        padding: 0 15px;
    }
}

@media (max-width: 479px) {
    .video-title-overlay {
        top: 68%;
    }

    .video-main-title,
    .video-section .video-main-title,
    .video-title-overlay h1,
    .video-title-overlay .section-title h1 {
        font-size: 16px !important;
        line-height: 1.35 !important;
        padding: 0 10px;
    }
}

/* =====================================================================
 * Team Section - Hide Preview Thumb on Small Screens
 * ===================================================================== */
@media (max-width: 1199px) {

    .team-section-one .team-thumb,
    .team-section-one .team-sales-wrap,
    .team-section-one #teamPreview {
        display: none !important;
    }
}

/* =====================================================================
 * Why Choose Us - Box Description Styling (page-project-two.php)
 * ===================================================================== */
.why-choose-section-one .single-choose-box .choose-content,
.why-choose-section-one .choose-single-box .choose-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
}

.why-choose-section-one .choose-title {
    width: 100% !important;
}

.why-choose-section-one .choose-desc {
    width: 100% !important;
    margin-top: 10px !important;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color, #616161);
    transition: 0.5s;
    display: block !important;
}

.why-choose-section-one .single-choose-box:hover .choose-desc,
.why-choose-section-one .choose-single-box:hover .choose-desc {
    color: var(--color-white, #ffffff) !important;
}

/* =====================================================================
 * Project Section One - Equal Height on Desktop, Natural Height on Mobile
 * ===================================================================== */
@media (min-width: 992px) {
    .project-section-one .project-box {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .project-section-one .project-content {
        flex: 1 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
}

@media (max-width: 991px) {

    .project-section-one .col-xl-6,
    .project-section-one .col-lg-6 {
        display: block !important;
    }

    .project-section-one .project-box {
        height: auto !important;
        min-height: auto !important;
    }

    .project-section-one .project-content {
        height: auto !important;
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
}

.project-section-one .project-title {
    margin-bottom: 0 !important;
    width: 100% !important;
}

.project-section-one .project-desc {
    margin-top: 10px !important;
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff !important;
    width: 100% !important;
}

/* =====================================================================
 * Project Section One Main Title Outside Recuadro Box
 * ===================================================================== */
.project-section-one .project-main-title,
.project-section-one .sec-title .section-title h1.project-main-title {
    position: static !important;
    font-size: 48px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    top: auto !important;
    color: var(--title-color) !important;
    text-align: center !important;
    margin: 0 0 35px !important;
}

.project-section-one.inner .project-wrapper {
    padding-top: 60px !important;
}

@media (max-width: 991px) {

    .project-section-one .project-main-title,
    .project-section-one .sec-title .section-title h1.project-main-title {
        font-size: 32px !important;
        margin-bottom: 25px !important;
    }
}

@media (max-width: 479px) {

    .project-section-one .project-main-title,
    .project-section-one .sec-title .section-title h1.project-main-title {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }
}

/* =====================================================================
 * Team Carousel - Small Screens Scroll Border & Touch Action
 * ===================================================================== */
@media (max-width: 1199px) {
    .team-section-one .col-lg-8 {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .team-list-viewport {
        margin: 0 auto !important;
        width: calc(100% - 20px) !important;
        touch-action: pan-y !important;
    }
}

@media (max-width: 767px) {
    .team-section-one .col-lg-8 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .team-list-viewport {
        width: calc(100% - 30px) !important;
        touch-action: pan-y !important;
    }
}

/* =====================================================================
 * Choose Box Title Accent Span & Hover State
 * ===================================================================== */
.choose-title-accent {
    color: var(--secondary-color, #01b6ff);
    transition: color 0.5s ease;
}

.why-choose-section-one .single-choose-box:hover .choose-title-accent,
.why-choose-section-one .choose-single-box:hover .choose-title-accent {
    color: var(--color-white, #ffffff) !important;
}

/* =====================================================================
 * Project Section One Thumb Dimensions (708x480 ratio)
 * ===================================================================== */
.project-section-one .project-thumb {
    width: 100%;
    max-width: 708px;
    aspect-ratio: 708 / 480;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
    border-radius: 30px;
    margin: 0 auto;
}

/* Ambas imágenes: completas, centradas, sin recorte */
.project-section-one .project-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 1.3s ease;
    display: block;
}

/* Estado normal: 
   - img 1 (imagen de hover) oculta desplazada con blur
   - img 2 (imagen inicial) visible y centrada */
.project-section-one .project-thumb img:nth-child(1) {
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
    z-index: 2;
}

.project-section-one .project-thumb img:nth-child(2) {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
    z-index: 1;
}

/* Estado hover: 
   - img 1 entra animada
   - img 2 sale desplazada con blur */
.project-section-one .project-box:hover .project-thumb img:nth-child(1) {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.project-section-one .project-box:hover .project-thumb img:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

/* =====================================================================
 * HubSpot Form Status Message Styles
 * ===================================================================== */
.hubspot-status-message {
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.hubspot-status-message.status-success {
    background-color: rgba(40, 167, 69, 0.2);
    color: #ffffff;
    border: 1px solid #28a745;
}

.hubspot-status-message.status-error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #ffffff;
    border: 1px solid #dc3545;
}

.defult-btn button.is-loading {
    opacity: 0.75;
    cursor: not-allowed;
}