* {
    box-sizing: border-box;
}
body {
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}
a {
    text-decoration: none;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}
p {
    font-size: calc(1.3rem);
    line-height: 1.5;
}
img {max-width: 100%;}
a:focus, input:focus, button:focus {
    outline: none;
}
.text-center {
    text-align: center;
}

.main_hero {
    position: relative;
    overflow: hidden;
}

.hero_background_video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1; /* Ensure video stays behind the content */
    opacity: 30%;
}

/* Make video taller on mobile screens */
@media (max-width: 768px) {
    .hero_background_video {
        min-height: 150vh;
        height: 150vh;
    }
}

@media (max-width: 480px) {
    .hero_background_video {
        min-height: 180vh;
        height: 180vh;
    }
}

/* .container {
    position: relative;
    z-index: 2; /* Ensure content stays on top of the video 
} */


.video-container {
    position: relative;
    padding-bottom: 56.25%; /* For a 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
.btn.theme-btn {
    background: var(--primary-dark);
    border: 1px solid var(--primary-dark);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 12px 34px;
    border-radius: 25px;
    display: inline-block;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.btn.theme-btn.bordered {
    background: none;
    color: var(--primary-dark);
}
.color-black .btn.theme-btn {
    /* background: var(--white); */
    border-color: var(--light);
   
}
.color-black .btn.theme-btn.bordered {
   
    color: var(--white);
}

.btn.theme-btn-dark {
    border-color: var(--white)!important;
    border:1px solid;
    color: var(--white)!important;
    padding:8px 16px;
    border-radius: 24px;
}

.btn.theme-btn-dark:hover {
    background: var(--white)!important;
    color: var(--primary-dark)!important;
}

.btn.theme-btn-dark.bordered {
    background: none;
    color: var(--white);
}

.container {
    width: 100%;
    max-width: 1550px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.section_heading {
    font-size: calc(1.22vw + 2rem);
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 35px;
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}


.section_heading.text-center {
    max-width: 600px;
    margin: 0 auto;
}

/* body.header-active {
    overflow: hidden;
} */

.headbar {
    position: static;
    padding: 0;
}
/* .headbar .logo {
    position: absolute;
    top: 32px;
    left: 30px;
    z-index: 99;
    pointer-events: none;
} */


.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    /* Ensure header (logo) stays above sticky tab bar */
    z-index: 100;
    margin: 0;
}
.header.open {
    position: fixed;
    background: var(--white);
    height: 100%;
    z-index: 99;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}



.header.open::-webkit-scrollbar {
    display: none;
}
.color-black .header.open,
.color-dark .header.open {
    background: var(--primary-dark);
}
/*
.header.sticky {
    position: fixed;
    z-index: 99998;
}
*/
.headbar {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    padding-right: 95px;
    z-index: 99;
}
.logo .desktop-menu {
	width: 160px;
}
.logo img.mobile-menu {
    width: 32px;
}
.color-black .logo img {
    filter: brightness(100);
}
.logowhite {
	filter: invert()!important;
}

.middle-menu {
    position: absolute;
    z-index: 99;
    top: 38px;
}

.middle-menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    column-gap: 16px;
}

.middle-menu ul li {
    font-weight: 600;
    font-size: 1.2rem;
}

/* menu icon */

.navOpen {
    position: fixed;
    top: 16px;
    right: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    padding: 0 0;
    user-select: none;
    width: 32px;
    height: 50px;
    line-height: 50px;
    z-index: 99;
}

.navOpen .navicon {
    background: var(--primary-dark);
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 24px;
}

.navOpen .navicon:before,
.navOpen .navicon:after {
    background: var(--primary-dark);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.color-black .navOpen .navicon, .color-black .navOpen .navicon:before, .color-black .navOpen .navicon:after,
.color-dark .navOpen .navicon, .color-dark .navOpen .navicon:before, .color-dark .navOpen .navicon:after {
    background: var(--white);
}
.navOpen .navicon:before {
    top: 8px;
}
.navOpen .navicon:after {
    top: -8px;
}
.navOpen.active .navicon {
    background: transparent;
}
.navOpen.active .navicon:before {
    transform: rotate(-45deg);

}
.navOpen.active .navicon:after {
    transform: rotate(45deg);
}
.navOpen.active:not(.steps) .navicon:before,
.navOpen.active:not(.steps) .navicon:after {
    top: 0;
}


.nav_wraper {
    display: none;
    height: 100%;
    padding: 110px 30px 40px;
    background: var(--white);
}
.color-black .nav_wraper,
.color-dark .nav_wraper {
    background: var(--primary-dark);
}
.header.open .nav_wraper {
    display: flex;
}
.nav_wraper h4 {
    font-size: 20px;
    color: #999;
    margin: 0 0 12px;
}


.nav_wraper .leftColumn {
    width: 50%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding: 40px 0;
}
.nav_wraper ul {
    display: block;
    width: auto;
}
.menuBar ul, .socialBar ul {
    list-style: none;
}
.menuBar ul li a {
    font-size: 4vw;
    text-transform: none;
    color: var(--primary-dark);
    font-weight: 400;
    line-height: 1.4;
}
.color-black .menuBar ul li a {
    color: var(--white);
}
.socialBar ul li a {
    color: var(--primary-dark);
    font-size: 25px;
    font-weight: 600;
    line-height: 2;
    text-transform: none;
    display: inline-block;
}
.color-black .socialBar ul li a {
    color: var(--white);
}
nav.nav_wraper .contact {
    padding-top: 40px;
}
.nav_wraper .email a {
    color: var(--primary-dark);
    font-size: 28px;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-dark);
    padding: 10px 0;
}
.color-black .nav_wraper .email a {
    color: var(--white);
}
.nav_wraper .rightColumn {
    width: 50%;
    padding: 40px 0;
}

.header.open .right_action .btn {
    opacity: 0;
    visibility: hidden;
}


#canvasContainer {
    position: relative;
    width: 100%;
    height: 100vh; /* vh = viewport height. 100vh = 100% of the viewport height */
}

#canvasOne {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main_hero.fullgrid {
    height: 100vh;
}


.main_hero .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 115px;
    padding-bottom: 80px;
    z-index: 1;
}
.main_hero .herotext {
    width: 100%;
}
.main_hero .heroSlider {
    width: 100%;
}
.heroSlider .item {
	background-size: contain;
	background-repeat: no-repeat;
    height: 68vh;
	margin: 0 auto;
	background-position: center;
}

section.fullimg {
    max-height: 100vh; 
    overflow: hidden;
}

section.fullimg2 {
    max-height: 150vh; 
    overflow: hidden;
}


section.full_alignimg img {
    width: 100%;
}
.casesHome .column {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    padding: 0;
}
.casesHome .column h3 {
    font-size: 1.2vw;
}
.casesHome .column h2 {
    font-size: 2.48333vw;
    line-height: 1.2;
    margin-top: 0;
}
.parallaxBox .simpleParallax {
    width: 100%;
    height: 100%;
}
.parallaxBox img {
    max-width: 100%;
    border-radius: 16px;
}

.footer {margin-bottom: 0;}
.footer h2 {
    font-size: 4rem;
    font-weight: 500;
    margin: 0;
}
.footer .talkUs {
    font-size: 5rem;
    border-bottom: 1px solid var(--white);
    width: fit-content;
    padding-bottom: 8px;
}
.address h4 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0
}
.address p {
    color: #ccc;
    font-size: 1.3rem;
}

.main_techTop {
    width: 100%;
    
    flex-direction: row;
    align-items: center;
}

.main_techTop .container {
    padding-top: 120px;
    padding-bottom: 0px;
}

.main_techTop h1 {
    font-size: 12rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.8pt;
}

.main_techTop.small {
    min-height: 480px;
}



.main_heroTop {
    width: 100%;
    min-height: 85vh;
    flex-direction: row;
    align-items: center;
}
.main_heroTop.small {
    min-height: 60vh;
}
.main_heroTop .container {
    padding-top: 120px;
    padding-bottom: 50px;
}
.main_heroTop h3 {
    font-size: 18px;
}
.fullimg img {
    width: 100%;
    max-width: 100%;
}

.aboutContent {
    margin-top: 40px;
}

.aboutmap {
    background-image: url(/assets/images/bca-full02.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
}
.aboutImg .imgBox {
    max-height: 50vw;
    overflow: hidden;
}
.productImg .imgBox {
    max-height: 85vw;
    overflow: hidden;
}
.aboutImg .imgBox img, .productImg .imgBox img {
    width: 100%;
}
.tw_imgBox {
    margin: 60px 0;
}
.tw_imgBox img {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: block;
}
.businessInfo {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    margin-top: 80px;
}

.businessInfo .box {
    width: 50%;
    padding: 20px 0;
}
.businessInfo span {
    font-size: 20px;
    font-weight: 600;
}
.businessInfo h3 {
    font-size: 58px;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
    text-transform: none;
}


.aboutContent .top-text, .blogs .top-text {
    max-width: 1000px;
}







.postGroup {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    max-width: 1600px;
    width: 100%;
    padding: 0 20px;
    margin: 80px auto 0;
    box-sizing: border-box;
}
.postGroup .item .imgBox {
    display: block;
    width: 100%;
}

.postGroup .item .imgBox img {
    width: 100%;
}
.postGroup .item .icon {
    vertical-align: middle;
    margin-right: 12px;
}
.postGroup .item h3 {
    font-size: 18px;
}
.postGroup .item h3 a {
    color: var(--primary-dark);
    font-size: 18px;
    border: none;
}
.color-black .postGroup .item h3 a {
    color: var(--white);
}
.postGroup .item .btn {
    margin-top: 20px;
}


.casesList .section_heading {margin-bottom: 100px;}
.casesList .textBox {
    padding: 40px 0;
    text-align: center;
}

.casesList .box h3 {
    color: var(--primary-dark);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
    max-width: 440px;
    margin: 0 auto 36px;
    text-align: center;
}

.entrepreneurs .top-text {
    max-width: 1000px;
}
.entrpSlider {margin-top: 100px;}
.entrepreneurs .box {
    text-align: center;
}
.entrepreneurs .box .imgBox img {
    width: 268px;
    height: 268px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 28px;
}
.entrepreneurs .box h3 {
    font-size: 22px;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 8px;
}

.entrepreneurs .box .info {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
}

.workList h2.top-text {
    font-size: 26px;
    max-width: 820px;
    margin: 0 auto 68px;
}

.productDetail .imgBox {
    margin-bottom: 30px;
}

.productDetail .imgBox img {
    width: 100%;
}
.productDetail .btnBox {margin-top: 40px;}

.productDetail .imgGroup {
    margin-top: 60px;
}


section.footer {
	height: 102vh;
	min-height: 700px;
	max-height: 1100px;
	display: block;
}
.footer .container {
    height: 100%;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20vh 0 5vh;
}
.footer .columns2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    gap: 24px;
    width: 100%;
}
.footer .menuBar ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .menuBar ul li a {
    font-size: 20px;
    margin: 0 28px;
}
.footer .menuBar ul li a span {
    display: inline-block;
}


/*======================================================= Responsive Part
*/


@media (max-width: 1199px) {
    p {
        font-size: calc(1.3rem);
    }
    .main_hero.fullgrid {
        height: 90vh;
        margin: 0px auto;
    }
    .heroSlider .item {
        max-height: 500px;
    }
    .casesHome .desGroup {
        display: none !important;
    }
    
    .casesHome .section_heading {
        text-align: center;
    }
    .casesHome .columnGroup {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 30px;
    }
    .casesHome .column {
        padding: 30px 0;
    }
    .parallaxBox {
        order: 1;
        height: 50vw;
        max-width: 550px;
        border-radius: 16px;
        overflow: hidden;
        margin: 0 auto 22px;
    }
    .casesHome .column .textBox {
        order: 2;
        text-align: center;
        width: 100%;
    }
    .casesHome .column h3 {
        font-size: 22px;
    }
    .casesHome .column h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-top: 0;
    }
    .the_business h2 {
        font-size: 34px;
        font-weight: 600;
    }
    .casesList .column .imgBox {
        height: 50vw;
        overflow: hidden;
        border-radius: 16px;
    }
}
@media (max-width: 1024px) {
    
    .postGroup {
        grid-template-columns: 1fr 1fr;
    }
    .entrpSlider .owl-item:not(.center) {
        opacity: 0.5;
        transform: scale(0.9);
    }
    .entrepreneurs .box .imgBox img {
        width: 235px;
        height: 235px;
    }
    
}
@media (max-width: 991px) {
    
    .nav_wraper .leftColumn {
        width: 100%;
    }
    .nav_wraper .rightColumn {
        display: none;
    }
    .menuBar ul li a {
        font-size: 64px;
    }
    
}
@media (max-width: 768px) {
    
    .main_hero .container {
        padding-top: 102px;
    }
    .main_hero .herotext {
        /* order: 2; */
        margin-top: 30px;
    }
    .main_hero .heroSlider {
        order: 1;
    }
    section.split {
        margin: 0;
    }
    
    .aboutImg .imgBox, .productImg .imgBox {
        margin-bottom: 20px;
        max-height: 94vw;
        display: flex;
        align-items: center;
    }
    
    .casesList .box {
        margin-bottom: 40px;
    }
    .casesList .box .imgBox {
        max-width: 550px;
        height: 85vw;
        margin: 0 auto;
        border-radius: 16px;
        overflow: hidden;
    }
    .footer .talkUs {font-size: 4rem;}
    
    
}
@media (max-width: 767px) {
    .hide-m {display: none !important;}
    
    .navOpen {top: 26px;}
    
    .main_heroTop {
        min-height: 80vh;
    }
    .main_heroTop.small {
        min-height: 60vh;
    }
    .casesHome .columnGroup {
        grid-template-columns: 1fr;
        margin: 0 -30px;
    }
    .parallaxBox {
        height: 84vw;
    }
    
    .footer__inner {
    justify-content: center;
}
    .footer__inner__element {
        text-align: center;
    }
    .footer h2 {
        width: 100%;
        font-size: 56px;
        text-align: center;
    }
    .footer .talkUs {
        font-size: 56px;
    }
    .footer .menuBar {
        width: 100%;
        order: 1;
        text-align: center;
        margin-top: 42px;
        margin-bottom: 80px;
    }
    .footer .menuBar ul {
        justify-content: center;
        text-align: center;
    }
    .footer .menuBar ul li a {
        font-size: 0;
        margin: 0 14px;
    }
    .footer .address {
        width: 100%;
        order: 2;
        text-align: center;
    }
    
}
@media (max-width: 640px) {
    p {
        font-size: 18px;
    }
    .section_heading {
        font-size: 26px;
    }
    .section_heading br, .main_heroTop h1 br {
        display: none;
    }
    .heroSlider .item {
        height: 48vh;
    }
    .main_hero h1 {
        font-size: 40px;
        font-weight: 600;
    }
    .menuBar ul li a {
        font-size: 46px;
    }
    .nav_wraper .email a {
        font-size: 22px;
    }
    
    .main_heroTop h1 {
        font-size: 12vw;
    }
    .businessInfo .box {
        width: 100%;
        padding: 20px 0;
        text-align: center;
    }
    .aboutImg .container,
    .productImg .container,
    .full_alignimg .container {
        padding: 0;
    }
    .postGroup {
        grid-template-columns: 1fr;
    }
    .entrpSlider {
        margin: 0 -20px;
        width: calc(100% + 40px);
    }
    .businessInfo h3 {
        font-size: 45px;
    }
    
    .fullimg img {
        min-height: 300px;
        object-fit: cover;
    }
    
    
    
}

@media (min-width: 768px) {
    
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .footer .menuBar ul li a span {
        display: none;
    }
    
}
@media (min-width: 769px) {
    
    .main_hero.fullgrid {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .main_hero .container {
        align-items: start;
    }
    .main_hero .herotext {
        width: 100%;
    }

    .main_hero .herotext {
        text-align: left;
    }

    .main_hero .heroSlider {
        margin: 0px auto;
        position: relative;
        width: 50%;
        height: 100%;
    }
    .main_hero h1 {
        font-size: 5.4234vw;
        text-align: left;
        font-weight: 600;
        line-height: 120%;
    }
    .parallaxBox {
        position: relative;
        max-height: calc(100vh - 80px);
        max-width: 540px;
        margin-left: auto;
        overflow: hidden;
    }
    
    .aboutImg .container,
    .productImg .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 30px;
        grid-row-gap: 30px;
        padding-top: 130px;
    }
    
    .aboutImg .imgBox:nth-child(2n+1),
    .productImg .imgBox:nth-child(2n+1) {
        margin-top: -130px;
    }
    .top-text {
        max-width: 830px;
    }

    .casesList .column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 30px;
        grid-row-gap: 35px;
        padding-top: 40px;
    }
    
    .footer h2 {
        font-size: 5rem;
        font-weight: 700;
    }
    
}

@media (min-width: 1025px) {
    
    .entrepreneurs .owl-stage {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        width: 100% !important;
        transform: translate(0) !important;
    }
    .entrepreneurs .owl-stage .owl-item {
        width: 33.33% !important;
        padding: 50px 20px;
        margin: 0 !important;
    }
    .entrepreneurs .owl-stage .owl-item:nth-child(5n+4) {
        margin-left: 16.665% !important;
    }
    
}

@media (min-width: 1200px) {
    .container {
        padding-left: 120px;
        padding-right: 120px;
    }
/*
    .header.open .navOpen {
        right: 49px;
    }
*/
    .casesList .column {
        padding-top: 130px;
    }
    .casesHome .tabGroup {
        display: none !important;
    }
    .casesHome .mask {
        position: sticky;
        top: 0;
        margin-left: auto;
        max-width: 540px;
        width: 100%;
        min-height: 40px;
        z-index: 4;
    }
    .casesHome .mask::after, .casesHome .mask::before {
        position: absolute;
        content: "";
        background-color: var(--white);
        left: 0;
        width: 100%;
        height: 40px;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        transition: all 0.6s;
    }

    .casesHome .mask::after, .casesHome .mask::before {
        position: absolute;
        content: "";
        background-color: var(--primary);
        left: 0;
        width: 100%;
        height: 40px;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        transition: all 0.6s;
    }

    .casesHome .mask::after {
        top: calc(100vh - 40px);
    }
    .casesHome+* {
        z-index: 6;
        position: relative;
    }
    .color-black .casesHome .mask::after, .color-black .casesHome .mask::before, .black .casesHome .mask::after, .black .casesHome .mask::before {
        background-color: var(--primary-dark);
    }
    .casesHome .column {
        align-items: start;
    }
    .casesHome .column .textBox {
        padding-top: 28vh;
        height: 100vh;
        width: 50%;
    }
    .parallaxBox {
        position: sticky;
        top: 40px;
    }
    
    
    .the_business .container {
        display: flex;
        flex-direction: row;
    }
    .the_business h2 {
        width: 18%;
    }
    .the_business .content {
        width: 82%;
    }
    .casesList .column .box:nth-child(2n+1) {
        margin-top: -130px;
    }
/*
    .casesHome .column .textBox {
        position: sticky;
        top: 20px;
    }
*/
}

/* Logo Animation Styles for Header */
.logo-container {
    display: block;
    position: relative;
    width: 160px;
    height: 30px;
    overflow: hidden;
}

/* Logo theme switching - Use fill property like burger menu */
.logo-svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 333px;
    height: 50px;
    transform: scale(0.48);
    transform-origin: left top;
    transition: transform 0.3s ease;
    z-index: 101;
}

/* Default logo colors */
.logo-svg path,
.logo-svg .logo-text path,
.logo-svg .logo-symbol {
    fill: var(--primary-dark);
    transition: fill 0.3s ease;
}

/* Logo colors on dark themes - same approach as burger menu */
body.color-black .logo-svg path,
body.color-black .logo-svg .logo-text path,
body.color-black .logo-svg .logo-symbol,
body.color-dark .logo-svg path,
body.color-dark .logo-svg .logo-text path,
body.color-dark .logo-svg .logo-symbol {
    fill: var(--white);
}

/* Ensure logo container also has high z-index */
.logo {
    position: relative;
    z-index: 102;
}

/* Test SVG styling - same approach as main logo */
.test-svg rect {
    fill: var(--primary-dark);
    transition: fill 0.3s ease;
}

body.color-black .test-svg rect,
body.color-dark .test-svg rect {
    fill: var(--white);
}

/* Ensure test element has high z-index too */
.test-logo-container {
    z-index: 104 !important;
}

/* Scrolled state - hide text, show only symbol in same position */
.header.scrolled .logo-text {
    opacity: 0;
}

.header.scrolled .logo-svg {
    transform: scale(0.48) translateX(-267px);
}

/* Index page specific - sticky header with transparent background */
body.dark .header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: none !important;
    transition: all 0.3s ease;
}

body.dark .header .headbar {
    background: none !important;
}

/* Product page specific - sticky header with blur background */
body.color-light .header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--light);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Product page specific - sticky header for dark themes */
body.color-black .header,
body.color-dark .header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--primary-dark);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

body.color-light {
    padding-top: 0px;
}

body.color-black,
body.color-dark {
    padding-top: 0px;
}


@media (max-width: 768px) {
    .logo-container {
        width: 32px;
    }
    
    .logo-text {
        opacity: 0;
    }
    
    .logo-svg {
        transform: scale(0.48) translateX(-267px);
    }
}




