@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');

body {
    font-family: "Outfit", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

:root {

    --primary: #0066B3;
    --primary-dark: #063A72;

    --green: #7CC242;
    --green-dark: #67A834;

    --white: #ffffff;

    --text: #102A43;

    --paragraph: #667085;

    --border: #E7EEF4;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #f8f8f8;
    color: #222;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    color: var(--paragraph);
}

.custom-navbar {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: .4s;
}

.custom-navbar .container {
    background: #fff;
    border-radius: 18px;
    padding: 0 25px;
    min-height: 92px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, .06),
        0 20px 60px rgba(0, 0, 0, .05);
    position: relative;
}

.navbar-brand {
    padding: 12px 0;
}

.navbar-brand img {
    height: 70px;
    transition: .3s;
}

.navbar-nav {
    gap: 18px;
}

.nav-link {
    position: relative;
    color: #222 !important;
    font-size: 16px;
    font-weight: 500;
    padding: 34px 8px !important;
    transition: .35s;
}

.nav-link:hover,
.nav-link.active {
    color: #5b9a46 !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    border-radius: 50px;
    background: #5b9a46;
    transition: .35s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle::after {
    margin-left: 0;
    vertical-align: middle;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
}

.nav-link {
    display: flex;
    align-items: center;
}

.nav-link i {
    font-size: 12px;
    transition: .3s;
}

.mega-menu:hover .nav-link i {
    transform: rotate(180deg);
}

.navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #ddd !important;
    border-radius: 10px;
    background: #fff;
}

.navbar-toggler i {
    font-size: 24px;
    color: #222;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.catalog-btn {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    border-radius: 60px;
    color: #fff;
    background: linear-gradient(135deg, #6ba94f, #3f7d31);
    font-size: 15px;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 15px 30px rgba(74, 140, 54, .25);
}

.catalog-btn i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #5b9a46;
    font-size: 14px;
}

.catalog-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(74, 140, 54, .35);
}

.mega-menu {
    position: static;
}

.mega-dropdown {
    width: 100%;
    left: 0;
    right: 0;
    border: none;
    border-radius: 20px;
    margin-top: 0;
    padding: 45px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .08);
}

.mega-heading {
    margin-bottom: 30px;
}

.mega-heading span {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #5b9a46;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mega-heading h3 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.mega-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ececec;
    transition: .35s;
}

.mega-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #eef8eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .35s;
}

.mega-icon i {
    color: #5b9a46;
    font-size: 26px;
    transition: .35s;
}

.mega-content h5 {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.mega-content p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.mega-banner {
    position: relative;
    height: 100%;
    min-height: 540px;
    border-radius: 24px;
    overflow: hidden;
    background: url("../img/mega-banner.jpg") center center/cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .15));
}

.banner-content {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 2;
    color: #fff;
}

.banner-content span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 40px;
    background: #fff;
    color: #5b9a46;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.banner-content h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.banner-content p {
    font-size: 15px;
    color: #f1f1f1;
    line-height: 1.8;
    margin-bottom: 30px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 52px;
    padding: 0 28px;
    border-radius: 50px;
    background: #fff;
    color: #222;
    font-weight: 600;
    transition: .35s;
}

.banner-btn i {
    transition: .35s;
}

.banner-btn:hover {
    color: #fff;
    background: #5b9a46;
}

@media(min-width:1200px) {

    .mega-dropdown {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(25px);
        transition: all .35s ease;
        pointer-events: none;
    }

    .mega-menu:hover .mega-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mega-menu:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }

}

.mega-card:hover {
    transform: translateY(-8px);
    border-color: #5b9a46;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.mega-card:hover .mega-icon {
    background: #5b9a46;
    transform: rotate(-8deg);
}

.mega-card:hover .mega-icon i {
    color: #fff;
}

.mega-card:hover h5 {
    color: #5b9a46;
}

.mega-banner {
    transition: .5s;
}

.mega-banner:hover {
    transform: scale(1.02);
}

.banner-btn:hover i {
    transform: translateX(6px);
}

.custom-navbar.sticky {
    top: 0;
}

.custom-navbar.sticky .container {
    min-height: 80px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .10);
}

.custom-navbar.sticky .navbar-brand img {
    height: 58px;
}

.custom-navbar.sticky .nav-link {
    padding: 28px 8px !important;
}

.custom-navbar {
    animation: navDown .8s ease;
}

@keyframes navDown {

    from {
        opacity: 0;
        transform: translateY(-80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes megaFade {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.mega-menu:hover .mega-dropdown {
    animation: megaFade .35s ease;
}

.catalog-btn {
    position: relative;
    overflow: hidden;
}

.catalog-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-20deg);
    transition: .7s;
}

.catalog-btn:hover::before {
    left: 150%;
}

@media(max-width:1199px) {

    .custom-navbar {
        top: 0;
    }

    .custom-navbar .container {
        border-radius: 0;
        padding: 10px 18px;
    }

    .navbar-brand img {
        height: 60px;
    }

    .navbar-collapse {
        margin-top: 20px;
        background: #fff;
        border-radius: 20px;
        padding: 20px;
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 15px 0 !important;
    }

    .catalog-btn {
        margin-top: 20px;
        justify-content: center;
    }

    .mega-dropdown {
        position: relative !important;
        width: 100%;
        box-shadow: none;
        border: 1px solid #eee;
        padding: 20px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .mega-dropdown {
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    .mega-menu.show .mega-dropdown {
        display: block;
        max-height: 700px;
        overflow-y: auto;
    }



    /* .dropdown.show .mega-dropdown{
    display:block;
} */

    .mega-banner {
        margin-top: 30px;
        min-height: 380px;
    }

}

@media(max-width:991px) {

    .mega-heading h3 {
        font-size: 26px;
    }

    .banner-content {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }

    .banner-content h2 {
        font-size: 28px;
    }

    .mega-banner {
        min-height: 340px;
    }

}

@media(max-width:767px) {

    .navbar-brand img {
        height: 50px;
    }

    .catalog-btn {
        width: 100%;
    }

    .catalog-btn i {
        width: 30px;
        height: 30px;
    }

    .mega-heading h3 {
        font-size: 22px;
    }

    .mega-card {
        padding: 16px;
    }

    .mega-icon {
        width: 55px;
        height: 55px;
    }

    .mega-icon i {
        font-size: 20px;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .banner-btn {
        width: 100%;
        justify-content: center;
    }

}

@media (max-width: 991px) {

    .navbar-collapse {
        background: #fff;
        margin-top: 15px;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .navbar-collapse {
        position: static !important;
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid #eee;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

@media (max-width:1199px) {

    .dropdown-menu.mega-dropdown {
        display: none !important;
    }

    .dropdown-menu.mega-dropdown.show {
        display: block !important;
    }

    .nav-link {
        display: inline-flex;
        padding: 15px 0 !important;
    }

    .nav-link::after {
        display: none;
    }

    .desktop-navbar {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .mobile-navbar {
        display: none;
    }

    @media (max-width:1199px) {

        .desktop-navbar {
            display: none !important;
        }

        .mobile-navbar {
            display: block;
            margin-top: 15px;
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
        }

        .mobile-menu {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .mobile-menu>li {
            border-bottom: 1px solid #ececec;
        }

        .mobile-menu>li:last-child {
            border-bottom: none;
        }

        .mobile-menu a,
        .mobile-dropdown-btn {

            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;

            padding: 15px 0;

            background: none;
            border: none;
            outline: none;

            color: #222;
            font-size: 16px;
            font-weight: 500;

            cursor: pointer;

            text-decoration: none;

        }

        .mobile-dropdown-btn i {

            transition: .35s;

        }

        .mobile-dropdown.active .mobile-dropdown-btn i {

            transform: rotate(180deg);

        }

        .mobile-submenu {

            list-style: none;
            margin: 0;
            padding: 0 0 10px 15px;

            display: none;

        }

        .mobile-dropdown.active .mobile-submenu {

            display: block;

        }

        .mobile-submenu li {

            padding: 10px 0;

        }

        .mobile-submenu a {

            font-size: 15px;
            color: #667085;
            padding: 0;

        }

        .mobile-submenu a:hover {

            color: var(--green);

        }

        .mobile-catalog-btn {

            width: 100%;
            justify-content: center;
            margin-top: 20px;

        }

    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f3f3f3;
}

::-webkit-scrollbar-thumb {
    background: #5b9a46;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3e7c2d;
}

.footer {
    position: relative;
    background: #111111;
    padding: 90px 0 0;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #5b9a46, #8cc63f);
}

.footer-widget {
    position: relative;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 220px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
}

.footer-text {
    color: #b8b8b8;
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    border-radius: 30px;
    background: #5b9a46;
}

.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 16px;
}

.footer-widget ul li:last-child {
    margin-bottom: 0;
}

.footer-widget ul li a {
    color: #bfbfbf;
    font-size: 15px;
    transition: .35s;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-widget ul li a::before {
    content: "";
    width: 0;
    height: 2px;
    background: #5b9a46;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: .35s;
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-widget ul li a:hover::before {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1c1c1c;
    color: #fff;
    font-size: 16px;
    transition: .35s;
    border: 1px solid rgba(255, 255, 255, .08);
}

.footer-social a:hover {
    background: #5b9a46;
    transform: translateY(-5px);
    border-color: #5b9a46;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #bfbfbf;
    line-height: 28px;
}

.footer-contact li i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    background: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b9a46;
    font-size: 17px;
}

.footer-contact li a,
.footer-contact li span {
    color: #bfbfbf;
    transition: .35s;
}

.footer-contact li a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 70px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #0d0d0d;
}

.footer-bottom p {
    margin: 0;
    color: #bdbdbd;
    font-size: 15px;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.footer-bottom-links a {
    color: #bdbdbd;
    font-size: 15px;
    transition: .35s;
    position: relative;
}

.footer-bottom-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #5b9a46;
    transition: .35s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

.footer::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: -180px;
    bottom: -180px;
    background: rgba(91, 154, 70, .08);
    filter: blur(80px);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-widget {
    transition: .35s;
}

.footer-widget:hover h4::after {
    width: 90px;
}

.footer-contact li:hover i {
    background: #5b9a46;
    color: #fff;
    transform: rotate(-10deg);
}

.footer-contact li i {
    transition: .35s;
}

.footer-logo img {
    transition: .35s;
}

.footer-logo:hover img {
    transform: scale(1.03);
}

.footer-social a i {
    transition: .35s;
}

.footer-social a:hover i {
    transform: rotate(360deg);
}

@media(max-width:991px) {

    .footer {
        padding: 70px 0 0;
    }

    .footer-widget {
        margin-bottom: 20px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 18px;
        flex-wrap: wrap;
        gap: 18px;
    }

    .footer-logo img {
        max-width: 180px;
    }

}

@media(max-width:767px) {

    .footer {
        padding: 60px 0 0;
    }

    .home-projects-cta__btns {
        flex-direction: column;
        gap: 8px;
    }

    .footer-widget h4 {
        font-size: 20px;
    }

    .footer-text {
        padding-right: 0;
        font-size: 14px;
        line-height: 28px;
    }

    .footer-contact li {
        gap: 12px;
    }

    .footer-contact li i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 15px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    .footer-bottom-links {
        gap: 15px;
    }

    .footer-bottom-links a {
        font-size: 14px;
    }

}

@media(max-width:575px) {

    .footer {
        text-align: center;
    }

    .footer-widget h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        display: block;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact li i {
        margin-bottom: 8px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }

}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #F8FBFD;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 0px;
}

.hero-left {
    width: 46%;
    position: relative;
    z-index: 3;
    padding: 10px 30px 10px 0;
}

.shape-bg {
    position: absolute;
    left: -170px;
    top: -120px;
    width: 760px;
    height: 750px;
    background: #fff;
    border-radius: 0 55% 55% 0/ 0 50% 50% 0;
    z-index: -2;
    box-shadow:
        0 40px 90px rgba(0, 0, 0, .06);
}

.shape-bg::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius:
        0 55% 55% 0/ 0 50% 50% 0;
    border: 1px solid rgba(0, 102, 179, .08);
}

.shape-pattern {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        radial-gradient(circle, #0066B3 1px, transparent 1px);
    background-size: 22px 22px;

}

.hero-subtitle {
    display: inline-block;
    letter-spacing: 4px;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-left h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    line-height: 1.02;
    color: var(--primary);
    margin-bottom: 15px;
}

.hero-left h1 span {
    color: var(--green);
}

.hero-left p {
    width: 100%;
    font-size: 18px;
    line-height: 30px;
    color: var(--paragraph);

}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

.btn {
    height: 60px;
    padding: 0 15px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    transition: .35s;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #0066B3, #063A72);
    color: #fff;
    box-shadow: 0 25px 45px rgba(0, 102, 179, .25);
}

.btn-primary:hover {
    transform: translateY(-5px);
}

.btn-outline {
    border: 2px solid rgba(0, 102, 179, .2);
    background: #fff;
    color: #063A72;
}

.btn-outline:hover {
    background: #063A72;
    color: #fff;
}

.hero-right {
    width: 54%;
    position: relative;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 0 70px 70px 70px;
    box-shadow:
        0 45px 90px rgba(0, 0, 0, .18);
}

.hero-image img {
    height: 720px;
    object-fit: cover;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.hero-glow-1 {
    width: 380px;
    height: 380px;
    background: rgba(0, 102, 179, .12);
    left: -100px;
    top: -100px;
}

.hero-glow-2 {
    width: 320px;
    height: 320px;
    background: rgba(124, 194, 66, .15);
    right: -60px;
    bottom: 80px;
}

.feature-card {
    position: absolute;
    left: -70px;
    bottom: 40px;
    width: 100%px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, .68);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
    z-index: 10;
}

.feature-item {
    flex: 1;
    text-align: center;
    transition: .35s;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-item .icon {
    width: 65px;
    height: 65px;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066B3, #063A72);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 20px 35px rgba(0, 102, 179, .25);
}

.feature-item h4 {
    font-size: 16px;
    color: #102A43;
    margin-bottom: 6px;
}

.feature-item span {
    font-size: 14px;
    color: #667085;
}

.hero-image {
    transition: 1.2s;
}

.hero-image img {
    transition: 8s linear;
}

.hero:hover .hero-image img {
    transform: scale(1.08);
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .25);
    transform: skewX(-25deg);
    transition: .8s;
}

.btn-primary:hover::before {
    left: 130%;
}

.btn i {
    transition: .35s;
}

.btn:hover i {
    transform: translateX(6px);
}

.leaf {
    position: absolute;
    pointer-events: none;
    opacity: 1.0;
    animation: floatLeaf 8s ease-in-out infinite;
}

.leaf1 {
    width: 90px;
    left: 5%;
    top: 18%;
}

.leaf2 {
    width: 70px;
    right: 8%;
    top: 25%;
    animation-delay: 2s;
}

.leaf3 {
    width: 120px;
    right: 15%;
    bottom: 8%;
    animation-delay: 4s;
}

@keyframes floatLeaf {

    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(10deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }

}

.hero-subtitle {
    animation: fadeDown 1s ease;
}

.hero-left h1 {
    animation: fadeLeft 1.2s ease;
}

.hero-left p {
    animation: fadeLeft 1.5s ease;
}

.hero-buttons {
    animation: fadeUp 1.7s ease;
}

.hero-image {
    animation: fadeRight 1.3s ease;
}

.feature-card {
    animation: fadeUp 2s ease;
}

@keyframes fadeLeft {

    from {
        opacity: 0;
        transform: translateX(-70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes fadeRight {

    from {
        opacity: 0;
        transform: translateX(70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -180px;
    top: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 194, 66, .10), transparent 70%);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    left: -220px;
    bottom: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 179, .08), transparent 70%);
}

@media(max-width:1200px) {

    .hero-wrapper {
        flex-direction: column;
        gap: 70px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        padding-top: 20px;
    }

    .hero-left h1 {
        font-size: 60px;
    }

    .hero-left p {
        width: 100%;
    }

    .feature-card {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: -50px;
    }

    .hero-image img {
        height: 580px;
    }

}

@media(max-width:768px) {

    .header {
        padding: 20px 0;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .hero-left {
        padding: 5px;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-left p {
        font-size: 16px;
        line-height: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        border-radius: 30px;
    }

    .hero-image img {
        height: 400px;
    }

    .feature-card {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px;
        margin-top: -134px;
        padding: 10px;

    }

    .feature-item .icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-item h4 {
        font-size: 14px;
    }

    .shape-bg {
        width: 120%;
        height: 620px;
        left: -120px;
    }

    .logo img {
        width: 170px;
    }

}

@media(max-width:576px) {

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .feature-card {
        grid-template-columns: 1fr;
    }

    .hero-image img {
        height: 320px;
    }

    .shape-bg {
        display: none;
    }

}

.floating-icons {
    position: fixed;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
}

.float-icon {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    transition: .35s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

/* Call - Brand Blue */

.call {
    background: linear-gradient(135deg, #0067C5, #00529B);
}

.call:hover {
    color: #fff;
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 18px 40px rgba(0, 91, 170, .35);
}

/* WhatsApp - Brand Green */

.whatsapp {
    background: linear-gradient(135deg, #7BCB2D, #5FA91B);
}

.whatsapp:hover {
    color: #fff;
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 18px 40px rgba(120, 190, 32, .35);
}

/* Premium Ring */

.float-icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .18);
}

/* Pulse */

.float-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.call::before {
    border: 2px solid rgba(0, 91, 170, .35);
}

.whatsapp::before {
    border: 2px solid rgba(120, 190, 32, .35);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

@media(max-width:768px) {

    .floating-icons {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }

    .float-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

}

.trusted-section {
    position: relative;
    padding: 60px 0 0;
    background: #fafcf9;
    overflow: hidden;
}

.trusted-section::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(118, 184, 42, .06);
    top: -180px;
    right: -180px;
    filter: blur(50px);
}

.trusted-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 91, 170, .05);
    left: -160px;
    bottom: -180px;
    filter: blur(40px);
}

.trusted-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    max-width: 850px;
    margin: 0 auto 35px !important;
}

.sub-title {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #edf7ea;
    color: #76B82A;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-title h2 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-title p {
    font-size: 17px;
    color: var(--paragraph);
    line-height: 26px;
    font-weight: 400;
}

.trusted-image {
    position: relative;
    /*border-radius: 28px;*/
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.trusted-image img {
    width: 100%;
    object-fit: cover;
    transition: .5s;
}

.trusted-image:hover img {
    transform: scale(1.05);
}

.experience-box {
    position: absolute;
    left: 35px;
    bottom: 35px;
    background: #fff;
    padding: 28px;
    border-radius: 22px;
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.experience-box h3 {
    font-size: 48px;
    font-weight: 800;
    color: #005BAA;
    margin-bottom: 8px;
}

.experience-box span {
    color: var(--paragraph);
    line-height: 28px;
    font-weight: 500;
}

.trusted-content {
    padding-left: 35px;
}

.trusted-content h3 {
    font-size: 45px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.trusted-content>p {
    font-size: 17px;
    color: var(--paragraph);
    line-height: 32px;
    margin-bottom: 35px;
}

.trusted-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
    padding: 16px 34px;
    background: linear-gradient(135deg, #005BAA, #76B82A);
    color: #fff;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 91, 170, .25);
}

.trusted-btn:hover {
    color: #fff;
    transform: translateY(-5px);
}

.trusted-btn i {
    transition: .35s;
}

.trusted-btn:hover i {
    transform: translateX(6px);
}

.statistics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 20px;
    text-align: center;
    border: 1px solid #ececec;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
    transition: .35s;
}

.stat-card h2 {
    font-size: 30px;
    color: #005BAA;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card span {
    color: var(--paragraph);
    font-weight: 500;
}

.client-logos {
    margin-top: 30px;
}

.client-logos h4 {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #76B82A;
    margin-bottom: 20px;
}

.logo-slider {
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    padding: 30px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 70px;
}

.logo-track img {
    height: 55px;
    width: auto;
    transition: .20s;
}

.logo-track img:hover {
    opacity: 1;
    filter: none;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .10);
    border-color: #76B82A;
}

.stat-card:hover h2 {
    color: #76B82A;
}

.experience-box {
    transition: .4s;
}

.trusted-image:hover .experience-box {
    transform: translateY(-10px);
}

.logo-track img:hover {
    transform: scale(1.5);
}

.logo-track {
    width: max-content;
    animation: logoScroll 70s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

@keyframes logoScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

.trusted-section .shape-1 {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #76B82A;
    border-radius: 50%;
    top: 120px;
    left: 80px;
    animation: floatY 5s ease-in-out infinite;
}

.trusted-section .shape-2 {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #005BAA;
    border-radius: 50%;
    bottom: 150px;
    right: 100px;
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }

}

.section-title,
.trusted-image,
.trusted-content,
.statistics,
.client-logos {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media(max-width:1199px) {

    .trusted-section {
        padding: 90px 0;
    }

    .section-title h2 {
        font-size: 42px;
    }

    .trusted-image img {
        height: 620px;
    }

    .trusted-content {
        padding-left: 0;
    }

    .statistics {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:991px) {

    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title p {
        font-size: 16px;
        line-height: 30px;
    }

    .trusted-image img {
        height: 520px;
    }

    .trusted-content {
        margin-top: 20px;
    }

    .trusted-content h3 {
        font-size: 32px;
    }

    .statistics {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .client-logos {
        margin-top: 20px;
    }

    .logo-track {
        gap: 45px;
    }

    .logo-track img {
        height: 45px;
    }

}

@media(max-width:767px) {

    .trusted-section {
        padding: 70px 0;
    }

    .sub-title {
        font-size: 12px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .section-title p {
        font-size: 15px;
        line-height: 28px;
    }

    .trusted-image img {
        height: 420px;
    }

    .experience-box {
        left: 20px;
        bottom: 20px;
        min-width: 170px;
        padding: 20px;
    }

    .experience-box h3 {
        font-size: 34px;
    }

    .trusted-content h3 {
        font-size: 28px;
    }

    .statistics {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .logo-track {
        gap: 35px;
    }

    .logo-track img {
        height: 38px;
    }

    .client-logos h4 {
        font-size: 28px;
    }

}

@media(max-width:575px) {

    .section-title h2 br {
        display: none;
    }

    .experience-box {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: -5px;
        border-radius: 0 0 20px 20px;
    }

    .trusted-btn {
        width: 100%;
        justify-content: center;
    }

    .logo-slider {
        padding: 20px 0;
    }

}

.stats-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media(max-width:767px) {
    .stats-feature-list {
        grid-template-columns: 1fr;
    }
}

.stats-feature-item {
    height: 100%;
}

.stats-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid #ececec;
    transition: .35s;
}

.stats-feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf7ea;
    color: #76B82A;
    font-size: 24px;
    transition: .35s;
}

.stats-feature-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.stats-feature-item p {
    color: #777;
    margin: 0;
    line-height: 28px;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}


.stat-box {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: .4s;
    position: relative;
}

.stat-box h2 {
    color: #fff;
}

.counter {
    font-size: 55px;
    color: #fff;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;
    margin-right: 8px;
}


.stat-box h2 i {
    color: #76B82A;
    font-size: 46px;
}

.stat-box h4 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    line-height: 30px;
}

.stat-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    line-height: 22px;
    margin: 0;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .12);
    border-color: #b7c648;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
}

.stat-box:hover h2 {
    color: #76B82A;
}

@media(max-width:991px) {
    .stats-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:767px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }
}

.collection-section {
    position: relative;
    padding: 60px 0 30px;
    background: #f8faf7;
    overflow: hidden;
}

.collection-section::before {
    content: "PROJECTS";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(118, 184, 42, .05);
    border-radius: 50%;
    top: -220px;
    right: -180px;
}

.collection-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0, 91, 170, .05);
    border-radius: 50%;
    bottom: -180px;
    left: -150px;
}

.collection-section .container {
    position: relative;
    z-index: 2;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 70px;
}

.collection-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    min-height: 300px;
    text-decoration: none;
    background: #ddd;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.featured-card {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 625px;
}

.collection-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .82),
            rgba(0, 0, 0, .15));
}

.collection-overlay span {
    display: inline-block;
    width: max-content;
    padding: 8px 18px;
    background: #76B82A;
    color: #fff;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.collection-overlay h3 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.collection-overlay h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.collection-overlay p {
    color: #ececec;
    line-height: 23px;
    margin-bottom: 25px;
    font-size: 15px;
}

.collection-overlay i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: #005BAA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: .35s;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.explore-btn i {
    width: 48px;
    height: 48px;
}

.collection-cta {
    margin-top: 40px;
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #005BAA, #76B82A);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.collection-cta::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    right: -80px;
    top: -80px;
}

.collection-cta span {
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.collection-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.collection-cta p {
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, .92);
    margin: 0;
}

.theme-btn,
.theme-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 58px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.theme-btn {
    background: #fff;
    color: #005BAA;
    margin-right: 18px;
}

.theme-btn-outline {
    border: 2px solid rgba(255, 255, 255, .35);
    color: #fff;
}

.collection-card {
    transition: .45s ease;
}

.collection-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
}

.collection-card:hover img {
    transform: scale(1.12);
}

.collection-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 91, 170, .15),
            rgba(118, 184, 42, .10));
    opacity: 0;
    transition: .4s;
    z-index: 1;
}

.collection-card:hover::before {
    opacity: 1;
}

.collection-overlay {
    z-index: 2;
    transition: .4s;
}

.collection-card:hover .collection-overlay {
    padding-bottom: 45px;
}

.collection-overlay i {
    transition: .35s;
}

.collection-card:hover i {
    transform: translateX(8px) rotate(-45deg);
    background: #76B82A;
    color: #fff;
}

.featured-card .collection-overlay {
    padding: 45px;
}

.featured-card:hover h3 {
    color: #76B82A;
}

.featured-card:hover .explore-btn {
    transform: translateX(10px);
}

.explore-btn {
    transition: .35s;
}

.theme-btn {
    position: relative;
    overflow: hidden;
}

.theme-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .2);
    transform: skewX(-30deg);
    transition: .6s;
}

.theme-btn:hover::before {
    left: 120%;
}

.theme-btn:hover {
    color: #005BAA;
    transform: translateY(-4px);
}

.theme-btn-outline:hover {
    background: #fff;
    color: #005BAA;
}

.collection-card {
    opacity: 0;
    transform: translateY(60px);
    animation: cardFade .8s forwards;
}

.collection-card:nth-child(1) {
    animation-delay: .1s;
}

.collection-card:nth-child(2) {
    animation-delay: .2s;
}

.collection-card:nth-child(3) {
    animation-delay: .3s;
}

.collection-card:nth-child(4) {
    animation-delay: .4s;
}

.collection-card:nth-child(5) {
    animation-delay: .5s;
}

.collection-card:nth-child(6) {
    animation-delay: .6s;
}

.collection-card:nth-child(7) {
    animation-delay: .7s;
}

.collection-card:nth-child(8) {
    animation-delay: .8s;
}

.collection-card:nth-child(9) {
    animation-delay: .9s;
}

.collection-card:nth-child(10) {
    animation-delay: 1s;
}

@keyframes cardFade {

    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.collection-section .shape-one {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #76B82A;
    left: 6%;
    top: 20%;
    animation: floatOne 5s infinite ease-in-out;
}

.collection-section .shape-two {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #005BAA;
    right: 7%;
    bottom: 18%;
    animation: floatOne 6s infinite ease-in-out;
}

@keyframes floatOne {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }

}

@media(max-width:1199px) {

    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured-card {
        grid-column: span 2;
    }

    .collection-overlay h3 {
        font-size: 32px;
    }

    .collection-cta h2 {
        font-size: 36px;
    }

}

@media(max-width:991px) {

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-card {
        grid-column: span 2;
        min-height: 520px;
    }

    .collection-card {
        min-height: 260px;
    }

    .collection-overlay {
        padding: 25px;
    }

    .collection-overlay h3 {
        font-size: 28px;
    }

    .collection-overlay h4 {
        font-size: 22px;
    }

    .collection-cta {
        padding: 45px;
    }

    .collection-cta h2 {
        font-size: 32px;
    }

    .collection-cta .text-lg-end {
        margin-top: 30px;
    }

}

@media(max-width:767px) {

    .collection-section {
        padding: 20px 0;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .featured-card {
        grid-column: unset;
        grid-row: unset;
        min-height: 450px;
    }

    .collection-card {
        min-height: 280px;
    }

    .collection-overlay h3 {
        font-size: 26px;
    }

    .collection-overlay h4 {
        font-size: 22px;
    }

    .collection-overlay p {
        font-size: 14px;
        line-height: 24px;
    }

    .collection-cta {
        padding: 35px 25px;
        text-align: center;
    }

    .collection-cta h2 {
        font-size: 28px;
    }

    .collection-cta p {
        font-size: 15px;
        line-height: 28px;
    }

    .theme-btn,
    .theme-btn-outline {
        width: 100%;
    }

}

@media(max-width:575px) {

    .collection-overlay {
        padding: 20px;
    }

    .collection-overlay span {
        font-size: 11px;
    }

    .collection-overlay h3 {
        font-size: 22px;
    }

    .collection-overlay h4 {
        font-size: 20px;
    }

    .collection-overlay i {
        width: 45px;
        height: 45px;
    }

    .explore-btn {
        font-size: 15px;
    }

}

.collection-card {
    opacity: 0;
    transform: translateY(60px);
    transition: .8s ease;
}

.collection-card.show-card {
    opacity: 1;
    transform: translateY(0);
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    background: #fff;
    color: #005BAA;
    border: 2px solid #005BAA;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.view-all-btn i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #005BAA;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.view-all-btn:hover {
    background: #005BAA;
    color: #fff;
    transform: translateY(-5px);
}

.view-all-btn:hover i {
    background: #76B82A;
}

.materials-section {
    position: relative;
    padding: 60px 0 30px;
    background: url(../img/insight.jpg) center top no-repeat;
    background-size: cover;
    overflow: hidden;
}

.floating-light {
    position: absolute;
    top: -20px;
    left: 10px;
    width: 150px;
    z-index: 1;
    pointer-events: none;

    animation: lightFloat 5s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes lightFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(18px);
    }

    100% {
        transform: translateY(0px);
    }
}

.materials-section::before {
    content: "WHY CHOOSE";
    position: absolute;
    top: 40px;
    left: 20px;
    font-size: 150px;
    font-weight: 800;
    color: #f3f3f3;
    letter-spacing: 8px;
    z-index: 0;
    user-select: none;
}

.materials-section .container {
    position: relative;
    z-index: 2;
}

.materials-content {
    padding-right: 30px;
}

.materials-content .sub-title {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #edf7ea;
    color: #76B82A;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.materials-content h2 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
}

.materials-content p {
    font-size: 16px;
    line-height: 26px;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border: 2px solid #005BAA;
    color: #005BAA;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

.outline-btn i {
    transition: .35s;
}

.outline-btn:hover {
    background: #005BAA;
    color: #fff;
}

.outline-btn:hover i {
    transform: translateX(6px);
}

.materials-section .material-item {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
    transition: .35s;
}

.material-image {
    overflow: hidden;
}

.material-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: .5s;
}

.material-info {
    padding: 20px;
    text-align: center;
}

.material-info h5 {
    font-size: 24px;
    color: #005BAA;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 5px;
}

.material-info span {
    font-size: 16px;
    color: var(--paragraph);
    line-height: 26px;
}

.material-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .12);
}

.material-item:hover img {
    transform: scale(1.08);
}

.materials-slider .owl-stage {
    display: flex;
}

.materials-slider .owl-item {
    padding: 8px;
}

.slider-progress {
    width: 100%;
    height: 5px;
    background: #e6e6e6;
    margin-top: 35px;
    border-radius: 20px;
    overflow: hidden;
}

.progress-line {
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, #005BAA, #76B82A);
    border-radius: 20px;
}

.materials-cta {
    margin-top: 40px;
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid #ececec;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
    overflow: hidden;
    position: relative;
}

.materials-cta span {
    color: #76B82A;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.materials-cta h2 {
    color: #222;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.materials-cta p {
    color: var(--paragraph);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}

.cta-btns {
    display: flex;
    gap: 18px;
}

.primary-btn,
.secondary-btn {
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
    width: 100%;
}

.primary-btn {
    background: #005BAA;
    color: #fff;
}

.primary-btn:hover {
    background: #76B82A;
    color: #fff;
}

.secondary-btn {
    border: 2px solid #005BAA;
    color: #005BAA;
    gap: 10px;
}

.secondary-btn:hover {
    background: #005BAA;
    color: #fff;
}

.material-item {
    position: relative;
}



.material-item:hover::after {
    width: 100%;
}

.material-item:hover .material-info h5 {
    color: #76B82A;
}


.material-item:hover img {
    transform: scale(1.12) rotate(2deg);
}

.material-image {
    position: relative;
}

.material-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 91, 170, .15),
            transparent);
    opacity: 0;
    transition: .4s;
    z-index: 2;
}

.material-item:hover .material-image::before {
    opacity: 1;
}

.outline-btn {
    position: relative;
    overflow: hidden;
}

.outline-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .18);
    transform: skewX(-25deg);
    transition: .7s;
}

.outline-btn:hover::before {
    left: 120%;
}

.primary-btn {
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .2);
    transform: skewX(-25deg);
    transition: .7s;
}

.primary-btn:hover::before {
    left: 120%;
}

.primary-btn:hover {
    transform: translateY(-4px);
}

.secondary-btn:hover {
    transform: translateY(-4px);
}

.progress-line {
    animation: progressMove 6s linear infinite;
}

@keyframes progressMove {

    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }

}

.materials-section .shape1 {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #76B82A;
    top: 18%;
    left: 5%;
    animation: floatShape 5s infinite ease-in-out;
}

.materials-section .shape2 {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #005BAA;
    bottom: 12%;
    right: 6%;
    animation: floatShape 6s infinite ease-in-out;
}

@keyframes floatShape {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }

}

@media(max-width:1199px) {

    .materials-content h2 {
        font-size: 45px;
        line-height: 50px;
    }

    .material-image img {
        height: 180px;
    }

    .materials-cta h2 {
        font-size: 36px;
    }

}

@media(max-width:991px) {

    .materials-section {
        padding: 90px 0;
    }

    .materials-content {
        margin-bottom: 40px;
        padding-right: 0;
    }

    .materials-content h2 {
        font-size: 36px;
        line-height: 46px;
    }

    .materials-section::before {
        font-size: 120px;
    }

    .materials-cta {
        padding: 45px;
    }

    .materials-cta h2 {
        font-size: 32px;
    }

    .cta-btns {
        margin-top: 30px;
    }

}

@media(max-width:767px) {

    .materials-section {
        padding: 20px 0;
    }

    .materials-section::before {
        font-size: 70px;
        top: 20px;
    }

    .materials-content {
        text-align: center;
    }

    .materials-content h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .material-image img {
        height: 170px;
    }

    .materials-cta {
        padding: 35px 25px;
        text-align: center;
    }

    .materials-cta h2 {
        font-size: 26px;
    }

    .materials-cta p {
        font-size: 15px;
        line-height: 28px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .floating-light {
        position: absolute;
        top: -20px;
        left: 10px;
        width: 70px;
        z-index: 1;
        pointer-events: none;

        animation: lightFloat 5s ease-in-out infinite;
        transform-origin: top center;
    }

    .materials-section .material-item {
        height: 320px;
    }

    .secondary-btn {
        gap: 5px;
    }

    .primary-btn,
    .secondary-btn {
        font-size: 14px;
    }
}

@media(max-width:575px) {

    .material-info {
        padding: 18px;
    }

    .material-info h5 {
        font-size: 17px;
    }

    .material-info span {
        font-size: 13px;
    }

    .slider-progress {
        margin-top: 25px;
    }

    .materials-cta {
        border-radius: 20px;
    }

}

.materials-slider .owl-nav {
    position: absolute;
    top: -55px;
    right: 0;
    display: flex;
    gap: 15px;
}

.materials-slider .owl-nav button {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #e8e8e8 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.materials-slider .owl-nav button span {
    display: none;
}

.materials-slider .owl-nav button i {
    font-size: 18px;
    color: #005BAA;
    transition: .35s;
}

.materials-slider .owl-nav button:hover {
    background: #005BAA !important;
    border-color: #005BAA !important;
    transform: translateY(-4px);
}

.materials-slider .owl-nav button:hover i {
    color: #fff;
}

.materials-slider .owl-nav .owl-prev {
    margin: 0 !important;
}

.materials-slider .owl-nav .owl-next {
    margin: 0 !important;
}

.materials-slider .owl-nav button {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

.materials-slider .owl-nav button:hover {
    background: #76B82A !important;
}

.materials-slider .owl-nav button:hover i {
    color: #fff;
}

.projects-section {
    position: relative;
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.projects-section::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 320px;
    font-size: 150px;
    font-weight: 800;
    color: #f1f3f5;
    letter-spacing: 8px;
    z-index: 0;
    user-select: none;
}

.projects-section .container {
    position: relative;
    z-index: 2;
}

.project-row {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 70px;
    margin-top: 90px;
}

.project-row.reverse {
    grid-template-columns: .9fr 1.1fr;
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .10);
}

.project-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    transition: .6s;
}

.project-number {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 90px;
    font-weight: 800;
    color: rgba(255, 255, 255, .18);
    line-height: 1;
    z-index: 2;
}

.location-tag {
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.location-tag i {
    color: #76B82A;
}

.project-content {
    position: relative;
}

.project-type {
    display: inline-block;
    padding: 8px 18px;
    background: #f7e53833;
    color: #efbf45;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.project-content h3 {
    font-size: 30px;
    color: #76B82A;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

.project-content>p {
    color: #667085;
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 20px;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.project-features span {
    padding: 12px 22px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #ececec;
    color: #333;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
}

.project-result {
    border-left: 4px solid #76B82A;
    padding-left: 25px;
    margin-bottom: 35px;
}

.project-result strong {
    display: block;
    font-size: 18px;
    color: #005BAA;
    margin-bottom: 10px;
}

.project-result p {
    margin: 0;
    color: var(--paragraph);
    line-height: 26px;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #005BAA;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: .35s;
}

.project-btn i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #005BAA;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.projects-cta {
    margin-top: 40px;
    background: #111;
    color: #fff;
    padding: 40px;
    border-radius: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.projects-cta::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(118, 184, 42, .08);
    right: -120px;
    top: -120px;
}

.projects-cta span {
    display: inline-block;
    color: #76B82A;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.projects-cta h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.projects-cta p {
    max-width: 760px;
    margin: 0 auto;
    color: #cfcfcf;
    line-height: 32px;
    font-size: 16px;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.projects-cta .theme-btn {
    background: #76B82A;
    color: #fff;
}

.projects-cta .theme-btn-outline {
    border: 2px solid rgba(255, 255, 255, .25);
    color: #fff;
}

.project-row {
    transition: .4s ease;
}

.project-row:hover {
    transform: translateY(-8px);
}

.project-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .05));
    opacity: 0;
    transition: .45s;
    z-index: 1;
}

.project-row:hover .project-image::before {
    opacity: 1;
}

.project-row:hover .project-image img {
    transform: scale(1.08);
}

.project-row:hover .project-number {
    transform: scale(1.1);
    color: rgba(255, 255, 255, .28);
}

.project-number {
    transition: .4s;
}

.project-row:hover .location-tag {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .28);
}

.location-tag {
    transition: .4s;
}

.project-features span {
    transition: .35s;
}

.project-features span:hover {
    background: #005BAA;
    color: #fff;
    border-color: #005BAA;
    transform: translateY(-3px);
}

.project-result {
    transition: .35s;
}

.project-row:hover .project-result {
    border-color: #005BAA;
}

.project-btn {
    position: relative;
}

.project-btn:hover {
    color: #76B82A;
}

.project-btn:hover i {
    background: #76B82A;
    transform: translateX(8px);
}

.projects-cta {
    transition: .45s;
}

.projects-cta:hover {
    transform: translateY(-6px);
}

.projects-cta .theme-btn,
.projects-cta .theme-btn-outline {
    transition: .35s;
}

.projects-cta .theme-btn:hover {
    background: #005BAA;
    color: #fff;
}

.projects-cta .theme-btn-outline:hover {
    background: #fff;
    color: #111;
}

.project-row,
.projects-cta {
    opacity: 0;
    transform: translateY(80px);
    transition: 1s ease;
}

.project-row.show,
.projects-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.project-row {
    position: relative;
}

.project-row::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 80px;
    background: #e5e5e5;
    transform: translateX(-50%);
}

.project-row:last-of-type::after {
    display: none;
}

@media(max-width:1199px) {

    .project-row,
    .project-row.reverse {
        gap: 45px;
    }

    .project-content h3 {
        font-size: 36px;
    }

    .project-image img {
        height: 520px;
    }

    .projects-cta h2 {
        font-size: 45px;
    }

}

@media(max-width:991px) {

    .projects-section {
        padding: 90px 0;
    }

    .projects-section::before {
        font-size: 120px;
    }

    .project-row,
    .project-row.reverse {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .project-row.reverse .project-image {
        order: 1;
    }

    .project-row.reverse .project-content {
        order: 2;
    }

    .project-image img {
        height: 500px;
    }

    .project-row::after {
        display: none;
    }

    .projects-cta {
        padding: 50px 40px;
    }

    .projects-cta h2 {
        font-size: 34px;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-group a {
        width: 280px;
    }

}

@media(max-width:767px) {

    .projects-section {
        padding: 20px 0;
    }

    .projects-section::before {
        font-size: 70px;
    }

    .project-row {
        margin-top: 70px;
    }

    .project-content {
        text-align: center;
    }

    .project-content h3 {
        font-size: 30px;
    }

    .project-content>p {
        font-size: 15px;
        line-height: 28px;
    }

    .project-features {
        justify-content: center;
    }

    .project-result {
        text-align: left;
    }

    .project-image img {
        height: 360px;
    }

    .project-number {
        font-size: 60px;
    }

    .location-tag {
        left: 20px;
        bottom: 20px;
        font-size: 14px;
    }

    .projects-cta {
        padding: 40px 25px;
    }

    .projects-cta h2 {
        font-size: 28px;
    }

    .projects-cta p {
        line-height: 28px;
    }

}

@media(max-width:575px) {

    .project-image {
        border-radius: 20px;
    }

    .project-image img {
        height: 300px;
    }

    .project-type {
        font-size: 12px;
    }

    .project-content h3 {
        font-size: 24px;
    }

    .project-features span {
        font-size: 13px;
        padding: 10px 16px;
    }

    .project-result {
        padding-left: 18px;
    }

    .projects-cta {
        border-radius: 22px;
    }

    .projects-cta h2 {
        font-size: 24px;
    }

    .projects-cta span {
        font-size: 12px;
    }

}

.project-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .25);
    z-index: 2;
}

.process-section {
    position: relative;
    padding: 60px 0;
    background: #f9fafb;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 320px;
    font-size: 150px;
    font-weight: 800;
    color: #f1f3f5;
    letter-spacing: 8px;
    z-index: 0;
    user-select: none;
}

.process-section .container {
    position: relative;
    z-index: 2;
}

.process-wrapper {
    margin-top: 40px;
}

.process-top,
.process-middle,
.process-bottom,
.process-last {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 20px;
}

.process-step {
    background: #fff;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .05);
    position: relative;
}

.process-step h4 {
    font-size: 24px;
    font-weight: 500;
    color: #222;
    margin: 15px 0 5px;
}

.process-step p {
    color: #667085;
    line-height: 26px;
    margin: 0;
    font-size: 16px;
}

.step-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #005BAA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .35s;
}

.step-circle span {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #76B82A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.step-circle i {
    color: #005BAA;
    font-size: 28px;
}

.step-line.vertical {
    width: 3px;
    height: 140px;
    background: #d9d9d9;
    border-radius: 50px;
}

.step-line.horizontal {
    width: 140px;
    height: 3px;
    background: #d9d9d9;
    border-radius: 50px;
}

.process-center {
    text-align: center;
    position: relative;
}

.center-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #005BAA, #76B82A);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 60px;
    box-shadow: 0 30px 80px rgba(0, 91, 170, .25);
}

.process-center h3 {
    font-size: 30px;
    margin-top: 25px;
    font-weight: 600;
    color: #76B82A;
}

.process-center p {
    margin-top: 15px;
    color: var(--paragraph);
    line-height: 30px;
}

.process-cta {
    margin-top: 40px;
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #ececec;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .06);
}

.process-cta span {
    display: inline-block;
    color: #76B82A;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-cta h2 {
    font-size: 42px;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
}

.process-cta p {
    color: var(--paragraph);
    line-height: 32px;
    margin: 0;
}

.process-btns {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.process-btns .theme-btn,
.process-btns .theme-btn-outline {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.process-step {
    transition: .4s ease;
}

.process-step:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .10);
}

.process-step:hover .step-circle {
    background: #005BAA;
    border-color: #005BAA;
    transform: rotate(-8deg) scale(1.08);
}

.process-step:hover .step-circle i {
    color: #fff;
}

.process-step:hover h4 {
    color: #005BAA;
}

.center-circle {
    position: relative;
    animation: floatCircle 5s ease-in-out infinite;
}

.center-circle::before {
    content: "";
    position: absolute;
    inset: -15px;
    border: 2px dashed rgba(118, 184, 42, .25);
    border-radius: 50%;
    animation: rotateBorder 18s linear infinite;
}

@keyframes rotateBorder {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes floatCircle {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

.step-line {
    position: relative;
    overflow: hidden;
}

.step-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #76B82A;
    transform: scaleY(0);
    transform-origin: top;
    transition: .8s;
}

.step-line.horizontal::before {
    transform: scaleX(0);
    transform-origin: left;
}

.process-section.active .step-line.vertical::before {
    transform: scaleY(1);
}

.process-section.active .step-line.horizontal::before {
    transform: scaleX(1);
}

.process-step,
.process-center,
.process-cta {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

.process-step.show,
.process-center.show,
.process-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.process-btns .theme-btn,
.process-btns .theme-btn-outline {
    transition: .35s;
}

.process-btns .theme-btn:hover {
    transform: translateY(-4px);
}

.process-btns .theme-btn-outline:hover {
    background: #005BAA;
    color: #fff;
}

@media(max-width:1199px) {

    .process-section::before {
        font-size: 140px;
    }

    .process-top,
    .process-middle,
    .process-bottom,
    .process-last {
        gap: 40px;
    }

    .process-step {
        padding: 28px;
    }

    .process-center h3 {
        font-size: 28px;
    }

    .center-circle {
        width: 150px;
        height: 150px;
        font-size: 52px;
    }

}

@media(max-width:991px) {

    .process-section {
        padding: 90px 0;
    }

    .process-top,
    .process-middle,
    .process-bottom,
    .process-last {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 45px;
    }

    .step-line {
        display: none;
    }

    .process-center {
        order: -1;
        margin-bottom: 20px;
    }

    .process-cta {
        padding: 45px;
    }

    .process-cta h2 {
        font-size: 34px;
    }

    .process-btns {
        margin-top: 30px;
    }

}

@media(max-width:767px) {

    .process-section {
        padding: 70px 0;
    }

    .process-section::before {
        font-size: 80px;
    }

    .process-step {
        text-align: center;
    }

    .step-circle {
        margin: auto;
    }

    .process-center {
        padding: 20px;
    }

    .center-circle {
        width: 130px;
        height: 130px;
        font-size: 46px;
    }

    .process-center h3 {
        font-size: 24px;
    }

    .process-center p {
        font-size: 15px;
    }

    .process-cta {
        padding: 35px 25px;
        text-align: center;
    }

    .process-cta h2 {
        font-size: 28px;
    }

    .process-btns .theme-btn,
    .process-btns .theme-btn-outline {
        width: 100%;
    }

}

@media(max-width:575px) {

    .process-step {
        padding: 24px 20px;
    }

    .process-step h4 {
        font-size: 20px;
    }

    .process-step p {
        font-size: 14px;
        line-height: 26px;
    }

    .step-circle {
        width: 80px;
        height: 80px;
    }

    .step-circle i {
        font-size: 24px;
    }

    .step-circle span {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .process-cta {
        border-radius: 20px;
    }

    .process-cta h2 {
        font-size: 24px;
    }

    .process-cta span {
        font-size: 12px;
    }

}

.testimonial-section {
    background: url(../img/testimonial-bg.png) center center no-repeat;
    background-size: cover;
    padding: 20px;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(rgba(118, 184, 42, .08), transparent 70%);
    top: -180px;
    left: -180px;
}

.testimonial-slider {
    position: relative;
    margin-top: 40px;
}

.testimonial-item {
    display: none;
    align-items: center;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 10px;
    overflow: hidden;
    position: relative;
}

.testimonial-item.active {
    display: grid;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef8ea;
    color: #76B82A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.rating {
    margin-bottom: 18px;
}

.rating i {
    color: #f6b100;
    margin-right: 3px;
    font-size: 15px;
}

.testimonial-content h3 {
    font-size: 30px;
    line-height: 1.2;
    color: #222;
    margin-bottom: 20px;
    font-weight: 600;
}

.testimonial-content p {
    color: var(--paragraph);
    font-size: 16px;
    line-height: 31px;
    margin: 0;
}

.testimonial-client {
    text-align: center;
}

.testimonial-client img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    margin-bottom: 18px;
}

.testimonial-client h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #222;
}

.testimonial-client span {
    display: block;
    color: #005BAA;
    font-size: 15px;
    font-weight: 600;
}

.testimonial-client small {
    display: block;
    color: #888;
    margin-top: 6px;
    font-size: 14px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d8d8d8;
    transition: .3s;
}

.testimonial-dots span.active {
    background: #76B82A;
    width: 28px;
    border-radius: 20px;
}

.testimonial-image {
    position: relative;
    height: 320px;
    border-radius: 28px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.testimonial-cta {
    margin-top: 80px;
    background: #fff;
    border-radius: 28px;
    padding: 55px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
}

.testimonial-cta span {
    display: inline-block;
    color: #76B82A;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial-cta h2 {
    font-size: 42px;
    color: #222;
    line-height: 1.25;
    margin-bottom: 20px;
}

.testimonial-cta p {
    color: var(--paragraph);
    line-height: 30px;
    margin: 0;
}

.cta-btns {
    display: flex;
    gap: 18px;
}

.cta-btns .theme-btn,
.cta-btns .theme-btn-outline {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.testimonial-item {
    transition: .45s;
}


.testimonial-item::before {
    content: "";
    position: absolute;
    left: 65%;
    top: 50px;
    bottom: 50px;
    width: 1px;
    background: #ececec;
}

.quote-icon {
    transition: .4s;
}

.testimonial-item:hover .quote-icon {
    transform: rotate(-12deg) scale(1.08);
    background: #76B82A;
    color: #fff;
}

.testimonial-content h3 {
    transition: .35s;
}

.testimonial-item:hover .testimonial-content h3 {
    color: #005BAA;
}

.testimonial-client img {
    transition: .45s;
}

.testimonial-item:hover .testimonial-client img {
    transform: scale(1.08) rotate(3deg);
}

.testimonial-client h4 {
    transition: .35s;
}

.testimonial-item:hover .testimonial-client h4 {
    color: #005BAA;
}

.testimonial-image img {
    transition: 1s;
}

.testimonial-item:hover .testimonial-image img {
    transform: scale(1.08);
}

.testimonial-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .25),
            transparent);
    opacity: 0;
    transition: .45s;
}

.testimonial-item:hover .testimonial-image::after {
    opacity: 1;
}

.testimonial-dots span {
    cursor: pointer;
}

.testimonial-dots span:hover {
    background: #005BAA;
}

.testimonial-item,
.testimonial-cta {
    opacity: 0;
    transform: translateY(60px);
    transition: all .9s ease;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.cta-btns .theme-btn,
.cta-btns .theme-btn-outline {
    transition: .35s;
}

.cta-btns .theme-btn:hover {
    transform: translateY(-4px);
}

.cta-btns .theme-btn-outline:hover {
    background: #005BAA;
    color: #fff;
}

@media(max-width:1199px) {

    .testimonial-item {
        gap: 35px;
        padding: 40px;
    }

    .testimonial-content h3 {
        font-size: 30px;
    }

    .testimonial-image {
        height: 280px;
    }

    .testimonial-cta h2 {
        font-size: 36px;
    }

}

@media(max-width:991px) {

    .testimonial-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .testimonial-item::before {
        display: none;
    }

    .testimonial-content {
        order: 2;
    }

    .testimonial-client {
        order: 1;
    }

    .testimonial-image {
        order: 3;
        height: 320px;
    }

    .rating {
        justify-content: center;
        display: flex;
    }

    .testimonial-cta {
        padding: 45px 35px;
    }

    .cta-btns {
        margin-top: 35px;
    }

}

@media(max-width:767px) {

    .testimonial-section {
        padding: 0px 0;
    }

    .testimonial-slider {
        position: relative;
        margin-top: 0px;
    }

    .testimonial-item {
        padding: 30px;
        border-radius: 22px;
    }

    .quote-icon {
        margin: auto auto 20px;
    }

    .testimonial-content h3 {
        font-size: 26px;
    }

    .testimonial-content p {
        font-size: 15px;
        line-height: 28px;
    }

    .testimonial-image {
        height: 250px;
    }

    .testimonial-cta {
        text-align: center;
        padding: 35px 25px;
    }

    .testimonial-cta h2 {
        font-size: 28px;
    }

    .cta-btns .theme-btn,
    .cta-btns .theme-btn-outline {
        width: 100%;
    }

    .insights-section::before {
        top: 6px;
        left: 50px;
    }
}

@media(max-width:575px) {

    .testimonial-client img {
        width: 80px;
        height: 80px;
    }

    .testimonial-content h3 {
        font-size: 22px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    .testimonial-image {
        height: 220px;
    }

    .testimonial-cta h2 {
        font-size: 24px;
    }
}

.insights-section {
    padding: 60px 0 0px 0;
    background: #fafaf8;
    position: relative;
    overflow: hidden;
}

.insights-section::before {
    content: "INSIGHTS";
    position: absolute;
    top: 40px;
    left: 320px;
    font-size: 150px;
    font-weight: 800;
    color: #f1f3f5;
    letter-spacing: 8px;
    z-index: 0;
    user-select: none;
}

.insights-section .container {
    position: relative;
    z-index: 2;
}

.insight-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .06);
    height: 100%;
    transition: .4s;
    display: flex;
    flex-direction: column;
}

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

.insight-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .4s;
}

.category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #76B82A;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category.material {
    background: #005BAA;
}

.category.hotel {
    background: #F59E0B;
}

.category.checklist {
    background: #8B5CF6;
}

.insight-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.meta {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.meta span {
    font-size: 10px;
    color: #888;
}

.meta i {
    color: #76B82A;
    margin-right: 3px;
}

.insight-meta {
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 5px;
}

.insight-meta__category {
    display: inline-flex;
    min-width: 0;
    max-width: 100%;
    align-items: center;
    gap: 4px;
    padding: 2px;
    border-radius: 999px;
    color: #47751d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .055em;
    line-height: 1.35;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
}

.insight-meta__category span {
    min-width: 0;
    overflow: visible;
    white-space: normal;
    overflow-wrap: anywhere;
}

.insight-meta__category i {
    flex: 0 0 auto;
    margin-right: 0;
    color: #76B82A;
    font-size: 12px;
}

.insight-meta__category:hover {
    border-color: #76B82A;
    background: #76B82A;
    color: #fff;
    transform: translateY(-1px);
}

.insight-meta__category:hover i {
    color: #fff;
}

.insight-meta__reading {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    margin-left: auto;
    color: #778087 !important;
    font-size: 12px !important;
    font-weight: 500;
    letter-spacing: .015em;
    white-space: nowrap;
}

.insight-content h3 {
    font-size: 20px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
    margin-bottom: 10px;
}

.insight-content h3 a {
    color: inherit;
    text-decoration: none;
}

.insight-content p {
    color: #667085;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #005BAA;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
}

.read-more i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #005BAA;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.insights-section .theme-btn {
    padding: 16px 34px;
    border-radius: 50px;
}

.insight-card {
    position: relative;
}

.insight-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #76B82A;
    transition: .4s;
}

.insight-card:hover::after {
    width: 100%;
}

.insight-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.insight-card:hover .insight-image img {
    transform: scale(1.08);
}

.insight-card:hover .insight-content h3 {
    color: #005BAA;
}

.insight-card:hover .category {
    transform: translateY(-4px);
}

.insight-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .25),
            transparent);
    opacity: 0;
    transition: .4s;
    z-index: 1;
}

.insight-card:hover .insight-image::before {
    opacity: 1;
}

.category {
    z-index: 2;
    transition: .35s;
}

.read-more {
    position: relative;
}

.read-more:hover {
    color: #76B82A;
}

.read-more:hover i {
    background: #76B82A;
    transform: translateX(8px);
}

.insights-section .theme-btn {
    transition: .35s;
}

.insights-section .theme-btn:hover {
    transform: translateY(-4px);
}

@media(max-width:991px) {

    .insight-card {
        margin-bottom: 10px;
    }

    .insight-content {
        padding: 24px;
    }

}

@media(max-width:767px) {


    .read-more {
        font-size: 15px;
    }

    .read-more i {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

}

@media(max-width:575px) {

    .insight-card {
        border-radius: 18px;
    }

    .insight-content {
        padding: 20px;
    }

    .insight-content h3 {
        font-size: 19px;
    }

    .insight-content p {
        margin-bottom: 20px;
    }

    .category {
        left: 15px;
        top: 15px;
    }

}

@media(max-width:1199px) {

    .insight-content h3 {
        font-size: 22px;
        min-height: auto;
    }

}

@media(max-width:991px) {

    .insights-section {
        padding: 60px 0;
    }

    .insights-section::before {
        font-size: 120px;
    }
}

@media(max-width:767px) {

    .insights-section {
        padding: 70px 0;
    }

    .insights-section::before {
        font-size: 70px;
    }

    .insight-content {
        padding: 22px;
    }

    .insight-content h3 {
        font-size: 20px;
    }

    .insight-content p {
        font-size: 14px;
        line-height: 26px;
    }

}

@media(max-width:575px) {

    .insight-card {
        border-radius: 20px;
    }

    .category {
        font-size: 11px;
        padding: 7px 14px;
    }

    .insight-content h3 {
        font-size: 18px;
    }

    .insight-content {
        padding: 20px;
    }

}

.faq-section {
    position: relative;
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    background: url(../img/why-why.png) center top no-repeat;
    background-size: cover;
}

.faq-section::before {
    content: "FAQ";
    position: absolute;
    top: 40px;
    left: 604px;
    font-size: 150px;
    font-weight: 800;
    color: #f1f3f5;
    letter-spacing: 8px;
    z-index: 0;
    user-select: none;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-info {
    position: sticky;
    top: 120px;
    background: #fff;
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    border: 1px solid #ededed;
}

.faq-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #005BAA, #76B82A);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.mini-title {
    display: inline-block;
    color: #76B82A;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-info h3 {
    font-size: 30px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
    margin-bottom: 10px;
}

.faq-info p {
    color: #667085;
    line-height: 26px;
    margin-bottom: 30px;
}

.faq-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-info ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--paragraph);
    font-weight: 500;
}

.faq-info ul li i {
    color: #76B82A;
    font-size: 18px;
}

.faq-buttons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.faq-buttons .theme-btn,
.faq-buttons .theme-btn-outline {
    width: 100%;
    justify-content: center;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ececec;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .04);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    cursor: pointer;
}

.faq-question h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    width: 90%;
    line-height: 1.5;
}

.faq-toggle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f4f7fb;
    color: #005BAA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.faq-answer {
    display: none;
    padding: 0 30px 30px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    color: var(--paragraph);
    line-height: 30px;
    font-size: 15px;
}

.faq-item.active {
    border-color: #005BAA;
}

.faq-item.active .faq-question {
    background: #f8fbff;
}

.faq-item.active .faq-toggle {
    background: #005BAA;
    color: #fff;
}

@media(max-width:1199px) {

    .faq-info {
        padding: 35px;
    }

    .faq-info h3 {
        font-size: 32px;
    }

    .faq-question h5 {
        font-size: 18px;
    }

}

@media(max-width:991px) {

    .faq-section {
        padding: 90px 0;
    }

    .faq-section::before {
        font-size: 120px;
    }

    .faq-info {
        position: relative;
        top: 0;
        margin-bottom: 50px;
    }

}

@media(max-width:767px) {

    .faq-section {
        padding: 20px 0;
    }

    .faq-section::before {
        font-size: 70px;
    }

    .faq-info {
        padding: 30px;
    }

    .faq-info h3 {
        font-size: 28px;
    }

    .faq-question {
        padding: 22px;
    }

    .faq-answer {
        padding: 0 22px 22px;
    }

    .faq-question h5 {
        font-size: 17px;
    }

}

@media(max-width:575px) {

    .faq-info {
        border-radius: 22px;
    }

    .faq-item {
        border-radius: 18px;
    }

    .faq-question h5 {
        font-size: 16px;
    }

    .faq-toggle {
        width: 40px;
        height: 40px;
    }

}

.faq-item {
    transition: .35s ease;
    position: relative;
}

.faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: #76B82A;
    border-radius: 20px;
    transition: .4s;
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item:hover .faq-question h5 {
    color: #005BAA;
}

.faq-item:hover .faq-toggle {
    background: #76B82A;
    color: #fff;
    transform: rotate(90deg);
}

.faq-item.active {
    box-shadow: 0 25px 60px rgba(0, 91, 170, .10);
}

.faq-item.active::before {
    height: 100%;
}

.faq-item.active .faq-question h5 {
    color: #005BAA;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-question,
.faq-toggle,
.faq-question h5 {
    transition: .35s ease;
}

.faq-info {
    transition: .4s;
}

.faq-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .10);
}

.faq-info:hover .faq-icon {
    transform: rotate(-10deg) scale(1.08);
}

.faq-icon {
    transition: .35s;
}

.faq-buttons .theme-btn,
.faq-buttons .theme-btn-outline {
    transition: .35s;
}

.faq-buttons .theme-btn:hover {
    transform: translateY(-3px);
}

.faq-buttons .theme-btn-outline:hover {
    background: #005BAA;
    color: #fff;
}

.faq-item:nth-child(1) {
    transition-delay: .05s;
}

.faq-item:nth-child(2) {
    transition-delay: .10s;
}

.faq-item:nth-child(3) {
    transition-delay: .15s;
}

.faq-item:nth-child(4) {
    transition-delay: .20s;
}

.faq-item:nth-child(5) {
    transition-delay: .25s;
}

.faq-item:nth-child(6) {
    transition-delay: .30s;
}

.faq-item:nth-child(7) {
    transition-delay: .35s;
}

.faq-item:nth-child(8) {
    transition-delay: .40s;
}

@media(max-width:991px) {

    .faq-item:hover {
        transform: none;
    }

    .faq-info:hover {
        transform: none;
    }

}

@media(max-width:767px) {

    .faq-answer {
        padding: 0 22px;
    }

    .faq-item.active .faq-answer {
        padding: 0 22px 22px;
    }

}

.stats-section {
    background: url("../img/counter-bg.png") center center no-repeat;
    background-size: cover;
    padding: 60px;

}

@keyframes gradientMove {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}

.container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
}

.floating-leaf {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.floating-leaf img {
    width: 90px;
    opacity: .12;
}

.leaf1 {
    top: 8%;
    left: 4%;
    animation: floatLeaf1 9s ease-in-out infinite;
}

.leaf2 {
    bottom: 10%;
    right: 5%;
    animation: floatLeaf2 10s ease-in-out infinite;
}

.leaf3 {
    top: 45%;
    right: 12%;
    animation: floatLeaf3 8s ease-in-out infinite;
}

@keyframes floatLeaf1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(8deg);
    }

}

@keyframes floatLeaf2 {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(20px) rotate(-10deg);
    }

}

@keyframes floatLeaf3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}

.project-slider .material-item {
    position: relative;
}

.project-slider .material-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 18px 40px rgba(0, 0, 0, .06); */
    transition: .35s;
    border: 1px solid #ddd;
}

.project-slider .material-item:hover {
    transform: translateY(-10px);
}

.project-slider .owl-nav {
    position: absolute;
    top: -55px;
    right: 0;
    display: flex;
    gap: 15px;
}

.project-slider .owl-nav button {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #e8e8e8 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.project-slider .owl-nav button span {
    display: none;
}

.project-slider .owl-nav button i {
    font-size: 18px;
    color: #005BAA;
    transition: .35s;
}

.project-slider .owl-nav button:hover {
    background: #005BAA !important;
    border-color: #005BAA !important;
    transform: translateY(-4px);
}

.project-slider .owl-nav button:hover i {
    color: #fff;
}

.project-slider .owl-nav .owl-prev {
    margin: 0 !important;
}

.project-slider .owl-nav .owl-next {
    margin: 0 !important;
}

.project-slider .owl-nav button {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

.project-slider .owl-nav button:hover {
    background: #76B82A !important;
}

.project-slider .owl-nav button:hover i {
    color: #fff;
}

.project-slider .material-info h5 {
    font-size: 20px;
    color: #005BAA;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 5px;
}

.about-hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    background: #000;
}

.about-hero .hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/about-us-banner.png') center center/cover no-repeat;
    animation: heroZoom 18s ease-in-out infinite alternate;
    z-index: 1;
}

.about-hero .hero-overlay {
    position: absolute;
    inset: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;

    width: 58%;
    /* Adjust 55% - 62% */

    background: linear-gradient(to right,
            rgba(7, 22, 41, .92) 0%,
            rgba(7, 22, 41, .88) 45%,
            rgba(7, 22, 41, .60) 75%,
            rgba(7, 22, 41, 0) 100%);

    z-index: 1;


}

.about-hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 700px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 100px;
    background: rgba(116, 192, 67, .18);
    color: #86d448;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
}

.hero-tag::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7cc242;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.05;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-content h1 span {
    color: #7bc043;
}

.hero-content p {
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-primary-custom {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    overflow: hidden;
    padding: 10px 15px;
    border-radius: 60px;
    background: #0d5cab;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: .45s;
    box-shadow: 0 20px 45px rgba(13, 92, 171, .30);
}

.btn-primary-custom span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #0d5cab;
    transition: .45s;
}

.btn-primary-custom:hover {
    background: #76c043;
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(118, 192, 67, .40);
}

.btn-primary-custom:hover span {
    background: #0d5cab;
    color: #fff;
    transform: rotate(-45deg);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    border-radius: 60px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, .45);
    backdrop-filter: blur(10px);
    transition: .45s;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #0d5cab;
    transform: translateY(-6px);
    border-color: #fff;
}

.hero-right {
    position: relative;
    height: 650px;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.glass-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 260px;
    padding: 22px 25px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
    transition: .45s ease;
    animation: floatCard 5s ease-in-out infinite;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, .18);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .35);
}

.glass-card .icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d5cab, #76c043);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    flex-shrink: 0;
}

.glass-card h3 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.glass-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    line-height: 1.5;
}

.experience-card {
    top: 30px;
    right: 40px;
}

.projects-card {
    top: 240px;
    left: 0;
    animation-delay: 1s;
}

.clients-card {
    bottom: 40px;
    right: 0;
    animation-delay: 2s;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
}

.shape-one {
    width: 260px;
    height: 260px;
    background: rgba(118, 192, 67, .18);
    filter: blur(100px);
    top: -80px;
    left: -80px;
    animation: pulseGlow 8s infinite alternate;
}

.shape-two {
    width: 350px;
    height: 350px;
    background: rgba(13, 92, 171, .18);
    filter: blur(120px);
    right: -100px;
    bottom: -100px;
    animation: pulseGlow 10s infinite alternate;
}

.shape-three {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, .08);
    filter: blur(70px);
    top: 35%;
    right: 28%;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);
    transform: skewX(-25deg);
    transition: .7s;
}

.btn-primary-custom:hover::before {
    left: 140%;
}

.hero-tag {
    animation: fadeUp .7s ease both;
}

.hero-content h1 {
    animation: fadeUp .9s ease both;
}

.hero-content p {
    animation: fadeUp 1.2s ease both;
}

.hero-buttons {
    animation: fadeUp 1.5s ease both;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes floatCard {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes pulseGlow {

    from {
        transform: scale(1);
        opacity: .6;
    }

    to {
        transform: scale(1.2);
        opacity: 1;
    }

}

@keyframes scrollWheel {

    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(18px);
        opacity: 0;
    }

}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, .35),
            transparent,
            rgba(118, 192, 67, .35));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.about-hero * {
    transition:
        color .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        transform .35s ease;
}

.about-hero a {
    text-decoration: none;
}

.hero-content {
    position: relative;
    z-index: 20;
}

.hero-right {
    position: relative;
    z-index: 20;
}

.hero-content h1 {
    font-size: clamp(48px, 5vw, 55px);
}

.hero-content p {
    font-size: clamp(16px, 16px, 18px);
}

.hero-buttons .btn-primary-custom,
.hero-buttons .btn-outline-custom {
    min-height: 60px;
}

.hero-buttons .btn-primary-custom:active,
.hero-buttons .btn-outline-custom:active {
    transform: scale(.96);
}

.glass-card {
    cursor: default;
}

.glass-card:hover .icon {
    transform: rotate(-10deg) scale(1.08);
}

.glass-card:hover h3 {
    color: #7bc043;
}

.hero-bg {
    will-change: transform;
}

.hero-overlay {
    backdrop-filter: blur(.5px);
}

@media (min-width:1400px) {
    .about-hero .container {
        max-width: 1320px;
    }

    .hero-right {
        height: 700px;
    }
}

@media (max-width:1200px) {
    .hero-content h1 {
        font-size: 60px;
    }

    .hero-right {
        height: 580px;
    }

    .experience-card {
        right: 0;
    }

    .projects-card {
        left: 20px;
    }

    .clients-card {
        right: 20px;
    }
}

@media (max-width:991px) {
    .about-hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .about-hero .row {
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        margin: auto;
        max-width: 100%;
    }

    .hero-tag {
        justify-content: center;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        margin-top: 80px;
        height: 500px;
    }

    .experience-card {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .projects-card {
        top: 180px;
        left: 20px;
    }

    .clients-card {
        right: 20px;
        bottom: 20px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width:767px) {

    .about-hero {
        padding: 100px 0 40px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
        padding: 10px !important;
        font-size: 13px;
        font-weight: 500 !important;
    }

    .btn {
        height: 68px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px !important;
        text-decoration: none;
        font-size: 13px !important;
        padding: 10px !important;
        font-weight: 500 !important;
        transition: .4s;
    }

    .btn i {
        width: 25px !important;
        height: 25px !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, .18);
        font-size: 10px !important;
    }

    .btn-primary-custom span {
        width: 20px !important;
        height: 20px !important;
        font-size: 11px !important;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-right {
        height: 430px;
        margin-top: 10px;
    }

    .glass-card {
        min-width: 220px;
        padding: 18px;
    }

    .glass-card h3 {
        font-size: 28px;
    }

    .glass-card p {
        font-size: 14px;
    }

    .glass-card .icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .projects-card {
        left: 0;
    }

    .clients-card {
        right: 0;
    }

    .shape-one {
        width: 180px;
        height: 180px;
    }

    .shape-two {
        width: 220px;
        height: 220px;
    }
}

@media (max-width:480px) {

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 8px 18px;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-right {
        height: 380px;
    }

    .glass-card {
        min-width: 200px;
        padding: 16px;
        gap: 14px;
    }

    .glass-card .icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .glass-card h3 {
        font-size: 24px;
    }

    .glass-card p {
        font-size: 13px;
    }

    .experience-card {
        left: 50%;
        transform: translateX(-50%);
    }

    .projects-card {
        top: 150px;
        left: 0;
    }

    .clients-card {
        bottom: 0;
        right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    * {
        animation: none !important;
        transition: none !important;
    }

    .hero-bg {
        transform: none !important;
    }

}

.about-hero ::selection {
    background: #76c043;
    color: #fff;
}

.btn-primary-custom:focus,
.btn-outline-custom:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(118, 192, 67, .35);
}

.show-element {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hero-content,
.glass-card {
    opacity: 0;
    transform: translateY(60px);
}

.our-story-section {
    position: relative;
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.our-story-section::before {
    content: '';
    position: absolute;
    left: -180px;
    top: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(118, 192, 67, .05);
    filter: blur(120px);
}

.our-story-section .container {
    position: relative;
    z-index: 2;
}

.story-content {
    padding-right: 40px;
}

.story-content p {
    font-size: 16px;
    line-height: 26px;
    color: #667085;
    margin-bottom: 15px;

}

.story-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
}

.story-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
}

.gallery-left {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    height: 520px;
}

.gallery-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.gallery-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.gallery-right img {
    width: 100%;
    height: 249px;
    object-fit: cover;
    border-radius: 22px;
    transition: .6s;
}

.gallery-left:hover img,
.gallery-right img:hover {
    transform: scale(1.08);
}

.experience-card {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(15px);
    padding: 22px 28px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
    transition: .45s;
}

.experience-card h3 {
    margin: 0;
    font-size: 46px;
    font-family: 'Cormorant Garamond', serif;
    color: #0d5cab;
}

.experience-card span {
    display: block;
    margin-top: 5px;
    color: #667085;
    font-size: 15px;
}

.gallery-left:hover .experience-card {
    transform: translateY(-8px);
}

.gallery-left,
.gallery-right img {

    box-shadow: 0 25px 70px rgba(0, 0, 0, .08);

}

.gallery-left img,
.gallery-right img {

    border-radius: inherit;

}

.story-content,
.story-gallery,
.gallery-left,
.gallery-right img,
.experience-card {
    opacity: 0;
    transform: translateY(70px);
    transition: all .9s cubic-bezier(.23, .72, .28, .98);

}

.story-show {
    opacity: 1 !important;
    transform: translateY(0) !important;

}

.gallery-left,
.gallery-right img {
    position: relative;
    overflow: hidden;
}

.gallery-left::before,
.gallery-right img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 23, 42, .25),
            transparent 60%);
    opacity: 0;
    transition: .45s;
    z-index: 2;
}

.gallery-left:hover::before {
    opacity: 1;
}

.gallery-left img,
.gallery-right img {
    transition:
        transform .8s ease,
        filter .45s ease;
}

.gallery-left:hover img,
.gallery-right img:hover {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.experience-card {
    animation: floatCard 6s ease-in-out infinite;
    transition: .45s;
}

.gallery-left:hover .experience-card {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .20);
}

.story-buttons a {
    transition: .4s;
}

.story-buttons a:hover {
    transform: translateY(-5px);
}

.story-content h2 span {
    position: relative;
}

.story-content h2 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 8px;
    background: rgba(118, 192, 67, .15);
    z-index: -1;
}

@media(max-width:1199px) {

    .story-content {
        padding-right: 20px;
    }

    .story-content h2 {
        font-size: 48px;
    }

    .gallery-left {
        height: 460px;
    }

    .gallery-right img {
        height: 219px;
    }
}

@media(max-width:991px) {
    .our-story-section {
        padding: 100px 0;
    }

    .story-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .story-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-left {
        height: 420px;
    }

    .gallery-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .gallery-right img {
        height: 220px;
    }
}

@media(max-width:767px) {

    .our-story-section {
        padding: 20px 0;
    }

    .story-content {
        text-align: center;
    }

    .section-top {
        justify-content: center;
    }

    .story-content h2 {
        font-size: 38px;
    }

    .story-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .story-buttons {
        flex-direction: column;
    }

    .story-buttons a {
        width: 100%;
        justify-content: center;
    }

    .gallery-left {
        height: 320px;
        border-radius: 22px;
    }

    .gallery-right {
        grid-template-columns: 1fr;
    }

    .gallery-right img {
        height: 180px;
        border-radius: 18px;
    }

    .experience-card {
        left: 20px;
        bottom: 20px;
        padding: 16px 22px;
    }

    .experience-card h3 {
        font-size: 34px;
    }
}

@media(max-width:480px) {

    .story-content h2 {
        font-size: 30px;
    }

    .gallery-left {
        height: 260px;
    }

    .gallery-right img {
        height: 160px;
    }

    .experience-card {
        position: absolute;
        left: 15px;
        bottom: 15px;
        padding: 14px 18px;
        border-radius: 18px;
    }

    .experience-card h3 {
        font-size: 28px;
    }

    .experience-card span {
        font-size: 13px;
    }
}

.gallery-left {
    animation: galleryFloat 7s ease-in-out infinite;
}

.gallery-right img:nth-child(1) {
    animation: galleryFloat 8s ease-in-out infinite;
}

.gallery-right img:nth-child(2) {
    animation: galleryFloat 9s ease-in-out infinite;
}

@keyframes galleryFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

@media(prefers-reduced-motion:reduce) {

    .gallery-left,
    .gallery-right img,
    .experience-card {
        animation: none !important;
        transition: none !important;
    }

}

.our-story-section ::selection {
    background: #76c043;
    color: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 23, 42, .25),
            transparent 60%);
    opacity: 0;
    transition: .4s;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.story-gallery,
.gallery-left,
.gallery-right img,
.experience-card {

    will-change: transform;

}

.story-show {

    opacity: 1 !important;

    transform: translateY(0) !important;

}

.philosophy-section {
    padding: 60px 0;
    background: #0b2e55;
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/philosphy-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.philosophy-section .container {
    position: relative;
    z-index: 2;
}

.philosophy-image {
    position: relative;
}

.philosophy-image img {
    width: 100%;
    border-radius: 20px;
    border: 4px solid #fff;
    display: block;
}

.floating-card {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 210px;
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.floating-card .icon {
    font-size: 42px;
    color: #8fa62d;
    margin-bottom: 18px;
}

.floating-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: #1d2430;
    margin-bottom: 15px;
}

.floating-card span {
    color: #8fa62d;
    font-style: italic;
    font-size: 20px;
}

.section-tag {
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-weight: 600;
}

.section-tag span {
    color: #9cb531;
    margin-right: 12px;
}

.philosophy-section h2 {
    color: #fff;
}

.philosophy-section p {
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 18px;
}

.philosophy-section h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
}

@media(max-width:991px) {

    .philosophy-section {
        padding: 70px 0;
    }

    .floating-card {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: -70px auto 40px;
    }

    .philosophy-section h2 {
        font-size: 42px;
    }

    .philosophy-features {
        flex-wrap: wrap;
        gap: 30px;
    }

    .feature {
        flex: 0 0 calc(50% - 15px);
    }

    .feature::after {
        display: none;
    }

}

@media(max-width:576px) {

    .philosophy-section h2 {
        font-size: 34px;
    }

    .philosophy-section p {
        font-size: 17px;
    }

    .philosophy-section h4 {
        font-size: 24px;
    }

    .feature {
        flex: 0 0 100%;
    }

}

.why-choose {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top right,
            rgba(118, 192, 67, .05),
            transparent 35%),
        #fff;
}

.why-choose::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(13, 92, 171, .05);
    filter: blur(100px);
}

.why-choose .container {
    position: relative;
    z-index: 2;
}

.choose-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 25px 25px;
    height: 100%;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .05);
    transition: .45s ease;
}

.choose-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: #76c043;
    transform: scaleX(0);
    transform-origin: left;
    transition: .45s;
}

.choose-card::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(118, 192, 67, .05);
    transition: .45s;
}

.choose-icon {
    width: 60px;
    height: 60px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0066B3;
    color: #fff;
    font-size: 25px;
    margin-bottom: 28px;
    transition: .45s;
    box-shadow: 0 20px 40px rgba(13, 92, 171, .20);
}

.choose-card h3 {
    font-size: 25px;
    color: #0066B3;
    margin-bottom: 15px;
    transition: .35s;
}

.choose-card p {
    font-size: 16px;
    line-height: 26px;
    margin: 0;

}

.choose-card:hover {
    transform: translateY(-15px);
    border-color: #76c043;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .12);
}

.choose-card:hover::before {
    transform: scaleX(1);

}

.choose-card:hover::after {
    transform: scale(1.3);
}

.choose-card:hover .choose-icon {
    transform: rotate(-10deg) scale(1.08);
    box-shadow: 0 30px 60px rgba(118, 192, 67, .30);

}

.choose-card:hover h3 {
    color: #76B82A;
}

.choose-card {
    isolation: isolate;
}

.choose-card::after {
    transition: .6s ease;
}

.choose-card:hover::after {
    transform: scale(1.5);
    opacity: .8;
}

.choose-card:hover {
    background: #fff;
}

.choose-icon {
    position: relative;
    overflow: hidden;
}

.choose-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, .35),
            transparent);
    opacity: 0;
    transition: .45s;
}

.choose-card:hover .choose-icon::before {
    opacity: 1;
}

.choose-card h3 {
    transition: .4s;
}

.choose-card:hover h3 {
    letter-spacing: .3px;
}

/*=========================================
        DESCRIPTION
=========================================*/

.choose-card p {
    transition: .4s;
}

.choose-card:hover p {
    color: #667085;
}

/*=========================================
        BOTTOM LINE
=========================================*/

.choose-card .line {
    width: 70px;
    height: 3px;
    background: #76c043;
    border-radius: 20px;
    margin-top: 25px;
    transition: .4s;
}

.choose-card:hover .line {
    width: 120px;
    background: #0d5cab;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1199px) {

    .section-header h2 {
        font-size: 50px;
    }

    .choose-card {
        padding: 40px 30px;
    }

}

@media(max-width:991px) {

    .why-choose {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 44px;
    }

    .section-desc {
        font-size: 17px;
    }

    .choose-card {
        text-align: center;
    }

    .choose-icon {
        margin: 0 auto 25px;
    }

}

@media(max-width:767px) {

    .why-choose {
        padding: 20px 0;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-desc {
        font-size: 15px;
        line-height: 1.8;
    }

    .choose-card {
        padding: 35px 25px;
    }

    .choose-card h3 {
        font-size: 28px;
    }

    .choose-icon {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }

}

@media(max-width:480px) {

    .section-header h2 {
        font-size: 30px;
    }

    .section-tag {
        font-size: 12px;
        padding: 8px 18px;
    }

    .choose-card {
        padding: 30px 22px;
    }

    .choose-card h3 {
        font-size: 25px;
    }

    .choose-card p {
        font-size: 14px;
    }

    .choose-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }

}

.choose-card:nth-child(odd) {
    animation: cardFloat 6s ease-in-out infinite;
}

.choose-card:nth-child(even) {
    animation: cardFloat 7s ease-in-out infinite;
}

@keyframes cardFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }

}

@media(prefers-reduced-motion:reduce) {

    .section-header,
    .choose-card {

        animation: none !important;
        transition: none !important;

    }

}

/*=========================================
        TEXT SELECTION
=========================================*/

.why-choose ::selection {

    background: #76c043;
    color: #fff;

}

.industry-section {
    background: url(../img/insight.jpg) center top no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    overflow: hidden;

}

.industry-section::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    left: -180px;
    top: -180px;
    border-radius: 50%;
    background: rgba(118, 192, 67, .05);
    filter: blur(120px);
}

.industry-section .container {
    position: relative;
    z-index: 2;
}

.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .08);
    transition: .45s;
}

.industry-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .6s;
}

.industry-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .20),
            transparent);
}

.industry-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 28px;
}

.industry-overlay button {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #0d5cab;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
}

.industry-card:hover img {
    transform: scale(1.08);
}

.industry-card:hover button {
    background: #76c043;
    transform: rotate(-45deg);
}

.industry-modal {
    border: none;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .20);
}

.industry-modal .modal-header {
    padding: 15px 25px;
    background: #0066B3;
    border: none;
}

.industry-modal h3 {
    margin: 0;
    color: #fff;
    font-size: 25px;
}

.industry-modal .btn-close {
    filter: invert(1);
    opacity: 1;
}

.industry-modal .modal-body {
    padding: 20px;
    background: #fff;
}


#modalContent li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #f7f9fb;
    transition: .35s;
}

#modalContent li i {
    color: #76c043;
    font-size: 16px;
}

#modalContent li span {
    color: #444;
    font-size: 16px;
}

#modalContent li:hover {
    background: #eef7ea;
    transform: translateX(8px);
}

.industry-modal .modal-footer {
    border: none;
    padding: 10px 15px 20px;
    background: #fff;
}

.modal-backdrop.show {
    opacity: .7;
}

.industry-card {
    position: relative;
    isolation: isolate;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, .35),
            rgba(118, 192, 67, .35),
            transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: .4s;
    z-index: 5;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card img {
    transition:
        transform .8s ease,
        filter .45s ease;
}

.industry-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.industry-overlay {
    transition: .45s;
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(to top,
            rgba(15, 23, 42, .90),
            rgba(15, 23, 42, .35),
            transparent);

}

.industry-overlay button {
    transition: .4s;
}

.industry-card:hover button {
    transform: rotate(-45deg) scale(1.08);
    box-shadow: 0 15px 35px rgba(13, 92, 171, .35);
}

.industry-modal {
    animation: modalScale .35s ease;
}

.modal.fade .modal-dialog {
    transition: transform .35s ease;
}

.modal.fade .modal-dialog {
    transform: scale(.92);
}

.modal.show .modal-dialog {
    transform: scale(1);
}

#modalContent li {
    transition: .35s;
}

#modalContent li:hover {
    transform: translateX(8px);
}

#modalContent li:hover i {
    transform: rotate(-12deg);
}

#modalContent li i {
    transition: .35s;
}

@media(max-width:1199px) {

    .industry-section h2 {
        font-size: 48px;
    }

    .industry-card img {
        height: 230px;
    }
}

@media(max-width:991px) {
    .industry-section {
        padding: 100px 0;
    }

    .industry-section h2 {
        font-size: 42px;
    }

    .industry-card img {
        height: 220px;

    }

    #modalContent {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {
    .industry-section {
        padding: 20px 0;
    }

    .industry-section h2 {
        font-size: 34px;
    }

    .industry-section p {
        font-size: 15px;
    }

    .industry-card img {
        height: 200px;
    }

    .industry-overlay {
        padding: 18px;
    }

    .industry-overlay h3 {
        font-size: 24px;
    }

    .industry-overlay button {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .industry-modal .modal-header {
        padding: 22px;
    }

    .industry-modal h3 {
        font-size: 30px;
    }

    .industry-modal .modal-body {
        padding: 25px;
    }

    #modalContent li {
        padding: 12px 15px;
    }
}

@media(max-width:480px) {
    .industry-section h2 {
        font-size: 30px;
    }

    .industry-card {
        border-radius: 18px;
    }

    .industry-card img {
        height: 180px;
    }

    .industry-overlay h3 {
        font-size: 20px;
    }

    .industry-overlay button {
        width: 40px;
        height: 40px;
    }

    .industry-modal {
        border-radius: 18px;
    }

    .industry-modal h3 {
        font-size: 26px;
    }
}

.industry-card:nth-child(odd) {
    animation: industryFloat 6s ease-in-out infinite;
}

.industry-card:nth-child(even) {
    animation: industryFloat 7s ease-in-out infinite;
}

@keyframes industryFloat {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }

    100% {

        transform: translateY(0);

    }

}

@keyframes modalScale {

    0% {

        opacity: 0;

        transform: scale(.92);

    }

    100% {

        opacity: 1;

        transform: scale(1);

    }

}

@media(prefers-reduced-motion:reduce) {

    .industry-card,
    .industry-modal {

        animation: none !important;

        transition: none !important;

    }

}

.industry-section ::selection {
    background: #76c043;
    color: #fff;

}

.modal-content {
    overflow: hidden;
}

.modal-header {
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            #76c043,
            #0d5cab);

}

.industry-description {
    margin-bottom: 30px;
}

.industry-description p {
    color: #667085;
    line-height: 1.9;
    font-size: 16px;
}

.industry-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0;
    margin: 0;
}

.industry-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 14px;
    background: #f8fafb;
    transition: .35s;
}

.industry-list li:hover {
    background: #eef7ea;
    transform: translateX(8px);
}

.industry-list i {
    color: #76c043;
}

@media(max-width:767px) {
    .industry-list {
        grid-template-columns: 1fr;
    }
}

.quality-section {
    padding: 60px 0;
    background: #fff;
}

.quality-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quality-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0;
    margin-bottom: 20px;
}

.quality-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #f7f9fb;
    transition: .35s;
    font-size: 16px;
    color: #667085;
}

.quality-list i {
    color: #8BAA2B;
    font-size: 24px;
}

.quality-image {
    position: relative;
    text-align: right;
}

.quality-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    display: block;
}

.quality-badge {
    position: absolute;
    right: -25px;
    bottom: 30px;
    width: 180px;
    height: 180px;
    background: #fff;
    border-radius: 50%;
    border: 8px solid #8BAA2B;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.quality-badge h3 {
    font-size: 52px;
    color: #0066B3;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
}

.quality-badge span {
    font-size: 18px;
    text-align: center;
    color: #23344d;
    line-height: 1.4;
}

.quality-badge i {
    position: absolute;
    bottom: 18px;
    right: 22px;
    color: #8BAA2B;
    font-size: 22px;
}

/* Responsive */

@media(max-width:991px) {

    .quality-section {
        padding: 20px 0;
    }

    .quality-image {
        margin-top: 50px;
    }

    .quality-badge {
        right: 15px;
        width: 150px;
        height: 150px;
    }

    .quality-section h2 {
        font-size: 42px;
    }

}

@media(max-width:576px) {

    .quality-section h2 {
        font-size: 34px;
    }

    .quality-section p {
        font-size: 16px;
    }

    .quality-list li {
        font-size: 17px;
    }

    .quality-badge {
        width: 120px;
        height: 120px;
    }

    .quality-badge h3 {
        font-size: 34px;
    }

    .quality-badge span {
        font-size: 13px;
    }

}

.process-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    background: url(../img/why-why.png) center top no-repeat;
    background-size: cover;
}

.process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 20px;
}

.process-line {
    position: absolute;
    left: 6%;
    right: 6%;
    top: 45px;
    height: 2px;
    background: repeating-linear-gradient(to right,
            #d6dce4 0,
            #d6dce4 6px,
            transparent 6px,
            transparent 12px);
    z-index: 1;
}

.process-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e6edf4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #0d5cab;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.process-no {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0d5cab;
    margin-bottom: 10px;
}

.process-item h4 {
    font-size: 18px;
    font-weight: 500;
    color: #1f2432;
    margin-bottom: 10px;
    line-height: 1.35;
}

.process-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.process-item:hover .process-icon {
    background: #76c043;
    color: #fff;
    border-color: #76c043;
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(118, 192, 67, .35);
}

.process-item:hover .process-no {
    color: #76c043;
}

.process-item:hover h4 {
    color: #0d5cab;
}

.process-item:hover {
    transform: translateY(-6px);
}

.process-item {
    transition: .35s;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    border-radius: 50px;
    background: #0d5cab;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.btn-primary-custom:hover {
    background: #76c043;
    color: #fff;
    transform: translateY(-4px);
}

.btn-primary-custom span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-item {
    opacity: 0;
    transform: translateY(60px);
    transition: .7s ease;
}

.process-item.show {
    opacity: 1;
    transform: translateY(0);
}

.process-item:nth-child(2) {
    transition-delay: .05s;
}

.process-item:nth-child(3) {
    transition-delay: .1s;
}

.process-item:nth-child(4) {
    transition-delay: .15s;
}

.process-item:nth-child(5) {
    transition-delay: .2s;
}

.process-item:nth-child(6) {
    transition-delay: .25s;
}

.process-item:nth-child(7) {
    transition-delay: .3s;
}

.process-item:nth-child(8) {
    transition-delay: .35s;
}

.process-item:nth-child(9) {
    transition-delay: .4s;
}

.process-item:nth-child(10) {
    transition-delay: .45s;
}

.process-icon {
    position: relative;
    overflow: hidden;
}

.process-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118, 192, 67, .18), transparent 70%);
    transform: scale(0);
    transition: .45s;
}

.process-item:hover .process-icon::before {
    transform: scale(2);
}

.process-item:hover .process-icon i {
    transform: scale(1.15) rotate(8deg);
}

.process-icon i {
    transition: .35s;
}

.process-item::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 44px;
    width: 14px;
    height: 14px;
    background: #76c043;
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 5px rgba(118, 192, 67, .12);
    z-index: -1;
}

@media (max-width:1399px) {

    .process-wrapper {
        grid-template-columns: repeat(5, 1fr);
        row-gap: 55px;
    }

    .process-line {
        display: none;
    }

}

@media (max-width:991px) {

    .process-section {
        padding: 90px 0;
    }

    .process-section h2 {
        font-size: 44px;
    }

    .process-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px 20px;
    }

    .process-icon {
        width: 80px;
        height: 80px;
        font-size: 30px;
    }

    .process-item h4 {
        font-size: 18px;
    }

    .process-item p {
        font-size: 14px;
    }

    .process-item::after {
        display: none;
    }

}

@media (max-width:767px) {

    .process-section {
        padding: 20px 10px;
    }

    .process-section h2 {
        font-size: 34px;
    }

    .process-section .section-header p {
        font-size: 15px;
        margin-bottom: 45px;
    }

    .process-wrapper {
        grid-template-columns: repeat(3, 3fr);
        gap: 35px;
        margin-bottom: 10px;
    }

    .process-item {
        max-width: 320px;
        margin: auto;
    }

    .process-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }

    .process-no {
        font-size: 16px;
    }

    .process-item h4 {
        font-size: 16px;
    }

    .process-item p {
        font-size: 15px;
    }

    .contact-content p {
        display: none !important;
    }
}


@media (prefers-reduced-motion:reduce) {

    .process-item,
    .process-icon,
    .process-icon i {
        transition: none;
        animation: none;
    }

}

.trusted-section {
    position: relative;
    padding: 60px 0 0;
    overflow: hidden;
    background: #fff;
}

.trusted-section::before,
.trusted-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.trusted-section::before {
    width: 450px;
    height: 450px;
    top: -180px;
    left: -180px;
    background: rgba(118, 192, 67, .05);
}

.trusted-section::after {
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -180px;
    background: rgba(13, 92, 171, .05);
}

.trusted-section .container {
    position: relative;
    z-index: 2;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.trusted-item {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 35px 25px;
    text-align: center;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
    transition: .45s;
    opacity: 0;
    transform: translateY(70px);
}

.trusted-item::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -60px;
    right: -60px;
    border-radius: 50%;
    background: rgba(118, 192, 67, .05);
    transition: .45s;
}

.trusted-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(118, 192, 67, .35), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: .45s;
}

.trusted-icon {
    position: relative;
    overflow: hidden;
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-size: 30px;
    color: #fff;
    background: linear-gradient(135deg, #0d5cab, #76c043);
    box-shadow: 0 18px 40px rgba(13, 92, 171, .2);
    transition: .45s;
}

.trusted-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .35), transparent);
    opacity: 0;
    transition: .45s;
}

.trusted-item h4 {
    margin: 0;
    font-size: 22px;
    color: #0066B3;
    transition: .35s;
}

.trusted-item:hover {
    transform: translateY(-12px);
    border-color: #76c043;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .12);
}

.trusted-item:hover::before {
    transform: scale(1.5);
}

.trusted-item:hover::after,
.trusted-item:hover .trusted-icon::before {
    opacity: 1;
}

.trusted-item:hover .trusted-icon {
    transform: rotate(-10deg) scale(1.08);
    box-shadow: 0 30px 60px rgba(118, 192, 67, .28);
}

.trusted-item:hover h4 {
    color: #76B82A;
    letter-spacing: .3px;
}

.trust-highlight {
    position: relative;
    overflow: hidden;
    margin-top: 90px;
    padding: 70px 50px;
    text-align: center;
    color: #fff;
    border-radius: 35px;
    background: linear-gradient(135deg, #0d5cab, #76c043);
    box-shadow: 0 35px 90px rgba(13, 92, 171, .18);
    opacity: 0;
    transform: translateY(70px);
    transition: all .9s cubic-bezier(.23, .72, .28, .98);
}

.trust-highlight>* {
    position: relative;
    z-index: 2;
}

.trust-highlight::before,
.trust-highlight::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.trust-highlight::before {
    width: 280px;
    height: 280px;
    top: -100px;
    right: -100px;
    background: rgba(255, 255, 255, .08);
}

.trust-highlight::after {
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: -70px;
    background: rgba(255, 255, 255, .05);
}

.trust-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 45px 100px rgba(13, 92, 171, .25);
}

.trust-number {
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 90px;
    line-height: 1;
    color: #fff;
}

.trust-highlight h3 {
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: #fff;
}

.trust-highlight p {
    max-width: 650px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .92);
}

.trusted-section .section-header {
    opacity: 0;
    transform: translateY(70px);
    transition: all .9s cubic-bezier(.23, .72, .28, .98);
}

.trusted-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.trusted-item::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(118, 192, 67, .35), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: .45s;
}

.trusted-item:hover::after {
    opacity: 1;
}

.trusted-icon {
    position: relative;
    overflow: hidden;
}

.trusted-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .35), transparent);
    opacity: 0;
    transition: .45s;
}

.trusted-item:hover .trusted-icon::before {
    opacity: 1;
}

.trusted-item:hover .trusted-icon {
    transform: rotate(-12deg) scale(1.08);
}

.trusted-item:hover h4 {
    letter-spacing: .3px;
}

.trust-highlight>* {
    position: relative;
    z-index: 2;
}

.trust-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 45px 100px rgba(13, 92, 171, .25);
}

.trust-number {
    animation: counterFloat 5s ease-in-out infinite;
}

@media (max-width:1199px) {
    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-number {
        font-size: 75px;
    }

    .trust-highlight h3 {
        font-size: 34px;
    }
}

@media (max-width:991px) {
    .trusted-section {
        padding: 100px 0;
    }

    .trusted-grid {
        gap: 20px;
    }

    .trusted-item {
        padding: 30px 22px;
    }

    .trusted-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .trusted-item h4 {
        font-size: 24px;
    }

    .trust-highlight {
        padding: 55px 35px;
    }
}

@media (max-width:767px) {
    .trusted-section {
        padding: 20px 0;
    }

    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 20px;
    }

    .trusted-item {
        padding: 28px 20px;
    }

    .trusted-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }

    .mt-4 {
        margin-top: 0 !important;
    }

    .trusted-item h4 {
        font-size: 22px;
    }

    .trust-highlight {
        padding: 45px 25px;
        border-radius: 25px;
    }

    .trust-number {
        font-size: 60px;
    }

    .trust-highlight h3 {
        font-size: 28px;
    }

    .trust-highlight p {
        font-size: 15px;
        line-height: 1.8;
    }

    .trust-stats {
        flex-direction: column;
        gap: 20px;
    }

    .trust-stat h2 {
        font-size: 44px;
    }
}

@media (max-width:480px) {
    .trusted-item {
        padding: 24px 18px;
    }

    .trusted-item h4 {
        font-size: 18px;
    }

    .trust-number {
        font-size: 50px;
    }

    .trust-highlight h3 {
        font-size: 24px;
    }

    .trust-stat h2 {
        font-size: 36px;
    }

    .trust-stat span {
        font-size: 13px;
    }
}

@keyframes counterFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (prefers-reduced-motion:reduce) {

    .trusted-item,
    .trust-highlight,
    .trust-number {
        animation: none !important;
        transition: none !important;
    }
}

.trusted-section ::selection {
    background: #76c043;
    color: #fff;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.trust-stat {
    text-align: center;
}

.trust-stat h2 {
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    color: #fff;
}

.trust-stat span {
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vision-mission {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: #0f172a;
}

.vision-mission::before,
.vision-mission::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.vision-mission::before {
    width: 450px;
    height: 450px;
    top: -180px;
    left: -180px;
    background: rgba(118, 192, 67, .08);
}

.vision-mission::after {
    width: 400px;
    height: 400px;
    right: -150px;
    bottom: -150px;
    background: rgba(13, 92, 171, .10);
}

.vision-mission .container {
    position: relative;
    z-index: 2;
}

.vision-mission .section-tag {
    background: rgba(255, 255, 255, .08);
    color: #76c043;
}

.vision-mission h2 {
    margin: 20px 0 70px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    line-height: 1.15;
    color: #fff;
}

.vision-mission h2 span {
    color: #76c043;
}

.vision-box,
.mission-box {
    position: relative;
    height: 100%;
    padding: 25px 25px;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: .45s;
}

.vision-box::before,
.mission-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    top: -90px;
    right: -90px;
    border-radius: 50%;
    background: rgba(118, 192, 67, .06);
    transition: .45s;
}

.vision-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(118, 192, 67, .12);
    color: #76c043;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vision-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #76c043;
}

.quote-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    font-size: 34px;
    color: #fff;
    background: linear-gradient(135deg, #0d5cab, #76c043);
    box-shadow: 0 25px 60px rgba(13, 92, 171, .25);
    transition: .4s;
}

.vision-box h3,
.mission-box h3 {
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
}

.vision-box p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 26px;
}

.mission-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0;
    margin-bottom: 20px;
}

.mission-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 16px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.mission-item:last-child {
    margin-bottom: 0;
}

.mission-item i {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #76c043;
    color: #fff;
    font-size: 16px;
    transition: .35s;
}

.mission-item span {
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
    line-height: 26px;
}

.vision-footer {
    margin-top: 80px;
    text-align: center;
}

.vision-footer h4 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-style: italic;
    color: #fff;
}

.vision-box:hover,
.mission-box:hover {
    transform: translateY(-12px);
    border-color: rgba(118, 192, 67, .35);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .3);
}

.vision-box:hover::before,
.mission-box:hover::before {
    transform: scale(1.4);
}

.vision-box:hover .quote-icon {
    transform: rotate(-10deg) scale(1.08);
}

.mission-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(118, 192, 67, .3);
}

.mission-item:hover i {
    background: #0d5cab;
}

.vision-box,
.mission-box,
.vision-footer,
.vision-mission .section-header {
    opacity: 0;
    transform: translateY(70px);
    transition: all .9s cubic-bezier(.23, .72, .28, .98);
}

.vision-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.vision-box::after,
.mission-box::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .35), rgba(118, 192, 67, .25), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: .45s;
}

.vision-box:hover::after,
.mission-box:hover::after {
    opacity: 1;
}

.quote-icon {
    animation: quoteFloat 5s ease-in-out infinite;
}

.mission-item {
    position: relative;
    overflow: hidden;
}

.mission-item::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(118, 192, 67, .1), transparent);
    transition: .45s;
}

.mission-item:hover::before {
    width: 100%;
}

.mission-item>* {
    position: relative;
    z-index: 2;
}

.mission-item:hover span {
    color: #fff;
}

.mission-item:hover i {
    transform: rotate(-12deg);
}

.vision-footer {
    position: relative;
}

.vision-footer::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 100px;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #76c043, #0d5cab);
}

@media (max-width:1199px) {
    .vision-mission h2 {
        font-size: 50px;
    }

    .vision-box,
    .mission-box {
        padding: 40px 35px;
    }

    .vision-box h3,
    .mission-box h3 {
        font-size: 34px;
    }
}

@media (max-width:991px) {
    .vision-mission {
        padding: 100px 0;
    }

    .vision-mission h2 {
        font-size: 44px;
        margin-bottom: 55px;
    }

    .vision-box {
        margin-bottom: 35px;
    }

    .vision-footer {
        margin-top: 60px;
    }
}

@media (max-width:767px) {
    .vision-mission {
        padding: 20px 0;
    }

    .vision-mission h2 {
        font-size: 36px;
    }

    .vision-box,
    .mission-box {
        padding: 30px 25px;
        border-radius: 24px;
    }

    .quote-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
        font-size: 28px;
    }

    .vision-box h3,
    .mission-box h3 {
        font-size: 28px;
    }

    .vision-box p {
        font-size: 15px;
        line-height: 1.8;
    }

    .mission-item {
        padding: 10px 10px;
    }

    .mission-item span {
        font-size: 15px;
    }

    .vision-footer h4 {
        font-size: 30px;
        line-height: 1.4;
    }

    .mission-item {
        display: block;
    }
}

@media (max-width:480px) {
    .vision-mission h2 {
        font-size: 30px;
    }

    .quote-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        border-radius: 18px;
    }

    .vision-box h3,
    .mission-box h3 {
        font-size: 24px;
    }

    .mission-item {
        gap: 12px;
    }

    .mission-item i {
        width: 34px;
        height: 34px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .mission-item span {
        font-size: 14px;
        line-height: 1;
    }

    .vision-footer h4 {
        font-size: 24px;
    }
}

@keyframes quoteFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (prefers-reduced-motion:reduce) {

    .vision-box,
    .mission-box,
    .quote-icon {
        animation: none !important;
        transition: none !important;
    }
}

.vision-mission ::selection {
    background: #76c043;
    color: #fff;
}

.outdoor-story-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: #fff;
}

.outdoor-story-section::before,
.outdoor-story-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.outdoor-story-section::before {
    width: 450px;
    height: 450px;
    top: -180px;
    left: -180px;
    background: rgba(118, 192, 67, .05);
}

.outdoor-story-section::after {
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -180px;
    background: rgba(13, 92, 171, .05);
}

.outdoor-story-section .container {
    position: relative;
    z-index: 2;
}

.story-gallery {
    position: relative;
}

.gallery-large {
    position: relative;
    height: 520px;
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 35px;
}

.gallery-large img,
.gallery-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.gallery-large:hover img,
.gallery-small:hover img {
    transform: scale(1.08);
}

.gallery-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.gallery-small {
    height: 220px;
    overflow: hidden;
    border-radius: 25px;
}

.gallery-badge {
    position: absolute;
    left: 35px;
    bottom: 35px;
    padding: 20px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    transition: .45s;
}

.gallery-large:hover .gallery-badge {
    transform: translateY(-8px);
}

.gallery-badge span {
    display: block;
    color: #76c043;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-badge h5 {
    margin: 8px 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #222;
}

.story-content {
    padding-left: 30px;
}

.story-intro {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 1.9;
    color: #444;
}

.story-item {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 18px;
    padding: 15px;
    border: 1px solid #ececec;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    transition: .4s;
}

.story-item:last-child {
    margin-bottom: 0;
}

.story-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, #0d5cab, #76c043);
    transition: .4s;
}

.story-item h4 {
    margin-bottom: 8px;
    font-size: 22px;
    color: #222;
}

.story-item p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
}

.story-item:hover {
    transform: translateX(12px);
    border-color: #76c043;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.story-item:hover .story-icon {
    transform: rotate(-12deg) scale(1.08);
    box-shadow: 0 20px 45px rgba(13, 92, 171, .25);
}

.story-item:hover h4 {
    color: #0d5cab;
}

.story-quote {
    margin-top: 45px;
    padding: 35px;
    border-left: 5px solid #76c043;
    border-radius: 28px;
    background: #f8fafb;
}

.story-quote i {
    display: block;
    margin-bottom: 15px;
    font-size: 34px;
    color: #76c043;
}

.story-quote p {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 28px;
    font-style: italic;
    color: #222;
}

.outdoor-story-section .section-header,
.story-gallery,
.story-content,
.story-item,
.story-quote {
    opacity: 0;
    transform: translateY(70px);
    transition: all .9s cubic-bezier(.23, .72, .28, .98);
}

.story-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.gallery-large,
.gallery-small {
    position: relative;
    overflow: hidden;
}

.gallery-large::after,
.gallery-small::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, .35), transparent 60%);
    transition: .45s;
}

.gallery-large:hover::after,
.gallery-small:hover::after {
    opacity: 1;
}

.gallery-badge {
    animation: badgeFloat 6s ease-in-out infinite;
}

.story-item {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.story-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(118, 192, 67, .35), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: .45s;
}

.story-item:hover::before {
    opacity: 1;
}

.story-quote {
    position: relative;
}

.story-quote::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 35px;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #76c043, #0d5cab);
}

.story-quote i {
    animation: quoteFloat 5s ease-in-out infinite;
}

@media (max-width:1199px) {
    .story-content {
        padding-left: 10px;
    }

    .gallery-large {
        height: 460px;
    }

    .story-item {
        padding: 20px;
    }

    .story-item h4 {
        font-size: 26px;
    }
}

@media (max-width:991px) {
    .outdoor-story-section {
        padding: 100px 0;
    }

    .story-gallery {
        margin-bottom: 50px;
    }

    .story-content {
        padding-left: 0;
    }

    .gallery-large {
        height: 420px;
    }

    .gallery-small {
        height: 180px;
    }

    .story-intro {
        font-size: 18px;
    }
}

@media (max-width:767px) {

    /* .story-content {
        padding-left: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    } */
    .outdoor-story-section {
        padding: 20px 0;
    }

    .gallery-large {
        height: 340px;
        border-radius: 25px;
    }

    .gallery-small {
        height: 150px;
        border-radius: 18px;
    }

    .gallery-badge {
        left: 20px;
        bottom: 20px;
        padding: 16px 20px;
    }

    .gallery-badge h5 {
        font-size: 22px;
    }

    .story-intro {
        font-size: 16px;
        line-height: 1.8;
    }

    .story-item {
        gap: 15px;
        padding: 10px;
    }

    .story-icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
        border-radius: 16px;
    }

    .story-item h4 {
        font-size: 18px;
        font-weight: 500;
    }

    .story-item p {
        font-size: 14px;
    }

    .story-quote {
        padding: 28px 22px;
    }

    .story-quote p {
        font-size: 20px;
    }
}

@media (max-width:480px) {
    .gallery-bottom {
        grid-template-columns: 1fr;
    }

    .gallery-large {
        height: 280px;
    }

    .gallery-small {
        height: 170px;
    }

    .story-item {
        flex-direction: column;
        text-align: center;
    }

    .story-icon {
        margin: auto;
    }

    .story-item:hover {
        transform: none;
    }

    .story-quote {
        padding: 24px 18px;
    }

    .story-quote p {
        font-size: 18px;
        line-height: 1.7;
    }
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes quoteFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (prefers-reduced-motion:reduce) {

    .gallery-badge,
    .story-quote i {
        animation: none !important;
    }

    .story-gallery,
    .story-item,
    .gallery-large img,
    .gallery-small img {
        transition: none !important;
    }
}

.outdoor-story-section ::selection {
    background: #76c043;
    color: #fff;
}

.storyy-gallery {
    display: grid;
    grid-template-columns: 2fr .9fr;
    gap: 22px;
    align-items: start;
}

.gallery-large {
    height: 520px;
    border-radius: 35px;
    overflow: hidden;
}

.gallery-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    height: 520px;
}

.gallery-small {
    height: calc((520px - 22px)/2);
    border-radius: 25px;
    overflow: hidden;
}

.gallery-large img,
.gallery-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.final-cta-section {
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 8s ease;
}

.final-cta-section:hover .cta-bg img {
    transform: scale(1.08);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgb(41 83 136 / 68%), rgb(4 44 140 / 72%));
}

.final-cta-section .container {
    position: relative;
    z-index: 5;
}

.cta-wrapper {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    text-align: center;
    transition: .45s;
}

.cta-wrapper::before,
.cta-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
}




.final-cta-section .section-tag {
    background: rgba(255, 255, 255, .1);
    color: #76c043;
}

.final-cta-section h2 {
    color: #fff;
}

.final-cta-section h2 span {
    color: #76c043;
}

.final-cta-section p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .86);
}

.cta-highlight {
    margin-bottom: 45px !important;
    font-size: 22px !important;
    font-weight: 500;
    color: #fff !important;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 70px;
}

.btn-outline-light-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: 60px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: .35s;
}

.btn-outline-light-custom:hover {
    color: #0d5cab;
    background: #fff;
    border-color: #fff;
}

.btn-link-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.btn-link-custom i {
    transition: .35s;
}

.btn-link-custom:hover {
    color: #76c043;
}

.btn-link-custom:hover i {
    transform: translateX(8px);
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.cta-stat {
    position: relative;
    text-align: center;
    transition: .35s;
}

.cta-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    width: 1px;
    height: 60px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .12);
}

.cta-stat:hover {
    transform: translateY(-8px);
}

.cta-stat h3 {
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    color: #fff;
    transition: .35s;
}

.cta-stat:hover h3 {
    color: #76c043;
}

.cta-stat span {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
    letter-spacing: .5px;
}



.cta-buttons a:hover {
    transform: translateY(-6px);
}

@media (max-width:1199px) {
    .final-cta-section {
        padding: 150px 0;
    }

    .final-cta-section h2 {
        font-size: 54px;
    }

    .cta-wrapper {
        padding: 60px 50px;
    }

    .cta-stat h3 {
        font-size: 46px;
    }
}

@media (max-width:991px) {
    .final-cta-section {
        padding: 120px 0;
    }

    .cta-wrapper {
        padding: 50px 40px;
    }

    .final-cta-section h2 {
        font-size: 46px;
    }

    .cta-buttons {
        flex-direction: column;
        margin-bottom: 0px;
    }

    .cta-buttons a {
        width: 100%;
        justify-content: center;
    }

    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .cta-stat::after {
        display: none;
    }
}

@media (max-width:767px) {
    .final-cta-section {
        min-height: auto;
        padding: 20px 0;
    }

    .cta-wrapper {
        padding: 35px 25px;
        border-radius: 25px;
    }

    .final-cta-section h2 {
        font-size: 34px;
    }

    .final-cta-section p {
        font-size: 15px;
        line-height: 1.8;
    }

    .cta-highlight {
        font-size: 18px !important;
    }

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-stat h3 {
        font-size: 40px;
    }

    .cta-stat span {
        font-size: 14px;
    }
}

@media (max-width:480px) {
    .final-cta-section h2 {
        font-size: 30px;
    }

    .cta-wrapper {
        padding: 30px 20px;
    }

    .btn-outline-light-custom,
    .btn-link-custom {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion:reduce) {

    .cta-wrapper,
    .cta-bg img,
    .cta-buttons a {
        transition: none !important;
        animation: none !important;
    }
}

.final-cta-section ::selection {
    background: #76c043;
    color: #fff;
}

.contact-hero {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("../img/contact-banner.png") center center/cover no-repeat;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(8, 30, 61, .95)0%,
            rgba(8, 30, 61, .90)33%,
            rgba(8, 30, 61, .60)48%,
            rgba(8, 30, 61, .15)63%,
            rgba(8, 30, 61, 0)100%);
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    max-width: 640px;
    color: #fff;
}

.section-tag {
    display: inline-block;
    color: #8cc63f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-content h1 {
    font-size: 55px;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-content h1 span {
    color: #8cc63f;
}

.contact-content p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .86);
    margin-bottom: 15px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
    margin-bottom: 20px;
}

.hero-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 400;
}

.hero-points i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #8cc63f;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.hero-btns {
    display: grid;
    grid-template-columns: repeat(2, 270px);
    gap: 18px;
}

.btn {
    height: 68px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: .4s;
}

.btn.green {
    background: #8cc63f;
    color: #fff;
}

.btn.green:hover {
    background: #79b330;
}

.btn.outline {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(6px);
}

.btn.outline:hover {
    background: #8cc63f;
    border-color: #8cc63f;
}

.btn i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .18);
    font-size: 14px;
}

.btn.green i {
    background: #fff;
    color: #8cc63f;
}

@media(max-width:991px) {

    .contact-hero {
        min-height: auto;
        padding: 120px 0 40px;
        background-position: center;
    }

    .contact-content h1 {
        font-size: 28px;
        text-align: center;
    }

    .hero-points {
        display: none;
    }

    .hero-btns {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn {
        width: 100%;
    }

}

.consultation-section {
    position: relative;
    padding: 60px 0;
    background: #f7fafc;
    overflow: hidden;
}

.consultation-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(140, 198, 63, .08);
    border-radius: 50%;
    top: -180px;
    left: -180px;
    filter: blur(40px);
}

.consultation-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(8, 43, 86, .05);
    border-radius: 50%;
    right: -220px;
    bottom: -220px;
    filter: blur(50px);
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 70px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.consultation-left {
    position: sticky;
    top: 120px;
}


.heading-line {
    width: 90px;
    height: 4px;
    border-radius: 10px;
    background: #8cc63f;
    margin-bottom: 28px;
}

.consultation-left p {
    font-size: 17px;
    line-height: 1.9;
    color: #5e6c7d;
    margin-bottom: 22px;
}

.consultation-form {
    background: #fff;
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}

.consultation-form::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #8cc63f, #0b5aa8);
}

.progress-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
}

.progress-line {
    position: absolute;
    left: 0;
    top: 25px;
    width: 100%;
    height: 3px;
    background: #e5edf4;
    border-radius: 30px;
}

.book-progress-active {
    position: absolute;
    left: 0;
    top: 25px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8cc63f, #0b5aa8);
    border-radius: 30px;
    transition: .5s ease;
}

.book-progress-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d9e4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #7b8794;
    transition: .35s;
}

.book-progress-item span {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #7b8794;
    transition: .35s;
}

.book-progress-item.active .progress-number {
    background: #8cc63f;
    border-color: #8cc63f;
    color: #fff;
    box-shadow: 0 10px 25px rgba(140, 198, 63, .35);
}

.book-progress-item.active span {
    color: #0066B3;
}

/* .book-form-step{
display:none;
animation:stepFade .5s ease;
} */

/* .book-form-step.active{
display:block;
} */
.book-form-step {

    position: absolute;
    inset: 0;

    width: 100%;

    opacity: 0;
    visibility: hidden;

    transform: translateX(60px);

    transition:
        opacity .45s ease,
        transform .45s ease;

}

.book-form-step.active {

    position: relative;

    opacity: 1;
    visibility: visible;

    transform: translateX(0);

    z-index: 2;

}

.book-form-step.prev {

    opacity: 0;

    transform: translateX(-60px);

}

@keyframes stepFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:1199px) {

    .consultation-wrapper {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .consultation-left {
        position: relative;
        top: auto;
    }

}

@media(max-width:767px) {

    .consultation-wrapper {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .consultation-section {
        padding: 20px 0;
    }

    .consultation-form {
        padding: 28px;
    }

    .consultation-left h2 {
        font-size: 40px;
    }

    .book-progress-item span {
        display: none;
    }

    .progress-number {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

}

.step-title {
    margin-bottom: 35px;
}

.step-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 18px;
    border-radius: 30px;
    background: #edf8df;
    color: #8cc63f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.step-title h3 {
    margin: 0 0 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.1;
    color: #f7bc33;
}

.step-title p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #005BAA;
}

.form-group label span {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #dbe4ed;
    border-radius: 16px;
    font-size: 15px;
    color: #005BAA;
    font-family: inherit;
    transition: .35s;
    outline: none;
}

.form-group input,
.form-group select {
    height: 60px;
    padding: 0 22px;
}

.form-group textarea {
    height: 170px;
    padding: 18px 22px;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #8cc63f;
    box-shadow: 0 0 0 5px rgba(140, 198, 63, .12);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    padding-right: 60px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23082b56' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 22px center;
}

.step-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 15px;
}

.step-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.step-note i {
    color: #8cc63f;
    font-size: 16px;
}

.book-prev-btn,
.book-next-btn,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 58px;
    padding: 0 30px;
    border: none;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .35s;
}

.book-prev-btn {
    background: #edf2f7;
    color: #005BAA;
}

.book-prev-btn:hover {
    background: #dfe7ef;
    transform: translateY(-2px);
}

.book-next-btn,
.submit-btn {
    background: linear-gradient(135deg, #8cc63f, #74b62f);
    color: #fff;
    box-shadow: 0 12px 28px rgba(140, 198, 63, .25);
}

.book-next-btn:hover,
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(140, 198, 63, .35);
}

.book-prev-btn i,
.book-next-btn i,
.submit-btn i {
    transition: .35s;
}

.book-prev-btn:hover i {
    transform: translateX(-4px);
}

.book-next-btn:hover i,
.submit-btn:hover i {
    transform: translateX(4px);
}

@media(max-width:991px) {

    .form-row {
        grid-template-columns: 1fr;
    }

    .step-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .step-note {
        justify-content: center;
    }

    .book-prev-btn,
    .book-next-btn,
    .submit-btn {
        width: 100%;
    }

}

@media(max-width:767px) {

    .step-title h3 {
        font-size: 30px;
    }

    .form-group input,
    .form-group select {
        height: 54px;
    }

    .form-group textarea {
        height: 150px;
    }

}

.project-grid,
.furniture-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.project-card,
.furniture-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    padding: 10px 10px;
    background: #fff;
    border: 1px solid #e4edf5;
    border-radius: 22px;
    cursor: pointer;
    overflow: hidden;
    transition: .45s cubic-bezier(.23, .72, .28, .98);
}

.project-card input,
.furniture-card input {
    display: none;
}

.project-card::before,
.furniture-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #8cc63f, #0b5aa8);
    transition: .45s;
    z-index: 0;
}

.project-card>*,
.furniture-card>* {
    position: relative;
    z-index: 2;
}

.project-icon,
.furniture-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eef8df;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: .4s;
    margin: 10px auto;
}

label {
    display: inline-block;
    margin: 10px !important;
}

.project-icon i,
.furniture-icon i {
    font-size: 20px;
    color: #8cc63f;
    transition: .4s;
}

.project-card h4,
.furniture-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #0066B3;
    text-align: center;
    transition: .4s;
    line-height: 1.4;
}

.project-card:hover,
.furniture-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 25px 55px rgba(11, 90, 168, .15);
}

.project-card:hover::before,
.furniture-card:hover::before {
    height: 100%;
}

.project-card:hover .project-icon,
.furniture-card:hover .furniture-icon {
    background: #fff;
    transform: scale(1.08) rotate(8deg);
}

.project-card:hover .project-icon i,
.furniture-card:hover .furniture-icon i {
    color: #0b5aa8;
}

.project-card:hover h4,
.furniture-card:hover h4 {
    color: #fff;
}

.project-card.active,
.furniture-card.active {
    background: linear-gradient(135deg, #8cc63f, #0b5aa8);
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(11, 90, 168, .22);
}

.project-card.active::before,
.furniture-card.active::before {
    height: 100%;
}

.project-card.active .project-icon,
.furniture-card.active .furniture-icon {
    background: #fff;
}

.project-card.active .project-icon i,
.furniture-card.active .furniture-icon i {
    color: #0b5aa8;
}

.project-card.active h4,
.furniture-card.active h4 {
    color: #fff;
}

.upload-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 45px 30px;
    border: 2px dashed #d7e4ef;
    border-radius: 24px;
    background: #fbfdff;
    text-align: center;
    cursor: pointer;
    transition: .4s;
    overflow: hidden;
}

.upload-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(140, 198, 63, .05), rgba(11, 90, 168, .05));
    opacity: 0;
    transition: .35s;
}

.upload-box:hover {
    border-color: #8cc63f;
    transform: translateY(-5px);
}

.upload-box:hover::before {
    opacity: 1;
}

.upload-icon {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #eef8df;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: .4s;
}

.upload-icon i {
    font-size: 34px;
    color: #8cc63f;
}

.upload-box:hover .upload-icon {
    background: #8cc63f;
    transform: scale(1.08);
}

.upload-box:hover .upload-icon i {
    color: #fff;
}

.upload-box h4 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    font-size: 24px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    color: #005BAA;
}

.upload-box p {
    position: relative;
    z-index: 2;
    margin: 0 0 8px;
    font-size: 15px;
    color: #64748b;
}

.upload-box span {
    position: relative;
    z-index: 2;
    font-size: 13px;
    color: #94a3b8;
}

.trust-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    margin-top: 35px;
    background: #f6fbef;
    border-left: 4px solid #8cc63f;
    border-radius: 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #8cc63f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 24px;
    color: #fff;
}

.trust-content h4 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #005BAA;
}

.trust-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

@media(max-width:991px) {

    .project-grid,
    .furniture-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-card,
    .furniture-card {
        min-height: 130px;
    }

    .upload-box {
        padding: 35px 20px;
    }

    .trust-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

}

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all .9s cubic-bezier(.23, .72, .28, .98);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(70px);
}

.reveal-left {
    transform: translateX(-70px);
}

.reveal-right {
    transform: translateX(70px);
}

.reveal-scale {
    transform: scale(.85);
}

.show {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.project-card,
.furniture-card,
.upload-box,
.submit-btn,
.book-next-btn,
.book-prev-btn {
    transition: all .45s cubic-bezier(.23, .72, .28, .98);
}

.project-card:hover,
.furniture-card:hover {
    animation: cardFloat .8s ease;
}

@keyframes cardFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-6px);
    }
}

.book-progress-active {
    transition: width .6s cubic-bezier(.23, .72, .28, .98);
}

.progress-number {
    transition: all .45s cubic-bezier(.23, .72, .28, .98);
}

.book-progress-item.active .progress-number {
    animation: progressPulse .7s ease;
}

@keyframes progressPulse {
    0% {
        transform: scale(.7);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.project-icon,
.furniture-icon {
    animation: floating 4s ease-in-out infinite;
}

.project-card:nth-child(2) .project-icon,
.project-card:nth-child(4) .project-icon,
.project-card:nth-child(6) .project-icon,
.project-card:nth-child(8) .project-icon,
.project-card:nth-child(10) .project-icon,
.furniture-card:nth-child(even) .furniture-icon {
    animation-delay: .8s;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    transition: border-color .35s, box-shadow .35s, transform .35s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
}

.upload-box:hover .upload-icon {
    animation: uploadBounce .7s ease;
}

@keyframes uploadBounce {
    0% {
        transform: scale(.8);
    }

    40% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1.05);
    }
}

.submit-btn,
.book-next-btn {
    position: relative;
    overflow: hidden;
}

.submit-btn::before,
.book-next-btn::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
    transition: .8s;
}

.submit-btn:hover::before,
.book-next-btn:hover::before {
    left: 120%;
}

.step-title h3,
.consultation-left h2 {
    background: #0066B3;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-note {
    transition: .4s;
}

.trust-note:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

@media(prefers-reduced-motion:reduce) {

    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }

}

.contact-advantage-section {
    position: relative;
    padding: 60px;
    overflow: hidden;
    background: url(../img/counter-bg.png) center center / cover no-repeat;
}

.contact-advantage-section::before {
    content: "";
    position: absolute;
    left: -180px;
    top: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(140, 198, 63, .08);
    filter: blur(40px);
}

.contact-advantage-section::after {
    content: "";
    position: absolute;
    right: -220px;
    bottom: 120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(8, 43, 86, .05);
    filter: blur(55px);
}

.contact-advantage-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 380px 1fr 330px;
    gap: 55px;
    overflow: visible;
    z-index: 2;
}

.contact-advantage-wrap::before {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(140, 198, 63, .08);
}

.contact-advantage-wrap::after {
    content: "";
    position: absolute;
    right: -150px;
    top: -150px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.contact-advantage-left {
    position: relative;
    z-index: 2;
}

.contact-advantage-left .section-tag {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    color: #8cc63f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.contact-advantage-left h2 {
    margin: 0 0 25px;
    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    line-height: 1.05;
    font-weight: 600;
    color: #fff;
}

.contact-advantage-left p {
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .82);
}

.contact-advantage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0;
    margin-bottom: 20px;
}

.contact-advantage-image {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .25);
}

.contact-advantage-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .18) 100%);
    z-index: 2;
    pointer-events: none;
}

.contact-advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .8s;
}

.contact-advantage-image:hover img {
    transform: scale(1.08);
}

.contact-connect-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding: 0 60px;
    z-index: 10;
}

.meeting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 15px;
}

.meeting-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e8edf4;
    border-radius: 18px;
    background: #fff;
    cursor: pointer;
    transition: .35s;
}

.meeting-card input {
    display: none;
}

.meeting-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef7e7;
    color: #7CC242;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    transition: .35s;
}

.meeting-card h4 {
    font-size: 18px;
    color: #0a4d9b;
    margin: 0;
}

.meeting-card:hover {
    transform: translateY(-5px);
    border-color: #7CC242;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.meeting-card.active {
    border-color: #7CC242;
    background: #f8fff2;
}

.meeting-card.active .meeting-icon {
    background: #7CC242;
    color: #fff;
}

.meeting-card input {
    display: none;
}

@media(max-width:767px) {

    .meeting-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:1200px) {

    .contact-advantage-wrap {
        grid-template-columns: 1fr;
        padding: 55px;
    }

    .contact-advantage-image {
        height: 520px;
    }

    .contact-connect-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 30px;
    }

}

@media(max-width:768px) {

    .contact-advantage-section {
        padding: 20px;
    }

    .contact-advantage-wrap {
        padding: 0px;
        gap: 0px;
    }

    .ways-section {
        padding: 20px 0px;
    }

    .contact-advantage-left h2 {
        font-size: 42px;
    }

    .contact-advantage-image {
        height: 380px;
    }

    .contact-connect-grid {
        grid-template-columns: 1fr;
        padding: 0;
        margin-top: -70px;
    }

}

.contact-advantage-box {
    padding: 15px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition: .45s cubic-bezier(.23, .72, .28, .98);
}

.contact-advantage-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: #8cc63f;
    transition: .45s;
}

.contact-advantage-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(140, 198, 63, .08), rgba(255, 255, 255, .04));
    opacity: 0;
    transition: .45s;
    pointer-events: none;
}

.contact-advantage-box:hover {
    transform: translateX(12px);
    border-color: rgba(140, 198, 63, .28);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .18);
}

.contact-advantage-box:hover::before {
    height: 100%;
}

.contact-advantage-box:hover::after {
    opacity: 1;
}

.contact-advantage-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(140, 198, 63, .12);
    transition: .45s;
}

.contact-advantage-icon i {
    font-size: 20px;
    color: #8cc63f;
    transition: .45s;
}

.contact-advantage-box:hover .contact-advantage-icon {
    background: #8cc63f;
    transform: rotate(10deg) scale(1.08);
}

.contact-advantage-box:hover .contact-advantage-icon i {
    color: #fff;
}

.contact-advantage-content {
    flex: 1;
}

.contact-advantage-content h4 {
    margin: 0 0 5px;
    font-size: 18px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

.contact-advantage-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .78);
}

.contact-advantage-box:hover .contact-advantage-content p {
    color: #fff;
}

.contact-advantage-box:nth-child(1) {
    animation: advFloat 5s ease-in-out infinite;
}

.contact-advantage-box:nth-child(2) {
    animation: advFloat 5s ease-in-out infinite;
    animation-delay: .2s;
}

.contact-advantage-box:nth-child(3) {
    animation: advFloat 5s ease-in-out infinite;
    animation-delay: .4s;
}

.contact-advantage-box:nth-child(4) {
    animation: advFloat 5s ease-in-out infinite;
    animation-delay: .6s;
}

.contact-advantage-box:nth-child(5) {
    animation: advFloat 5s ease-in-out infinite;
    animation-delay: .8s;
}

.contact-advantage-box:nth-child(6) {
    animation: advFloat 5s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes advFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.contact-advantage-image {
    animation: imgFloat 6s ease-in-out infinite;
}

@keyframes imgFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.contact-advantage-image:hover {
    box-shadow: 0 45px 90px rgba(0, 0, 0, .3);
}

.contact-advantage-image:hover img {
    transform: scale(1.1);
}

@media(max-width:768px) {

    .contact-advantage-box {
        padding: 20px;
        gap: 15px;
    }

    .contact-advantage-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .contact-advantage-icon i {
        font-size: 24px;
    }

    .contact-advantage-content h4 {
        font-size: 20px;
    }

}

.contact-connect-card {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 28px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 34, 58, .08);
    transition: all .45s cubic-bezier(.23, .72, .28, .98);
    z-index: 2;
}

.contact-connect-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: #0066B3;
    transition: .45s;
    z-index: -1;
}

.contact-connect-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, .18);
}

.contact-connect-card:hover::before {
    height: 100%;
}

.contact-connect-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef8df;
    transition: .45s;
}

.contact-connect-icon i {
    font-size: 28px;
    color: #8cc63f;
    transition: .45s;
}

.contact-connect-icon.whatsapp {
    background: #e8fff0;
}

.contact-connect-icon.whatsapp i {
    color: #25d366;
}

.contact-connect-icon.email {
    background: #edf4ff;
}

.contact-connect-icon.email i {
    color: #0d4d92;
}

.contact-connect-icon.location {
    background: #fff2e8;
}

.contact-connect-icon.location i {
    color: #ff7d29;
}

.contact-connect-card:hover .contact-connect-icon {
    background: #fff;
    transform: rotate(12deg) scale(1.08);
}

.contact-connect-card:hover .contact-connect-icon i {
    color: #005BAA;
}

.contact-connect-card h3 {
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 600;
    color: #0066B3;
    transition: .35s;
}

.contact-connect-card p {
    margin: 0 0 26px;
    font-size: 15px;
    line-height: 1.9;
    color: #64748b;
    transition: .35s;
}

.contact-connect-card:hover h3,
.contact-connect-card:hover p {
    color: #fff;
}

.contact-connect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 56px;
    padding: 0 28px;
    border-radius: 60px;
    background: #0066B3;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    transition: .4s;
}

.contact-connect-btn::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
    transition: .8s;
}

.contact-connect-btn:hover::before {
    left: 120%;
}

.whatsapp-btn {
    background: #8cc63f;
}

.contact-connect-btn i {
    transition: .35s;
}

.contact-connect-btn:hover i {
    transform: translateX(6px);
}

.contact-connect-card:hover .contact-connect-btn {
    background: #fff;
    color: #005BAA;
}

.contact-connect-card:hover .whatsapp-btn {
    color: #8cc63f;
}

.contact-floating-chair {
    position: absolute;
    right: -182px;
    bottom: 291px;
    width: 240px;
    z-index: 10;
    pointer-events: none;
    animation: chairFloat 5s ease-in-out infinite;
}

.contact-floating-chair img {
    display: block;
    width: 60%;
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .2));
}

@keyframes chairFloat {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-14px) rotate(2deg);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

.contact-connect-card:nth-child(1) {
    animation-delay: .1s;
}

.contact-connect-card:nth-child(2) {
    animation-delay: .2s;
}

.contact-connect-card:nth-child(3) {
    animation-delay: .3s;
}

.contact-connect-card:nth-child(4) {
    animation-delay: .4s;
}

@media(max-width:1200px) {
    .contact-floating-chair {
        display: none;
    }
}

@media(max-width:768px) {
    .contact-connect-card {
        padding: 34px 24px;
    }

    .contact-connect-icon {
        width: 70px;
        height: 70px;
    }

    .contact-connect-icon i {
        font-size: 28px;
    }

    .contact-connect-card h3 {
        font-size: 26px;
    }

    .contact-connect-btn {
        width: 100%;
    }
}

.ways-section {
    padding: 60px 0px;
    background: rgb(255, 255, 255);
}

.service-network-section {
    position: relative;
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.service-network-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    background: #fff;
    border: 1px solid #edf1f6;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(15, 35, 60, .08);
}

.service-network-left {
    padding: 50px;
    border-right: 1px solid #edf1f6;
}

.service-network-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-network-content .section-tag,
.service-network-right .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 18px;
    background: #eef8df;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8cc63f;
    margin-bottom: 18px;
    width: max-content;
}


.service-city-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 30px 0;
}

.service-city-pill {
    height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #edf1f6;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #005BAA;
    transition: .35s;
}

.service-city-pill i {
    color: #8cc63f;
    font-size: 15px;
}

.service-city-pill:hover {
    background: #005BAA;
    color: #fff;
    border-color: #005BAA;
    transform: translateY(-3px);
}

.service-network-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    gap: 20px;
}

.service-network-bottom p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #5c6d81;
}

.service-location-btn {
    height: 52px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    background: #0b5aa8;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .35s;
}

.service-location-btn:hover {
    background: #76B82A;
    transform: translateY(-3px);
}

.service-location-btn i {
    transition: .35s;
}

.service-location-btn:hover i {
    transform: translateX(5px);
}

.service-network-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-network-map img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
}

.service-network-right {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media(max-width:1199px) {

    .service-network-wrapper {
        grid-template-columns: 1fr;
    }

    .service-network-left {
        grid-template-columns: 1fr;
        border-right: 0;
        border-bottom: 1px solid #edf1f6;
    }

    .service-network-map {
        margin-top: 30px;
    }

}

@media(max-width:767px) {

    .service-network-section {
        padding: 20px 0;
    }

    .service-network-left,
    .service-network-right {
        padding: 30px;
    }

    .service-network-content h2,
    .service-network-right h2 {
        font-size: 34px;
    }

    .service-city-list {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0px;
    }

    .service-faq-list {
        margin-top: 0px !important;
    }

    .service-network-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-location-btn {
        width: 100%;
        justify-content: center;
    }

}

.service-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.service-faq-item {
    background: #fff;
    border: 1px solid #edf1f6;
    border-radius: 16px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(15, 35, 60, .04);
}

.service-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 35, 60, .08);
    border-color: #dbe6ef;
}

.service-faq-item.active {
    border-color: #8cc63f;
    box-shadow: 0 18px 35px rgba(140, 198, 63, .12);
}

.service-faq-question {
    width: 100%;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #005BAA;
    transition: .35s;
}

.service-faq-question span {
    padding-right: 15px;
    line-height: 1.6;
}

.service-faq-question i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f4f8fc;
    color: #0b5aa8;
    font-size: 13px;
    transition: .35s;
    flex-shrink: 0;
}

.service-faq-item:hover .service-faq-question i {
    background: #0b5aa8;
    color: #fff;
}

.service-faq-item.active .service-faq-question i {
    background: #8cc63f;
    color: #fff;
    transform: rotate(45deg);
}

.service-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height .45s ease, padding .35s ease;
}

.service-faq-item.active .service-faq-answer {
    max-height: 180px;
    padding: 0 22px 20px;
}

.service-faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

.service-faq-footer {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.service-faq-btn {
    height: 52px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #0b5aa8;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 15px 30px rgba(11, 90, 168, .2);
}

.service-faq-btn:hover {
    background: #76B82A;
    transform: translateY(-3px);
}

.service-faq-btn i {
    transition: .35s;
}

.service-faq-btn:hover i {
    transform: translateX(5px);
}

@media(max-width:767px) {

    .service-faq-question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .service-faq-answer {
        padding: 0 18px;
    }

    .service-faq-item.active .service-faq-answer {
        padding: 0 18px 18px;
    }

    .service-faq-btn {
        width: 100%;
    }

}

.office-connect-section {
    position: relative;
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    background: url(../img/insight.jpg) center top no-repeat;
    background-size: cover;
}

.office-connect-wrapper {
    display: grid;
    grid-template-columns: 60% 40%;
}



.office-connect-heading {
    margin-bottom: 35px;
}

.office-connect-heading .section-tag,
.office-social-heading .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 18px;
    background: #eef8df;
    border-radius: 40px;
    color: #8cc63f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.office-connect-heading h2,
.office-social-heading h2 {
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.08;
    color: #005BAA;
}

.office-connect-heading p,
.office-social-heading p {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: #66768a;
}


.office-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.office-building-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.office-building-image {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.office-building-image img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: .45s;
}

.office-building-image:hover img {
    transform: scale(1.08);
}

.office-map-btn {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #0b5aa8;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: .35s;
}

.office-map-btn:hover {
    background: #005BAA;
    transform: translateY(-3px);
}

.office-map-btn i {
    transition: .35s;
}

.office-map-btn:hover i {
    transform: translateX(5px);
}

.office-connect-right {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.office-connect-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 25px;
    border-top: 1px solid #edf1f6;
    background: #fbfcfd;
}

.office-footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #5c6d81;
}

.office-footer-item i {
    color: #8cc63f;
    font-size: 18px;
}

@media(max-width:1199px) {
    .office-connect-wrapper {
        grid-template-columns: 1fr;
    }

    .office-connect-left {
        border-right: 0;
        border-bottom: 1px solid #edf1f6;
    }
}

@media(max-width:767px) {
    .office-connect-section {
        padding: 20px 0;
    }

    .office-connect-left,
    .office-connect-right {
        padding: 20px;
    }

    .g-5,
    .gy-5 {
        --bs-gutter-y: 0rem !important;
    }

    .office-connect-body {
        grid-template-columns: 1fr;
    }

    .outdoor-section {
        padding: 20px 0 !important;
    }

    .outdoor-slider .owl-nav button {
        width: 30px !important;
        height: 30px !important;
    }

    .outdoor-slider .owl-nav {
        position: absolute;
        top: -40px !important;
    }

    .outdoor-section .material-item {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        height: 288px !important;
        box-shadow: 0 0px opx rgba(0, 0, 0, .06);
        transition: .35s;
    }

    .shop-material-section {
        padding: 20px 0;
    }

    .office-contact-grid {
        grid-template-columns: 1fr;
    }

    .office-connect-heading h2,
    .office-social-heading h2 {
        font-size: 34px;
    }
}

.office-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: #fff;
    border: 1px solid #edf1f6;
    border-radius: 18px;
    transition: .35s;
}

.office-contact-item:hover {
    transform: translateY(-5px);
    border-color: #8cc63f;
    box-shadow: 0 15px 35px rgba(15, 35, 60, .08);
}

.office-contact-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef8df;
    border-radius: 50%;
    transition: .35s;
}

.office-contact-icon i {
    font-size: 20px;
    color: #8cc63f;
    transition: .35s;
}

.office-contact-item:hover .office-contact-icon {
    background: #8cc63f;
    transform: rotate(8deg);
}

.office-contact-item:hover .office-contact-icon i {
    color: #fff;
}

.office-contact-content span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8b9aab;
}

.office-contact-content h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: #222;
    transition: .35s;
}

.office-contact-item:hover .office-contact-content h5 {
    color: #0b5aa8;
}

.office-social-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 10px;
}

.office-social-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 10px;
    background: #fff;
    border: 1px solid #edf1f6;
    border-radius: 18px;
    text-decoration: none;
    transition: .35s;
}

.office-social-item:hover {
    transform: translateY(-5px);
    border-color: #8cc63f;
    box-shadow: 0 15px 35px rgba(15, 35, 60, .08);
}

.office-social-icon {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .35s;
}

.office-social-icon i {
    font-size: 22px;
    color: #fff;
}

.office-social-icon.facebook {
    background: #1877f2;
}

.office-social-icon.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.office-social-icon.linkedin {
    background: #0a66c2;
}

.office-social-icon.pinterest {
    background: #e60023;
}

.office-social-icon.youtube {
    background: #ff0000;
}

.office-social-item:hover .office-social-icon {
    transform: scale(1.08) rotate(8deg);
}

.office-social-item h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #005BAA;
    transition: .35s;
}

.office-social-item:hover h6 {
    color: #0b5aa8;
}

.office-social-btn-wrap {
    margin-top: 35px;
}

.office-follow-btn {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #005BAA;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: .35s;
}

.office-follow-btn:hover {
    background: #0b5aa8;
    transform: translateY(-4px);
}

.office-follow-btn i {
    transition: .35s;
}

.office-follow-btn:hover i {
    transform: translateX(5px);
}

@media(max-width:991px) {

    .office-contact-grid,
    .office-social-list {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {

    .office-contact-item,
    .office-social-item {
        padding: 16px;
    }

    .office-contact-icon,
    .office-social-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .office-contact-icon i,
    .office-social-icon i {
        font-size: 18px;
    }

    .office-social-btn-wrap {
        margin-top: 25px;
    }

    .office-follow-btn {
        width: 100%;
    }
}

.outdoor-section {
    position: relative;
    padding: 60px 0;
    background: url(../img/insight.jpg) center top no-repeat;
    background-size: cover;
    overflow: hidden;
}

.material-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0px 0px rgba(0, 0, 0, .12);
}

.material-item:hover img {
    transform: scale(1.08);
}

.outdoor-slider .owl-nav {
    position: absolute;
    top: -55px;
    right: 0;
    display: flex;
    gap: 15px;
}

.outdoor-slider .owl-stage {
    display: flex;
}

.outdoor-slider .owl-item {
    padding: 8px;
}

.outdoor-slider .owl-nav {
    position: absolute;
    top: -55px;
    right: 0;
    display: flex;
    gap: 15px;
}

.outdoor-slider .owl-nav button {
    width: 52px;
    height: 52px;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #e8e8e8 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.outdoor-slider .owl-nav button span {
    display: none;
}

.outdoor-slider .owl-nav button i {
    font-size: 18px;
    color: #005BAA;
    transition: .35s;
}

.outdoor-slider .owl-nav button:hover {
    background: #005BAA !important;
    border-color: #005BAA !important;
    transform: translateY(-4px);
}

.outdoor-slider .owl-nav button:hover i {
    color: #fff;
}

.outdoor-slider .owl-nav .owl-prev {
    margin: 0 !important;
}

.outdoor-slider .owl-nav .owl-next {
    margin: 0 !important;
}

.outdoor-slider .owl-nav button {
    width: 58px;
    height: 58px;
    border-radius: 50% !important;
    background: #fff !important;
    border: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

.outdoor-slider .owl-nav button:hover {
    background: #76B82A !important;
}

.outdoor-slider .owl-nav button:hover i {
    color: #fff;
}

.outdoor-section .material-item {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
    transition: .35s;
    margin-bottom: 25px;
}

.shop-material-section {
    padding: 80px 0;
    background: #fff;
}

.material-heading {
    max-width: 760px;
    margin: auto auto 55px;
    text-align: center;
}

.material-heading h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.material-heading h2 span {
    color: #0B67C2;
}

.material-heading p {
    max-width: 650px;
    margin: auto;
    color: #667085;
    line-height: 1.8;
}

.shop-material-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    transition: .4s;
}

.shop-material-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.shop-material-image {
    height: 250px;
    overflow: hidden;
}

.shop-material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.shop-material-card:hover img {
    transform: scale(1.08);
}

.shop-material-content {
    padding: 24px;
}

.shop-material-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #005BAA;
}

.shop-material-content p {
    color: #667085;
    line-height: 1.7;
    margin-bottom: 18px;
}

.shop-material-content a {
    color: #0B67C2;
    text-decoration: none;
    font-weight: 600;
}

.shop-material-content a i {
    margin-left: 6px;
    transition: .3s;
}

.shop-material-content a:hover i {
    margin-left: 12px;
}

.ideal-environment-section {
    padding: 60px 0;
    background: linear-gradient(rgba(5, 35, 92, .92), rgba(7, 47, 117, .92)), url('../img/philosphy-bg.png') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.ideal-environment-section .section-tag {
    margin-bottom: 18px;
}

.ideal-environment-section h2 {
    color: #fff;
    max-width: 850px;
    margin: 0 auto 18px;
}

.ideal-environment-section p {
    color: rgba(255, 255, 255, .78);
    max-width: 700px;
    margin: 0 auto;
}

.environment-card {
    position: relative;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    position: relative;
    padding: 70px 15px 15px;
    overflow: visible;
    text-align: center;
    height: 100%;
    transition: .45s;
}

.environment-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(140, 198, 63, .12), transparent);
    transition: .45s;
}

.environment-card:hover::before {
    height: 100%;
}

.environment-card:hover {
    transform: translateY(-10px);
    border-color: rgba(140, 198, 63, .35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.environment-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -32px;
    left: 28%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
    transition: .45s;
}

.environment-icon img {
    width: 42px;
    transition: .45s;
}

.environment-card:hover .environment-icon {
    background: #8cc63f;
    transform: rotateY(180deg);
}

.environment-card:hover .environment-icon img {
    filter: brightness(0) invert(1);
    transform: rotateY(-180deg);
}

.environment-card h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.environment-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .75);
    min-height: 80px;
}

.environment-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8cc63f;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.environment-card a i {
    transition: .3s;
}

.environment-card:hover a {
    color: #fff;
}

.environment-card:hover a i {
    transform: translateX(6px);
}

.theme-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #fff;
    color: #0b5db7;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
}

.theme-btn-white:hover {
    background: #8cc63f;
    color: #fff;
    transform: translateY(-4px);
}

.theme-btn-white i {
    transition: .3s;
}

.theme-btn-white:hover i {
    transform: translateX(6px);
}

@media(max-width:991px) {

    .ideal-environment-section {
        padding: 20px;
    }

    .environment-card {
        padding: 65px 20px 25px;
    }

    .environment-card h4 {
        font-size: 21px;
    }

    .environment-icon {
        width: 80px;
        height: 80px;
    }

}

@media(max-width:767px) {

    .environment-card {
        padding: 60px 18px 22px;
    }

    .environment-card h4 {
        font-size: 19px;
    }

    .environment-card p {
        min-height: auto;
        font-size: 14px;
    }

    .environment-icon {
        width: 50px;
        height: 50px;
        margin: 17px auto;
    }

    .project-slider .owl-nav {
        display: none !important;
    }

    .theme-btn-white {
        padding: 14px 28px;
        font-size: 15px;
    }

    .outdoor-slider .owl-nav button i {
        font-size: 12px !important;
    }

}

.ideal-environment-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/patterns/pattern-1.png') center/cover no-repeat;
    opacity: .08;
    pointer-events: none;
}

.ideal-environment-section::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    left: -250px;
    bottom: -250px;
    background: radial-gradient(circle, rgba(140, 198, 63, .18), transparent 70%);
    pointer-events: none;
}

.environment-card {
    z-index: 2;
}

.environment-card:nth-child(2) {
    margin-top: 30px;
}

.environment-card:nth-child(4) {
    margin-top: 30px;
}

.environment-card:nth-child(6) {
    margin-top: 30px;
}

.environment-card:hover {
    background: rgba(255, 255, 255, .08);
}

.environment-card h4 {
    transition: .35s;
}

.environment-card:hover h4 {
    color: #8cc63f;
}

.environment-icon {
    animation: floatIcon 4s ease-in-out infinite;
}

.environment-card:nth-child(2) .environment-icon {
    animation-delay: .4s;
}

.environment-card:nth-child(3) .environment-icon {
    animation-delay: .8s;
}

.environment-card:nth-child(4) .environment-icon {
    animation-delay: 1.2s;
}

.environment-card:nth-child(5) .environment-icon {
    animation-delay: 1.6s;
}

.environment-card:nth-child(6) .environment-icon {
    animation-delay: 2s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.theme-btn-white {
    position: relative;
    overflow: hidden;
}

.theme-btn-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    transition: .8s;
}

.theme-btn-white:hover::before {
    left: 100%;
}

@media(max-width:1199px) {

    .environment-card:nth-child(2),
    .environment-card:nth-child(4),
    .environment-card:nth-child(6) {
        margin-top: 0;
    }

}

@media(max-width:767px) {

    .ideal-environment-section::after {
        width: 350px;
        height: 350px;
        left: -120px;
        bottom: -120px;
    }

    .environment-card {
        margin-top: 0 !important;
    }


}

.product-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    transition: .4s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #7bc043;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    line-height: 1;
}

.product-content {
    padding: 22px;
}

.product-content h4 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 15px;
    transition: .3s;
    color: #005BAA
}

.product-card:hover h4 {
    color: #0b66c3;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.product-meta span {
    font-size: 14px;
    color: #667085;
    display: flex;
    align-items: center;
    gap: 7px;
}

.product-meta i {
    width: 22px;
    height: 22px;
    background: #edf8e4;
    color: #7bc043;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.product-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #667085;
    margin-bottom: 22px;
}

.product-btn {
    display: flex;
    gap: 5px;
}

.btn-outline-theme,
.btn-theme {
    flex: 1;
    height: 48px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.btn-outline-theme {
    border: 2px solid #0b66c3;
    color: #0b66c3;
    background: #fff;
}

.btn-outline-theme:hover {
    background: #0b66c3;
    color: #fff;
}

.btn-theme {
    background: #0b66c3;
    color: #fff;
    border: 2px solid #0b66c3;
}

.btn-theme:hover {
    background: #7bc043;
    border-color: #7bc043;
    color: #fff;
}

@media(max-width:991px) {
    .product-image {
        height: 220px;
    }

    .product-content h4 {
        font-size: 21px;
    }
}

@media(max-width:767px) {
    .product-content {
        padding: 18px;
    }

    .product-image {
        height: 200px;
    }

    .btn-outline-theme,
    .btn-theme {
        width: 100%;
    }

    .product-card {
        height: 450px;
    }
}

.product-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-25deg);
    transition: .8s;
    z-index: 2;
}

.product-card:hover .product-image::before {
    left: 170%;
}

.product-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, .45), transparent);
    opacity: 0;
    transition: .4s;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-badge {
    overflow: hidden;
    position: absolute;
}

.product-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    transition: .7s;
}

.product-card:hover .product-badge::before {
    left: 100%;
}

.product-card:hover .product-badge {
    background: #0b66c3;
}

.product-content h4 {
    transition: .35s;
}

.product-card:hover h4 {
    letter-spacing: .3px;
}

.product-meta span {
    transition: .35s;
}

.product-card:hover .product-meta span {
    color: #0b66c3;
}

.product-meta i {
    transition: .35s;
}

.product-card:hover .product-meta i {
    background: #0b66c3;
    color: #fff;
    transform: rotate(360deg);
}

.btn-outline-theme i,
.btn-theme i {
    margin-left: 8px;
    transition: .3s;
}

.btn-outline-theme:hover i,
.btn-theme:hover i {
    transform: translateX(6px);
}

.btn-outline-theme,
.btn-theme {
    position: relative;
    overflow: hidden;
}

.btn-outline-theme::before,
.btn-theme::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
    transition: .7s;
}

.btn-outline-theme:hover::before,
.btn-theme:hover::before {
    left: 100%;
}

.product-card:hover .product-content {
    transform: translateY(-3px);
}

.product-content {
    transition: .35s;
}

.why-choose-seating-section {
    padding: 60px 0;
    background: url(../img/why-why.png) center top no-repeat;
    background-size: cover;
}

.why-choose-image {
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: sticky;
    top: 120px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.why-choose-image:hover img {
    transform: scale(1.06);
}

.why-choose-content {
    padding-left: 20px;
}

.why-choose-content>p {
    color: #667085;
    line-height: 1.8;
    margin-bottom: 35px;
}

.why-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.why-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 15px;
    border: 1px solid #edf1f6;
    border-radius: 18px;
    background: #fff;
    transition: .35s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.why-feature-item:hover {
    transform: translateX(10px);
    border-color: #0b66c3;
    box-shadow: 0 18px 45px rgba(11, 102, 195, .12);
}

.why-feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 18px;
    background: #edf7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.why-feature-icon img {
    width: 34px;
    transition: .35s;
}

.why-feature-item:hover .why-feature-icon {
    background: #0b66c3;
}

.why-feature-item:hover .why-feature-icon img {
    filter: brightness(0) invert(1);
    transform: scale(1.08);
}

.why-feature-text h4 {
    font-size: 22px;
    margin-bottom: 8px;
    transition: .3s;
}

.why-feature-item:hover .why-feature-text h4 {
    color: #0b66c3;
}

.why-feature-text p {
    margin: 0;
    color: #667085;
    line-height: 1.7;
}

@media(max-width:991px) {
    .why-choose-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .why-choose-image {
        position: relative;
        top: auto;
        height: 450px;
    }
}

@media(max-width:767px) {
    .why-choose-seating-section {
        padding: 20px 0;
    }

    .why-choose-image {
        height: 320px;
    }

    .why-feature-item {
        padding: 18px;
        gap: 15px;
    }

    .why-feature-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .why-feature-icon img {
        width: 28px;
    }

    .why-feature-text h4 {
        font-size: 18px;
    }
}

.why-feature-item {
    position: relative;
    overflow: hidden;
}

.why-feature-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #0b66c3, #8cc63f);
    transition: .4s;
}

.why-feature-item:hover::before {
    height: 100%;
}

.why-feature-item::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    font-weight: 700;
    color: rgba(11, 102, 195, .06);
    transition: .35s;
}

.why-feature-item:nth-child(1)::after {
    content: "01";
}

.why-feature-item:nth-child(2)::after {
    content: "02";
}

.why-feature-item:nth-child(3)::after {
    content: "03";
}

.why-feature-item:nth-child(4)::after {
    content: "04";
}

.why-feature-item:nth-child(5)::after {
    content: "05";
}

.why-feature-item:nth-child(6)::after {
    content: "06";
}

.why-feature-item:hover::after {
    color: rgba(140, 198, 63, .12);
}

.why-feature-item:hover {
    background: linear-gradient(90deg, #ffffff, #f8fcff);
}

.why-feature-item:hover .why-feature-text p {
    color: #444;
}

.why-feature-icon {
    box-shadow: 0 10px 25px rgba(11, 102, 195, .12);
}

.why-feature-item:hover .why-feature-icon {
    box-shadow: 0 18px 40px rgba(11, 102, 195, .25);
    transform: rotate(-8deg);
}

.why-feature-item:hover {
    transform: translateX(10px);
}

.why-feature-item:hover .why-feature-text {
    transform: translateX(5px);
}

.why-feature-text {
    transition: .35s;
}

.why-choose-image {
    position: relative;
}

.why-choose-image::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(140, 198, 63, .12);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    z-index: 1;
}

.why-choose-image::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 2px dashed rgba(255, 255, 255, .18);
    border-radius: 50%;
    bottom: -70px;
    left: -70px;
    animation: rotateBorder 20s linear infinite;
}

.why-choose-image img {
    position: relative;
    z-index: 2;
}



@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media(max-width:991px) {
    .why-feature-item::after {
        display: none;
    }

    .why-choose-image::before,
    .why-choose-image::after {
        display: none;
    }
}

.buying-faq-section {
    padding: 60px 0;
    background: #f8fbff;
}

.buying-guide-box,
.faq-box {
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .08);
    height: 100%;
}

.buying-guide-box h2 {
    margin: 18px 0 30px;
}

.buying-guide-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.buying-guide-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.8;
    color: #667085;
    margin-bottom: 18px;
}

.buying-guide-list li i {
    color: #8cc63f;
    font-size: 18px;
    margin-top: 5px;
}

.buying-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: #0b66c3;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: .35s;
}

.buying-guide-btn:hover {
    background: #8cc63f;
    color: #fff;
}

.guide-book-image {
    text-align: center;
}

.guide-book-image img {
    width: 100%;
    max-width: 340px;
    transition: .5s;
}

.guide-book-image:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.faq-box .section-tag {
    margin-bottom: 18px;
    display: inline-block;
}

.buying-faq .accordion-item {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: #f8fbff;
    margin-bottom: 18px;
}

.buying-faq .accordion-button {
    background: #f8fbff;
    padding: 22px 25px;
    font-size: 17px;
    font-weight: 600;
    color: #222;
    box-shadow: none;
}

.buying-faq .accordion-button:not(.collapsed) {
    background: #0b66c3;
    color: #fff;
}

.buying-faq .accordion-button:focus {
    box-shadow: none;
}

.buying-faq .accordion-body {
    padding: 0 25px 22px;
    background: #0b66c3;
    color: #fff;
    line-height: 1.8;
}

.faq-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0b66c3;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

.faq-view-btn:hover {
    color: #8cc63f;
}

@media(max-width:991px) {

    .buying-guide-box,
    .faq-box {
        padding: 35px;
    }

    .guide-book-image {
        margin-top: 35px;
    }
}

@media(max-width:767px) {
    .buying-faq-section {
        padding: 20px 0;
    }

    .buying-guide-box,
    .faq-box {
        padding: 25px;
    }

    .buying-guide-box h2 {
        margin-bottom: 22px;
    }

    .buying-guide-list li {
        font-size: 15px;
    }

    .buying-faq .accordion-button {
        padding: 18px;
        font-size: 15px;
    }

    .buying-faq .accordion-body {
        padding: 0 18px 18px;
    }

    .buying-guide-btn {
        width: 100%;
        justify-content: center;
    }
}

.buying-guide-box,
.faq-box {
    position: relative;
    overflow: hidden;
}

.buying-guide-box::before,
.faq-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0b66c3, #8cc63f);
}

.buying-guide-box::after,
.faq-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(11, 102, 195, .05);
    top: -120px;
    right: -120px;
}

.buying-guide-box:hover,
.faq-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.buying-guide-box,
.faq-box {
    transition: .4s;
}

.buying-guide-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0px 0;
    padding: 0;
    list-style: none;
}

.buying-guide-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    font-weight: 500;
    font-size: 15px;
    color: #333;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.buying-guide-list li span {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    background: #edf8e4;
    color: #8cc63f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: .35s;
}

.buying-guide-list li:hover {
    transform: translateY(-6px);
    border-color: #0b66c3;
    box-shadow: 0 15px 35px rgba(11, 102, 195, .12);
}

.buying-guide-list li:hover span {
    background: #0b66c3;
    color: #fff;
}

@media(max-width:991px) {
    .buying-guide-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .buying-guide-list {
        grid-template-columns: 1fr;
    }
}

.buying-guide-btn i,
.faq-view-btn i {
    transition: .35s;
}

.buying-guide-btn:hover i,
.faq-view-btn:hover i {
    transform: translateX(6px);
}

.buying-faq .accordion-item {
    transition: .35s;
}

.buying-faq .accordion-item:hover {
    box-shadow: 0 12px 35px rgba(11, 102, 195, .12);
}

.buying-faq .accordion-button::after {
    transition: .35s;
}

.buying-faq .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.buying-faq .accordion-button:hover {
    padding-left: 30px;
}

.guide-book-image {
    position: relative;
}

.guide-book-image::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(140, 198, 63, .12);
    top: -20px;
    right: 10px;
}

.guide-book-image::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px dashed rgba(11, 102, 195, .12);
    border-radius: 50%;
    bottom: -40px;
    left: -30px;
    animation: guideRotate 20s linear infinite;
}

.guide-book-image img {
    position: relative;
    z-index: 2;
}

@keyframes guideRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@media(max-width:991px) {

    .guide-book-image::before,
    .guide-book-image::after {
        display: none;
    }
}

.expert-recommendation-section {
    padding: 60px 0;
}

.expert-recommendation-wrapper {
    background: linear-gradient(rgb(5 44 110 / 60%), rgb(5 44 110 / 61%)), url(../img/about-pg-cta.png) center / cover no-repeat;
    border-radius: 30px;
    padding: 55px;
    overflow: hidden;
    position: relative;
}

.expert-content {
    color: #fff;
    position: relative;
    z-index: 2;
}

.expert-content h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #fff;
    margin: 18px 0 20px;
}

.expert-content h2 span {
    color: #8cc63f;
}

.expert-content p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .82);
    max-width: 560px;
}

.expert-image {
    margin-top: 35px;
}

.expert-image img {
    max-width: 100%;
    border-radius: 20px;
}

.expert-form-box {
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(18px);
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .15);
}

.expert-form-box .form-control,
.expert-form-box .form-select {
    height: 58px;
    border: none;
    border-radius: 12px;
    padding: 0 18px;
    font-size: 15px;
    box-shadow: none;
}

.expert-form-box textarea.form-control {
    height: 120px;
    padding: 18px;
    resize: none;
}

.expert-form-box .form-control:focus,
.expert-form-box .form-select:focus {
    box-shadow: none;
    border: none;
}

.expert-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.expert-btn {
    height: 54px;
    padding: 0 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .35s;
}

.expert-primary-btn {
    background: #8cc63f;
    color: #fff;
}

.expert-primary-btn:hover {
    background: #79b42f;
    color: #fff;
}

.expert-outline-btn {
    background: #fff;
    color: #0b66c3;
}

.expert-outline-btn:hover {
    background: #0b66c3;
    color: #fff;
}

.expert-white-btn {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .35);
}

.expert-white-btn:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

@media(max-width:991px) {
    .expert-recommendation-wrapper {
        padding: 40px;
    }

    .expert-content h2 {
        font-size: 40px;
    }

    .expert-form-box {
        margin-top: 35px;
    }
}

@media(max-width:767px) {
    .expert-recommendation-section {
        padding: 60px 0;
    }

    .expert-recommendation-wrapper {
        padding: 25px;
        border-radius: 20px;
    }

    .expert-content h2 {
        font-size: 30px;
    }

    .expert-btn-group {
        flex-direction: column;
    }

    .expert-btn {
        width: 100%;
    }
}

.expert-recommendation-wrapper::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(140, 198, 63, .12);
    top: -140px;
    left: -120px;
}

.expert-recommendation-wrapper::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    right: -180px;
    bottom: -180px;
}

.expert-content,
.expert-form-box {
    position: relative;
    z-index: 2;
}

.expert-image {
    position: relative;
}

.expert-image::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px dashed rgba(255, 255, 255, .25);
    border-radius: 50%;
    top: -30px;
    right: -30px;
    animation: rotateCircle 20s linear infinite;
}

.expert-image img {
    transition: .5s;
    animation: floatImage 5s ease-in-out infinite;
}

.expert-image:hover img {
    transform: scale(1.04);
}

.expert-form-box {
    transition: .4s;
}

.expert-form-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
}

.expert-form-box .form-control,
.expert-form-box .form-select {
    transition: .35s;
}

.expert-form-box .form-control:focus,
.expert-form-box .form-select:focus {
    background: #f8fbff;
}

.expert-btn {
    position: relative;
    overflow: hidden;
}

.expert-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .4), transparent);
    transform: skewX(-25deg);
    transition: .7s;
}

.expert-btn:hover::before {
    left: 170%;
}

.expert-btn i {
    transition: .35s;
}

.expert-btn:hover i {
    transform: translateX(6px);
}

.expert-primary-btn:hover {
    box-shadow: 0 15px 35px rgba(140, 198, 63, .35);
}

.expert-outline-btn:hover {
    box-shadow: 0 15px 35px rgba(11, 102, 195, .35);
}

.expert-white-btn:hover {
    box-shadow: 0 15px 35px rgba(37, 211, 102, .35);
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes rotateCircle {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@media(max-width:991px) {

    .expert-image::before,
    .expert-recommendation-wrapper::before,
    .expert-recommendation-wrapper::after {
        display: none;
    }

    .expert-image img {
        animation: none;
    }
}

.expert-btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.expert-full-btn {
    width: 100%;
}

.expert-bottom-btns {
    display: flex;
    gap: 15px;
}

.expert-bottom-btns .expert-btn {
    flex: 1;
}

@media(max-width:767px) {
    .expert-bottom-btns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-slider .owl-nav {
        display: none !important;
    }

    .sofa-filter-benefits {
        padding: 20px 0 !important;
    }

    .material-application-section {
        padding: 20px 0 !important;
    }
}

.sofa-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(18, 61, 141, .08);
    transition: .45s;
    border: 1px solid #edf2f7;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sofa-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.sofa-img {
    overflow: hidden;
    position: relative;
}

.sofa-img img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: .7s;
    display: block;
}

.sofa-content h3 {
    font-size: 20px;
    color: #005BAA;
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 1.3;
}

.product-code {
    font-size: 20px;
    color: #005BAA;
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 1.3;
}

.sofa-content p {
    font-size: 15px;
    color: #5d6d83;
    line-height: 1.6;
    margin-bottom: 20px;
}

.material-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 22px;
}

.material-badges span {
    padding: 8px 15px;
    background: #f5f6f8;
    border-radius: 30px;
    font-size: 13px;
    color: #667085;
    font-weight: 500;
}

.usage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.usage-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22304b;
    font-size: 14px;
    font-weight: 500;
}

.usage-list i {
    color: #123d8d;
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.card-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.btn-details,
.btn-quote {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .4s;
}

.btn-details {
    background: #fff;
    border: 1px solid #d8e3f2;
    color: #123d8d;
}

.btn-details:hover {
    background: #123d8d;
    border-color: #123d8d;
    color: #fff;
}

.btn-quote {
    background: #1565c0;
    color: #fff;
    border: 1px solid #1565c0;
    box-shadow: 0 8px 20px rgba(21, 101, 192, .25);
}

.btn-quote:hover {
    background: #74b63f;
    border-color: #74b63f;
    color: #fff;
}

.wishlist-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d8e3f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #123d8d;
    text-decoration: none;
    transition: .4s;
    flex-shrink: 0;
}

.wishlist-btn:hover {
    background: #123d8d;
    border-color: #123d8d;
    color: #fff;
    transform: rotate(360deg);
}

.sofa-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(18, 61, 141, .18);
}

.sofa-card:hover .sofa-img img {
    transform: scale(1.08);
}

.material-badges span {
    transition: .35s;
}

.material-badges span:hover {
    background: #74b63f;
    color: #fff;
}

.usage-list li {
    transition: .35s;
}

.usage-list li:hover {
    color: #1565c0;
    transform: translateX(4px);
}

@media(max-width:1399px) {

    .section-heading h2 {
        font-size: 38px;
    }

    .sofa-content h3 {
        font-size: 24px;
    }

    .sofa-img img {
        height: 220px;
    }

}

@media(max-width:991px) {

    .outdoor-sofa-section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .sofa-img img {
        height: 240px;
    }

}

@media(max-width:767px) {

    .section-heading h2 {
        font-size: 28px;
    }

    .sofa-content {
        padding: 20px;
    }

    .sofa-content h3 {
        font-size: 22px;
    }

    .sofa-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .material-badges {
        gap: 8px;
    }

    .material-badges span {
        font-size: 12px;
        padding: 7px 14px;
    }

    .usage-list {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 22px;
    }

    .card-btns {
        flex-wrap: wrap;
    }

    .btn-details,
    .btn-quote {
        flex: 1 1 calc(50% - 5px);
    }

    .wishlist-btn {
        width: 100%;
        border-radius: 40px;
    }

}

@media(max-width:575px) {

    .section-heading h2 {
        font-size: 24px;
    }

    .sofa-img img {
        height: 220px;
    }

    .usage-list {
        grid-template-columns: 1fr;
    }

    .btn-details,
    .btn-quote {
        flex: 100%;
    }

    .wishlist-btn {
        height: 46px;
    }

}

.collection-slider .owl-nav {
    position: absolute;
    top: -55px;
    right: 0;
    display: flex;
    gap: 15px;
}

.collection-slider .owl-stage {
    display: flex;
}

.collection-slider .owl-item {
    padding: 8px;
}

.collection-slider .owl-nav {
    position: absolute;
    top: -55px;
    right: 0;
    display: flex;
    gap: 15px;
}

.collection-slider .owl-nav button {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #e8e8e8 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.collection-slider .owl-nav button span {
    display: none;
}

.collection-slider .owl-nav button i {
    font-size: 18px;
    color: #005BAA;
    transition: .35s;
}

.collection-slider .owl-nav button:hover {
    background: #005BAA !important;
    border-color: #005BAA !important;
    transform: translateY(-4px);
}

.collection-slider .owl-nav button:hover i {
    color: #fff;
}

.collection-slider .owl-nav .owl-prev {
    margin: 0 !important;
}

.collection-slider .owl-nav .owl-next {
    margin: 0 !important;
}

.collection-slider .owl-nav button {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

.collection-slider .owl-nav button:hover {
    background: #76B82A !important;
}

.collection-slider .owl-nav button:hover i {
    color: #fff;
}

.sofa-filter-benefits {
    padding: 60px 0;
    background: #f8fafc;
    overflow: hidden;
}

.filter-box {
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 15px 45px rgba(15, 46, 99, .08);
    border: 1px solid #edf2f7;
    position: sticky;
    top: 100px;
}

.filter-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef2f6;
}

.filter-top h3 {
    font-size: 25px;
    font-weight: 600;
    color: #0066B3;
    margin: 0;
    line-height: 1.3;
}

.filter-close {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f5f7fb;
    color: #0066B3;
    font-size: 18px;
    cursor: pointer;
    transition: .35s;
}

.filter-close:hover {
    background: #0066B3;
    color: #fff;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0066B3;
    margin-bottom: 15px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 500;
    color: #5d6d83;
    margin-bottom: 12px;
    cursor: pointer;
    transition: .3s;
}

.filter-group label:last-child {
    margin-bottom: 0;
}

.filter-group label:hover {
    color: #0066B3;
    padding-left: 5px;
}

.filter-group input {
    width: 18px;
    height: 18px;
    accent-color: #79be3d;
    cursor: pointer;
    flex-shrink: 0;
}

.apply-filter-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 50px;
    background: #0066B3;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .4s;
    box-shadow: 0 12px 25px rgba(21, 59, 122, .18);
}

.apply-filter-btn:hover {
    background: #79be3d;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(121, 190, 61, .28);
}

@media(max-width:991px) {
    .filter-box {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
}

@media(max-width:767px) {
    .filter-box {
        padding: 22px;
    }

    .filter-top h3 {
        font-size: 24px;
    }

    .filter-group {
        margin-bottom: 20px;
    }

    .filter-group h5 {
        font-size: 15px;
    }

    .filter-group label {
        font-size: 14px;
    }

    .apply-filter-btn {
        height: 50px;
        font-size: 14px;
    }
}

@media(max-width:575px) {
    .filter-top {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .filter-top h3 {
        font-size: 22px;
    }

    .filter-group {
        margin-bottom: 18px;
    }

    .filter-group label {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .apply-filter-btn {
        height: 48px;
    }
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    color: #0066B3;
    line-height: 1.2;
    margin: 12px 0 40px;
}

.why-sofa-row {
    border: 1px solid #e9eef5;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 45px rgba(15, 46, 99, .06);
}

.why-card {
    padding: 15px 10px;
    text-align: center;
    height: 100%;
    border-right: 1px solid #e9eef5;
    border-bottom: 1px solid #e9eef5;
    transition: .4s;
    position: relative;
    background: #fff;
}

.why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: #79be3d;
    transform: scaleX(0);
    transition: .4s;
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #edf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: #0066B3;
    transition: .4s;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 500;
    color: #0066B3;
    line-height: 1.4;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #66768d;
    margin: 0;
}

.why-card:hover {
    background: #0066B3;
    transform: translateY(-8px);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover .why-icon {
    background: #79be3d;
    color: #fff;
    transform: rotateY(180deg);
}

.why-card:hover h4,
.why-card:hover p {
    color: #fff;
}

@media(max-width:1199px) {
    .section-title {
        font-size: 36px;
    }

    .why-card {
        padding: 30px 18px;
    }

    .why-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }

    .why-card h4 {
        font-size: 17px;
    }
}

@media(max-width:991px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .why-card {
        border-right: none;
        border-bottom: 1px solid #e9eef5;
    }
}

@media(max-width:767px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 20px !important;
    }

    .why-card {
        padding: 25px 18px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .why-card h4 {
        font-size: 16px;
    }

    .why-card p {
        font-size: 13px;
    }
}

@media(max-width:575px) {
    .section-title {
        font-size: 24px;
    }

    .why-card {
        padding: 22px 16px;
    }

    .why-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .why-card h4 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 12px;
        line-height: 1.7;
    }
}

.material-application-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.material-card,
.application-card {
    height: 100%;
    padding: 35px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(15, 46, 99, .06);
    transition: .4s;
}

.material-card:hover,
.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 46, 99, .12);
}



.material-item {
    display: block;
    text-align: center;
    text-decoration: none;
}

.material-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: .5s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.material-item h6 {
    margin-top: 14px;
    font-size: 20px;
    font-weight: 600;
    color: #0066B3;
    transition: .35s;
}

.material-item:hover img {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(15, 46, 99, .18);
}

.material-item:hover h6 {
    color: #79be3d;
}

@media(max-width:1199px) {

    .material-card,
    .application-card {
        padding: 28px;
    }

    .material-card h2,
    .application-card h2 {
        font-size: 36px;
    }

}

@media(max-width:991px) {

    .material-card h2,
    .application-card h2 {
        font-size: 32px;
    }

    .material-card {
        margin-bottom: 10px;
    }

}

@media(max-width:767px) {
    .project-guide-section {
        padding: 20px 0 !important;
    }

    .material-card,
    .application-card {
        padding: 22px;
    }

    .material-card h2,
    .application-card h2 {
        font-size: 28px;
        margin: 12px 0 25px;
    }

    .material-item h6 {
        font-size: 15px;
    }

}

@media(max-width:575px) {

    .material-card h2,
    .application-card h2 {
        font-size: 24px;
    }


    .material-item h6 {
        font-size: 14px;
    }

}

.application-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #0066B3;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(21, 59, 122, .18);
}

.application-btn:hover {
    background: #79be3d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(121, 190, 61, .28);
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 5px;
}

.application-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 20px 10px;

    text-decoration: none;
    transition: .4s;
    box-shadow: 0 8px 25px rgba(15, 46, 99, .05);
}

.application-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #edf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0066B3;
    margin-bottom: 18px;
    transition: .4s;
}

.application-item h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #0066B3;
    transition: .35s;
}

.application-item:hover {
    transform: translateY(-8px);
    border-color: #79be3d;
    box-shadow: 0 18px 40px rgba(15, 46, 99, .14);
}

.application-item:hover .application-icon {
    background: #79be3d;
    color: #fff;
    transform: rotateY(180deg);
}

.application-item:hover h6 {
    color: #79be3d;
}

@media(max-width:1199px) {

    .application-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .application-item {
        padding: 24px 12px;
    }

    .application-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

}

@media(max-width:991px) {

    .application-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .application-btn {
        margin-bottom: 25px;
    }

}

@media(max-width:767px) {

    .application-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .application-item {
        padding: 22px 12px;
    }

    .application-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .application-item h6 {
        font-size: 14px;
    }

    .application-btn {
        padding: 12px 22px;
        font-size: 14px;
    }

}

@media(max-width:575px) {

    .application-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .application-item {
        padding: 18px 10px;
        border-radius: 15px;
    }

    .application-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .application-item h6 {
        font-size: 13px;
        line-height: 1.4;
    }

    .application-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
    }

}

.project-guide-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.project-guide-section .project-card::before {
    content: "";
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #fff, #fff);
}

.project-card,
.buying-guide-card {
    height: 100%;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 15px 45px rgba(15, 46, 99, .06);
    transition: .4s;
    display: block !important;
}

.project-card:hover,
.buying-guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 46, 99, .12);
}


.project-item {
    display: block;
    text-decoration: none;
}

.project-img {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.project-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: .6s;
}

.project-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px;
    display: block;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(8, 29, 74, .95), rgba(8, 29, 74, .15));
}

.project-overlay span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.project-arrow {
    width: 42px;
    height: 42px;
    margin-top: 15px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #153b7a;
    font-size: 15px;
    transition: .35s;
    flex-shrink: 0;
}

.project-item:hover .project-img img {
    transform: scale(1.08);
}

.project-item:hover .project-arrow {
    background: #79be3d;
    color: #fff;
    transform: translateX(4px);
}

@media(max-width:1199px) {

    .project-card,
    .buying-guide-card {
        padding: 28px;
    }

    .project-card h2,
    .buying-guide-card h2 {
        font-size: 36px;
    }

    .project-img img {
        height: 220px;
    }

}

@media(max-width:991px) {

    .project-card {
        margin-bottom: 10px;
    }

    .project-card h2,
    .buying-guide-card h2 {
        font-size: 32px;
    }

}

@media(max-width:767px) {

    .project-card,
    .buying-guide-card {
        padding: 22px;
    }

    .project-icon,
    .furniture-icon {
        margin: auto;
    }

    .project-card h2,
    .buying-guide-card h2 {
        font-size: 28px;
        margin: 12px 0 25px;
    }

    .project-img img {
        height: 240px;
    }

    .project-overlay {
        padding: 15px;
    }

    .project-overlay span {
        font-size: 15px;
    }

    .project-arrow {
        width: 38px;
        height: 38px;
    }

}

@media(max-width:575px) {

    .project-card h2,
    .buying-guide-card h2 {
        font-size: 24px;
    }

    .project-img img {
        height: 220px;
        border-radius: 16px;
    }

    .project-overlay {
        padding: 14px;
    }

    .project-overlay span {
        font-size: 14px;
    }

    .project-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

}

.buying-guide-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.buying-guide-list li {
    display: block;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 500;
    color: #4d5f78;
    transition: .35s;
}

.buying-guide-list li:last-child {
    margin-bottom: 0;
}

.buying-guide-list li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #79be3d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    transition: .35s;
}

.buying-guide-list li:hover {
    color: #153b7a;
    transform: translateX(6px);
}

.buying-guide-list li:hover i {
    background: #153b7a;
    transform: rotate(360deg);
}

.buying-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #153b7a;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 12px 25px rgba(21, 59, 122, .18);
}

.buying-guide-btn:hover {
    background: #79be3d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(121, 190, 61, .28);
}

.guide-image {
    position: relative;
    text-align: right;
}

.guide-image img {
    width: 100%;
    max-width: 360px;
    display: block;
    margin-left: auto;
    transition: .5s;
    filter: drop-shadow(0 20px 40px rgba(15, 46, 99, .18));
}

.buying-guide-card:hover .guide-image img {
    transform: rotate(-6deg) scale(1.05);
}

@media(max-width:1199px) {

    .buying-guide-list li {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .guide-image img {
        max-width: 300px;
    }

}

@media(max-width:991px) {

    .guide-image {
        margin-top: 35px;
        text-align: center;
    }

    .guide-image img {
        margin: auto;
        max-width: 320px;
    }

}

@media(max-width:767px) {

    .buying-guide-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 25px;
    }

    .expert-image {
        margin-top: 0px;
    }

    .buying-guide-list li {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .buying-guide-btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .guide-image {
        margin-top: 30px;
    }

    .guide-image img {
        max-width: 260px;
    }

}

@media(max-width:575px) {

    .buying-guide-list li {
        font-size: 13px;
        gap: 10px;
    }

    .buying-guide-list li i {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .buying-guide-btn {
        width: 100%;
        justify-content: center;
    }

    .guide-image img {
        max-width: 220px;
    }

}

.consultation-hero {
    padding: 140px 0 30px;
    background: linear-gradient(rgba(6, 58, 114, .82), rgba(6, 58, 114, .82)),
        url("../img/consultation-banner.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.consultation-hero-content {
    max-width: 760px;
    margin: auto;
}

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #7CC242;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.consultation-hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.15;
}

.product-hero {
    position: relative;
    height: 222px;
    background: url(../img/product-bg.png) center center / cover;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: 151px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(8, 24, 52, .88) 0%,
            rgba(8, 24, 52, .72) 45%,
            rgba(8, 24, 52, .35) 70%,
            rgba(8, 24, 52, .15) 100%);
}

.product-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 45px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #fff;
    justify-content: center;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.breadcrumb a:hover {
    color: #8cc63f;
}

.breadcrumb span {
    opacity: .7;
}

.breadcrumb .active {
    color: #8cc63f;
    font-weight: 600;
}

.hero-content {
    max-width: 650px;
}

.hero-tag {
    display: inline-block;
    background: #8cc63f;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 18px;
    font-weight: 700;
}

.hero-content p {
    max-width: 580px;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    line-height: 1.8;
}

@media(max-width:991px) {

    .product-hero {
        height: 240px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15px;
    }

}

@media(max-width:576px) {

    .product-hero {
        height: 210px;
    }

    .breadcrumb {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        display: none;
    }

    .hero-tag {
        font-size: 11px;
        padding: 6px 14px;
    }

}

.product-details-section {
    padding: 60px 0;
    background: #ffffff;
}

.product-details-section .container {
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-main-image {
    position: relative;
    background: #f7f8f9;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    border: 1px solid #ececec;
}

.product-main-image img {
    width: 100%;
    display: block;
    transition: .4s;
}

.product-main-image:hover img {
    transform: scale(1.04);
}

.product-badge {
    position: absolute;
    left: 25px;
    top: 25px;
    background: #6CB33F;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.product-badge i {
    font-size: 13px;
}

.zoom-btn {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 48px;
    height: 48px;
    border: none;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    transition: .35s;
    z-index: 10;
}

.zoom-btn i {
    font-size: 18px;
    color: #222;
}

.zoom-btn:hover {
    background: #6CB33F;
    transform: translateY(-3px);
}

.zoom-btn:hover i {
    color: #fff;
}

.thumbnail-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.product-thumbnails {
    flex: 1;
    display: flex;
    gap: 15px;
    overflow: hidden;
}

.thumb {
    width: 110px;
    height: 110px;
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .35s;
    flex-shrink: 0;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb:hover {
    transform: translateY(-5px);
}

.thumb.active {
    border-color: #6CB33F;
    box-shadow: 0 12px 25px rgba(108, 179, 63, .18);
}

.thumb-arrow {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .10);
    transition: .35s;
    flex-shrink: 0;
}

.thumb-arrow i {
    font-size: 18px;
    color: #333;
}

.thumb-arrow:hover {
    background: #6CB33F;
}

.thumb-arrow:hover i {
    color: #fff;
}

.product-main-image::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: 72%;
    height: 22px;
    background: rgba(0, 0, 0, .12);
    filter: blur(22px);
    border-radius: 50%;
}

#mainProductImage {
    animation: fadeImage .45s ease;
}

@keyframes fadeImage {

    from {
        opacity: .2;
        transform: scale(.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

.product-gallery:hover .product-main-image {
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

@media(max-width:991px) {

    .product-wrapper {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .product-main-image {
        padding: 25px;
    }

    .thumb {
        width: 90px;
        height: 90px;
    }

}

@media(max-width:576px) {

    .product-details-section {
        padding: 20px 0;
    }

    .product-main-image {
        border-radius: 18px;
        padding: 18px;
    }

    .product-badge {
        left: 15px;
        top: 15px;
        font-size: 12px;
        padding: 8px 14px;
    }

    .zoom-btn {
        width: 42px;
        height: 42px;
        right: 15px;
        top: 15px;
    }

    .thumbnail-wrapper {
        gap: 10px;
    }

    .product-thumbnails {
        display: none !important;
    }

    .thumb {
        width: 72px;
        height: 72px;
    }

    .thumb-arrow {
        display: none !important;
    }

}

.product-content {
    padding-top: 10px;
}

.collection-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef7e7;
    color: #6CB33F;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-title {
    font-size: 48px;
    line-height: 1.15;
    color: #1b1b1b;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-subtitle {
    font-size: 20px;
    color: #667085;
    margin-bottom: 28px;
}

.product-review {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ececec;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: #ffb400;
    font-size: 15px;
}

.product-review span {
    color: #667085;
    font-size: 15px;
}

.divider {
    color: #d8d8d8;
}

.product-description {
    font-size: 16px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 35px;
}

.product-option {
    margin-bottom: 35px;
}

.product-option h5 {
    font-size: 18px;
    color: #222;
    margin-bottom: 18px;
    font-weight: 600;
}

.color-list {
    display: flex;
    align-items: center;
    gap: 14px;
}

.color {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: .35s;
}

.color:hover {
    transform: scale(1.08);
}

.color.active {
    border-color: #6CB33F;
    box-shadow: 0 0 0 5px rgba(108, 179, 63, .12);
}

.quantity-box {
    width: 170px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.quantity-box button {
    width: 55px;
    height: 58px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 26px;
    transition: .35s;
}

.quantity-box button:hover {
    background: #6CB33F;
    color: #fff;
}

.quantity-box input {
    width: 60px;
    border: none;
    outline: none;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    background: transparent;
}


.product-price del {
    color: #9b9b9b;
    font-size: 22px;
}

.discount {
    background: #ffeded;
    color: #e53935;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.product-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 34px;
    background: #6CB33F;
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
}

.btn-primary:hover {
    background: #0066B3;
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    border: 2px solid #6CB33F;
    color: #6CB33F;
    text-decoration: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
}

.btn-outline:hover {
    background: #6CB33F;
    color: #fff;
}

.btn-outline i,
.btn-primary i {
    font-size: 16px;
}

@media(max-width:991px) {

    .product-title {
        font-size: 38px;
    }

    .product-subtitle {
        font-size: 18px;
    }

    .product-price h2 {
        font-size: 34px;
    }

    .product-price del {
        font-size: 18px;
    }

    .product-buttons {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

}

@media(max-width:576px) {

    .product-content {
        padding-top: 0;
    }

    .collection-tag {
        font-size: 12px;
        padding: 8px 14px;
    }

    .product-title {
        font-size: 28px;
    }

    .product-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .product-review {
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .product-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .color {
        width: 34px;
        height: 34px;
    }

    .quantity-box {
        width: 150px;
        height: 50px;
    }

    .quantity-box button {
        width: 45px;
        height: 50px;
        font-size: 22px;
    }

    .quantity-box input {
        font-size: 16px;
    }

    .product-price {
        flex-wrap: wrap;
        gap: 10px;
        margin: 30px 0;
    }

    .product-price h2 {
        font-size: 28px;
    }

    .product-price del {
        font-size: 16px;
    }

    .discount {
        font-size: 12px;
        padding: 6px 12px;
    }

    .btn-primary,
    .btn-outline {
        padding: 16px 22px;
        font-size: 15px;
    }

}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    background: #f7fbff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 30px 40px;
    margin: 20px 100px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
    transition: .35s;
}

.highlight-icon i {
    color: #0066B3;
    font-size: 24px;
}

.highlight-item h4 {
    margin: 0;
    color: #2d3748;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.highlight-item:hover .highlight-icon {
    background: #0066B3;
    transform: translateY(-4px);
}

.highlight-item:hover .highlight-icon i {
    color: #fff;
}

@media(max-width:991px) {

    .product-highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 20px;
        margin: 0 auto;
    }

}

@media(max-width:576px) {

    .product-highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 20px;
        margin: 0 auto;
    }

    .highlight-item {
        display: block;
    }

    .highlight-item h4 {
        font-size: 16px;
        margin-top: 10px;
    }

    .highlight-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .highlight-icon i {
        font-size: 20px;
    }

}

.product-info-section {
    padding: 60px 0;
    background: #fff;
}

.product-info-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
    border: 1px solid #edf0f5;
}

.product-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #edf0f5;
    padding: 0 45px;
    margin: 0;
}

.product-tabs .nav-item {
    flex: 1;
    text-align: center;
}

.product-tabs .nav-link {
    width: 100%;
    border: none;
    border-radius: 0;
    background: none;
    padding: 28px 15px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    position: relative;
    transition: .35s;
}

.product-tabs .nav-link:hover {
    color: #0066B3;
}

.product-tabs .nav-link.active {
    color: #0066B3;
    background: transparent;
}

.product-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #0066B3;
    border-radius: 30px;
}

.tab-content {
    padding: 55px;
}


.product-content p {
    font-size: 16px;
    line-height: 26px;
    color: #667085;
    margin-bottom: 20px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0;
    margin-bottom: 20px;
}

.product-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    color: #667085;
    margin-bottom: 22px;
    line-height: 1.7;
}

.product-list li:last-child {
    margin-bottom: 0;
}

.product-list i {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #63b632;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    margin-top: 4px;
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.product-image img {
    width: 100%;
    display: block;
    border-radius: 5px;
    transition: .5s;
}

.product-image:hover img {
    transform: scale(1.05);
}

.tab-pane {
    animation: fadeUp .45s;
}

@keyframes fadeUp {

    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

@media(max-width:1199px) {


    .product-content p {
        font-size: 16px;
    }

    .product-list li {
        font-size: 16px;
    }

}

@media(max-width:991px) {

    .product-tabs {
        padding: 0;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .product-tabs .nav-item {
        flex: 0 0 auto;
    }

    .product-tabs .nav-link {
        padding: 22px 28px;
        white-space: nowrap;
        font-size: 16px;
    }

    .tab-content {
        padding: 40px;
    }

    .product-image {
        margin-top: 35px;
    }


}

@media(max-width:767px) {

    .product-info-section {
        padding: 60px 0;
    }

    .tab-content {
        padding: 25px;
    }

    .product-tabs .nav-link {
        font-size: 15px;
        padding: 18px 22px;
    }

    .product-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .product-list li {
        font-size: 15px;
        margin-bottom: 16px;
        gap: 12px;
    }

    .product-list i {
        width: 20px;
        height: 20px;
        min-width: 20px;
        font-size: 9px;
    }

    .product-image {
        margin-top: 25px;
        border-radius: 16px;
    }

    .product-image img {
        border-radius: 16px;
    }

}

.product-info-card {
    transition: .35s;
}

.product-info-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, .08);
}

.product-tabs .nav-link {
    overflow: hidden;
    z-index: 1;
}

.product-tabs .nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 100%;
    background: #f5f9ff;
    transform: translate(-50%, -50%);
    transition: .35s;
    z-index: -1;
}

.product-tabs .nav-link:hover::before {
    width: 100%;
}

.product-tabs .nav-link.active::before {
    width: 100%;
}

.product-content {
    padding-right: 45px;
}


.product-content p {
    max-width: 95%;
}

.product-list li {
    transition: .35s;
}

.product-list li:hover {
    padding-left: 10px;
    color: #6CB33F;
}

.product-list li i {
    transition: .35s;
}

.product-list li:hover i {
    background: #0066B3;
    transform: rotate(360deg);
}

.product-image {
    background: #f8f9fb;
    padding: 0px;
}

.product-image::before {
    content: "";
    position: absolute;
    left: -80%;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .7),
            transparent);
    transform: skewX(-20deg);
    transition: 1s;
}

.product-image:hover::before {
    left: 150%;
}

.product-image img {
    object-fit: cover;
}

.product-image:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.tab-pane.fade {
    transition: opacity .35s ease, transform .35s ease;
}

.tab-pane.fade.show {
    opacity: 1;
    transform: translateY(0);
}

.tab-pane.fade:not(.show) {
    transform: translateY(15px);
}

.product-tabs::-webkit-scrollbar {
    height: 4px;
}

.product-tabs::-webkit-scrollbar-thumb {
    background: #6CB33F;
    border-radius: 20px;
}

.product-tabs::-webkit-scrollbar-track {
    background: #ececec;
}

@media(max-width:991px) {

    .product-content {
        padding-right: 0;
    }

    .product-content p {
        max-width: 100%;
    }

    .product-image {
        padding: 15px;
    }

}

@media(max-width:767px) {

    .product-tabs {
        justify-content: flex-start;
    }

    .product-tabs .nav-link {
        padding: 16px 20px !important;
    }


    .product-image {
        padding: 12px;
    }

}

.related-products-section {
    position: relative;
    padding: 60px 0;
    background: url(../img/insight.jpg) center top no-repeat;
    background-size: cover;
    overflow: hidden;
}

.related-products-section .container {
    max-width: 1320px;
}

.section-heading {
    margin-bottom: 55px;
}

.related-slider {
    position: relative;
}

.product-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #edf1f7;
    box-shadow: 0 15px 45px rgba(15, 23, 42, .05);
    transition: .4s;
    margin: 0px;
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #f5f7fb;
}

.product-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: .6s;
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 5px;
}

.product-content h3 a {
    color: #1554b2;
    text-decoration: none;
    transition: .3s;
}

.product-content h3 a:hover {
    color: #6CB33F;
}


.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.product-rating i {
    color: #ffb400;
    font-size: 14px;
}

.product-rating span {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #667085;
}

.product-price {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 22px;
    font-family: "Inter", sans-serif;
}

.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 40px;
    background: #0066B3;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: .35s;
    margin-top: 14px;
}

.view-btn:hover {
    background: #6CB33F;
    color: #fff;
}

.wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
    cursor: pointer;
    transition: .35s;
    z-index: 5;
}

.wishlist-btn i {
    font-size: 18px;
    color: #0066B3;
    transition: .35s;
}

.wishlist-btn:hover {
    background: #0066B3;
}

.wishlist-btn:hover i {
    color: #fff;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-card:hover .view-btn {
    background: #6CB33F;
}

.related-slider .owl-stage {
    display: flex;
}

.related-slider .owl-item {
    display: flex;
}

.related-slider .owl-item .product-card {
    width: 100%;
}

@media(max-width:1199px) {

    .section-heading h2 {
        font-size: 46px;
    }

    .product-content h3 {
        font-size: 26px;
    }

    .product-price {
        font-size: 30px;
    }

}

@media(max-width:991px) {

    .related-products-section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .product-image img {
        height: 230px;
    }

    .product-content {
        padding: 20px;
    }

}

@media(max-width:767px) {

    .related-products-section {
        padding: 20px 0;
    }

    .section-tag {
        font-size: 11px;
        padding: 6px 18px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .product-content h3 {
        font-size: 24px;
    }

    .product-price {
        font-size: 28px;
    }

    .view-btn {
        height: 50px;
        font-size: 15px;
    }

}

.related-slider .owl-nav {
    display: block !important;
    margin: 0;
}

.related-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border-radius: 50% !important;
    background: #fff !important;
    border: 2px solid #d8e8ff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    transition: .35s;
}

.related-slider .owl-nav button span {
    display: none;
}

.related-slider .owl-nav .owl-prev::before {
    content: "\f060";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: #0066B3;
}

.related-slider .owl-nav .owl-next::before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: #0066B3;
}

.related-slider .owl-nav .owl-prev {
    left: -85px;
}

.related-slider .owl-nav .owl-next {
    right: -85px;
}

.related-slider .owl-nav button:hover {
    background: #0066B3 !important;
    border-color: #0066B3 !important;
    transform: translateY(-50%) scale(1.08);
}

.related-slider .owl-nav button:hover::before {
    color: #fff;
}

.related-slider .owl-dots {
    display: none;
}

.product-image::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);
    transform: skewX(-25deg);
    transition: 1s;
    z-index: 2;
}

.product-card:hover .product-image::before {
    left: 150%;
}

.product-image::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .18),
            transparent 60%);
    opacity: 0;
    transition: .35s;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-card {
    position: relative;
}

.product-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6CB33F, #0066B3);
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
    z-index: 5;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.view-btn i {
    transition: .35s;
}

.view-btn:hover i {
    transform: translateX(6px);
}

.product-content h3 a {
    transition: .35s;
}

.product-card:hover .product-content h3 a {
    color: #0066B3;
}

.product-rating {
    transition: .35s;
}

.product-card:hover .product-rating {
    transform: translateX(4px);
}

.product-price {
    transition: .35s;
}

.product-card:hover .product-price {
    color: #0066B3;
}

.wishlist-btn {
    overflow: hidden;
}

.wishlist-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0066B3;
    left: 0;
    top: 100%;
    transition: .35s;
    z-index: -1;
}

.wishlist-btn:hover::before {
    top: 0;
}

.wishlist-btn:hover i {
    color: #fff;
}

@media(max-width:1400px) {

    .related-slider .owl-nav .owl-prev {
        left: -25px;
    }

    .related-slider .owl-nav .owl-next {
        right: -25px;
    }

}

@media(max-width:1199px) {

    .related-slider .owl-nav button {
        width: 54px;
        height: 54px;
    }

    .related-slider .owl-nav .owl-prev {
        left: -15px;
    }

    .related-slider .owl-nav .owl-next {
        right: -15px;
    }

}

@media(max-width:991px) {

    .related-slider .owl-nav {
        margin-top: 35px;
        display: flex !important;
        justify-content: center;
        gap: 18px;
    }

    .related-slider .owl-nav button {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto;
        transform: none;
    }

    .related-slider .owl-nav button:hover {
        transform: scale(1.08);
    }

}

@media(max-width:767px) {

    .related-slider .owl-nav button {
        width: 48px;
        height: 48px;
    }

    .related-slider .owl-nav .owl-prev::before,
    .related-slider .owl-nav .owl-next::before {
        font-size: 16px;
    }

    .product-image img {
        height: 220px;
    }

    .product-content {
        padding: 18px;
    }

}

.oc-benefits-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.oc-benefits-row {
    margin-top: 15px;
}

.oc-benefit-card {
    position: relative;
    text-align: center;
    padding: 10px 30px;
    height: 100%;
    transition: .35s;
}

.oc-benefit-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 160px;
    background: #e8edf4;
}

.oc-last-card::after {
    display: none;
}

.oc-benefit-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    border: 2px solid #0066B3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: .35s;
}

.oc-benefit-icon i {
    font-size: 38px;
    color: #0066B3;
    transition: .35s;
}

.oc-benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0066B3;
    margin-bottom: 10px;
}

.oc-benefit-card p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #667085;
}

.oc-benefit-card:hover {
    transform: translateY(-8px);
}

.oc-benefit-card:hover .oc-benefit-icon {
    background: #5b9a46;
    border-color: #5b9a46;
    box-shadow: 0 18px 40px rgba(21, 101, 216, .18);
}

.oc-benefit-card:hover .oc-benefit-icon i {
    color: #fff;
}

.oc-benefit-card:hover h3 {
    color: #5b9a46;
}

@media(max-width:1199px) {

    .oc-benefits-heading h2 {
        font-size: 48px;
    }

    .oc-benefit-card {
        padding: 10px 20px;
    }

}

@media(max-width:991px) {

    .oc-benefits-section {
        padding: 70px 0;
    }

    .oc-benefits-heading {
        margin-bottom: 40px;
    }

    .oc-benefits-heading h2 {
        font-size: 40px;
    }

    .oc-benefit-card {
        padding: 30px 20px;
    }

    .oc-benefit-card::after {
        display: none;
    }

    .oc-benefit-card {
        border: 1px solid #edf2f8;
        border-radius: 18px;
        margin-bottom: 24px;
    }

}

@media(max-width:767px) {

    .oc-benefits-section {
        padding: 20px 0;
    }

    .oc-benefits-heading h2 {
        font-size: 32px;
    }

    .oc-benefits-tag {
        font-size: 11px;
        padding: 7px 18px;
    }

    .oc-benefit-icon {
        width: 74px;
        height: 74px;
        margin-bottom: 20px;
    }

    .oc-benefit-icon i {
        font-size: 30px;
    }

    .oc-benefit-card h3 {
        font-size: 22px;
    }

    .oc-benefit-card p {
        font-size: 15px;
    }

}

.oc-cta-section {
    padding: 60px 0;
    background: #fff;
}

.oc-cta-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 70px 65px;
    background: url("../img/about-pg-cta.png") center center/cover no-repeat;
    z-index: 1;
}

.oc-cta-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(8, 23, 57, .94) 0%,
            rgba(8, 23, 57, .90) 35%,
            rgba(8, 23, 57, .75) 65%,
            rgba(8, 23, 57, .65) 100%);
    z-index: -1;
}

.oc-cta-content {
    max-width: 620px;
}

.oc-cta-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #edf7ea;
    color: #76B82A;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.oc-cta-content h2 {
    font-size: 45px;
    line-height: 1.08;
    font-weight: 600;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 22px;
}

.oc-cta-content h2 span {
    color: #6CB33F;
}

.oc-cta-content p {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 38px;
    max-width: 560px;
}

.oc-cta-buttons {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.oc-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 64px;
    padding: 0 42px;
    border-radius: 60px;
    background: #6CB33F;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: .35s;
}

.oc-btn-primary:hover {
    background: #fff;
    color: #1565d8;
}

.oc-btn-primary i {
    transition: .35s;
}

.oc-btn-primary:hover i {
    transform: translateX(6px);
}

.oc-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    height: 64px;
    padding: 0 42px;
    border-radius: 60px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .25);
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    transition: .35s;
}

.oc-btn-outline i {
    font-size: 24px;
    color: #6CB33F;
    transition: .35s;
}

.oc-btn-outline:hover {
    background: #fff;
    border-color: #fff;
    color: #1565d8;
}

.oc-btn-outline:hover i {
    color: #25D366;
}

.oc-cta-card {

    background: rgba(36, 47, 82, .65);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 22px;

    padding: 35px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .35);

}

.oc-cta-card ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.oc-cta-card li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    border: none;
}

.oc-list-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border: none;
    border-radius: 50%;
}

.oc-list-icon i {
    color: #fff;
    font-size: 35px;
}

.oc-list-content h5 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 6px;
}

.oc-list-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
}

@media(max-width:1399px) {

    .oc-cta-content h2 {
        font-size: 56px;
    }

}

@media(max-width:1199px) {

    .oc-cta-wrapper {
        padding: 60px 45px;
    }

    .oc-cta-content h2 {
        font-size: 48px;
    }

    .oc-cta-content p {
        font-size: 18px;
    }

}

@media(max-width:991px) {

    .oc-cta-wrapper {
        padding: 55px 35px;
    }

    .oc-cta-content {
        margin-bottom: 50px;
    }

    .oc-cta-content h2 {
        font-size: 42px;
    }

    .oc-cta-content p {
        font-size: 17px;
        max-width: 100%;
    }

}

@media(max-width:767px) {

    .oc-cta-section {
        padding: 20px 0;
    }

    .oc-cta-wrapper {
        padding: 40px 25px;
        border-radius: 22px;
    }

    .oc-cta-tag {
        font-size: 11px;
        padding: 7px 16px;
    }

    .oc-cta-content h2 {
        font-size: 34px;
    }

    .oc-cta-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .oc-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .oc-btn-primary,
    .oc-btn-outline {
        width: 100%;
        height: 56px;
        padding: 0 25px;
        font-size: 15px;
    }

}

@keyframes ocFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.oc-cta-content {
    animation: ocFadeUp .8s ease;
}

.oc-cta-card {
    animation: ocFadeUp 1s ease;
}

.oc-btn-primary,
.oc-btn-outline {
    position: relative;
    overflow: hidden;
}

.oc-btn-primary::before,
.oc-btn-outline::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);
    transform: skewX(-25deg);
    transition: .9s;
}

.oc-btn-primary:hover::before,
.oc-btn-outline:hover::before {
    left: 180%;
}

.oc-cta-wrapper::after {
    content: "";
    position: absolute;
    top: -30%;
    left: -10%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(108, 179, 63, .08);
    filter: blur(80px);
    pointer-events: none;
}

.oc-list-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }

}

.oc-cta-card:hover {
    transform: translateY(-8px);
    transition: .4s;
}

.oc-cta-wrapper:hover .oc-cta-card {
    box-shadow: 0 35px 80px rgba(0, 0, 0, .25);
}

.oc-cta-wrapper {
    position: relative;
}

.oc-cta-content {
    position: relative;
    z-index: 2;
}

.oc-cta-card {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 430px;
    margin-left: auto;
}

@media(min-width:992px) {

    .oc-cta-wrapper .row {
        align-items: center;
    }

    .oc-cta-wrapper .col-lg-7 {
        padding-right: 70px;
    }

    .oc-cta-wrapper .col-lg-5 {
        display: flex;
        justify-content: flex-end;
    }

}

.of-awards-section {
    position: relative;
    padding: 60px 0;
    background: url(../img/award-bg.png) center top no-repeat;
    background-size: cover;
    overflow: hidden;
}

.of-awards-section::before {
    content: "";
    position: absolute;
    left: -120px;
    top: 50px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #dff3d9 0%, transparent 70%);
    opacity: .45;
    pointer-events: none;
}

.of-awards-content {
    position: relative;
    z-index: 2;
}

.of-awards-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: #eef8e8;
    border: 1px solid #d6eec7;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #4d9636;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 25px;
}

.of-awards-badge i {
    font-size: 15px;
}

.of-awards-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #0066B3;
    margin-bottom: 25px;
}

.of-awards-title span {
    display: block;
    color: #65b548;
}

.of-awards-title strong {
    color: #65b548;
    font-weight: 800;
}

.of-awards-subtitle {
    font-size: 18px;
    line-height: 1.9;
    color: #5f6874;
    margin-bottom: 30px;
    max-width: 92%;
}

.of-awards-divider {
    width: 75px;
    height: 4px;
    background: #67b64d;
    border-radius: 20px;
    margin-bottom: 35px;
}

.of-awards-stat-row {
    margin-bottom: 35px;
    row-gap: 24px;
}

.of-awards-stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 15px 45px rgba(11, 65, 133, .08);
    transition: .35s;
    height: 100%;
    border: 1px solid rgba(11, 65, 133, .05);
}

.of-awards-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 55px rgba(11, 65, 133, .16);
}

.of-awards-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #73c553, #4d9d39);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.of-awards-stat-card h3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 8px;
    color: #0066B3;
}

.of-awards-stat-card span {
    font-size: 15px;
    color: #707784;
    font-weight: 500;
}

.of-awards-description p {
    font-size: 16px;
    line-height: 26px;
}

.of-awards-description strong {
    color: #0066B3;
    font-weight: 700;
}

.of-awards-gallery {
    position: relative;
    background: linear-gradient(135deg, #0b4a8b, #08346b);
    border-radius: 35px;
    padding: 45px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(11, 74, 139, .25);
}

.of-awards-gallery::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    top: -120px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.of-awards-gallery::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: -70px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
}

.of-awards-gallery-header {
    position: relative;
    z-index: 2;
    margin-bottom: 35px;
}

.of-awards-gallery-header span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.of-awards-gallery-header h4 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.of-awards-photo-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: .4s;
    height: 100%;
}

.of-awards-photo-card:hover {
    transform: translateY(-10px);
}

.of-awards-photo {
    overflow: hidden;
}

.of-awards-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: .6s;
}

.of-awards-photo-card:hover img {
    transform: scale(1.08);
}

.of-awards-caption {
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.of-awards-caption-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6bc04d, #4b9c39);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.of-awards-caption h5 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #0066B3;
}

.of-awards-caption span {
    font-size: 14px;
    color: #6f7883;
}

.of-awards-floating-badge {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    width: 80%;
    background: #fff;
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
    z-index: 5;
}

.of-awards-floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b4a8b, #2d6eb6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.of-awards-floating-badge strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0b4a8b;
    margin-bottom: 4px;
}

.of-awards-floating-badge span {
    font-size: 14px;
    color: #6b7480;
}

@media(max-width:991px) {

    .of-awards-title {
        font-size: 42px;
    }

    .of-awards-subtitle {
        max-width: 100%;
    }

    .of-awards-gallery {
        margin-top: 40px;
        padding: 30px;
    }

    .of-awards-floating-badge {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        margin-top: 30px;
    }

}

@media(max-width:767px) {

    .of-awards-section {
        padding: 60px 0;
    }

    .of-awards-title {
        font-size: 34px;
    }

    .of-awards-subtitle {
        font-size: 16px;
    }

    .of-awards-gallery {
        padding: 25px;
        border-radius: 24px;
    }

    .of-awards-gallery-header h4 {
        font-size: 24px;
    }

    .of-awards-stat-card {
        padding: 18px;
    }

    .of-awards-icon {
        width: 58px;
        height: 58px;
        font-size: 20px;
    }

    .of-awards-stat-card h3 {
        font-size: 30px;
    }

    .of-awards-floating-badge {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 18px;
    }

}

.of-cert-section {
    position: relative;
    padding: 60px 0;
    background: url(../img/award-bg.png) center top no-repeat;
    background-size: cover;
    overflow: hidden;
}

.of-cert-section::before {
    content: "";
    position: absolute;
    left: -120px;
    top: 0;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #dff2d9 0%, transparent 70%);
    opacity: .6;
}

.of-cert-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 180px;
    height: 180px;
    background: url("../images/dots.png") no-repeat;
    opacity: .08;
}

.of-cert-content {
    position: relative;
    z-index: 2;
    padding-right: 35px;
}

.of-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: #eef8e9;
    color: #62a93d;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 28px;
}

.of-cert-badge i {
    font-size: 15px;
}

.of-cert-title {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 700;
    color: #0066B3;
    margin-bottom: 25px;
}

.of-cert-title span {
    display: block;
    color: #66b446;
}

.of-cert-line {
    width: 70px;
    height: 4px;
    background: #66b446;
    border-radius: 30px;
    margin-bottom: 30px;
}

.of-cert-text {
    font-size: 16px;
    line-height: 26px;
    color: #596270;
    margin-bottom: 20px;
}

.of-cert-feature-row {
    margin-top: 45px;
}

.of-cert-feature {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.of-cert-feature:after {
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    width: 1px;
    height: 70px;
    background: #e8e8e8;
}

.of-cert-feature:last-child:after {
    display: none;
}

.of-cert-feature-icon {
    width: 82px;
    height: 82px;
    margin: auto;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #f8fbf5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #0b4a8b;
    border: 1px solid #edf2ec;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
    transition: .35s;
}

.of-cert-feature:hover .of-cert-feature-icon {
    transform: translateY(-8px);
    background: #0b4a8b;
    color: #fff;
}

.of-cert-feature h5 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #0066B3;
}

.of-cert-feature span {
    display: block;
    margin-top: 4px;
    font-size: 16px;
    color: #555;
}

.of-cert-certificate-wrap {
    position: relative;
    padding: 25px;
}

.of-cert-frame {
    background: #0066B3;
    padding: 18px;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(11, 63, 134, .18);
    position: relative;
    overflow: hidden;
}

.of-cert-frame img {
    width: 100%;
    display: block;
    border-radius: 12px;
    background: #fff;
    transition: .5s;
}

.of-cert-frame:hover img {
    transform: scale(1.02);
}

.of-cert-shield {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #63b144;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    z-index: 5;
}

.of-cert-certificate-wrap::before {
    content: "";
    position: absolute;
    right: -40px;
    top: 60px;
    width: 180px;
    height: 180px;
    background: rgba(11, 74, 139, .05);
    border-radius: 50%;
}

.of-cert-certificate-wrap::after {
    content: "";
    position: absolute;
    left: -30px;
    bottom: -20px;
    width: 120px;
    height: 120px;
    background: rgba(102, 180, 70, .08);
    border-radius: 50%;
}

@media (max-width:1199px) {

    .of-cert-title {
        font-size: 46px;
    }

    .of-cert-text {
        font-size: 17px;
    }

    .of-cert-feature h5 {
        font-size: 20px;
    }

}

@media (max-width:991px) {

    .of-cert-section {
        padding: 60px 0;
    }

    .of-cert-content {
        padding-right: 0;
        margin-bottom: 45px;
        text-align: center;
    }

    .of-cert-line {
        margin: 0 auto 30px;
    }

    .of-cert-text {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18px;
    }

    .of-cert-feature-row {
        margin-top: 35px;
        justify-content: center;
        row-gap: 25px;
    }

    .of-cert-feature {
        padding: 0;
    }

    .of-cert-feature:after {
        display: none;
    }

    .of-cert-certificate-wrap {
        padding: 0;
        max-width: 700px;
        margin: auto;
    }

    .of-cert-shield {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

}

@media (max-width:767px) {

    .of-cert-section {
        padding: 60px 0;
    }

    .of-cert-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    .of-cert-title {
        font-size: 34px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .of-cert-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .of-cert-feature-row {
        margin-top: 30px;
    }

    .of-cert-feature {
        margin-bottom: 20px;
    }

    .of-cert-feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .of-cert-feature h5 {
        font-size: 18px;
    }

    .of-cert-feature span {
        font-size: 14px;
    }

    .of-cert-frame {
        padding: 12px;
        border-radius: 18px;
    }

    .of-cert-frame img {
        border-radius: 8px;
    }

    .of-cert-shield {
        width: 62px;
        height: 62px;
        font-size: 26px;
        top: -15px;
    }

}

@media (max-width:575px) {

    .of-cert-title {
        font-size: 30px;
    }

    .of-cert-text {
        font-size: 15px;
    }

    .of-cert-feature-row {
        row-gap: 25px;
    }

    .of-cert-feature {
        margin-bottom: 25px;
    }

    .of-cert-feature-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .of-cert-feature h5 {
        font-size: 17px;
    }

    .of-cert-feature span {
        font-size: 13px;
    }

    .of-cert-frame {
        padding: 10px;
    }

    .of-cert-certificate-wrap::before,
    .of-cert-certificate-wrap::after,
    .of-cert-section::before,
    .of-cert-section::after {
        display: none;
    }

}

.of-legal-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.of-legal-heading {
    text-align: center;
    margin-bottom: 60px;
}

.of-legal-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    color: #0066B3;
    margin-bottom: 20px;
}

.of-legal-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.of-legal-divider span {
    width: 120px;
    height: 2px;
    background: #0066B3;
    position: relative;
}

.of-legal-divider span::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #63b446;
    border-radius: 50%;
}

.of-legal-divider span:first-child::after {
    right: auto;
    left: -8px;
}

.of-legal-divider i {
    color: #63b446;
    font-size: 18px;
}

.of-legal-item {
    position: relative;
    text-align: center;
    padding: 35px 15px;
    height: 100%;
    transition: .35s;
}

.of-legal-item:hover {
    transform: translateY(-8px);
}

.of-legal-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 220px;
    background: #e7e7e7;
}

.col-lg-4:nth-child(3) .of-legal-item::after,
.col-lg-4:nth-child(6) .of-legal-item::after {
    display: none;
}

.of-legal-item::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: #e7e7e7;
}

.col-lg-4:nth-last-child(-n+3) .of-legal-item::before {
    display: none;
}

.of-legal-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 28px;
    border-radius: 50%;
    border: 2px solid #0066B3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: .35s;
}

.of-legal-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 55px;
    height: 4px;
    background: #63b446;
    border-radius: 20px;
}

.of-legal-icon i {
    font-size: 32px;
    color: #0066B3;
    transition: .35s;
}

.of-legal-item:hover .of-legal-icon {
    background: #0066B3;
    border-color: #0066B3;
}

.of-legal-item:hover .of-legal-icon i {
    color: #fff;
}

.of-legal-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #14213d;
    margin: 38px 0 0px;
    line-height: 1.3;
}

.of-legal-item p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #4f8d2c;
    line-height: 1.5;
}

@media (max-width:1199px) {

    .of-legal-title {
        font-size: 52px;
    }

    .of-legal-item {
        padding: 45px 25px;
    }

    .of-legal-item h4 {
        font-size: 28px;
    }

    .of-legal-item p {
        font-size: 20px;
    }

    .of-legal-icon {
        width: 95px;
        height: 95px;
    }

    .of-legal-icon::before {
        width: 100px;
        height: 50px;
    }

    .of-legal-icon i {
        font-size: 34px;
    }

}

@media (max-width:991px) {

    .of-legal-section {
        padding: 60px 0;
    }

    .of-legal-heading {
        margin-bottom: 45px;
    }

    .of-legal-title {
        font-size: 42px;
    }

    .of-legal-divider span {
        width: 80px;
    }

    .of-legal-item {
        padding: 40px 20px;
    }

    .of-legal-item h4 {
        font-size: 24px;
        margin-top: 32px;
    }

    .of-legal-item p {
        font-size: 18px;
    }

    .of-legal-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 24px;
    }

    .of-legal-icon::before {
        width: 96px;
        height: 48px;
    }

    .of-legal-icon i {
        font-size: 32px;
    }

    .of-legal-item::after {
        display: none;
    }

    .col-lg-4:nth-last-child(-n+3) .of-legal-item::before {
        display: block;
    }

    .col-lg-4:last-child .of-legal-item::before,
    .col-lg-4:nth-last-child(2) .of-legal-item::before {
        display: none;
    }

}

@media (max-width:767px) {

    .of-legal-title {
        font-size: 36px;
    }

    .of-legal-divider {
        gap: 12px;
    }

    .of-legal-divider span {
        width: 50px;
    }

    .of-legal-item {
        padding: 35px 15px;
    }

    .of-legal-item::before {
        display: none !important;
    }

    .of-legal-item h4 {
        font-size: 22px;
        margin: 28px 0 15px;
    }

    .of-legal-item p {
        font-size: 18px;
    }

    .of-legal-icon {
        width: 82px;
        height: 82px;
    }

    .of-legal-icon::before {
        width: 88px;
        height: 44px;
    }

    .of-legal-icon i {
        font-size: 28px;
    }

}

@media (max-width:575px) {

    .of-legal-section {
        padding: 50px 0;
    }

    .of-legal-title {
        font-size: 30px;
    }

    .of-legal-divider span {
        width: 35px;
    }

    .of-legal-item {
        padding: 30px 10px;
        margin-bottom: 20px;
    }

    .of-legal-icon {
        width: 74px;
        height: 74px;
        margin-bottom: 20px;
    }

    .of-legal-icon::before {
        width: 80px;
        height: 40px;
    }

    .of-legal-icon::after {
        width: 45px;
        bottom: -14px;
    }

    .of-legal-icon i {
        font-size: 24px;
    }

    .of-legal-item h4 {
        font-size: 20px;
        line-height: 1.35;
    }

    .of-legal-item p {
        font-size: 17px;
        line-height: 1.5;
    }

}

.of-timeline-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.of-timeline-section::before {
    content: "";
    position: absolute;
    left: -120px;
    top: 60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #eaf7e3 0%, transparent 70%);
    opacity: .6;
}

.of-timeline-section::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #edf4ff 0%, transparent 70%);
    opacity: .8;
}

.of-timeline-image {
    position: relative;
    padding: 12px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .08);
    overflow: hidden;
    transition: .4s;
}

.of-timeline-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .12);
}

.of-timeline-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.of-timeline-content {
    padding-left: 50px;
    position: relative;
    z-index: 2;
}

.of-timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: #eef8e8;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    color: #63b446;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 25px;
}

.of-timeline-badge i {
    font-size: 15px;
}

.of-timeline-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    color: #123a82;
    margin-bottom: 25px;
}

.of-timeline-title span {
    display: block;
    color: #4da53d;
}

.of-timeline-text {
    font-size: 18px;
    line-height: 1.9;
    color: #616b77;
    margin-bottom: 20px;
}

.of-timeline-text strong {
    color: #123a82;
    font-weight: 700;
}

.of-timeline-stats {
    margin-top: 40px;
    margin-bottom: 40px;
}

.of-timeline-card {
    height: 100%;
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.of-timeline-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0b4a8b, #63b446);
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s;
}

.of-timeline-card:hover::before {
    transform: scaleX(1);
}

.of-timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.of-timeline-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b4a8b, #1b66b4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: .35s;
}

.of-timeline-card:hover .of-timeline-icon {
    background: linear-gradient(135deg, #63b446, #48a138);
    transform: rotateY(180deg);
}

.of-timeline-card h3 {
    margin: 0 0 10px;
    font-size: 36px;
    font-weight: 700;
    color: #4da53d;
    line-height: 1;
}

.of-timeline-card span {
    display: block;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: #5d6673;
}

.of-timeline-btn {
    margin-top: 15px;
}

.of-timeline-btn .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 34px;
    background: linear-gradient(90deg, #4da53d, #63b446);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 60px;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(99, 180, 70, .35);
}

.of-timeline-btn .theme-btn i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #0b4a8b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: .35s;
}

.of-timeline-btn .theme-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(99, 180, 70, .45);
}

.of-timeline-btn .theme-btn:hover i {
    transform: translateX(6px);
}

.thankyou-section {
    padding: 130px 0;
    background: #fff;
}

.thankyou-box {
    max-width: 860px;
    margin: auto;
    text-align: center;
}

.success-icon {
    margin-bottom: 30px;
}

.success-icon .circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: auto;
    background: #fff;
    border: 10px solid rgba(41, 170, 70, .12);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.success-icon i {
    font-size: 40px;
    color: #4CAF50;
}

.thankyou-box h1 {
    font-size: 64px;
    font-weight: 700;
    color: #0066B3;
    margin-bottom: 10px;
}

.thankyou-box h1 span {
    color: #66B83E;
}

.thankyou-box h4 {
    font-size: 24px;
    color: #444;
    font-weight: 500;
}

.divider {
    width: 100px;
    height: 4px;
    background: #66B83E;
    margin: 30px auto;
    border-radius: 30px;
}

.thankyou-box p {
    color: #667085;
    font-size: 18px;
    line-height: 32px;
    margin: auto;
}

.thank-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #0056b3;
    color: #fff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 60px;
    margin-top: 20px;
    font-weight: 600;
    transition: .35s;
}

.thank-btn span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #0056b3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-btn:hover {
    background: #66B83E;
    transform: translateY(-4px);
    color: #fff;
}

.thank-features {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    background: #f7fbff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 22px;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.feature .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eaf3ff;
    color: #0056b3;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 34px;
}

.feature h5 {
    margin: 25px 0 15px;
    font-size: 24px;
    color: #17325C;
}

.feature p {
    color: #667085;
    line-height: 28px;
    margin: 0;
}

@media(max-width:991px) {

    .thank-features {
        grid-template-columns: 1fr;
    }

    .thankyou-box h1 {
        font-size: 46px;
    }

    .thankyou-box h4 {
        font-size: 20px;
    }

}

@media(max-width:576px) {

    .thankyou-section {
        padding: 70px 20px;
    }

    .success-icon .circle {
        width: 110px;
        height: 110px;
    }

    .success-icon i {
        font-size: 45px;
    }

    .thankyou-box h1 {
        font-size: 36px;
    }

    .thankyou-box p {
        font-size: 16px;
        line-height: 28px;
    }

}

.sofa-img {
    overflow: hidden;
}

.sofa-img img {
    transition: .4s;
    cursor: pointer;
}

.sofa-card:hover .sofa-img img {
    transform: scale(1.08);
}

/*==========================
SHOP MATERIAL CARD
==========================*/

.shop-material-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    height: 100%;
}

.shop-material-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

/*==========================
IMAGE
==========================*/

.shop-material-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.shop-material-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.shop-material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

/* Dark Overlay */

.shop-material-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    transition: .4s;
    z-index: 1;
}

/* Zoom Icon */

.shop-material-image::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.6);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    color: #0B4A8B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    opacity: 0;
    transition: .4s;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.shop-material-card:hover .shop-material-image::before {
    opacity: 1;
}

.shop-material-card:hover .shop-material-image::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.shop-material-card:hover img {
    transform: scale(1.12);
}

/*==========================
CONTENT
==========================*/

.shop-material-content {
    padding: 25px;
}

.shop-material-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.shop-material-content p {
    color: #667085;
    line-height: 1.8;
    margin-bottom: 20px;
}

.shop-material-content a {
    color: #0B4A8B;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.shop-material-content a i {
    transition: .3s;
}

.shop-material-content a:hover {
    color: #12A150;
}

.shop-material-content a:hover i {
    transform: translateX(6px);
}

/*==========================
Responsive
==========================*/

@media(max-width:991px) {

    .shop-material-image {
        height: 240px;
    }

}

@media(max-width:767px) {

    .shop-material-image {
        height: 220px;
    }

    .shop-material-content {
        padding: 20px;
    }

    .shop-material-content h4 {
        font-size: 22px;
    }

}

/*==========================
TOOLBAR
==========================*/

.toolbar button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #0B4A8B;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.toolbar button:hover {
    background: #08366a;
    transform: translateY(-3px);
}

/*==========================
Flipbook Wrapper
==========================*/

#flipbook {
    width: 100%;
    max-width: 1300px;
    height: 850px;
    margin: auto;
    background: #d9d9d9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

/*==========================
Book Page
==========================*/

.page {
    background: #fff;
    overflow: hidden;
}

.page canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/*==========================
Loading
==========================*/

.loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.loader::after {
    content: "";
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid #ddd;
    border-top-color: #0B4A8B;
    animation: spin .8s linear infinite;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}

/*==========================
Shadow
==========================*/

.stf__parent {
    background: #dfe7ef !important;
}

.stf__block {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.stf__item {
    background: #fff;
}

/*==========================
Page Number
==========================*/

.page-number {
    position: absolute;
    bottom: 12px;
    right: 18px;
    color: #667085;
    font-size: 13px;
    font-weight: 600;
}

/*==========================
Scrollbar
==========================*/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #b9b9b9;
    border-radius: 20px;
}

/*==========================
Responsive
==========================*/

@media(max-width:1200px) {

    #flipbook {
        height: 720px;
    }

}

@media(max-width:992px) {

    #flipbook {
        height: 620px;
    }

    .toolbar button {
        width: 45px;
        height: 45px;
    }

}

@media(max-width:768px) {

    #flipbook {
        height: 500px;
    }

    .toolbar {
        gap: 8px;
    }

    .toolbar button {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

}

@media(max-width:576px) {

    #flipbook {
        height: 420px;
    }

}

.flipbook-section {
    padding: 60px 0;
    background: rgb(237, 247, 234);
}

.flip-toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.flip-toolbar button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #0B4A8B;
    color: #fff;
    cursor: pointer;
    transition: .3s;
    font-size: 18px;
}

.flip-toolbar button:hover {
    background: #08386d;
}

#pageInfo {
    font-size: 16px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}

#flipbookWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

#flipbook {
    width: 1000px;
    height: 700px;
    background: #ddd;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.page {
    background: #fff;
    overflow: hidden;
}

.page canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

@media(max-width:1200px) {

    #flipbook {
        width: 900px;
        height: 650px;
    }

}

@media(max-width:992px) {

    #flipbook {
        width: 700px;
        height: 500px;
    }

}

@media(max-width:768px) {

    #flipbook {
        width: 100%;
        height: 450px;
    }

    .flip-toolbar {
        gap: 8px;
    }

    .flip-toolbar button {
        width: 42px;
        height: 42px;
    }

}

.fancybox__caption {
    text-align: center;
}

.fancybox-btn {
    display: inline-block;
    margin: 10px 5px 0;
    padding: 10px 20px;
    background: #0B4A8B;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.fancybox-btn.quote {
    background: #12A150;
}

.custom-lightbox-btns {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 99999;
}

.custom-lightbox-btns a {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-view {
    background: #0B4A8B;
    color: #fff;
}

.btn-quote {
    background: #12A150;
    color: #fff;
}

/* Normal Dropdown */

.normal-dropdown {
    position: relative;
}

.normal-dropdown>.dropdown-menu {
    min-width: 240px;
    padding: 10px 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    margin-top: 0;
}

.normal-dropdown .dropdown-item {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

.normal-dropdown .dropdown-item:hover {
    background: #5b9a46;
    color: #fff;
}

@media(min-width:1200px) {

    .normal-dropdown:hover>.dropdown-menu {
        display: block;
    }

}

.navbar .dropdown-toggle::after {
    display: none !important;
}

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle::after {
    margin-left: 0;
    vertical-align: middle;
}

.nav-link {
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    display: none !important;
}

.sticky-buttons {
    position: fixed;
    right: 0px;
    bottom: 0%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: all .4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

.sticky-btn i {
    width: 60px;
    min-width: 60px;
    text-align: center;
    font-size: 22px;
}

.sticky-btn span {
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    padding-right: 20px;
    font-weight: 600;
}

.sticky-btn:hover {
    width: 250px;
}

.sticky-btn:hover span {
    opacity: 1;
    visibility: visible;
}

.consultation {
    background: #0B4A8B;
}

.website {
    background: #12A150;
}

.blog-banner {
    padding-top: 160px;
    padding-bottom: 70px;
    position: relative;
    z-index: 1;
}

.blog-banner:before {

    position: absolute;

    content: "";

    inset: 0;

    background: rgba(8, 30, 66, .75);

    z-index: -1;

}

.breadcrumb-content {

    text-align: center;

    color: #fff;

}

.breadcrumb-content h1 {

    font-size: 44px;

    font-weight: 700;

    margin-bottom: 18px;

}

.breadcrumb-content ul {

    margin: 0;

    padding: 0;

    list-style: none;

}

.breadcrumb-content li {

    display: inline-block;

    color: #fff;

    font-size: 15px;

}

.breadcrumb-content a {

    color: #fff;

    text-decoration: none;

}


/*======================================
Section
======================================*/

.single-blog-section {

    padding: 80px 0;

}

.blog-wrapper {

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);

}


/*======================================
Image
======================================*/

.blog-image {

    position: relative;

}

.blog-image img {

    width: 100%;

    display: block;

}

.blog-tag {

    position: absolute;

    left: 30px;

    top: 30px;

    background: #7bc043;

    color: #fff;

    padding: 9px 22px;

    border-radius: 40px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .5px;

}


/*======================================
Content
======================================*/

.blog-content {

    padding: 20px;

}

.blog-meta {

    display: flex;

    gap: 30px;

    margin-bottom: 20px;

    color: #7a7a7a;

    font-size: 15px;

}

.blog-meta i {

    color: #7bc043;

    margin-right: 6px;

}

.blog-content h2 {

    font-size: 42px;
    font-weight: 500;
    color: #0066B3;
    line-height: 1.2;

}

.blog-intro {

    font-size: 16px;

    color: #667085;

    margin-bottom: 35px;

}

.blog-content hr {

    margin: 20px 0;

    opacity: .12;

}

.blog-content h3 {
    color: #76B82A;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 28px;

}

.blog-content p {

    color: #667085;

    font-size: 16px;

}

.blog-content img {

    margin: 30px 0;

    border-radius: 15px;

}


/*======================================
Material Cards
======================================*/

.material-row {

    margin-top: 35px;

}

.material-card {

    background: #fff;

    border: 1px solid #e8edf3;

    border-radius: 18px;

    padding: 30px 20px;

    text-align: center;

    transition: .4s;

    height: 100%;

}

.material-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.material-icon {

    width: 75px;

    height: 75px;

    background: #edf7ff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin: auto;

    margin-bottom: 20px;

}

.material-icon img {

    width: 38px;

    margin: 0;

}

.material-card h5 {

    font-size: 20px;

    font-weight: 600;

    margin-bottom: 10px;

    color: #0066B3;

}

.material-card p {

    font-size: 14px;

    margin: 0;

}


/*======================================
Pro Tip
======================================*/

.pro-tip {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 35px;

    background: #f7fff2;

    border: 1px solid #cde8bb;

    padding: 25px;

    border-radius: 14px;

}

.tip-icon {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #7bc043;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

}

.pro-tip h5 {

    margin-bottom: 6px;

    color: #163b67;

    font-weight: 700;

}

.pro-tip p {

    margin: 0;

}

blog-sidebar {

    position: sticky;

    top: 120px;

}

.sidebar-widget {

    background: #fff;

    border-radius: 18px;

    padding: 30px;

    margin-bottom: 30px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .07);

}

.widget-title {

    font-size: 24px;

    font-weight: 700;

    color: #0066B3;

    margin-bottom: 25px;

    position: relative;

    padding-bottom: 12px;

}

.widget-title:after {

    position: absolute;

    content: "";

    width: 55px;

    height: 3px;

    left: 0;

    bottom: 0;

    background: #7bc043;

    border-radius: 10px;

}


/*======================================
CATEGORY
======================================*/

.category-list {

    margin: 0;

    padding: 0;

    list-style: none;

}

.category-list li {

    margin-bottom: 12px;

}

.category-list li:last-child {

    margin-bottom: 0;

}

.category-list a {

    display: flex;

    justify-content: space-between;

    align-items: center;

    text-decoration: none;

    color: #444;

    padding: 14px 18px;

    background: #f7f9fc;

    border-radius: 12px;

    transition: .35s;

    font-weight: 500;

}

.category-list a:hover {

    background: #7bc043;

    color: #fff;

    transform: translateX(6px);

}

.category-list span {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff;

    color: #0066B3;

    font-size: 13px;

    font-weight: 600;

}


/*======================================
RECENT POSTS
======================================*/

.recent-post {

    margin-bottom: 20px;

}

.recent-post:last-child {

    margin-bottom: 0;

}

.recent-post a {

    display: flex;

    gap: 15px;

    align-items: center;

    text-decoration: none;

}

.recent-image {

    width: 95px;

    height: 85px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 14px;

}

.recent-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;

}

.recent-post:hover img {

    transform: scale(1.08);

}

.recent-content h6 {

    color: #0066B3;

    font-size: 16px;

    line-height: 1.5;

    margin-bottom: 6px;

    transition: .3s;

}

.recent-post:hover h6 {

    color: #7bc043;

}

.recent-content span {

    color: #777;

    font-size: 14px;

}


/*======================================
CATALOGUE CARD
======================================*/

.catalogue-card {

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    min-height: 460px;

    background: url(../img/product-bg.png) center center / cover;


    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);

}

.catalogue-card::before {

    position: absolute;

    content: "";

    inset: 0;

    background: linear-gradient(180deg,
            rgba(10, 35, 70, .25),
            rgba(10, 35, 70, .90));

}

.catalogue-overlay {

    position: relative;

    z-index: 2;

    color: #fff;

    padding: 40px 35px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    height: 100%;

}

.small-title {

    display: inline-block;

    background: rgba(255, 255, 255, .15);

    padding: 8px 18px;

    border-radius: 40px;

    font-size: 13px;

    margin-bottom: 18px;

}

.catalogue-overlay h3 {

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 18px;

}

.catalogue-overlay p {
    opacity: .9;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #ffffffcf;

}

.download-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    background: #7bc043;

    color: #fff;

    padding: 15px 28px;

    border-radius: 50px;

    font-weight: 600;

    transition: .35s;

    width: max-content;

}

.download-btn:hover {

    background: #fff;

    color: #0066B3;

}

.download-btn i {

    transition: .35s;

}

.download-btn:hover i {

    transform: translateX(5px);

}


/*======================================
GLOBAL IMAGE
======================================*/

img {

    max-width: 100%;

}


/*======================================
SELECTION
======================================*/

::selection {

    background: #7bc043;

    color: #fff;

}


/*======================================
SCROLLBAR
======================================*/

::-webkit-scrollbar {

    width: 8px;

}

::-webkit-scrollbar-thumb {

    background: #7bc043;

    border-radius: 30px;

}

::-webkit-scrollbar-track {

    background: #ececec;

}


/*======================================
RESPONSIVE
======================================*/

@media(max-width:1199px) {

    .blog-content {

        padding: 35px;

    }

    .blog-content h2 {

        font-size: 34px;

    }

    .catalogue-overlay h3 {

        font-size: 28px;

    }

}

.blog-sidebar {
    position: sticky;
    top: 110px;
}

@media(max-width:991px) {

    .single-blog-section {

        padding: 60px 0;

    }

    .blog-sidebar {

        position: relative;

        top: 0;

        margin-top: 50px;

    }

    .blog-content {

        padding: 30px;

    }

    .material-card {

        margin-bottom: 25px;

    }

    .catalogue-card {

        min-height: 380px;

    }

}

@media(max-width:767px) {

    .blog-banner {

        padding: 70px 0;

    }

    .breadcrumb-content h1 {

        font-size: 30px;

    }

    .blog-content {

        padding: 25px;

    }

    .blog-content h2 {

        font-size: 28px;

    }

    .blog-content h3 {

        font-size: 24px;

    }

    .blog-meta {

        flex-direction: column;

        gap: 8px;

    }

    .pro-tip {

        flex-direction: column;

        text-align: center;

    }

    .tip-icon {

        margin: auto;

    }

    .sidebar-widget {

        padding: 22px;

    }

    .widget-title {

        font-size: 22px;

    }

    .catalogue-overlay {

        padding: 30px;

    }

    .catalogue-overlay h3 {

        font-size: 24px;

    }

    .download-btn {

        width: 100%;

        justify-content: center;

    }

}

@media(max-width:575px) {

    .blog-content {

        padding: 20px;

    }

    .blog-tag {

        left: 18px;

        top: 18px;

        font-size: 12px;

        padding: 7px 16px;

    }

    .category-list a {

        padding: 12px 15px;

    }

    .recent-image {

        width: 80px;

        height: 70px;

    }

}