@font-face {
    font-family: "Switzer-medium";
    src: url("../fonts/Switzer/Switzer-Medium.ttf") format("ttf");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Switzer-Regular";
    src: url("../fonts/Switzer/Switzer-Regular.ttf") format("ttf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Switzer-light";
    src: url("../fonts/Switzer/Switzer-Light.ttf") format("ttf");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/* ---------------------------------
   CUSTOM VARIABLES 
----------------------------------*/
:root {
    --bs-primary: #ff7b00;
    --color-secondary: f78e1f;
    --bs-secondary: #1a1a1a;
    --bs-light: #f8f9fa;
    --bs-dark: #222;
    --radius: 12px;
    --transition: 0.3s ease;

    --font-h1: clamp(2rem, 6vw, 4rem);
    --font-h2: clamp(1.8rem, 5vw, 3rem);
    --font-h3: clamp(1.5rem, 4vw, 2.4rem);
    --font-h4: clamp(1.3rem, 3vw, 2rem);
    --font-h5: clamp(1.1rem, 2vw, 1.6rem);
    --font-h6: clamp(1rem, 1.5vw, 1.3rem);
    --font-p: clamp(1rem, 1vw, 1.15rem);

    --heading-font: 'Switzer-medium', sans-serif;
    --text-font: 'Switzer-Regular', sans-serif;

    --bg-main: #F8EBE1;
    --bg-second: #F8F3F0;
    --bg-third: #EEE8E2;
    --size--4rem: clamp(3rem, 2.714rem + 1.43vw, 4.429rem);

    --column-width: calc((calc(min(120rem, 100vw) - (clamp(1.25rem, 1.25rem + 0vw, 1.25rem) * 2)) - calc(.65rem * (10 - 1))) / 10 + .65rem);
    --grid-gap--main: .65rem;

    --size--1-25rem: 1.25rem;
}


html,
body {
    height: 100%;
    scroll-behavior: smooth;
    background-color: #ffffff;
    color: #222;
    font-family: var(--text-font);
}

img {
    max-width: 100%;
    display: block;
}

input,
textarea,
select {
    -webkit-text-fill-color: inherit;
    color: inherit;
}



* {
    -webkit-box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

button {
    color: inherit;
    background: none;
    border: none;
}



a,
a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: none;
}

ul li {
    list-style: none;
}

img,
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 400;
}

h1 {
    font-size: var(--font-h1);

}

h2 {
    font-size: var(--font-h2);
}

.p-indent {
    text-indent: var(--size--4rem);
}

p,
li,
a {
    font-size: var(--font-p);
    font-weight: 300;
    font-family: var(--text-font);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #f6e8dc inset;
    -webkit-text-fill-color: #000;
}


.bg-main {
    background-color: var(--bg-main);
}

.bg-second {
    background-color: var(--bg-third);
}

.bg-third {
    background-color: var(--bg-third);
}

.bg-fourth {
    background-color: #FEFFF8;
}

.color-main {
    color: var(--bs-primary);
}


/* ----header---- */

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    width: 100%;
    background: transparent;
    transition: background-color 0.3s ease;
}

header.active {
    background-color: white !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

nav .logo-wrapper {
    max-width: 130px;
}



nav .nav-links-div ul li a {
    color: white;
    position: relative;
    padding-bottom: 2px;
}

nav .nav-links-div ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav .nav-links-div ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}



.h_line {
    position: absolute;
    inset: auto 0% 0%;
    background-image: linear-gradient(to right, rgb(255, 255, 255) 1px, transparent 1px);
    background-size: 6px 1px;
    background-repeat: repeat-x;
    width: 100%;
    height: 1px;

    animation: slide 0.3s linear infinite;
}

@keyframes slide {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: 6px;
    }
}



/* Mobile Hamburger */
.mobile-menu-toggle {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 999;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    transition: all 0.35s ease;
}

/* Active State */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px);
}


/* 🔥 Convert to X */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    visibility: hidden;
    overflow: hidden;
    transition: all 0.35s ease;
}


/* Prevent background scroll when menu is open */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}


.mobile-overlay.open {
    height: 100vh;
    visibility: visible;
}

/* Menu Items */
.mobile-overlay ul {
    list-style: none;
    padding: 0;
    margin-top: 120px;
    text-align: center;
}

.mobile-overlay li {
    opacity: 0;
}

.mobile-overlay.open li {
    animation: fadeInRight 0.5s ease forwards;
}

.mobile-overlay li:nth-child(1) {
    animation-delay: 0.2s;
}

.mobile-overlay li:nth-child(2) {
    animation-delay: 0.3s;
}

.mobile-overlay li:nth-child(3) {
    animation-delay: 0.4s;
}

.mobile-overlay li:nth-child(4) {
    animation-delay: 0.5s;
}

.mobile-overlay li:nth-child(5) {
    animation-delay: 0.6s;
}

.mobile-overlay li:nth-child(6) {
    animation-delay: 0.7s;
}

.mobile-overlay a {
    color: #fff;
    font-size: 28px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    padding: 15px 0;
}

/* Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

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




/* ---- buttuon styles ----  */

.std-btn {
    clip-path: inset(0 0 0 0 round 4.375rem);
}

.std-btn_arrow {
    width: 3rem;
}

.std-btn .btn-bg {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 0.85rem;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.1, 0, 0.3, 1);
}

.std-btn:hover .btn-bg {
    transform: scale3d(1.2, 1.2, 1);
}

.std-btn .btn-bg::before,
.std-btn .btn-bg::after {
    content: "";
    position: absolute;
    background: #f2883cad;
}

.std-btn .btn-bg::before {
    width: 110%;
    height: 0;
    padding-bottom: 110%;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);
}

.std-btn {
    transition: color 0.5s cubic-bezier(0.1, 0, 0.3, 1),
        border-color 0.5s cubic-bezier(0.1, 0, 0.3, 1),
        padding 0.5s cubic-bezier(0.1, 0, 0.3, 1);
}

.std-btn:hover {
    color: #fff;
    border-color: #f2883cad;
    padding-right: 1rem;
}

.std-btn:hover .std-btn_arrow {
    width: 3rem;
}

.text-btn:hover .std-btn_arrow {
    width: 3rem;
}

.signup-submit_btn:hover {
    width: 3rem;
}

.std-btn:hover .btn-bg::before {
    transition: transform 0.5s cubic-bezier(0.1, 0, 0.3, 1);
    transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
}

.std-btn .btn-bg::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s;
}

.std-btn:hover .btn-bg::after {
    opacity: 1;
    transition-duration: 0.01s;
    transition-delay: 0.4s;
}


.std-btn {
    padding: 1.5rem 2.5rem 1.5rem 1.25rem;
    border-radius: 4.375rem;
    border-style: solid;
    border-width: 1px;
    position: relative;
    overflow: hidden;
}

.sec-3 .std-btn {
    border-color: #fff !important;
    color: #fff !important;
}

.std-btn.is-full {
    justify-content: center;
    display: flex;
}

.std-btn_arrow {
    width: 1.5rem;
    flex: none;
    justify-content: flex-end;
    height: 1rem;
    transition: width .3s;
    display: flex;
    overflow: hidden;
}

.std-btn_text {
    font-size: 0.875rem;
    font-weight: 500;
}

.std-btn_text.u-text-small {
    font-family: Switzer, sans-serif;
}

.std-btn_layout {
    grid-column-gap: 0.75rem;
    grid-row-gap: 0.75rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: relative;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}



/* SECTION TO PIN */
.banner-sec {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner-Hanime, .header-txt-banner .line {
    opacity: 0;
}

/* CLIP TARGET */
.clip-box {
    width: 100%;
    height: 100vh;
    clip-path: inset(0px 0px round 0px);
    will-change: clip-path;
    overflow: hidden;
}

.video-wrapper {
    position: absolute;
    inset: 0;
}



.video-wrapper .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}



.banner-sec1 .img-wrapper_1,
.banner-sec1 .img-wrapper_2,
.banner-sec1 .img-wrapper_3,
.banner-sec1 .img-wrapper_4 {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
}

.banner-sec1 .img-wrapper_1 {
    width: 400px;
    height: 235px;
    top: 10px;
    left: 105px;
}

.banner-sec1 .img-wrapper_2 {
    width: 290px;
    height: 220px;
    bottom: 260px;
    left: 215px;
}

.banner-sec1 .img-wrapper_3 {
    width: 400px;
    height: 235px;
    bottom: 10px;
    right: 105px;
}

.banner-sec1 .img-wrapper_4 {
    width: 290px;
    height: 220px;
    bottom: 260px;
    right: 215px;
}

@media (max-width: 768px) {
  .banner-sec1 .img-wrapper_1,
  .banner-sec1 .img-wrapper_2,
  .banner-sec1 .img-wrapper_3,
  .banner-sec1 .img-wrapper_4 {
    display: none !important;
  }
}



/* ---- cards-switch ---- */

.section-card-switch {
    background-color: #FEFFF9;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-card-switch .pin {
    height: 80vh;
    display: flex;
    align-items: center;
}

.section-card-switch .mask {
    height: 120px;
    overflow: hidden;
    position: relative;
}

.section-card-switch .track {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.section-card-switch .item {
    height: 120px;
    display: flex;
    align-items: center;
}

.section-card-switch .image-mask {
    width: 360px;
    height: 480px;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.section-card-switch .image-track img {
    width: 360px;
    height: 480px;
    object-fit: cover;
    display: block;
}

.section-card-switch .num-mask {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90px;
    overflow: hidden;
    width: 100%;
}

.section-card-switch .num {
    height: 90px;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: #fff;
}

.section-card-switch .num span {
    color: #ff7a3c;
}

.section-card-switch .text-end .item {
    justify-content: flex-end;
    text-align: right;
}

/* --- */


/* --- contact us --- */

.contact-sec1 {
    display: flex;
    justify-content: end;
    flex-direction: column;
}

.conatct-sec .img-wrapper {
    height: 500px;
}

.contact-wrapper-section {
    font-family: var(--font-family);
}

/* LEFT CONTENT */
.contact-wrapper-label {
    font-size: 14px;
    color: #D95A00;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-wrapper-text {
    font-size: 16px;
    color: #1d1d1d;
    line-height: 1.6;
}

.contact-wrapper-linkedin {
    display: inline-block;
    margin-top: 24px;
    padding: 8px 24px;
    border: 1px solid #1d1d1d;
    border-radius: 50px;
    color: #1d1d1d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-wrapper-linkedin:hover {
    background: #f68e1eb3;
    border: 1px solid #f68e1eb3;
    color: #FDF7E3;
}

/* FORM */
.contact-wrapper-form {
    padding-left: 40px;
}

.contact-wrapper-field {
    position: relative;
    margin-bottom: 40px;
}

.contact-wrapper-field label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #1d1d1d;
}

.contact-wrapper-field input,
.contact-wrapper-field select,
.contact-wrapper-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #1d1d1d;
    background: transparent;
    padding: 8px 0;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-wrapper-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%231d1d1d'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.contact-wrapper-field input:focus,
.contact-wrapper-field select:focus,
.contact-wrapper-field textarea:focus {
    border-bottom-color: #D95A00;
}

/* HOVER EFFECT */
.contact-wrapper-field:hover input,
.contact-wrapper-field:hover select,
.contact-wrapper-field:hover textarea {
    border-bottom-color: #D95A00;
}

.std-btn-contact {
    padding: 1rem 2rem 1rem 1rem !important;

}

/* MOBILE */
@media (max-width: 768px) {
    .contact-wrapper-form {
        padding-left: 0;
    }
}




/* --- resource ---- */



.blog-section-header h2 {
    margin-bottom: 8px;
}

.blog-section-header p {
    color: #666;
    max-width: 600px;
}

.blog-section-filters ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.blog-section-filters li {
    cursor: pointer;
    color: #666;
    position: relative;
}

.blog-section-filters li.active {
    font-weight: 600;
    color: #000;
}

/* CARD */
.blog-section-card {
    background: #fff;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

.blog-section-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.blog-section-img {
    position: relative;
    overflow: hidden;
}

.blog-section-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .6s ease;
}

.blog-section-card:hover img {
    transform: scale(1.08);
}

/* TAG */
.blog-section-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

/* CONTENT */
.blog-section-content {
    padding: 20px;
}

.blog-section-meta {
    font-size: 12px;
    color: #888;
}

.blog-section-content h5 {
    margin: 10px 0;
    line-height: 1.4;
}

.blog-section-content p {
    font-size: 14px;
    color: #666;
}

/* AUTHOR */
.blog-section-author {
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.blog-section-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 10px;
}

.blog-section-author span {
    font-size: 14px;
}

/* --- faq ----- */


.faq-section-wrapper {
    background: #fff;
}

.faq-section-title {
    text-align: center;
    line-height: 1.3;
    margin-bottom: 50px;
}

/* LIST */
.faq-section-item {
    font-family: var(--text-font);
    background: var(--bg-third);
    margin-bottom: 16px;
    overflow: hidden;
}


.faq-section-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 26px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-section-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(45deg);
    transition: transform .3s ease;
}

.faq-section-item.active .faq-section-icon {
    transform: rotate(-135deg);
}

.faq-section-answer {
    display: none;
    padding: 0 26px 26px;
}

.faq-section-answer p {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}



/* ___home-banner____ */


.home-banner {
    width: 100%;
    min-height: calc(100vh - 80px) !important;
    display: flex;
    justify-content: flex-start;
    align-items: end;
    position: relative;
    z-index: 2;
    color: #fff;
}




.video-wrapper {
    position: absolute;
    inset: 0;
}

.video-wrapper .overlay {
    position: absolute;
    inset: 0;
    background-color: rgb(0, 0, 0, 0.6);
}

.home-banner .content {
    max-width: 900px;
}


/* --- section2 --- */


.badge-wrapper {
    border: 1px solid #909097;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 130px;
    padding: 5px 0px;
    border-radius: 24px;
    color: #909097;
}

.badge-pad {
    max-width: 140px !important;
}

.badge-wrapper .icon-wrapper {
    width: 25px;
    height: 25px;
}

.section-2 .txt-wrapper h2 {
    font-size: 2.5rem;
}


.section-2 .inner-sec2 .img-wrapper {
    max-width: 450px;
    border: none;
    position: relative;
}

.section-2 .inner-sec2 .img-wrapper img {
    border-radius: 24px;
}

.section-2 .inner-sec2 .img-wrapper::after {
    position: absolute;
    content: " ";
    bottom: 25px;
    left: -20px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: orange;
}

.section-2 .card-about-wrapper .content-wrapper p {
    max-width: 550px;
}

.ctc-btn a {
    padding: 12px 20px;
    background-color: black;
    border-radius: 18px;
    color: white;
}

.div-btn {
    display: inline-block;
}

.div-btn a {
    background-color: var(--bs-primary) !important;
    padding: 10px 15px;
    color: white;
    border-radius: 12px;
}


.MX-W-T {
    max-width: 230px !important;
}


.b-rounded {
    border-radius: 12px;
}


/*.grid-section .grid-card {*/
/*    background-color: #F8ECE1;*/
/*    border-radius: 14px;*/
/*}*/


/*.kpi-wrapper {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*.kpi-item {*/
/*    text-align: center;*/
/*}*/

/*.kpi-item p {*/
/*    margin-top: 10px;*/
/*    font-size: 14px;*/
/*}*/



/*.kpi-circle {*/
/*    width: 110px;*/
/*    height: 110px;*/
/*    border-radius: 50%;*/
/*    background: conic-gradient(#ff7b00 0deg,*/
/*            #ff7b00 300deg,*/
/*            #fff 300deg);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.kpi-circle.small {*/
/*    background: conic-gradient(#ff7b00 0deg,*/
/*            #ff7b00 260deg,*/
/*            #fff 260deg);*/
/*}*/

/*.kpi-circle span {*/
/*    width: 85px;*/
/*    height: 85px;*/
/*    background: #F8ECE1;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-weight: 600;*/
/*}*/


/*@media (max-width: 576px) {*/
/*    .kpi-wrapper {*/
/*        align-items: flex-start;*/
/*    }*/

/*    .kpi-circle {*/
/*        width: 80px;*/
/*        height: 80px;*/
/*    }*/

/*    .kpi-circle span {*/
/*        width: 60px;*/
/*        height: 60px;*/
/*        font-size: 14px;*/
/*    }*/

/*    .info-card-2 {*/
/*        flex-direction: column;*/
/*        gap: 25px;*/
/*    }*/

/*    .info-card-3 {*/
/*        display: flex;*/
/*        flex-direction: column;*/
/*    }*/

/*    .sm-info-card {*/
/*        display: flex;*/
/*        align-items: center;*/
/*        justify-content: center;*/
/*        flex-direction: column;*/
/*    }*/
/*}*/



.grid-four-section {
    background-color: #fefff9;
}

.grid-four-section .grid-wrapper .content-wrapper .row {
    border-bottom: 1px solid #909097;
}

.grid-four-section .grid-wrapper {
    background-color: #262E31;
    color: white;
    border-radius: 24px;
    overflow: hidden;
}

.grid-four-section .img-wrapper {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.grid-four-section .img-wrapper::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 2;
}

.grid-four-section .img-wrapper .content-glassy {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    z-index:3;
    margin: 50px 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}


/* INFO CARD */
.info-card {
    display: flex;
    justify-content: space-between;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.energy-accordion {
    background-color: #E8DDD3;
    min-height: 100vh;
}

.accordion-item-custom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 32px 0;
}

.accordion-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    cursor: pointer;
}

.left {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.count {
    font-size: 2rem;
    opacity: 0.6;
    font-family: var(--text-font);
}

.accordion-header-custom h2 {
    font-size: clamp(22px, 3vw, 36px);
    margin: 0;
}

.desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.6;
}

.arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.arrow-btn:hover,
.accordion-item-custom.active .arrow-btn {
    background: #f26422;
    color: #fff;
    border-color: #f26422;
}

/* IMAGE */
.accordion-body-custom {
    margin-top: 24px;
    overflow: hidden;
    display: none;
}

.accordion-item-custom.active .accordion-body-custom {
    display: block;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transform-origin: left;
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* TAGS */
.tags {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    gap: 12px;
}

.tags span {
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 1rem;
    font-family: var(--text-font);
}



/* -- cards-home --- */

.cards-container {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    /* Changed from visible to hidden */
    scroll-behavior: smooth;
    position: relative;
    padding: 0 20px;
    width: 100%;
    /* Add this to constrain the container */
}

.card-wrapper {
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-wrapper.main-card {
    width: 900px;
    height: 580px;
    z-index: 10;
}

.card-wrapper.side-card {
    width: 220px;
    height: 580px;
    z-index: 5;
}

.card-wrapper.hidden-card {
    width: 220px;
    height: 580px;
    z-index: 1;
}

.forest-card {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
}

.forest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.card-text-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: white;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 2px;
    transform: rotate(180deg);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 40px;
    border-radius: 30px 30px 30px 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
    max-width: 550px;
    margin: 30px;
}

.card-wrapper.main-card .card-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.card-wrapper.main-card .card-overlay {
    opacity: 0;
}

.card-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.scroll-controls {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    color: #333;
}

.scroll-btn:hover {
    background: #333;
    color: white;
}

.scroll-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 992px) {
    .card-wrapper.main-card {
        width: 650px;
        height: 480px;
    }

    .card-wrapper.side-card,
    .card-wrapper.hidden-card {
        width: 180px;
        height: 480px;
    }

    .card-content h2 {
        font-size: 26px;
    }

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

@media (max-width: 768px) {
    .card-wrapper.main-card {
        width: 500px;
        height: 400px;
    }

    .card-wrapper.side-card,
    .card-wrapper.hidden-card {
        width: 150px;
        height: 400px;
    }

    .card-content {
        padding: 25px;
        margin: 20px;
    }

    .card-content h2 {
        font-size: 22px;
    }

    .card-text-vertical {
        font-size: 24px;
    }
}


@media (max-width: 576px) {
    .cards-container {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        /* scroll-padding-inline: 6vw; */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .card-wrapper {
        flex: 0 0 88vw;
        height: 460px;
        scroll-snap-align: center;
        transition: transform 0.45s ease, opacity 0.45s ease;
    }

    .card-wrapper.main-card {
        transform: scale(1);
        opacity: 1;
    }

    .card-wrapper.side-card {
        transform: scale(0.88);
        opacity: 0.55;
    }

    .scroll-controls {
        display: none;
    }
}



/* --home-contact -- */

.home-contact .contact-wrapper-home {
    background-color: white;
}

.home-contact .form-home {
    padding-block: 60px;
}


@media screen and (max-width: 600px) {
    .home-contact .form-home {
        padding: 30px 0px;
    }
}

.wrapper-about-card {
    position: relative;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 50%, #f7931e 100%);
    z-index: 3;
}

/* ----- footer ------ */


.footer {
    background: radial-gradient(circle at top left, #1a1a1a, #000);
    color: #fff;
    padding: 80px 0 40px;
}

.footer small {
    opacity: 0.6;
    display: block;
    margin-bottom: 10px;
}

.footer h3 {
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.2;
}

.footer h4 {
    font-size: 22px;
}

.brand-logo {
    max-width: 180px;
}

.logo-dot {
    width: 28px;
    height: 28px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.brand-desc {
    margin: 20px 0 40px;
    opacity: 0.6;
    font-size: 14px;
}

/* NEWSLETTER */
.newsletter {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
}

.newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.2rem;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: none;
    background-color: #f26522;
    color: #fff;
    font-size: 20px;
    transform: rotate(-45deg);
    transition: transform .3s ease, background-color .3s ease;
}

.submit-btn:hover {
    transform: rotate(0deg) scale(1.1);
    background: #ff7a3c;
}

.footer-links,
input {
    font-family: var(--text-font);
}

@media (max-width: 600px) {
    .newsletter {

        gap: 0px;

    }

    .newsletter input {
        font-size: 1rem;
    }

}

/* LINKS */
.footer-links h6 {
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color .3s ease, padding-left .3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

.address {
    opacity: 0.6;
    font-size: 14px;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom .links a {
    margin-right: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
}

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

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

.social span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-left: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color .3s ease;
}

.social span:hover {
    background-color: #f26522;
}

/* ---- about page ----- */



.about-swiper-wrapper {
    border-radius: 24px;
}

/* LEFT COLUMN */
.about-left {
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-left p {
    max-width: 500px;
}

/* Pagination */
.about-pagination span {
    width: 36px;
    height: 4px;
    background: #ddd;
    border-radius: 4px;
    transition: 0.3s;
    cursor: pointer;
}

.about-pagination span.active {
    background: var(--bs-primary);
}

/* RIGHT COLUMN */
.swiper-about-section {
    height: 100%;
}

/* Slide */
.swiper-slide {
    height: auto;
}

/* Card */
.about-slide-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-slide-card p {
    flex-grow: 1;
}


.about-img {
    margin-top: 16px;
    border-radius: 18px;
    height: 400px;
    overflow: hidden;
}

.card-map-about-wrapper .icon-wrapper {
    max-width: 80px;
}

.card-map-about-wrapper {
    background-color: white;
    border-radius: 12px;
    height: 350px;

}


/* --- career ---- */

.contact-wrapper-header {
    max-width: 700px;
}


.dot-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(253, 164, 92, 0.45) 2px, transparent 2.5px),
        radial-gradient(circle, rgba(0, 0, 0, 0.06) 2px, transparent 2.5px);
    background-size: 48px 48px;
    background-position: 0 0, 24px 24px;
    animation: moveDots 18s linear infinite;
    z-index: 1;
}


@keyframes moveDots {
    from {
        background-position: 0 0, 24px 24px;
    }

    to {
        background-position: 120px 120px, 144px 144px;
    }
}

.bg-career {
    background-color: #FFF8F1;
}

.card-career-wrapper .img-wrapper {
    width: 60px;
    border-radius: 12px;
    background-color: #FFF2E5;
    padding: 10px;
    border: 1px solid #FEE4D1;
}

.card-career-wrapper p {
    max-width: 500px;
}

.carrer-bg {
    background-color: #ffffff;
}

.content-career-wrapper {
    background-color: #F9FAFB;
}

.min-width-c {
    max-width: 800px;
}


/* --- job notfi ---- */


.job-openings-section {
    background: #fff;
}

.job-title {
    font-size: 48px;
    font-weight: 500;
}

.job-accordion {
    border-top: 1px solid #d9d9d9;
}

.job-item {
    border-bottom: 1px solid #d9d9d9;
}

.job-header {
    width: 100%;
    padding: 22px 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--text-font);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.job-header:hover {
    opacity: 0.75;
}

/* Chevron icon */
.job-header .icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Rotate when open */
.job-header[aria-expanded="true"] .icon {
    transform: rotate(-135deg);
}

.job-body {
    padding: 0 0 20px 0;
    color: #555;
    max-width: 720px;
}

#jobAccordion .job-item .job-body p a {
    color: #555;
    cursor: pointer;
}


.see-all-btn {
    background: transparent;
    border: 1.5px solid #000;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Arrow */
.see-all-btn .arrow {
    transition: transform 0.3s ease;
}

/* Hover effect */
.see-all-btn:hover {
    background: #000;
    color: #fff;
}

.see-all-btn:hover .arrow {
    transform: translateX(6px);
}

/* -- about --- */
.sec-2-about {
    background: url("../images/bg-layer.png") no-repeat center center/cover;
}

.sec-2-about .content-div {
    position: relative;
}

.sec-2-about .content-div::before {
    position: absolute;
    content: " ";
    left: 20px;
    top: 85px;
    width: 2px;
    height: 90%;
    border-top-left-radius: 50%;
    background: linear-gradient(to bottom,
            rgba(255, 200, 80, 0.3) 0%,
            rgb(251, 138, 51) 100%);
}


.sec-2-about .content-div::after {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 20px;
    width: 50%;
    height: 2px;
    background: var(--bs-primary)
}



.content-2-txt {
    max-width: 900px;
}

.circle-box {
    border: 2px solid #F68C1E;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.content-line2 {
    position: relative;
}

.content-line2::before {
    content: " ";
    border-top-style: solid;
    border-top-width: 2px;
    border-top-color: #F68C1E;
    border-right-style: solid;
    border-right-width: 2px;
    border-right-color: #F68C1E;
    border-radius: 0 2rem 0 0;
    width: 5rem;
    height: 4rem;
    position: absolute;
    top: -66px;
    left: 0;

}

.about-map-sec .img_wrapper {
    filter: brightness(1.04);
}

/* --- services --- */


/* --- */

.grid-service-sec .main-heading {
    margin-bottom: 3rem;
}

.grid-service-sec .feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.grid-service-sec .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.grid-service-sec .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-service-sec .feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #e99311;
    stroke-width: 1.5;
    fill: none;
}

.grid-service-sec .feature-title {
    margin-bottom: 4px;
}

.grid-service-sec .feature-subtitle {
    color: #000;
    margin-bottom: 20px;
}

.grid-service-sec .feature-description {
    color: #666;
    line-height: 1.6;
}

/* ---- service cards----- */



.services-nav {
    padding: 20px 10px;
    border-radius: 24px;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}


.service-col-sec .services-tabs {
    padding: 80px 0;
}

.service-col-sec .services-nav .nav-link {
    background: transparent;
    color: #6b7280;
    padding: 18px 20px;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}

.service-col-sec .services-nav .nav-link:hover {
    color: #ff7b00;
}

.service-col-sec .services-nav .nav-link .dot {
    width: 8px;
    height: 8px;
    background: #ff7b00;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
}

.service-col-sec .services-nav .nav-link.active {
    color: #ff7b00;
}

.service-col-sec .services-nav .nav-link.active .dot {
    opacity: 1;
}

.service-col-sec .tab-content {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.service-col-sec .tab-content h2 {
    margin-bottom: 16px;
    color: #1f2937;
}

.service-col-sec .tab-content p {
    color: #6b7280;
    line-height: 1.7;
}

.service-col-sec .intro-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.service-col-sec .main-heading {
    margin-bottom: 30px;
    color: #333;
}

.service-col-sec .main-heading .highlight {
    color: #ff7b00;
}

.service-col-sec .description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
}

.service-col-sec .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-col-sec .feature-card {
    text-align: left;
}

.service-col-sec .feature-icon {
    margin-bottom: 20px;
    color: #ff7b00;
}

.service-col-sec .feature-title {
    margin-bottom: 15px;
    color: #333;
}

.service-col-sec .feature-description {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .service-col-sec .features-grid {
        grid-template-columns: 1fr;
    }

    .service-col-sec .main-heading {
        font-size: 36px;
    }

    .service-col-sec .tab-content h2 {
        font-size: 28px;
    }
    
       .grid-four-section-rev {
        display: flex;
        flex-direction: column-reverse;
        gap: 25px;
    }
}

.card-initial-service .card {
    border: none;
    border-radius: 20px;
    height: 380px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card-initial-service .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-initial-service .icon {
    width: 50px;
    height: 50px;
    margin-bottom: auto;
}

.card-initial-service .icon-1 {
    background-color: #e55a3c;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%, 0 55%, 100% 55%, 100% 100%, 0 100%);
}

.card-initial-service .icon-2 {
    background-color: #e55a3c;
    border-radius: 50%;
}

.card-initial-service .card-title {
    color: #000;
    margin-bottom: 10px;
}

.card-initial-service .card-text {
    line-height: 1.6;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}


@media screen and (max-width: 600px) {

    .sec-2-about .content-div::after,
    .content-line2::before {
        display: none;
    }

    .about-img {
        height: 250px;
    }

    .card-initial-service .card {
        height: auto;
    }

    .blog-section-filters {
        gap: 0px;
    }

    .blog-section-filters ul {
        flex-direction: column;
    }

    .card-map-about-wrapper {
        height: 250px;
    }
    
     .grid-four-section-rev {
        display: flex;
        flex-direction: column-reverse;
        gap: 25px;
    }

}