
/* Global Style Start */
:root {
    /* Font */
    --primary_font-family: 'Satoshi', sans-serif;
    /* Color */
    --primary_color: #00AFFF;
    --secondary_color: #0077CC;
    --accent_color: #A6A6A6;
    --color_one: #0D1117;
    --color_two: #EAFBF2;
    --default_color: #FFFFFF;
    /* Text Color */
    --text_color: #C0C6D6;
    /* BG */
    --primary_bg: #0D111A;
}

/* selection */
::selection {
    color: var(--primary_color);
    background: var(--secondary_color);
}
/* selection */

html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    font-family: var(--primary_font-family);
}
section {
    padding: 100px 0px;
}
a {
    text-decoration: none;
}
img {
    object-fit: cover;
}
ul {
    list-style-type: none;
}
h1,h2,h3,h4,h5,h6,p {
    font-family: var(--primary_font-family);
}
h2 {
    color: var(--secondary_color);
    font-size: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}
h6 {
    color: var(--primary_color);
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
}
h4 {
    color: var(--primary_color);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
}
h5 {
    color: var(--primary_color);
    font-size: 24px;
    font-weight: 500;
}
p {
    color: var(--text_color);
    font-size: 18px;
    font-weight: 300;
}
.d2c_img_wrapper {
    width: 593px;
    height: 614px;
}
.d2c_img_wrapper img {
    border: 2px solid #2D374C;
}
.d2c_img_overlay {
    background: linear-gradient(180deg, rgba(14, 18, 27, 0.00) 0%, #0E121B 100%), radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.21) 16.19%, rgba(13, 17, 26, 0.00) 100%);
    position: absolute;
    inset: 0;
}

/* btn */
.btn {
    color: var(--primary_bg);
    background: var(--secondary_color);
    border: 1px solid var(--secondary_color);
    border-radius: 0;
    padding: 9px 30px 8px;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 4px;
    transition: 0.4s all;
}
.btn:hover {
    color: var(--primary_color);
    background: var(--color_one);
    border: 1px solid var(--accent_color);
    transition: 0.4s all;
}
.btn:active {
    color: var(--primary_color) !important;
    background: var(--color_one) !important;
    border: 1px solid var(--accent_color) !important;
    transition: 0.4s all;
}
.d2c_secondary_btn {
    border: 1px solid var(--accent_color);
    background: var(--color_one);
    color: var(--primary_color);
    transition: 0.4s all;
}
.d2c_secondary_btn:hover {
    color: var(--primary_bg);
    background: var(--secondary_color);
    border: 1px solid var(--secondary_color);
    transition: 0.4s all;
}
.d2c_secondary_btn:active {
    color: var(--primary_bg) !important;
    background: var(--secondary_color) !important;
    border: 1px solid var(--secondary_color) !important;
    transition: 0.4s all;
}
/* Icon */
.d2c_icon {
    width: 32px;
    height: 32px;
    border-radius: 100px;
    border-bottom: 1px solid var(--secondary_color);
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.35) 0%, rgba(13, 17, 26, 0.05) 100%);
    box-shadow: 0px 5px 20px 5px rgba(94, 106, 210, 0.22);
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
/* Global Style End */

/* Preloader End */
.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--default_color);
    z-index: 9999;
    transition: opacity 0.5s ease;
    opacity: 1;
}
.preloader.hide {
    opacity: 0;
    pointer-events: none;
}
.preloader img {
    max-width: 200px;
    max-height: 50px;
}
/* Preloader End */

/* Navbar Start */
.navbar-brand {
    max-width: 106px;
}
.d2c_navbar {
    padding: 0px 0px;
    background-image: url(../images/navbar_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--accent_color);
}
.d2c_navbar .navbar-nav .nav-item {
    margin: 0px 2px;
    display: flex;
    align-items: center;
}
.d2c_navbar .navbar-nav .nav-item:last-child {
    margin-right: 0;
}
.d2c_navbar .navbar-nav .nav-link {
    color: var(--primary_color);
    font-family: var(--primary_font-family);
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 8px 27px 7px;
    background: transparent;
    transition: .4s all ease;
    border-radius: 4px;
}
.d2c_navbar .navbar-nav .nav-link:hover {
    color: var(--primary_bg);
    transition: .4s all ease;
    background: var(--secondary_color);
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: var(--primary_bg);
    transition: .4s all ease;
    background: var(--secondary_color);
}
.d2c_navbar .d2c_nav_btn.active{
    background: var(--secondary_color);
    color: var(--primary_color);
    border: 1px solid var(--primary_color);
    transition: 0.4s all;
}
/* Nav Item Show from Side */
body .d2c_mobile_view {
    position: fixed;
    height: 100vh;
    inset: 0;
    opacity: 1;
}
.navbar.d2c_mobile_view_body .navbar-nav {
    width: 100%;
}
.navbar.d2c_mobile_view_body .nav-item {
    margin-right: 0;
}
.d2c_mobile_view .show_width {
    max-width: 14.625rem;
    width: 100%;
    height: 100vh;
    position: absolute;
    right: -380px;
    top: 0;
    transition: 0.5s;
    padding: 20px 15px;
    background-color: #1B2130;
    overflow: scroll;
    z-index: 9999;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.d2c_mobile_view.show .show_width {
    right: 0;
    transition: 0.5s;
}
.hide_width {
    max-width: 15.625rem;
    width: 100%;
    height: 100vh;
    position: absolute;
    right: -380px !important;
    top: 0;
    transition: 0.5s !important;
    padding: 20px 15px;
    background-color: #021616;
    overflow: scroll;
    z-index: 9999;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler {
    border: 1px solid #495381;
    color: #495381;
    padding: 7px 10px;
    width: 44px;
    margin-left: 10px;
    transition: .4s all ease;
}
.navbar-toggler:hover {
    background: transparent;
    color: #495381;
    transition: .4s all ease;
}
.d2c_cross_btn {
    width: auto;
    border: none;
}
@media only screen and (min-width:991px) {
    body .d2c_mobile_view {
        opacity: 0;
        transition: .5s;
    }
}
/* Navbar End */

/* Section Background Start */
.d2c_hero_wrapper {
    background: linear-gradient(180deg, rgba(255,255,255,0) 85%, rgba(13,18,26,1) 95%), url(../images/hero_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.d2c_about_wrapper {
    background: url(../images/about_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.d2c_services_wrapper {
    background: url(../images/services_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.d2c_counter_choose_bg {
    background: url(../images/counter_choose_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.d2c_cta_project_bg {
    background: url(../images/cta_project_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.d2c_partner_testimonial_bg {
    background: url(../images/partner_testimonial_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.d2c_contact_wrapper {
    background: url(../images/contact_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
/* Section Background End */

/* Hero Section Start */
h1 {
    color: var(--primary_color);
    font-size: 64px;
    font-weight: 500;
    line-height: 78px;
    text-transform: capitalize;
}
h1 span {
    color: var(--secondary_color);
    font-weight: 900;
}
.d2c_hero_wrapper h4 {
    letter-spacing: 6px;
}
.d2c_hero_wrapper h5 {
    letter-spacing: 5.76px;
    margin-bottom: 20px;
}
.d2c_hero_wrapper img.r {
    border-radius: 296.5px 0px 0px 5px;
}
.d2c_hero_wrapper .d2c_img_overlay {
    border-radius: 296.5px 0px 0px 5px;
}
.d2c_hero_wrapper p {
    margin-bottom: 35px;
}
/* Hero Section End */

/* About Section Start */
.d2c_about_wrapper img {
    border-radius: 0px 296.5px 0px 0px;
    object-fit: cover;
}
.d2c_about_wrapper .d2c_img_overlay {
    border-radius: 0px 296.5px 0px 0px;
}
.d2c_about_wrapper p {
    margin-bottom: 30px;
}
.d2c_about_wrapper ul {
    list-style-type: none;
    padding-left: 0;
}
.d2c_about_wrapper ul li {
    color: var(--primary_color);
    font-size: 17px;
    font-weight: 500;
    font-family: var(--primary_font-family);
    padding: 10px 0px;
}
.d2c_about_wrapper i {
    font-size: 14px;
}

/* About Section End */

/* Service Section Start */
.d2c_card {
    padding: 1px 1px 0px 1px;
    background: linear-gradient(180deg, rgba(94,106,210,0.5) 0%, rgba(19,23,34,0) 90%);
}
.d2c_card_child {
    padding: 10px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.17) 0%, rgba(13, 17, 26, 0) 100%), #131722;
}
.d2c_card_child_two {
    padding: 0px 1px 1px 1px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.17) 0%, rgba(13, 17, 26, 0) 100%), #131722;
    transition: 0.4s all;
}
.d2c_card_child_three {
    padding: 25px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.17) 0%, rgba(13, 17, 26, 0) 100%), #131722;
}
.d2c_card:hover .d2c_card_child_two {
    background: linear-gradient(0deg, rgba(94,106,210,0.3) 0%, rgba(27,31,47,1) 30%);
    transition: 0.4s all;
}
.d2c_icon_wrapper {
    width: 75px;
    height: 75px;
    padding: 0px 1px 1px 1px;
    border-radius: 100px;
    background: linear-gradient(180deg, rgba(32,35,55,1) 0%, rgba(57,59,96,1) 100%);
    margin: 0 auto 30px;
}
.d2c_service_icon {
    width: 74px;
    height: 74px;
    font-size: 30px;
    color: var(--secondary_color);
    border-radius: 100px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.35) 0%, rgba(13, 17, 26, 0.5) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.d2c_card h6 {
    margin-bottom: 10px;
}
/* Service Section End */

/* Counter Section Start */
.d2c_border_bg {
    background: linear-gradient(180deg, rgba(87,98,193,0.5) 0%, rgba(50,57,106,0.5) 100%);
    padding: 1px;
}
.d2c_count_wrapper {
    background-image: url(../images/d2c_box_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 100px;
}
.d2c_counter_wrapper h1 span {
    color: var(--primary_color);
    font-weight: 700;
}
.d2c_counter_wrapper h6 {
    color: var(--secondary_color);
}
/* Counter Section End */

/* Why Choose Me Section Start */
.d2c_choose_me_wrapper h4 {
    color: var(--secondary_color);
    font-size: 27px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.d2c_choose_me_wrapper .d2c_icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
    color: var(--text_color);
}
.d2c_choose_me_wrapper h6 {
    color: var(--secondary_color);
    font-size: 18px;
    font-weight: 500;
}
.d2c_choose_me_wrapper img {
    border-radius: 296.5px 0px 0px 0px;
}
.d2c_choose_me_wrapper .d2c_img_overlay {
    border-radius: 296.5px 0px 0px 0px;
}
.d2c_choose_me_wrapper li {
    margin: 7px 0px;
}
/* Why Choose Me Section End */

/* Call To Action Start */
.d2c_c2a_card {
    padding: 70px 80px;
    background-image: url(../images/d2c_box_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.d2c_c2a_card h2 {
    padding: 0px 101px;
    margin-bottom: 30px;
}
.d2c_c2a_card p {
    margin-bottom: 40px;
}
/* Call To Action End */

/* Project Section Start */
.d2c_project_wrapper h2 {
    margin-bottom: 20px;
}
.d2c_project_wrapper p {
    margin-bottom: 65px;
}
.d2c_project_wrapper .d2c_large_img {
    height: 700px;
}
.d2c_project_wrapper .d2c_small_img {
    height: 338px;
}
.d2c_project_wrapper .d2c_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13, 17, 26, 0.80) 0%, rgba(13, 17, 26, 0.80) 100%);
    opacity: 1;
    transition: 0.4s all;
}
.d2c_project_wrapper .d2c_card {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    pointer-events: none;
    will-change: transform, opacity;
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.d2c_project_wrapper .d2c_img_wrapper:hover .d2c_overlay {
    opacity: 0;
    transition: 0.4s all;
}
.d2c_project_wrapper .d2c_img_wrapper:hover .d2c_card {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.d2c_project_wrapper .d2c_img_wrapper.show-card .d2c_card {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.d2c_project_wrapper .d2c_card_child_three {
    height: 100%;
    padding: 0px 18px 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}
.d2c_project_wrapper .d2c_content_wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(12px);
    will-change: transform, opacity;
    transition: opacity 0.65s ease 0.05s, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}
.d2c_project_wrapper .d2c_img_wrapper:hover .d2c_card .d2c_content_wrapper,
.d2c_project_wrapper .d2c_img_wrapper.show-card .d2c_content_wrapper {
    opacity: 1;
    transform: translateY(0);
}
.project-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 175, 255, 0.95), rgba(44, 119, 255, 0.95));
    color: var(--default_color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 175, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.project-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.project-cta span {
    font-size: 12px;
    letter-spacing: 0.08em;
}
.project-cta:hover,
.project-cta:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 175, 255, 0.35);
    background: linear-gradient(135deg, rgba(0, 175, 255, 1), rgba(44, 119, 255, 1));
    color: var(--default_color);
}
.project-cta:hover svg,
.project-cta:focus-visible svg {
    transform: translateX(4px);
}
.project-cta:focus-visible {
    outline: 2px solid rgba(0, 175, 255, 0.6);
    outline-offset: 4px;
}
.project-cta[aria-disabled="true"] {
    opacity: 0.65;
    pointer-events: none;
}
.portfolio-showcase {
    padding: 100px 0;
}
.portfolio-masonry {
    column-count: 3;
    column-gap: 28px;
    margin-top: 48px;
}
.portfolio-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 28px;
    break-inside: avoid;
    background: rgba(19, 23, 34, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    box-shadow: 0 22px 55px rgba(15, 22, 41, 0.45);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(15, 22, 41, 0.55);
}
.portfolio-card__media {
    position: relative;
    overflow: hidden;
}
.portfolio-card__media img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-card__media img {
    transform: scale(1.04);
}
.portfolio-card__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px 28px 32px;
}
.portfolio-card__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.portfolio-card__category {
    background: rgba(0, 175, 255, 0.15);
    border: 1px solid rgba(0, 175, 255, 0.35);
    color: var(--primary_color);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    border-radius: 999px;
    padding: 6px 14px;
    align-self: flex-start;
}
.portfolio-card__body h3 {
    color: var(--default_color);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}
.portfolio-card__body p {
    color: var(--text_color);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}
.portfolio-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.portfolio-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color_two);
    font-size: 15px;
}
.portfolio-card__features li i {
    color: var(--primary_color);
    margin-top: 3px;
}
.portfolio-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.portfolio-card__stack {
    color: var(--text_color);
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
}
.portfolio-card .project-cta {
    margin-top: 0;
    align-self: flex-start;
}
.portfolio-card .project-cta svg {
    width: 18px;
    height: 18px;
}
@media (max-width: 1199.98px) {
    .portfolio-masonry {
        column-count: 2;
    }
}
@media (max-width: 767.98px) {
    .portfolio-masonry {
        column-count: 1;
        column-gap: 0;
    }
    .portfolio-card {
        margin-bottom: 24px;
    }
    .portfolio-card__body {
        padding: 22px 22px 26px;
    }
    .portfolio-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .portfolio-card__stack {
        text-align: left;
    }
}
/* Project Section End */

/* Partner Section Start */
.d2c_partner_box {
    background-image: url(../images/d2c_box_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 80px 60px;
}
.d2c_partner_box img {
    margin: 0 auto;
}
.slick-slide {
    padding: 0px 12px;
}
/* Grid responsive (si no usas el slider en móvil) */
.d2c_partner_slider {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 16px;
}

/* Caja del logo: misma altura para todos, centrado perfecto */
.d2c_card .d2c_card_child_three.partners {
	display: flex;
	align-items: center;
	justify-content: center;
	/* Alto base; ajusta a tu diseño */
	height: 72px;               /* desktop */
	padding: 10px 12px;
	background: transparent;    /* o un sutil overlay si quieres */
}

/* Imagen del logo: nunca se deforma, siempre entra */
.partner-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;        /* clave para mantener proporciones */
	image-rendering: auto;
	display: block;
}

/* Responsive: en móviles baja un poco la altura */
@media (max-width: 576px) {
	.d2c_card .d2c_card_child_three.partners { height: 56px; }
}

/* (Opcional) mejora visual */
.partner-logo { filter: grayscale(0.1); opacity: 0.9; transition: .2s ease; }
.partner-logo:hover { filter: none; opacity: 1; }

/* Partner Section End */

/* Testimonial Section Start */
.d2c_testimonial_wrapper h2 {
    margin-bottom: 60px;
}
.d2c_testimonial_wrapper h4 {
    color: var(--text_color);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 40px;
}
.d2c_testimonial_wrapper h6 {
    font-size: 18px;
    color: var(--secondary_color);
    margin-bottom: 5px;
}
.d2c_testimonial_wrapper p {
    font-size: 16px;
    color: var(--text_color);
}
.d2c_testimonial_wrapper .d2c_testimonial_slider {
    position: relative;
    padding: 0 56px;
}
.d2c_carousel_left_btn,
.d2c_carousel_right_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.d2c_carousel_left_btn {
    left: 0;
}
.d2c_carousel_right_btn {
    right: 0;
}
.slick-arrow {
    width: 56px;
    height: 56px;
    font-size: 18px;
    border-radius: 100px;
    color: var(--primary_color);
    border: 1px solid #2e3358;
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.35) 0%, rgba(13, 17, 26, 0.05) 100%);
    box-shadow: 0px 5px 20px 5px rgba(94, 106, 210, 0.22);
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991.98px) {
    .d2c_testimonial_wrapper .d2c_testimonial_slider {
        padding: 0 32px;
        padding-bottom: 88px;
    }
    .d2c_carousel_left_btn,
    .d2c_carousel_right_btn {
        top: auto;
        bottom: 16px;
        transform: translate(-50%, 0);
    }
    .d2c_carousel_left_btn {
        left: 50%;
        margin-right: 0;
        transform: translate(-120%, 0);
    }
    .d2c_carousel_right_btn {
        right: auto;
        left: 50%;
        margin-left: 0;
        transform: translate(20%, 0);
    }
}

@media (max-width: 575.98px) {
    .d2c_testimonial_wrapper .d2c_testimonial_slider {
        padding: 0;
        padding-bottom: 92px;
    }
    .d2c_carousel_left_btn {
        transform: translate(-130%, 0);
    }
    .d2c_carousel_right_btn {
        transform: translate(30%, 0);
    }
}
/* Testimonial Section End */

/* Contact Section Start */
.form-label {
    color: var(--secondary_color);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 6px !important;
}
.form-control {
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.17) 0%, rgba(13, 17, 26, 0) 100%), #131722;
    color: var(--text_color) !important;
    font-family: var(--secondary_font);
    border-radius: 4px;
    border: 1px solid #333B6D;
    font-size: 15px;
    font-weight: 400;
    padding: 10px;
    margin-bottom: 20px;
}
.form-control:focus {
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.17) 0%, rgba(13, 17, 26, 0.00) 100%), #131722;
    box-shadow: none;
    border: 1px solid #333B6D;
    color: var(--primary_text_color);
}
.d2c_contact_wrapper ::placeholder {
    color: var(--text_color) !important;
    opacity: 0.4;
}
textarea {
    margin-bottom: 30px !important;
}
/* Contact Section End */

/* Footer Section Start */
.d2c_footer_wrapper {
    background: url(../images/group.png), url(../images/footer_bg.jpg), var(--primary_bg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
    border-top: 1px solid #34396679;
}
.d2c_footer_card {
    height: 100%;
    padding: 30px;
    border: 1px solid rgba(94, 106, 210, 0.20);
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.17) 0%, rgba(13, 17, 26, 0) 100%), #131722;
}
.d2c_footer_card img {
    margin-bottom: 18px;
}
.d2c_footer_card h3 {
    color: var(--secondary_color);
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 42px;
}
.d2c_footer_card ul {
    list-style-type: none;
    padding-left: 0;
}
.d2c_footer_card ul li a {
    color: var(--text_color);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}
.d2c_footer_wrapper .btn {
    background: var(--secondary_color);
    color: var(--color_one);
    border: 1px solid var(--secondary_color);
    height: 100%;
    transition: 0.4s all;
}
.d2c_footer_wrapper .form-control {
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.17) 0%, rgba(13, 17, 26, 0.00) 100%), #131722;
    color: var(--text_color);
    padding: 8px 10px;
    border: 1px solid #333B6D;
    font-family: var(--primary_font-family);
    font-size: 16px;
    font-weight: 500 !important;
    margin-bottom: 0;
}
.d2c_footer_wrapper .btn:hover {
    background: var(--secondary_color);
    color: var(--text_color);
    border: 1px solid var(--secondary_color);
    transition: 0.4s all;
}
.d2c_footer_wrapper .btn:active {
    background: var(--secondary_color) !important;
    color: var(--text_color) !important;
    border: 1px solid var(--secondary_color) !important;
    transition: 0.4s all;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 0px;
}
.d2c_footer_wrapper .input-group {
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.17) 0%, rgba(13, 17, 26, 0.00) 100%), #131722;
}
/* Footer Section End */

/* Copy Right Section Start */
.d2c_copy_right_wrapper {
    padding: 12px 0px;
    background: var(--secondary_color);
}
.d2c_copy_right_wrapper p {
    color: var(--text_color);
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
}
.d2c_copy_right_wrapper p a {
    font-weight: 700;
    color: var(--text_color);
    transition: 0.4s all;
}
.d2c_copy_right_wrapper p a:hover {
    font-weight: 700;
    color: var(--color_one);
    transition: 0.4s all;
}
.d2c_copy_right_wrapper ul {
    list-style-type: none;
}
.d2c_copy_right_wrapper ul li {
    padding: 0px 5px;
}
.d2c_copy_right_wrapper ul li:last-child {
    padding-right: 0;
}
.d2c_copy_right_wrapper .d2c_icon {
    width: 36px;
    height: 36px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.35) 0%, rgba(13, 17, 26, 0.05) 100%), var(--primary_bg);
    color: var(--secondary_color);
    margin-right: 0;
    transition: 0.4s all;
}
.d2c_copy_right_wrapper .d2c_icon:hover {
    color: var(--primary_color);
    transition: 0.4s all;
}
/* Copy Right Section End */

/* Scroll Button Start */
#scrollBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
#scrollBtn.show {
    display: block;
}
#scrollBtn a i {
    background: var(--secondary_color);
    font-size: 20px;
    color: var(--default_color);
    border-radius: 4px;
    width: 35px;
    height: 35px;
    position: fixed;
    z-index: 9999;
    bottom: 7%;
    right: 4%;
    transition: all ease 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary_color);
}
#scrollBtn a i:hover {
    color: var(--default_color);
    background: var(--accent_color);
    border: 2px solid var(--accent_color);
    transition: all ease 0.4s;
}
/* Scroll Button End */


.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 12px;
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.3;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.card1 {
    top: 15%;
    left: 10%;
    width: 220px;
    animation-delay: 0s;
}

.card2 {
    bottom: 10%;
    right: 8%;
    width: 240px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.object-fit-cover {
  object-fit: cover;   /* recorta para llenar */
}

.object-fit-contain {
  object-fit: contain; /* ajusta dentro sin recortar */
  background-color: #0d1117; /* opcional para dar fondo */
}
