.light-background,
:root {
    --surface-color: #ffffff
}

.dark-background,
:root {
    --contrast-color: #ffffff
}

.php-email-form .error-message,
.php-email-form .loading,
.php-email-form .sent-message {
    padding: 15px;
    margin-bottom: 24px;
    display: none
}

.header,
body {
    color: var(--default-color);
    background-color: var(--background-color)
}


.swiper {
    user-select: none;
    -webkit-user-drag: none;
}
.swiper-wrapper {
    will-change: transform;
}
.swiper-wrapper:not([style*="transition-delay: 0ms;"]) {
    transition: all 0.5s cubic-bezier(.25, .8, .25, 1) !important;
}

.footer .brand-section .logo,
.footer .footer-bottom .legal-links a,
.footer .nav-column .footer-nav a,
a,
a:hover {
    text-decoration: none
}

.header .header-social-links a i,
.scroll-top i {
    line-height: 0
}

:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Josefin Sans", sans-serif;
    --nav-font: "Poppins", sans-serif;
    --background-color: transparent/*#fcfcfc;*/
    --default-color: #1c2025;
    --heading-color: #28346c;
    --accent-color: #3451b8;
    --nav-color: rgba(234, 238, 244, 0.725);
    --nav-hover-color: #ffffff;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #1c2025;
    --nav-dropdown-hover-color: #3451b8;
    scroll-behavior: smooth
}

.light-background {
    --background-color: #f6f7f9
}

.dark-background,
.header {
    --background-color: #171c35;
    --default-color: #ffffff;
    --heading-color: #ffffff
}

.dark-background {
    --accent-color: #6f8fff;
    --surface-color: #232846
}

body {
    font-family: var(--default-font)
}

.faq .faq-item.faq-active .faq-header h4,
.footer .footer-bottom .legal-links a:hover,
.header .header-social-links a:hover,
.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) i,
a {
    color: var(--accent-color)
}

a {
    transition: .3s
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font)
}

.php-email-form .error-message {
    background: #df1529;
    color: #fff;
    text-align: left;
    font-weight: 600
}

.php-email-form .sent-message {
    color: #fff;
    background: #059652;
    text-align: center;
    font-weight: 600
}

.php-email-form .loading {
    background: var(--surface-color);
    text-align: center
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: 1s linear infinite php-email-form-loading
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.header {
    padding: 15px 0;
    transition: .5s;
    z-index: 997
}

.header .logo {
    line-height: 1
}

.header .logo img {
    max-height: clamp(20px, 4vw, 1.9rem);
    margin-right: 8px;
    margin-top: -10px
}

.header .logo h1 {
    font-size: clamp(19px, 4vw, 1.8rem);
    margin: 0;
    font-weight: 700;
    color: var(--heading-color)
}

.header .header-social-links {
    padding-right: 15px
}

.header .header-social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding-left: 6px;
    display: inline-block;
    transition: .3s;
    font-size: 16px
}

@media (max-width:1200px) {
    .header .logo {
        order: 1
    }

    .header .header-social-links {
        order: 2
    }

    .header .navmenu {
        order: 3
    }
}

.scrolled .header {
    box-shadow: 0 0 18px rgba(0, 0, 0, .1)
}

.index-page .header {
    --default-color: #cbd5e0;
    --heading-color: #ffffff
}

@media (min-width:1200px) {
    .navmenu {
        padding: 0
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center
    }

    .navmenu li {
        position: relative
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px
    }

    .navmenu>ul>li:last-child {
        padding-right: 0
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s;
        position: relative
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: .3s
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--accent-color);
        visibility: hidden;
        width: 0;
        transition: .3s ease-in-out
    }

    .navmenu .active:before,
    .navmenu a:hover:before,
    .navmenu li:hover>a:before {
        visibility: visible;
        width: 100%
    }

    .navmenu .active,
    .navmenu .active:focus,
    .navmenu li:hover>a {
        color: var(--nav-hover-color)
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: .3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0 0 30px rgba(0, 0, 0, .1)
    }

    .navmenu .dropdown ul li {
        min-width: 200px
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color)
    }

    .navmenu .dropdown ul a i {
        font-size: 12px
    }

    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color)
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible
    }
}

.footer {
    background: var(--background-color);
    color: var(--default-color);
    font-size: 15px;
    padding: 100px 0 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%)
}

.contact .info-item,
.footer .footer-main {
    margin-bottom: 80px
}

.footer .brand-section .logo .sitename {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: -.5px
}

.about .badge-label,
.portfolio-details .portfolio-details-content .project-website a:hover {
    letter-spacing: .5px
}

.footer .brand-section .brand-description {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-weight: 300;
    max-width: 380px;
    margin: 0
}

.footer .brand-section .contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%)
}

.footer .brand-section .contact-info .contact-item i {
    font-size: 16px;
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0
}

.footer .brand-section .contact-info .contact-item span {
    line-height: 1.6
}

.footer .footer-nav-wrapper {
    padding-left: 60px
}

.footer .nav-column {
    margin-bottom: 40px
}

.footer .nav-column h6 {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 24px;
    letter-spacing: .3px
}

.section-title h2::after,
.section-title h2:before {
    position: absolute;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
    content: ""
}

.footer .nav-column .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer .nav-column .footer-nav a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 15px;
    font-weight: 300;
    transition: .3s;
    line-height: 1.4
}

.footer .nav-column .footer-nav a:hover {
    color: var(--accent-color);
    transform: translateX(4px)
}

.footer .footer-social {
    padding: 50px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%)
}

.footer .footer-social .newsletter-section h5 {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 300;
    color: var(--heading-color);
    margin-bottom: 12px;
    letter-spacing: -.2px
}

.footer .footer-social .newsletter-section p {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin: 0;
    line-height: 1.6;
    max-width: 340px
}

.footer .footer-social .social-section {
    display: flex;
    justify-content: flex-end
}

.footer .footer-social .social-links {
    display: flex;
    gap: 32px;
    align-items: center
}

.footer .footer-social .social-links .social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    font-weight: 400;
    transition: .3s
}

.footer .footer-social .social-links .social-link i {
    font-size: 18px;
    transition: .3s
}

.footer .footer-social .social-links .social-link span {
    transition: .3s
}

.footer .footer-social .social-links .social-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px)
}

.footer .footer-social .social-links .social-link:hover i {
    transform: scale(1.1)
}

.footer .footer-bottom {
    padding: 30px 0
}

.footer .footer-bottom .copyright p {
    margin: 0;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 45%);
    font-weight: 300
}

.footer .footer-bottom .copyright p .sitename {
    color: var(--heading-color);
    font-weight: 400
}

.footer .footer-bottom .legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px
}

@media (max-width:991px) {
    .footer .footer-nav-wrapper {
        padding-left: 0;
        margin-top: 50px
    }

    .footer .footer-social .social-section {
        justify-content: flex-start;
        margin-top: 30px
    }

    .footer .footer-bottom .legal-links {
        justify-content: flex-start;
        margin-top: 20px;
        flex-wrap: wrap
    }
}

.footer .footer-bottom .legal-links a {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-weight: 300;
    transition: color .3s
}

.footer .footer-bottom .legal-links .credits {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-left: 8px;
    padding-left: 24px;
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

@media (max-width:576px) {
    .footer .footer-social .social-links {
        gap: 20px;
        flex-wrap: wrap
    }

    .footer .footer-bottom .legal-links .credits {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        width: 100%;
        margin-top: 12px
    }
}

.footer .footer-bottom .legal-links .credits a {
    color: var(--accent-color);
    font-size: 12px
}

.footer .footer-bottom .legal-links .credits a:hover {
    text-decoration: underline
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: .4s
}

.about .visual-wrapper,
.about .visual-wrapper .main-visual,
.features .feature-card,
.hero,
.hero .hero-visual,
.page-title,
.portfolio-details .portfolio-details-media,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider,
.section-title,
.section-title h2 {
    position: relative
}

.page-title,
.section,
section {
    color: var(--default-color);
    background-color: var(--background-color)
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color)
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color)
}

.scroll-top.active {
    visibility: visible;
    opacity: 1
}

@media screen and (max-width:768px) {
    [data-aos-delay] {
        transition-delay: 0 !important
    }
}

.page-title .heading {
    padding: 80px 0
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    padding: 20px 0
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400
}

.page-title nav ol li+li {
    padding-left: 10px
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%)
}

.section,
section {
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip
}

@media (max-width:1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color .3s
    }

    .navmenu {
        padding: 0;
        z-index: 9997
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: .3s;
        z-index: 9998
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: .3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%)
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color)
    }

    .navmenu .active,
    .navmenu .active:focus,
    .navmenu a:hover {
        color: var(--nav-dropdown-hover-color)
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg)
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: .5s ease-in-out
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, .1)
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, .03)
    }

    .mobile-nav-active {
        overflow: hidden
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, .8);
        transition: .3s
    }

    .mobile-nav-active .navmenu>ul {
        display: block
    }

    .section,
    section {
        scroll-margin-top: 66px
    }
}

.section-title {
    text-align: center;
    padding-bottom: 60px
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px
}

.section-title h2:before {
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    bottom: 1px
}

.section-title h2::after {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    bottom: 0
}

.about .feature-highlights .highlight-item:last-child,
.contact .contact-details .detail-item:last-child,
.faq .faq-item:last-child,
.section-title p {
    margin-bottom: 0
}

.hero {
    padding-top: 194px;
    overflow: hidden;
    padding-bottom: 80px
}

.hero .hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-color);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 55%);
    margin-bottom: 24px
}

.hero .hero-content .hero-badge i {
    color: var(--accent-color);
    font-size: 14px
}

.hero .hero-content .hero-badge span {
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color)
}

.hero .hero-content .hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--heading-color);
    margin-bottom: 20px
}

@media (max-width:992px) {
    .hero .hero-content .hero-title {
        font-size: 40px
    }
}

@media (max-width:768px) {
    .footer {
        padding: 70px 0 0
    }

    .footer .brand-section {
        text-align: center;
        margin-bottom: 50px
    }

    .footer .brand-section .brand-description,
    .footer .footer-social .newsletter-section p {
        max-width: none
    }

    .footer .brand-section .contact-info {
        text-align: left;
        display: inline-block
    }

    .footer .footer-nav-wrapper .nav-column {
        text-align: left
    }

    .footer .footer-nav-wrapper .nav-column h6 {
        margin-bottom: 16px
    }

    .footer .footer-nav-wrapper .nav-column .footer-nav {
        gap: 10px
    }

    .footer .footer-bottom,
    .footer .footer-social {
        text-align: center
    }

    .footer .footer-bottom .legal-links,
    .footer .footer-social .social-links {
        justify-content: center
    }

    .hero .hero-content .hero-title {
        font-size: 36px
    }
}

.hero .hero-content .hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 32px
}

.hero .hero-content .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px
}

.hero .hero-content .hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px
}

.hero .hero-content .hero-features .feature-item i {
    color: var(--accent-color);
    font-size: 18px
}

.hero .hero-content .hero-features .feature-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--default-color)
}

.hero .hero-content .hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px
}

.hero .hero-content .hero-actions .btn-primary,
.hero .hero-content .hero-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    font-size: 16px;
    font-weight: 500
}

.hero .hero-content .hero-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 4px 6px color-mix(in srgb, var(--accent-color), transparent 70%)
}

.hero .hero-content .hero-actions .btn-primary i {
    font-size: 18px;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1)
}

.hero .hero-content .hero-actions .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), #000 10%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px color-mix(in srgb, var(--accent-color), transparent 60%)
}

.hero .hero-content .hero-actions .btn-secondary {
    background: 0 0;
    color: var(--heading-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%)
}

.hero .hero-content .hero-actions .btn-secondary i {
    font-size: 20px
}

.hero .hero-content .hero-actions .btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 95%)
}

.hero .hero-content .hero-social-proof .rating {
    display: flex;
    align-items: center;
    gap: 12px
}

.hero .hero-content .hero-social-proof .rating .stars {
    display: flex;
    gap: 4px
}

.hero .hero-content .hero-social-proof .rating .stars i {
    color: #ffb800;
    font-size: 16px
}

.hero .hero-content .hero-social-proof .rating .rating-text {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500
}

.hero .hero-visual .visual-container {
    position: relative;
    padding: 20px
}

.about .cta-group .btn-primary,
.about .cta-group .btn-secondary {
    padding: 14px 28px;
    font-size: 15px;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    text-decoration: none
}

.hero .hero-visual .visual-container .main-screen {
    width: 100%;
    border-radius: 12px
}

.hero .hero-visual .visual-container .floating-card {
    position: absolute;
    background: var(--surface-color);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    backdrop-filter: blur(10px);
    background: color-mix(in srgb, var(--surface-color), transparent 5%)
}

.hero .hero-visual .visual-container .floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero .hero-visual .visual-container .floating-card .card-icon i {
    color: var(--accent-color);
    font-size: 20px
}

.hero .hero-visual .visual-container .floating-card .card-icon.success {
    background: color-mix(in srgb, #10b981, transparent 90%)
}

.hero .hero-visual .visual-container .floating-card .card-icon.success i {
    color: #10b981
}

.hero .hero-visual .visual-container .floating-card .card-content,
.portfolio .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-metrics .metric-item {
    display: flex;
    flex-direction: column
}

.hero .hero-visual .visual-container .floating-card .card-content .card-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 4px
}

.hero .hero-visual .visual-container .floating-card .card-content .card-label {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500
}

.hero .hero-visual .visual-container .floating-card.card-1 {
    top: 15%;
    left: -5%;
    animation: 6s ease-in-out infinite float
}

.hero .hero-visual .visual-container .floating-card.card-2 {
    bottom: 55%;
    right: -5%;
    animation: 6s ease-in-out 2s infinite float
}

.hero .hero-visual .visual-container .floating-card.card-3 {
    top: 80%;
    left: -8%;
    animation: 6s ease-in-out 4s infinite float
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.about {
    padding-top: 120px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0, var(--background-color) 50%);
    padding-bottom: 60px
}

.about .content-wrapper {
    padding-right: 2rem
}

.about .badge-label {
    display: inline-block;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase
}

.about .feature-highlights,
.about .lead-text,
.about .stats-row {
    margin-bottom: 2rem
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em
}

.about .lead-text {
    font-size: 1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%)
}

.about .stats-row {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.about .stats-row .stat-item,
.contact .contact-details .detail-item .detail-content {
    flex: 1
}

.about .stats-row .stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: .5rem
}

.about .stats-row .stat-item .stat-label {
    font-size: .875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500
}

.about .feature-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem
}

.about .feature-highlights .highlight-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
    flex-shrink: 0
}

.about .feature-highlights .highlight-item span {
    color: var(--default-color);
    font-size: .9375rem;
    font-weight: 500
}

.about .cta-group {
    display: flex;
    align-items: center;
    gap: 1rem
}

.about .cta-group .btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--accent-color)
}

.about .cta-group .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%)
}

.about .cta-group .btn-secondary {
    color: var(--default-color);
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    background-color: transparent
}

.about .cta-group .btn-secondary i {
    font-size: 1.25rem
}

.about .cta-group .btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px)
}

.about .visual-wrapper .main-visual {
    margin-bottom: 1.5rem
}

.about .visual-wrapper .main-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12)
}

.about .visual-wrapper .main-visual .floating-card {
    position: absolute;
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%)
}

.about .visual-wrapper .main-visual .floating-card.top-card {
    top: 2rem;
    right: -1.5rem
}

.about .visual-wrapper .main-visual .floating-card.bottom-card {
    bottom: 2rem;
    left: -1.5rem
}

@media (max-width:992px) {
    .hero .hero-visual .visual-container .floating-card {
        padding: 12px 16px
    }

    .hero .hero-visual .visual-container .floating-card .card-icon {
        width: 36px;
        height: 36px
    }

    .hero .hero-visual .visual-container .floating-card .card-content .card-value,
    .hero .hero-visual .visual-container .floating-card .card-icon i {
        font-size: 18px
    }

    .hero .hero-visual .visual-container .floating-card .card-content .card-label {
        font-size: 12px
    }

    .hero {
        padding: 80px 0 60px
    }

    .hero .row {
        flex-direction: column-reverse
    }

    .hero .hero-visual {
        margin-bottom: 48px
    }

    .about .content-wrapper {
        padding-right: 0;
        margin-bottom: 3rem
    }

    .about .visual-wrapper .main-visual .floating-card.top-card {
        right: 1rem
    }

    .about .visual-wrapper .main-visual .floating-card.bottom-card {
        left: 1rem
    }
}

.about .visual-wrapper .main-visual .floating-card .card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #00f 20%));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    font-size: 1.25rem;
    flex-shrink: 0
}

.about .visual-wrapper .main-visual .floating-card .card-content .card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: .25rem
}

.about .visual-wrapper .main-visual .floating-card .card-content .card-text {
    font-size: .8125rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500
}

.about .visual-wrapper .secondary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.about .visual-wrapper .secondary-grid img {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    aspect-ratio: 1;
    object-fit: cover
}

.about .visual-wrapper .secondary-grid img:hover {
    transform: translateY(-4px)
}

.about .features-grid {
    margin-top: 5rem
}

.about .features-grid .feature-card {
    background-color: rgba(255,255,255,.3);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    height: 100%;
    transition: .3s cubic-bezier(.4, 0, .2, 1)
}

.about .features-grid .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, 0.5);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%)
}

.about .features-grid .feature-card .feature-icon {
    width: 56px;
    height: 56px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.25rem
}

.about .features-grid .feature-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: .75rem;
    color: var(--heading-color)
}

.about .features-grid .feature-card p {
    font-size: .9375rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0
}

.features .content-wrapper {
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--surface-color) 0, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    border-radius: 20px 0 0 20px
}

.features .content-wrapper .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
    color: var(--contrast-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    align-self: flex-start
}

.features .content-wrapper h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 25px;
    line-height: 1.2
}

.features .content-wrapper p {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 35px
}

.features .feature-card p,
.features-2 .feature-card p {
    color: color-mix(in srgb, var(--default-color), transparent 25%)
}

.features .features-checklist .check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px
}

.features .features-checklist .check-item i {
    font-size: 20px;
    color: var(--accent-color)
}

.features .features-checklist .check-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color)
}

.features .features-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 40px;
    background: var(--surface-color);
    border-radius: 0 20px 20px 0;
    height: 100%
}

.features .feature-card {
    background: var(--background-color);
    padding: 30px 25px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: .4s;
    overflow: hidden
}

.features .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%))
}

.features .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%)
}

.features .feature-card.primary::before {
    background: linear-gradient(90deg, #3690e7, #4facfe)
}

.features .feature-card.secondary::before {
    background: linear-gradient(90deg, #667eea, #764ba2)
}

.features .feature-card.tertiary::before {
    background: linear-gradient(90deg, #f093fb, #f5576c)
}

.features .feature-card.quaternary::before {
    background: linear-gradient(90deg, #4ecdc4, #44a08d)
}

.features .feature-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px
}

.features .feature-card .card-header .icon-wrapper {
    width: 50px;
    height: 50px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.features .feature-card .card-header .icon-wrapper i {
    font-size: 22px;
    color: var(--accent-color)
}

.features .feature-card .card-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
    line-height: 1.3
}

.features .feature-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0
}

@media (max-width:991px) {
    .features .row {
        flex-direction: column
    }

    .features .content-wrapper {
        border-radius: 20px 20px 0 0;
        padding: 50px 30px
    }

    .features .content-wrapper h2 {
        font-size: 32px
    }

    .features .content-wrapper p {
        font-size: 16px
    }

    .features .features-cards {
        border-radius: 0 0 20px 20px;
        padding: 30px
    }
}

@media (max-width:768px) {
    .hero .hero-content .hero-description {
        font-size: 16px;
        margin-bottom: 24px
    }

    .hero .hero-visual .visual-container .floating-card {
        display: none
    }

    .hero {
        padding: 60px 0 40px
    }

    .about h2 {
        font-size: 2rem
    }

    .about .visual-wrapper .main-visual .floating-card {
        padding: 1rem
    }

    .features .features-cards {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .features .content-wrapper {
        text-align: center;
        padding: 40px 25px
    }

    .features .content-wrapper h2 {
        font-size: 28px
    }

    .features .content-wrapper .section-badge {
        align-self: center
    }

    .features .feature-card {
        padding: 25px 20px
    }

    .features .feature-card .card-header {
        gap: 12px
    }

    .features .feature-card .card-header .icon-wrapper {
        width: 45px;
        height: 45px
    }

    .features .feature-card .card-header .icon-wrapper i {
        font-size: 20px
    }

    .features .feature-card .card-header h4 {
        font-size: 16px
    }
}

.features-2 .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px 40px;
    margin-bottom: 70px
}

.features-2 .feature-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: .4s
}

.features-2 .feature-card .feature-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px
}

.features-2 .feature-card .feature-header .feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    transition: .3s
}

.features-2 .feature-card .feature-header .feature-icon i {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 300
}

.features-2 .feature-card .feature-header h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--heading-color);
    line-height: 1.3;
    margin: 0
}

.features-2 .cta-secondary:hover,
.portfolio .portfolio-filters li:hover {
    color: var(--accent-color);
    border-color: var(--accent-color)
}

.features-2 .feature-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    letter-spacing: .01em
}

.features-2 .feature-card:hover .feature-icon {
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    border-color: var(--accent-color);
    transform: translateY(-2px)
}

.features-2 .cta-container {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap
}

.features-2 .cta-button {
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .02em;
    text-decoration: none;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.features-2 .cta-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 1px solid var(--accent-color)
}

.features-2 .cta-primary:hover {
    background: color-mix(in srgb, var(--accent-color), #000 8%);
    border-color: color-mix(in srgb, var(--accent-color), #000 8%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08)
}

.features-2 .cta-secondary {
    background: 0 0;
    color: var(--heading-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%)
}

.features-2 .cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06)
}

.portfolio .portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    padding: 0;
    list-style: none
}

.portfolio .portfolio-filters li {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: .3s;
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%)
}

.portfolio .portfolio-filters li.filter-active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color)
}

.portfolio .portfolio-wrapper {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: .3s ease
}

.portfolio .portfolio-wrapper:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .08);
    transform: translateY(-2px)
}

.portfolio .portfolio-wrapper .portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10
}

.portfolio .portfolio-wrapper .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s
}

.portfolio .portfolio-wrapper .portfolio-image .portfolio-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, .95);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

.portfolio .portfolio-wrapper .portfolio-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.portfolio .portfolio-wrapper .portfolio-content .portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
    gap: 16px
}

.portfolio .portfolio-wrapper .portfolio-content .portfolio-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    flex: 1
}

.portfolio .portfolio-wrapper .portfolio-content .portfolio-header .portfolio-year {
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    white-space: nowrap;
    padding-top: 4px
}

.portfolio .portfolio-wrapper .portfolio-content .portfolio-description {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 20px
}

.portfolio .portfolio-wrapper .portfolio-content .portfolio-details-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    gap: 20px;
    flex-wrap: wrap
}

.portfolio .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-metrics {
    display: flex;
    gap: 24px
}

.portfolio .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-metrics .metric-item .metric-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 4px;
    letter-spacing: .3px
}

.portfolio .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-metrics .metric-item .metric-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color)
}

.portfolio .portfolio-cta .btn-primary,
.portfolio .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-actions .action-link:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color)
}

.portfolio .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-actions {
    display: flex;
    gap: 16px
}

.portfolio .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-actions .action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-color);
    text-decoration: none;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    transition: .3s;
    white-space: nowrap
}

.portfolio .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-actions .action-link i {
    font-size: 14px
}

@media (max-width:576px) {
    .hero .hero-content .hero-title {
        font-size: 32px
    }

    .hero .hero-content .hero-features {
        gap: 16px
    }

    .hero .hero-content .hero-actions {
        flex-direction: column;
        align-items: stretch
    }

    .hero .hero-content .hero-social-proof .rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .about .stats-row {
        gap: 1rem
    }

    .about .stats-row .stat-item .stat-number {
        font-size: 1.5rem
    }

    .about .cta-group {
        flex-direction: column;
        align-items: flex-start
    }

    .features .content-wrapper {
        padding: 30px 20px
    }

    .features .content-wrapper h2 {
        font-size: 24px
    }

    .features .features-cards {
        padding: 25px 20px
    }

    .portfolio .portfolio-wrapper .portfolio-content .portfolio-details-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .portfolio .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-metrics {
        width: 100%;
        justify-content: space-between
    }

    .portfolio .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-actions {
        width: 100%
    }

    .portfolio .portfolio-wrapper .portfolio-content .portfolio-details-row .portfolio-actions .action-link {
        flex: 1;
        justify-content: center
    }
}

.portfolio .portfolio-wrapper:hover .portfolio-image img {
    transform: scale(1.05)
}

.portfolio .portfolio-cta {
    margin-top: 64px;
    padding: 40px;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 6px
}

.portfolio .portfolio-cta h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px
}

.portfolio .portfolio-cta p {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
    line-height: 1.6
}

.portfolio .portfolio-cta .btn-primary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: .3s;
    white-space: nowrap
}

.portfolio .portfolio-cta .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%)
}

@media (max-width:992px) {
    .portfolio .portfolio-cta {
        padding: 32px 24px
    }

    .portfolio .portfolio-cta h3 {
        font-size: 22px
    }

    .portfolio .portfolio-cta .col-lg-3 {
        text-align: left !important;
        margin-top: 20px
    }
}

.faq .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem
}

.faq .section-header .lead {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6
}
.faq * {
    transition: all 0.3s cubic-bezier(.25,.8,.25,1) !important;
}

.faq .faq-item {
    border-left: 4px solid transparent;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3)/*var(--surface-color)*/;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    margin-bottom: 1.5rem;
    transition: all .3s cubic-bezier(0.25, .8, 0.25, 1);
    overflow: hidden
}

.faq .faq-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
    border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%)
}

.faq .faq-item.faq-active {
    border-left-color: var(--accent-color)
}

.faq .faq-item .faq-header .faq-toggle:hover,
.faq .faq-item.faq-active .faq-header .faq-icon,
.faq .faq-item.faq-active .faq-header .faq-toggle {
    background: var(--accent-color);
    color: var(--contrast-color)
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus,
.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash,
.hds {
    display: none
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash,
.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
    display: block
}

.faq .faq-item.faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1
}

.faq .faq-item .faq-header {
    display: flex;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    gap: 20px
}

.faq .faq-item .faq-header .faq-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    transition: .3s
}

.faq .faq-item .faq-header h4 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    transition: color .3s;
    line-height: 1.4
}

.faq .faq-item .faq-header .faq-toggle {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--default-color), transparent 85%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    font-size: 16px;
    transition: .3s;
    position: relative
}

.faq .faq-item .faq-header .faq-toggle i {
    position: absolute;
    transition: .3s
}

.faq .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: .3s ease-in-out;
    visibility: hidden;
    opacity: 0
}

.faq .faq-item .faq-content .content-inner {
    padding: 0 25px 25px;
    overflow: hidden
}

.faq .faq-item .faq-content .content-inner p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    font-size: .95rem;
    overflow: hidden
}

.contact {
    padding: 120px 0 100px
}

.contact .info-item .info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px
}

.contact .info-item .info-icon i {
    font-size: 24px;
    color: var(--accent-color)
}

.contact .info-item .info-content h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--heading-color);
    letter-spacing: -.3px
}

.contact .info-item .info-content p {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0
}

.contact .contact-details .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 48px
}

.contact .contact-details .detail-item .detail-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.contact .contact-details .detail-item .detail-icon i {
    font-size: 18px;
    color: var(--accent-color)
}

.contact .contact-details .detail-item .detail-content .detail-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 6px
}

.contact .contact-details .detail-item .detail-content .detail-value {
    display: block;
    font-size: 16px;
    color: var(--default-color);
    line-height: 1.6
}

.contact .form-header {
    margin-bottom: 48px
}

.contact .form-header h3 {
    font-size: 32px;
    font-weight: 300;
    color: var(--heading-color);
    margin: 0;
    letter-spacing: -.4px
}

.contact .form-wrapper .form-group {
    margin-bottom: 32px
}

.contact .form-wrapper .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 12px;
    letter-spacing: .2px
}

.contact .form-wrapper .form-group input,
.contact .form-wrapper .form-group select,
.contact .form-wrapper .form-group textarea {
    width: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 15px;
    color: var(--default-color);
    background-color: var(--surface-color);
    transition: .3s;
    font-family: inherit
}

.contact .form-wrapper .form-group input:focus,
.contact .form-wrapper .form-group select:focus,
.contact .form-wrapper .form-group textarea:focus {
    outline: 0;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%)
}

.contact .form-wrapper .form-group input::placeholder,
.contact .form-wrapper .form-group select::placeholder,
.contact .form-wrapper .form-group textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%)
}

.contact .form-wrapper .form-group select {
    cursor: pointer
}

.contact .form-wrapper .form-group select option {
    padding: 10px
}

.contact .form-wrapper .form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6
}

.contact .form-wrapper .submit-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    border-radius: 8px;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: .3s;
    letter-spacing: .3px
}

.contact .form-wrapper .submit-btn i {
    font-size: 16px;
    transition: transform .3s
}

.contact .form-wrapper .submit-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 10%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%)
}

.contact .form-wrapper .submit-btn:hover i {
    transform: translateX(4px)
}

.portfolio-details {
    --section-spacing: 2.5rem
}

.portfolio-details .portfolio-details-media .main-image {
    margin-bottom: 1rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-wrapper {
    height: auto !important
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-slide img {
    aspect-ratio: 3/2;
    object-fit: cover;
    width: 100%
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev {
    background-color: var(--contrast-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: .3s
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:after {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 700
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover {
    background-color: var(--accent-color)
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover:after {
    color: var(--contrast-color)
}

.portfolio-details .portfolio-details-media .thumbnail-grid img {
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .05)
}

.portfolio-details .portfolio-details-media .thumbnail-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, .1)
}

.portfolio-details .portfolio-details-media .tech-stack-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem
}

.portfolio-details .portfolio-details-media .tech-stack-badges span {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    background-color: color-mix(in srgb, var(--heading-color), transparent 85%);
    color: var(--heading-color);
    transition: .3s
}

.portfolio-details .portfolio-details-media .tech-stack-badges span:hover {
    background-color: color-mix(in srgb, var(--heading-color), transparent 70%);
    transform: translateY(-2px)
}

.portfolio-details .portfolio-details-content {
    padding: 0 0 0 2rem;
    height: 100%;
    display: flex;
    flex-direction: column
}

.portfolio-details .portfolio-details-content .project-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.5rem
}

.portfolio-details .portfolio-details-content .project-meta .badge-wrapper .project-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px
}

.portfolio-details .portfolio-details-content .project-meta .date-client {
    display: flex;
    gap: 1.5rem
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%)
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item i {
    margin-right: 6px;
    color: var(--accent-color)
}

.portfolio-details .portfolio-details-content .project-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color)
}

.portfolio-details .portfolio-details-content .project-website {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem
}

.portfolio-details .portfolio-details-content .project-website i {
    font-size: 22px;
    color: var(--accent-color);
    margin-right: 8px
}

.portfolio-details .portfolio-details-content .project-website a {
    font-weight: 500;
    transition: .3s
}

.portfolio-details .portfolio-details-content .project-features,
.portfolio-details .portfolio-details-content .project-overview {
    margin-bottom: var(--section-spacing)
}

.portfolio-details .portfolio-details-content .project-overview .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 1.5rem
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item {
    border: none;
    background: 0 0;
    margin-bottom: 10px
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button {
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--heading-color);
    background-color: color-mix(in srgb, var(--surface-color), transparent 70%);
    border-radius: 8px !important;
    box-shadow: none
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--surface-color);
    color: var(--accent-color);
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .03)
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button::after {
    background-size: 14px;
    width: 14px;
    height: 14px
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button i {
    font-size: 1.1rem
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body {
    padding: 1rem;
    background-color: var(--surface-color);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6
}

.portfolio-details .portfolio-details-content .project-features h3 {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    margin-bottom: 1.2rem
}

.portfolio-details .portfolio-details-content .project-features h3 i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 1.1em
}

.portfolio-details .portfolio-details-content .project-features .feature-list {
    list-style: none;
    padding-left: 0
}

.portfolio-details .portfolio-details-content .project-features .feature-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 15%)
}

.portfolio-details .portfolio-details-content .project-features .feature-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1em
}

.portfolio-details .portfolio-details-content .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project {
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    font-weight: 500;
    transition: .3s
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, .1)
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project {
    padding: 12px 28px;
    background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
    color: var(--heading-color);
    border-radius: 30px;
    font-weight: 500;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 8px
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project i {
    transition: transform .3s
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover {
    background-color: color-mix(in srgb, var(--heading-color), transparent 80%)
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover i {
    transform: translateX(3px)
}

/*Cutom Code*/
a:hover,
li:hover,
li:hover *,.product-card:hover, .feature-card:hover {
    transition-delay: -.15s !important
}

header .logo {
    /*background: linear-gradient(270deg, #00c9ff, #fd0, #ff6f61, #00c9ff);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 8s ease-in-out infinite gradientMove;
    display: inline-block */
}

.whatsapp-float {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
    z-index: 99998;
    isolation: isolate;
    transition: bottom .4s
}

.whatsapp-float i {
    font-size: 30px;
    line-height: 1
}

body.scrolled .whatsapp-float {
    bottom: 70px
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, .55);
    animation: 2s infinite wa-pulse;
    z-index: -1
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: .6
    }

    70% {
        transform: scale(1.7);
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

.whatsapp-float:hover::before {
    animation-play-state: paused
}



.swiper {
  max-width: 1000px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

/* Swiper Slide Images */
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.05); /* subtle zoom on hover */
}

/* Pagination & Navigation Styling */
.swiper-pagination-bullet {
  background: #0077b6;
  opacity: 0.8;
}

.swiper-button-next,
.swiper-button-prev {
  color: #0077b6;
}

/*Custom Swiper*/

/* Swiper base spacing */
.mySwiper {
  padding: 1rem 0 3rem;
}

.mySwiper * {
    user-select: none;
}

/* Slides */
.mySwiper .swiper-slide {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mySwiper .swiper-slide:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
}

/* Images */
.mySwiper img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Pagination dots */
.swiper-pagination-bullet {
  background-color: #adb5bd;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #0d6efd; /* Bootstrap primary */
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  border-radius: 0.375rem;
  border: 1px solid rgba(49, 49, 49, 0.3);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  font-weight: bolder;
  color: #000000;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.65);
}

/* Hide arrows on small devices */
@media (max-width: 576px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.mySwiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.25, .8, 0.25, 1);
}

@media (max-width:768px) {
    .hero-actions a {
    justify-content: center;
    }
    .brand-section .logo {
    justify-content: center;
    }
    .features-2 {
        padding: 70px 0
    }

    .features-2 .features-grid {
        grid-template-columns: 1fr;
        gap: 40px 0;
        margin-bottom: 50px
    }

    .features-2 .feature-card .feature-header {
        gap: 16px
    }

    .features-2 .feature-card .feature-header h3 {
        font-size: 18px
    }

    .features-2 .feature-card p {
        font-size: 15px
    }

    .features-2 .cta-container {
        flex-direction: column;
        gap: 12px
    }

    .features-2 .cta-button {
        width: 100%;
        padding: 13px 32px
    }

    .portfolio .portfolio-filters {
        gap: 12px;
        margin-bottom: 32px
    }

    .portfolio .portfolio-filters li {
        padding: 8px 18px;
        font-size: 13px
    }

    .faq .faq-item .faq-header {
        padding: 20px;
        gap: 15px
    }

    .faq .faq-item .faq-header .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 18px
    }

    .faq .faq-item .faq-header h4 {
        font-size: 1rem
    }

    .faq .faq-item .faq-header .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 14px
    }

    .faq .faq-item .faq-content .content-inner {
        padding: 0 20px
    }

    .faq .faq-item.faq-active .faq-content .content-inner {
        padding-bottom: 20px
    }

    .contact {
        padding: 80px 0 60px
    }

    .contact .info-item {
        margin-bottom: 50px
    }

    .contact .info-item .info-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 24px
    }

    .contact .info-item .info-icon i {
        font-size: 20px
    }

    .contact .info-item .info-content h4 {
        font-size: 20px;
        margin-bottom: 12px
    }

    .contact .contact-details .detail-item,
    .contact .form-header {
        margin-bottom: 32px
    }

    .contact .form-header h3 {
        font-size: 24px
    }

    .contact .modern-form .form-group {
        margin-bottom: 24px
    }

    .whatsapp-float {
        width: 52px;
        height: 52px
    }

    body.scrolled .whatsapp-float {
        bottom: 60px
    }

    .whatsapp-float i {
        font-size: 26px
    }
}

@media (max-width:480px) {
    .whatsapp-float {
        width: 48px;
        height: 48px
    }

    body.scrolled .whatsapp-float {
        bottom: 56px
    }

    .whatsapp-float i {
        font-size: 24px
    }
}

@media (prefers-reduced-motion:reduce) {
    .whatsapp-float::before {
        animation: none
    }
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }
}

@media (max-width:1199.98px) {
    .portfolio-details .portfolio-details-content {
        padding-left: 1rem
    }
}

@media (max-width:991.98px) {
    .portfolio-details .portfolio-details-content {
        padding: 2rem 0 0
    }

    .portfolio-details .portfolio-details-content .cta-buttons {
        margin-top: 2rem
    }
}

@media (max-width:767.98px) {
    .portfolio-details .project-meta {
        flex-direction: column;
        gap: 1rem
    }

    .portfolio-details .project-meta .date-client {
        flex-direction: column;
        gap: .5rem
    }

    .portfolio-details .cta-buttons {
        flex-direction: column;
        width: 100%
    }

    .portfolio-details .cta-buttons a {
        width: 100%;
        text-align: center
    }
}

/*LAST CUSTOM*/
/* ==================================================
   MINIMAL PREMIUM PORTFOLIO CARD
   CSS ONLY | Drag & Lightbox Safe
   ================================================== */

.portfolio-wrapper {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.portfolio-wrapper:hover {
  transform: translateY(-10px);
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.12),
    0 50px 90px rgba(0, 0, 0, 0.08);
    transition-delay: -.09s;
    background-color: rgba(0, 0, 0, .08);
    border: 1px solid grey;
}

/* ================= IMAGE ================= */

.portfolio-image {
  position: relative;
}

.portfolio-image img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(.4,0,.2,1);
}

.portfolio-wrapper:hover .portfolio-image img {
  transform: scale(1.1);
}

/* ================= CATEGORY BADGE ================= */

.portfolio-category {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #0d6efd;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 16px rgba(13, 110, 253, 0.35);
}

/* ================= CONTENT ================= */

.portfolio-content {
  padding: 24px 28px 30px;
}

.portfolio-header h3 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  color: #0f172a;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .portfolio-content {
    padding: 20px 20px 24px;
  }

  .portfolio-header h3 {
    font-size: 18px;
  }
}

/*NEXT CUSTOM*/

/* ==================================================
   THUMBNAIL GALLERY MODE
   3 ITEMS PER ROW (DESKTOP ONLY)
   CSS ONLY — NO HTML CHANGE
   ================================================== */

/* ---------- FORCE 3 ITEMS PER ROW ON LARGE SCREENS ---------- */
@media (min-width: 1200px) {
  .portfolio-item {
    width: 33.3333% !important;
  }
    #search {
    display: none !important;
  }
}

/* ---------- KEEP 2 PER ROW ON TABLET ---------- */
@media (min-width: 768px) and (max-width: 1199px) {
  .portfolio-item {
    width: 50% !important;
  }
}

/* ---------- MOBILE: DEFAULT BOOTSTRAP (1 PER ROW) ---------- */
@media (max-width: 767px) {
  .portfolio-item {
    width: 100% !important;
  }
}

/* ---------- THUMBNAIL IMAGE SIZE CONTROL ---------- */
.portfolio-image {
  aspect-ratio: 4 / 3;   /* perfect thumbnail ratio */
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;   /* ✅ SHOW FULL IMAGE */
  background: #f8f9fa;
  transition: transform 0.6s ease;
}

/* Subtle hover zoom (drag-safe) */
.portfolio-wrapper:hover .portfolio-image img {
  transform: scale(1.05);
}

/* ---------- TIGHTER CARD FOR THUMBNAILS ---------- */
.portfolio-content {
  padding: 16px 18px 20px;
}

.portfolio-header h3 {
  font-size: 16px;
  line-height: 1.35;
}

/* ---------- CATEGORY BADGE SCALE ---------- */
.portfolio-category {
  font-size: 11px;
  padding: 6px 12px;
}

/*NEW Custom*/

.portfolio-header h3 {
  font-size: 1.1rem;
  line-height: 1.4;
  height: calc(1.4em * 2); /* exactly 2 lines */
  overflow: hidden;
  align-content: center;
}

body header + *:not(section,main) {
    margin-top: clamp(50px, 6vw, 120px) !important;
}
.product-card .card-img, .card-img-bottom, .card-img-top {
    padding: 15px;
    border-radius: 20px !important;
    object-fit: contain !important;
}
.product-card {
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0,0,0,0) !important;
}
.product-card:hover {
    background-color: rgba(255, 255, 255, 0.45);
    border-color: #aeb9bc !important;
}
.product-card img {
    height: clamp(200px, 22vw, 260px);
}
.product-card .card-body {
    align-items: center;
    justify-content: center;
}
.product-card h5 {
    font-size: 1.40rem;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    135deg,
    #f4e7dc 0%,
    #e4dde3 35%,
    #cfe3ea 65%,
    #7fc4d6 100%
  );
  background-size: cover;
  will-change: transform;
}

.filter-wrapper {
    background-color: rgba(255, 255, 255, 0.3);
}
section#contact {
    background: transparent !important;
}
input,textarea {
    background: rgba(255, 255, 255, 0.5) !important;
}
input:focus,textarea:focus {
    background: rgba(255, 255, 255, 0.7) !important;
}
