/********** Template CSS **********/
:root {
    --primary: #0A7841;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
    --black: #1B1B1B;
    --gray: #777777;

    --green: #3dbd7a;
    --green-dark: #1e8f52;
    --green-light: #e8f7ef;
    --navy: #0d1f2d;
    --text: #2c3e35;
    --muted: #6b8278;
    --line: #c6e8d5;
    --card-bg: #ffffff;
    --bg: #f4f9f6;
}


body {
    font-family: 'Carlito', sans-serif;
    font-size: 15px;
    line-height: 1.2;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

body.page-wrapper .navbar-dark {
    position: unset;
}

body.page-wrapper .shadow-sm.navbar-dark {
    position: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}
p:last-child {
    margin-bottom: 0;
}

.gap-10 {
    gap: 10px;
}

.images-box {
    position: relative;
    overflow: hidden;
}

.images-box::before {
    content: '';
    display: block;
    padding-top: 65%;
}


.images-box a, 
.images-box .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.images-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    height: 100%;
}

.icon-box {
    display: flex;
    align-items: flex-start;
    flex-flow: row wrap;
    width: 100%;
}

.icon-box .thumb {
    position: relative;
    flex: 0 0 auto;
}

.icon-box .content {
    flex: 1 1 0px;
    padding-left: 20px;
}

/*** Button ***/

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.btn-custom {
    background: linear-gradient(156.8deg, #00C256 15%, #008A30 93.3%);
    color: white;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
}


/*** Navbar ***/

.navbar-dark {
    transition: all .5s ease;
}

.home .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.shadow-sm.navbar-dark {
    position: fixed;
    z-index: 999;
    width: 100%;
    background: white;
}

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

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    padding: 20px 0;
    color: black;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
}

.shadow-sm.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-nav {
    gap: 24px;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.box-search a {
    color: var(--gray);
}

.language-menu {
    position: relative;
}

.language-menu a {
    display: block;
    color: black;
}

.language-menu ul.dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    left: -7px;
    top: 40px;
    width: 110px;
    background: white;
    color: black;
    z-index: 99;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.language-menu:hover ul.dropdown {
    opacity: 1;
    visibility: visible;
}

.language-menu ul.dropdown a {
    padding: 5px 12px;
}

.content-bottom__offcanvas {
    margin: 12px 0 0;
    padding: 16px;
    background: white;
}

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

@media (max-width: 991px) {

    .navbar .offcanvas {
        border: 0;
        background: #ececec;
        max-width: 80%;
        z-index: 1200;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .shadow-sm.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }

    .offcanvas-header {
        padding: 10px;
        background: white;
        align-items: center;
    }

    .offcanvas-header img {
        max-height: 25px;
    }

    .search-project-frm {
        padding: 1px 10px;
        margin: 10px 0;
        width: 100%;
    }

    .search-project-frm input[type="text"] {
        border: 0;
    }

    .navbar .offcanvas-body {
        padding: 0;
    }

    .navbar .navbar-nav {
        gap: 12px;
        padding: 16px;
        background: white;
    }
}

@media (min-width: 992px) {

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .shadow-sm.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/

.header-carousel .carousel-caption {
    width: 100%;
    padding: 0;
    text-align: left;
    right: inherit;
    left: 0;
}

.header-carousel h2 {
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 0;
}

.header-carousel h2 span {
    font-size: 64px;
}

.header-carousel h2 label {
    display: block;
}

.header-carousel .carousel-indicators {
    bottom: inherit;
    top: 50%;
    transform: translateY(-50%);
    left: inherit;
    margin-right: 9%;
    margin-bottom: 0;
    margin-left: 0;
    flex-direction: column;
    gap: 20px;
}

.header-carousel .carousel-indicators button {
    width: 32px;
    height: 32px;
    position: relative;
    border-radius: 50%;
    border: 1px solid white;
    background: transparent;
    opacity: 1;
}

.header-carousel .carousel-indicators button.active {
    border-color: var(--primary);
}

.header-carousel .carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.header-carousel .carousel-indicators button.active::before {
    background: var(--primary);
}

@media (min-width: 992px) {
    
    .header-carousel .carousel-caption {
        bottom: 200px;
    }
}

@media (max-width: 991px) {

    .header-carousel .carousel-caption {
        bottom: 85px;
    }
}

@media (max-width: 767px) {

    .header-carousel .carousel-caption {
        bottom: 24px;
    }

    .header-carousel h2 {
        font-size: 24px;
    }

    .carousel-caption h2 span {
        font-size: 38px;
    }

    .header-carousel .carousel-indicators {
        right: -12px;
        gap: 6px;
    }

    .header-carousel .carousel-indicators button {
        width: 20px;
        height: 20px;
    }
}

/*** Search ***/

#searchModal .input-group input[type="text"] {
    border-color: var(--primary);
}

#searchModal .input-group input[type="text"],
#searchModal .input-group input[type="text"]::placeholder {
    color: white;
}

#searchModal .input-group input[type="text"]:focus {
    box-shadow: none;
    border-color: var(--primary);
}

#searchModal .input-group button {
    background: var(--primary);
    color: white;
    border: none;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

/*** Section Title ***/

.section-title h6 {
    color: var(--primary);
    line-height: 1;
    letter-spacing: 1.28px;
}

.section-title h1 {
    color: var(--black);
    font-size: 48px;
    line-height: 1;
    letter-spacing: .48px;
}

.section-title h1 span {
    color: transparent !important;
    -webkit-text-stroke: 1px var(--primary);
}

@media (max-width: 767px) {

    .section-title h1 {
        font-size: 32px;
    }

    .section-title h1 label {
        display: inline;
    }
}

/*** Open Letter ***/

.open-letter {
    background: var(--letter-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    max-width: 100%;
}

.letter-content {
    letter-spacing: .16px;
}

.letter-content h2 {
    font-family: 'Corinthia', cursive;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
}

.letter-content h6 {
    margin-bottom: 0;
    color: black;
}

/*** About ***/

.about {
    background: var(--about-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    max-width: 100%;
    height: 720px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.6;
}

/*** Info ***/

.info-card {
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 36.8px 0px #2A373147;
}

.info-card .thumb::before {
    padding-top: 150%;
}

.info-card .thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, #000000 100%);
}

.info-card .content {
    position: absolute;
    bottom: 24px;
    left: 0;
    max-height: 100%;
    height: 132px;
    padding: 0 20px;
}

.info-card h4 {
    line-height: 1;
    letter-spacing: .64px;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.more-button {
    position: relative;
    width: 210px;
    height: 210px;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
    margin: 0 auto;
}

.more-circle {
    width: 210px;
    height: 210px;
    box-shadow: 0 0 0 0 var(--primary);
    background-color: #2CAA6026;
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: circle-fill 2.3s infinite ease-in-out;
    animation: circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}

.content-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content-circle a {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    padding-left: 30px;
    padding-right: 30px;
}

@-webkit-keyframes circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@media (min-width: 768px) {

    .info {
        margin-top: -300px;
    }
}

@media (max-width: 991px) {

    .info-card .content {
        height: 160px;
    }

    .info-card h4 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {

    .info {
        margin-top: -300px;
    }
    .info-card .content {
        height: auto;
    }
}

/*** Products ***/

.products {
    padding-top: 80px;
}

.product-bg {
    position: absolute;
    top: 35px;
    left: 0;
}

.product-item {
    position: relative;
}

.product-image::before {
    padding-top: 60%;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000003B;
}

.product-image img {
    transition: transform 0.5s ease;
}

.product-image:hover img {
    transform: scale(1.06);
}

.product-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.product-content h2 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.product-content a {
    display: block;
    color: white;
}

@media (max-width: 991px) {

    .product-bg {
        width: 50%;
        top: 115px;
    }

    .product-content h2 {
        font-size: 24px;
        line-height: 1;
    }
}

/*** Material ***/

.material-slider {
    margin-top: 48px;
}

.material-slider .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 350px;
    height: auto;
    aspect-ratio: 16 / 9;
}

.material-image {
    margin: 20px 10px;
}

.material-image img {
    width: 100%;
}

.navigation-wrapper {
    position: absolute;
    z-index: 10;
    top: -35%;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
}

.nav-group-slider {
    max-width: 465px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}

.nav-group-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-material-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    width: 44px;
    height: 44px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.nav-material-slider:hover {
    background: var(--primary);
}

.nav-material-slider:hover i {
    color: white;
}

.swiper-button-custom-prev {
    transform: translate(-8px, 0);
}

.swiper-button-custom-prev:hover {
    transform: translate(-12px, 0);
}

.swiper-button-custom-next {
    transform: translate(8px, 0);
}

.swiper-button-custom-next:hover {
    transform: translate(12px, 0);
}

.nav-material-slider i {
    font-size: 20px;
    display: block;
}

.material-slider:hover .nav-material-slider {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 640px) {

    .navigation-wrapper {
        top: 45%;
    }

    .nav-group-slider {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1024px) {

    .nav-group-slider {
        padding-left: 32px;
        padding-right: 32px;
    }
}


/*** Miscellaneous ***/

.back-to-top {
    background: linear-gradient(156.8deg, #00C256 15%, #008A30 93.3%);
    color: white;
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Footer ***/

.footer-content h4 {
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.footer-content li:first-child p {
    font-weight: 700;
}

.footer-content li:not(:last-child) {
    margin-bottom: 12px;
}

.footer-content li i {
    background: linear-gradient(180deg, #00BD53 0%, #008F33 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-content li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-content li p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-content li:first-child p {
    font-size: 20px;
    line-height: 1.3;
    background: linear-gradient(180deg, #00BD53 0%, #008F33 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-icon h6 {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.social-icon a {
    background: linear-gradient(180deg, #2CAA60 35.58%, #0A7841 100%);
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.social-icon a:not(:last-child) {
    margin-right: 10px;
}

.footer-content ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px;
    margin-bottom: 0;
    text-transform: capitalize;
    font-size: 15px;
}

.footer .footer-content li {
    max-width: 50%;
    flex: 0 0 50%;
    margin-bottom: 0;
}

.footer-content li a {
    color: black;
    line-height: 1.7;
    display: block;
}

.footer-content a:hover {
    color: var(--primary);
}

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

.sign-form {
    background: var(--contact-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    max-width: 100%;
    width: 100%;
    padding: 33px 40px 37px;
    border-radius: 30px;
    box-shadow: 0px 0px 17.4px 0px #0A784129;
}

.form-group input {
    background-color: transparent;
    backdrop-filter: blur(4px);
    border-radius: 40px;
    border: 1px solid #ECECEC;
    color: #7D7D7DFA;
}

.form-group input::placeholder {
    color: #7D7D7DFA;   
}

.form-group input:focus {
    border-color: #ECECEC;
    box-shadow: none;
    background: transparent;
}

.form-group button {
    border: none;
}

.copyright {
    line-height: 42px;
    margin-top: 60px;
    padding: 16px 0 27px;
    border-top: #EDEDED solid 1px;
}

.copyright p {
    margin-bottom: 0;
}

.copyright a {
    color: black;
    position: relative;
}

.nav-policy {
    display: flex;
    gap: 24px;
}

.nav-policy a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -15px;
    top: 0;
}

.copyright-content a,
.copyright-content span {
    color: #828282;
}

@media (max-width: 991px) {

    .sign-form {
        padding-left: 24px;
        padding-right: 24px;
    }

    .copyright {
        line-height: 1.3;
    }
}

/* ----------------------------------- Other Pages Styles ----------------------------------- */

/*---------------------
  Product page
-----------------------*/

.carousel-product-caption h2 {
    text-transform: capitalize;
}

.carousel-product-caption h2 label {
    font-weight: 400;
}

@media (min-width: 992px) {

    .header-carousel .carousel-product-caption {
        bottom: inherit;
        top: 160px;
        left: 100px;
    }
}

.product-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0 30px;
}

.product-img::before {
    padding-top: 85%;
}

.product-content-bottom .product-image::before {
    padding-top: 75%;
}

.product-wrapper h2 {
    font-size: 100px;
    line-height: 1;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.product-wrapper h2 a {
    display: block;
    color: black;
}

.product-wrapper h4 {
    line-height: 1.2;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.product-content h4 {
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 0;
}

@media (max-width: 767px) {

    .carousel-product-caption h2 span {
        font-size: 30px;
    }

    .product-main {
        padding-top: 30px;
    }

    .product-wrapper h2 {
        font-size: 60px;
    }
}

/*---------------------
  Product detail page
-----------------------*/

.product-detail-content h1 {
    font-size: 100px;
    line-height: 1;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.product-detail-content h3 {
    font-size: 48px;
    line-height: 1;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.product-detail-content h4 {
    line-height: 1.2;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.product-detail-content p {
    margin-bottom: 0;
}

.banner-detail {
    position: relative;
}

.banner-detail .title {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    color: white;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    text-align: center;
    text-shadow: 0px 1px 22.7px #0000004F;
}

.detail-bg {
    min-height: 450px;
}

@media (max-width: 767px) {

    .detail-bg {
        min-height: 300px;
    }

    .banner-detail .title {
        bottom: 80px;
        font-size: 33px;
    }
}

@media (min-width: 992px) {

    .number.left {
        margin-left: -100px;
    }
}

@media (min-width: 768px) {

    .feature-list {
        width: 90%;
    }
}

.feature-list {
    position: relative;
    z-index: 1;
    margin: -75px auto 0;
}

.feature-content p {
    margin-bottom: 0;
}

.detail-image {
    position: relative;
    z-index: 1;
}

.detail-content {
    position: relative;
}
.detail-content::before{
    content: attr(data-number);
    display: inline-block;
    color: #F6F6F6;
    font-weight: 900;
    font-size: 22em;
    line-height: .9;
}

.content-inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 37px;
}

.content-inner h2 {
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.28px;
}

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

.detail-grid {
    background: #F6F6F6;
    padding-top: 70px;
}

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

.detail-item {
    grid-column: span 4;
    position: relative;
}

.detail-item.large {
    grid-column: span 6;
}

.detail-img::before {
    padding-top: 100%;
}

.detail-item.large .detail-img::before {
    padding-top: 65%;
}

.detail-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 37.09%, #000000 76.64%);
    width: 100%;
    height: 70%;
    transition: all .4s linear;
}

.detail-item:hover .detail-img::after {
    background: linear-gradient(180deg, rgba(0, 194, 86, 0) 0%, #008A30 100%);
}

.detail-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    padding: 0 24px 24px;
    max-height: 100%;
    height: 220px;
}

.detail-item.large .detail-wrapper {
    height: 160px;
    width: 100%;
}

.detail-wrapper h4 {
    letter-spacing: 1.28px;
    text-transform: uppercase;
    line-height: 1;
}

.detail-wrapper ul {
    margin: 0;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.7;
}

@media (min-width: 992px) {

    .detail-grid {
        margin-top: -75px;
    }

    .order-last .detail-content::before{
        margin-left: -100px;
    }
}

@media (max-width: 991px) {

    .detail-list {
        gap: 16px;
    }

    .detail-item {
        grid-column: span 6;
    }

    .detail-item:nth-child(3),
    .detail-item.large {
        grid-column: span 12;
    }
}

@media (max-width: 767px) {

    .detail-item {
        grid-column: span 12;
    }

    .detail-item.large .detail-img::before {
        padding-top: 75%;
    }

    .detail-wrapper,
    .detail-item.large .detail-wrapper {
        height: auto;
    }
}

/*---------------------
  About page
-----------------------*/

.about-area h1 {
    font-size: 42px;
}

.about-quality {
    background: #F5F5F5;
    margin: 30px 0;
    padding: 25px 16px;
    border-radius: 10px;
    border-left: 10px solid var(--primary);
}

.about-quality h5 {
    margin-bottom: 10px;
}

.about-quality p {
    margin-bottom: 0;
}

.about-service ul {
    line-height: 1.6;
    border-bottom: 1px solid #0D0D0D1A;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.about-service li:not(:last-child) {
    margin-bottom: 16px;
}

.vision-mission {
    background: #f9f9f9;
}

.testimonial-item {
    padding: 40px;
    margin: 24px 12px;
    box-shadow: 0px 7px 30px 0px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.testimonial-slider .testimonial-item img {
    width: auto;
}

.testimonial-item > p {
    font-size: 16px;
    line-height: 1.5;
    font-style: italic;
}

.testimonial-item > p span {
    color: var(--secondary);
}

.testimonial-description {
    position: relative;
}
.testimonial-description * {
    display: inline;
}
.testimonial-description:before {
 content: "“";   
 display: inline;
 color: var(--secondary);
}
.testimonial-description:after {
 content: "”";   
 display: inline;
 color: var(--secondary);
}
.testimonial-content p {
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1.6;
    color: #616B79;
}

.testimonial-content i {
    color: #858585;
}
.testimonial-content i.active {
    color: var(--primary);
    font-size: 14px;
}

.testimonial-slider .owl-prev, 
.testimonial-slider .owl-next {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}

.testimonial-slider:hover .owl-prev, 
.testimonial-slider:hover .owl-next {
    visibility: visible;
    opacity: 1;
}

.testimonial-slider .owl-prev {
    left: -2%;
    right: auto;
}

.testimonial-slider .owl-next {
    right: -2%;
    left: auto;
}

/* timeline */

/* contact page */
.contact-heading {
  padding-bottom: 10px;
}

.company-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow-x: auto;
  padding: 10px;
  gap: 10px;
}

.company-contact-card {
  min-width: 270px;
  /* border: 1px solid #cfcfcf; */
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: #fff;
}

.company-contact-card:last-child {
  border-right: 0;
}

.company-contact-title {
  min-height: 44px;
  margin: 0;
  padding: 10px 12px;
  font-size: 16px;
  min-height: 54px;
}

.company-photo {
  display: flex;
  min-height: 140px;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  text-decoration: underline;
  padding: 10px;
}

.company-contact-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 12px 16px;
  font-size: 14px;
  line-height: 1.45;
}

.company-address {
  margin-bottom: 14px;
}

.company-lines {
  display: grid;
  gap: 3px;
}

.contact-page .contact-panel,
.contact-page .contact-form-card,
.contact-page .contact-map {
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
}

.contact-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.contact-page .form-control {
  min-height: 46px;
}

.contact-page textarea.form-control {
  min-height: 140px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

@media (max-width: 1199.98px) {
  .company-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-contact-card:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 767.98px) {
  .company-contact-grid {
    grid-template-columns: 1fr;
  }

  .company-contact-card {
    border: 1px solid #111;
  }

  .company-contact-card:last-child {
    border-bottom: 0;
  }
}
/* contact page */
 /* ── Timeline container ── */
  .timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
  }
 
  /* Vertical green line */
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--green) 8%, var(--green) 92%, transparent);
    transform: translateX(-50%);
  }
 
  /* ── Each milestone ── */
  .timeline .milestone {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
 
  .timeline .milestone.visible {
    opacity: 1;
    transform: translateY(0);
  }
 
  /* Alternating: odd → card on right, even → card on left */
  .timeline .milestone:nth-child(odd) .card  { grid-column: 3; grid-row: 1; }
  .timeline .milestone:nth-child(odd) .node  { grid-column: 2; grid-row: 1; }
  .timeline .milestone:nth-child(odd) .empty { grid-column: 1; grid-row: 1; }
 
  .timeline .milestone:nth-child(even) .card  { grid-column: 1; grid-row: 1; }
  .timeline .milestone:nth-child(even) .node  { grid-column: 2; grid-row: 1; }
  .timeline .milestone:nth-child(even) .empty { grid-column: 3; grid-row: 1; }
 
  /* ── Year node ── */
  .timeline .node {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
  }
 
  .timeline .node .year-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px var(--green-light), 0 8px 24px rgba(61,189,122,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
  }
 
  .timeline .node .year-badge:hover {
    transform: scale(1.08);
    box-shadow: 0 0 0 8px rgba(61,189,122,0.2), 0 12px 32px rgba(61,189,122,0.4);
  }
 
  /* ── Card ── */
  .timeline .card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 28px 28px 24px;
    box-shadow: 0 2px 0 rgba(61,189,122,0.15), 0 8px 32px rgba(13,31,45,0.08);
    border: 1px solid rgba(61,189,122,0.12);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
 
  .timeline .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 0 rgba(61,189,122,0.2), 0 16px 48px rgba(13,31,45,0.12);
  }
 
  /* Connector line from card edge to center line */
  .timeline .milestone:nth-child(odd) .card::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 2px;
    background: var(--line);
  }
 
  .timeline .milestone:nth-child(even) .card::before {
    content: '';
    position: absolute;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 2px;
    background: var(--line);
  }
 
  .timeline .card .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }
 
  .timeline .card .card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
 
  .timeline .card .card-title {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
 
  .timeline .card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
 
  .timeline .card ul li {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
  }
 
  .timeline .card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
  }
 
  .timeline .empty { /* spacer */ }
 
  /* ── Animations ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  /* ── Responsive ── */
  @media (max-width: 640px) {
    .timeline::before { left: 28px; }
 
    .timeline .milestone {
      grid-template-columns: 56px 1fr;
      grid-template-rows: auto;
    }
 
    .timeline .milestone:nth-child(odd) .node,
    .timeline .milestone:nth-child(even) .node  { grid-column: 1; grid-row: 1; }
 
    .timeline .milestone:nth-child(odd) .card,
    .timeline .milestone:nth-child(even) .card  { grid-column: 2; grid-row: 1; }
 
    .timeline .milestone:nth-child(odd) .empty,
    .timeline .milestone:nth-child(even) .empty { display: none; }
 
    .timeline .milestone:nth-child(odd) .card::before,
    .timeline .milestone:nth-child(even) .card::before {
      left: -20px; right: auto;
      width: 20px;
    }
 
    .timeline .node .year-badge { width: 56px; height: 56px; font-size: 0.85rem; }
  }
/* timeline */
