/* Google Fonts */

@import url('https://fonts.googleapis.com/css?family=Muli:300,300i,400,400i,600,600i,700,700i,800,800i,900,900i|Nunito+Sans:300,300i,400,400i,600,600i,700,700i,800,800i,900,900i|Open+Sans:400,400i,600,600i,700,700i,800,800i|Poppins:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');
/*======================================== 1. GLOBAL STYLES ==========================================*/

/* === 1.1 Body === */

html {
    font-size: 100%;
    overflow-x: hidden;
}

body {
    background-color: #fff;
    color: #61657a;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    margin: 0;
    padding: 0;
    position: relative;
}

/* ======================================== 2. Typography =========================================== */

/* === 1.2 Hyperlink === */

a {
    color: #303030;
    /*transition*/
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a,
a > * {
    cursor: pointer;
    outline: medium none;
    text-decoration: none;
}

a:focus,
a:hover {
    outline: medium none;
    text-decoration: none;
    color: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

/* === 2.1 Headings === */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #30323c;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 15px;
    padding: 0;
    transition: 0.3s
}

h1 {
    font-size: 36px;
    line-height: 52px;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    line-height: 45px;
    font-weight: 700;
}

h3 {
    font-size: 28px;
    line-height: 32px;
}

h4 {
    font-size: 24px;
    line-height: 38px;
}

h5 {
    font-size: 20px;
    line-height: 30px;
}

h6 {
    font-size: 18px;
}

/* === PARAGRAPH === */

p {
    margin: 0 0 10px;
}

b,
strong {
    font-weight: 600;
}

/* ======================================= Basic Margins Paddings ===============*/

/* === Padding Bottom === */

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pt-110 {
    padding-top: 110px;
}

/*=== Padding Top Bottom ===*/

.ptb-80 {
    padding: 80px 0;
}

.ptb-105 {
    padding: 105px 0;
}

.ptb-100 {
    padding: 100px 0;
}

.ptb-110 {
    padding: 110px 0;
}

/* Miscellaneous Paddings */

.pt110-pb50 {
    padding: 110px 0 50px;
}

.pt110-pb65 {
    padding: 110px 0 65px;
}

.pt110-pb75 {
    padding: 110px 0 75px;
}

.pt110-pb85 {
    padding: 110px 0 85px;
}

.pt110-pb95 {
    padding: 110px 0 95px;
}

.pt90-pb100 {
    padding: 90px 0 100px;
}

.pt95-pb55 {
    padding: 95px 0 55px;
}

/*Margin Bottom*/

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-65 {
    margin-bottom: 65px;
}

/*Margin Left*/

.ml-35 {
    margin-left: 35px;
}

/* === 1.5 OTHER FIXES === */

pa {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

.uppercase {
    text-transform: uppercase;
}

.floatleft {
    float: left
}

.floatright {
    float: right
}

.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px
}

.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px
}

.aligncenter {
    display: block;
    margin: 0 auto 15px
}

img {
    max-width: 100%;
    height: auto;
}

.tbl {
    display: table;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.tbl-cell {
    display: table-cell;
    vertical-align: middle;
}

/*Scroll Up*/

#scrollUp {
    background: #1da1f2 none repeat scroll 0 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    bottom: 75px;
    color: #fff;
    font-size: 32px;
    height: 38px;
    line-height: 36px;
    right: 8px;
    text-align: center;
    width: 38px;
}

/*=== Section Title ===*/

.section-title h2 {
    color: #30323c;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.contact-area .section-title h2 {
    margin-bottom: 55px;
}

/*bike section title*/

.bike-section-title h2 {
    color: #333232;
    font-size: 40px;
    font-family: 'Open Sans', sans-serif;
}

/* === Background Color === */

.bg-theme {
    background-color: #1da1f2;
}

.bg-gray {
    background-color: #f5f7f8;
}

.bg-white {
    background-color: #ffffff;
}

/*=== Background Overlay === */

.overlay-bg,
.overlay-bg-2,
.overlay-bg-3 {
    position: relative;
    overflow: hidden;
}

.overlay-bg::before,
.overlay-bg-2::before,
.overlay-bg-3::before {
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.overlay-bg::before {
    background: rgba(0, 0, 0, 0.502) none repeat scroll 0 0;
}

.overlay-bg-2::before {
    background-color: rgba(86, 24, 199, 0.9);
}

.overlay-bg-3::before {
    background-color: rgba(41, 121, 255, 0.9);
}

/*======================================== 2. HEADER AREA STYLES ==========================================*/

/*Logo*/

.logo img {
    padding: 30px 0;
    transition: 0.3s;
}

.logo {
    transition: 0.3s;
}

.headphone .scroll-header .logo {
    background: #5458f2;
    padding: 2px 15px;
}

/* Naviagaion */

.drone .main-menu-wrap {
    margin-top: 10px;
}

nav.bizes-nav {
    float: left;
    width: 100%;
}

.bizes-nav ul.menu {
    float: right;
}

.bizes-nav ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}

.bizes-nav .menu li {
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    list-style: none;
    padding: 0 10px;
}

.bizes-nav .menu li a {
    color: #666;
    display: block;
}

.bizes-nav .menu > li {
    float: left;
    padding: 0;
}

.bizes-nav ul.menu > li > a {
    color: #61657a;
    font-size: 14px;
    font-weight: 700;
    opacity: 1;
    padding: 30px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.bizes-nav ul.menu > li > a:last-child {
    padding-right: 0;
}

.bizes-nav .menu > li:last-child > ul ul {
    left: auto;
    right: 100%;
}

.bizes-nav .menu > li ul {
    background-color: #ffffff;
    border-top: 2px solid #1da1f2;
    opacity: 0;
    filter: alpha(opacity=100);    
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    padding: 15px 0;
    position: absolute;
    -webkit-transform: translate3d(0px, 10px, 0px);
    -moz-transform: translate3d(0px, 10px, 0px);
    -ms-transform: translate3d(0px, 10px, 0px);
    -o-transform: translate3d(0px, 10px, 0px);
    transform: translate3d(0px, 10px, 0px);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 200px;
    z-index: 99;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
}

.bizes-nav .menu > li > ul li a {
    padding: 5px 12px;
}

.bizes-nav .menu > li > ul li a:hover {
    background-color: #efefef;
    border-radius: 2px;
    color: #1da1f2;
}

.bizes-nav .menu > li > ul > li > ul {
    left: 100%;
    padding: 10px;
    top: 0;
}

.bizes-nav .menu > li:hover > ul {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    visibility: visible;
}

.bizes-nav .menu > li > ul > li:hover > ul {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    visibility: visible;
}

.bike .bizes-nav ul.menu > li > a {
    margin-top: 6px;
}

/* Mobile Menu */

.navigation-area .col-2.col-sm-10.col-md-9,
.navigation-area .col-7.col-sm-10.col-md-10,
.navigation-area .col-2.col-sm-2.col-lg-8 {
    position: static;
}

.mean-container .mean-bar {
    margin-top: 18px;
    position: inherit;
    margin-bottom: 12px;
}

a.meanmenu-reveal {
    background: #007bff;
    margin-top: 25px;
}

.headphone .mean-container .mean-bar {
    margin-top: 25px;
}

.mobile-menu-area .mean-nav {
    left: 0;
    position: absolute;
    top: 32px;
    z-index: 2;
}

.bike .mobile-menu-area .mean-nav {
    top: 76px;
}

.hoverboard .mobile-menu-area .mean-nav {
    top: 52px;
}

.navigation-area {
    width: 100%;
    z-index: 999;
}

/* Fixed Header */

.header-area.scroll-header {
    position: fixed;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.05);
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease 0s;
}

.scroll-header .navigation-area {
    background-color: #ffffff;
    position: fixed;
    transition: all 0.3s ease 0s;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.05);
}

.scroll-header .logo img {
    padding: 20px 0;
    transition: all 0.3s ease 0s;
}

.headphone .scroll-header .logo img {
    padding: 55px 0;
}

.scroll-header .bizes-nav ul.menu > li > a {
    padding: 25px 30px;
    color: #61657a !important;
}

.headphone .scroll-header .bizes-nav ul.menu > li > a {
    padding: 25px 0px;
}

.scroll-header .bizes-nav ul.menu > li > a:last-child {
    padding-right: 0;
}

.scroll-header a.hero-signup {
    margin-top: 45px;
    border: 1px solid #3cdecb;
}


/*=== Hero Area ===*/

.cam-hero-area {
    padding-top: 50px;
    padding-bottom: 55px;
    background: url("../img/eksternal/bg_teleskop.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* opsional: biar efek parallax */
    position: relative;
    z-index: 1;
}

.cam-hero-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* bisa atur tingkat gelapnya */
    z-index: -1;
}

.cam-hero-img img {
    border: 1px transparent;
    border-radius: 15px;
}

/* === HERO: card transparan + teks tidak terlalu kontras === */
.cam-hero-area {
  padding: 70px 0;
}

/* kotak kaca transparan */
.cam-hero-content {
  background: rgba(255, 255, 255, 0.14);        /* transparan tipis */
  backdrop-filter: blur(10px) saturate(130%);   /* efek kaca (Safari/Chrome/Edge) */
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  padding: 28px;
  display: block;
  position: relative;
  z-index: 2;
}

/* teks dibuat lebih “adem” (gelap lembut) agar tidak kontras dengan background */
.cam-hero-content h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  color: #ffffff;  /* slate-800 */
  margin-bottom: 16px;
}

.cam-hero-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;  /* slate-700 */
  margin-bottom: 22px;
}

/* tombol tetap tegas tapi tidak terlalu menyala */
.cam-hero-content .cam-btn {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  background: #1d4ed8;           /* biru lebih kalem */
  border-radius: 8px;
  padding: 12px 22px;
}
.cam-hero-content .cam-btn:hover {
  background: #0f172a;           /* slate-900 saat hover */
  color: #fff;
}

/* gambar biar rapi */
.cam-hero-img {
  text-align: center;
}
.cam-hero-img img {
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* responsif */
@media (max-width: 991px) {
  .cam-hero-content {
    margin-top: 18px;            /* geser ke bawah kalau kolom jadi stack */
    padding: 22px;
  }
  .cam-hero-content h1 {
    font-size: 30px;
    line-height: 38px;
  }
  .cam-hero-content p {
    font-size: 14px;
    line-height: 22px;
  }
}
.cam-hero-area .row {
    display: flex;
    align-items: center; /* vertikal center */
}

a.cam-btn {
    display: inline-block;
    background-color: #007bff;   /* hijau solid */
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    padding: 14px 40px;
    border-radius: 8px;          /* sudut agak tumpul, nggak terlalu bulat */
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-decoration: none;
    transition: all 0.3s ease;
}

a.cam-btn:hover,
button.widget-sbtn-cam:hover {
    background-color: #02b74d;   /* hijau sedikit lebih gelap */
    color: #fff;
    transform: translateY(-2px); /* efek hover simple */
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}


/*=== Cam Service Area ===*/

.cam-service-area {
    padding-top: 80px;
}

.cam-single-service {
    margin-bottom: 35px;
    width: 90%;
}

.cam-single-service h4 {
    color: #0e0e0e;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 25px;
}

.cam-single-service p {
    font-size: 15px;
    color: #808080;
    font-family: 'Roboto', sans-serif;
}
/*=== Cam Specification ===*/

.cam-specification-area {
    position: relative;
    overflow: hidden;
    padding-bottom: 148px;
    padding-top: 110px;
}

.cam-spe-img {
    position: absolute;
    right: 0;
    top: 120px;
    max-width: 50%;
}

.cam-spe-img img {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    display: block;
}

.cam-spec-title h2 {
    font-size: 38px;
    color: #0e0e0e;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-bottom: 62px;
    padding-top: 50px;
}

.cam-single-spec-content {
    display: inline-flex;
    margin-bottom: 28px;
}

.spec-img {
    padding-right: 42px;
}

.spec-content h4 {
    color: #0e0e0e;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.spec-content p {
    color: #808080;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 5px;
}

.spec-content {
    position: relative;
    top: -10px;
}

.cam-learn-more a {
    color: #03b0d5;
    font-weight: 500;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    border-bottom: 1px solid;
}

.wa-btn {
    background-color: #007BFF; /* biru Panonpoe */
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    display: block; /* ubah dari inline-block ke block */
    width: fit-content; /* agar lebarnya pas kontennya */
    margin: 20px auto 0 auto; /* atas 20px, kiri & kanan auto → centering */
    transition: all 0.3s ease;
    border: none;
}

.wa-btn:hover {
    background-color: #0056b3; /* biru lebih gelap untuk hover */
    color: #fff !important;
}

/*=== Cam Product Area ===*/

.cam-product-area {
    padding-bottom: 85px;
}

.cam-product-area .cam-center-title {
    margin-bottom: 98px;
}

.cam-center-title h2 {
    text-align: center;
    line-height: 50px;
    color: #0e0e0e;
    font-size: 38px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.single-cam-product {
    text-align: center;
    background-color: rgb(235, 235, 235);
    box-shadow: 0px 8px 50px 0px rgba(0, 0, 0, 0.12);
    padding: 35px 0;
    margin-bottom: 35px;
    transition: 0.3s;
}

.single-cam-product img {
    margin-bottom: 47px;
}

.single-cam-product h5 {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 50px;
}

.single-cam-product:hover,
.single-cam-product.active {
    background-color: rgb(250, 250, 250);
    box-shadow: 0px 8px 64.6px 3.4px rgba(0, 0, 0, 0.15);
}

header.header-area.primary-header.absulate-header.scroll-header {
    position: fixed;
}

.dots-img,
.hero-app-img,
.app-welcome-img,
.first-app-img,
.app-best-img,
.music-hero-product,
.cam-hero-img {
    animation-name: float-bob;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

/* Bob */

@-webkit-keyframes float-bob {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes float-bob {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

/* Bob end */

/*=== Preview Css ===*/

.preview-hero-area {
    background-image: url(../img/eksternal/bg_fix.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center center;
    padding-top: 30px;
}

.preview-hero-area:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(6, 6, 6, 0.75);
}

a.buy-btn {
    color: #eeeeee;
    background: #03b0d5;
    width: 170px;
    height: 60px;
    text-align: center;
    font-size: 18px;
    line-height: 56px;
    border-radius: 5px;
    font-weight: 600;
}

.porwe-text {
    padding: 350px 0;
}

.porwe-text h2 {
    color: #eeeeee;
    font-size: 40px;
    font-weight: 500;
    line-height: 52px;
    margin-bottom: 32px;
}

.porwe-text p {
    color: #eeeeee;
    font-size: 18px;
    line-height: 32px;
}

.prev-body-area {
    background-color: #f5f5f5;
    padding-top: 100px;
}

.prev-body-area img {
    -webkit-box-shadow: 1px 15px 32px 2px rgba(225, 225, 225, 0.78);
    box-shadow: 1px 15px 32px 2px rgba(225, 225, 225, 0.78);
    margin-bottom: 60px;
    position: relative;
    transform: scale(1);
    overflow: hidden;
    transition: 0.3s;
}

.prev-body-area img:hover {
    transform: scale(1.05);
}

.prev-body-area h3 {
    font-size: 25px;
    color: #2b2b2b;
    text-align: center;
    margin-bottom: 90px;
}

.comming {
    position: relative;
}

.commint-content {
    position: absolute;
    top: 20%;
    left: 46%;
    transform: translateX(-50%);
}

.preview-checkout-area,
.prev-freature-area {
    padding: 60px 0;
}

.preview-checkout-area h1,
.prev-freature-area h1 {
    font-size: 35px;
    color: #2b2b2b;
}

.preview-checkout-area p,
.prev-freature-area p {
    font-size: 18px;
    color: #565656;
}

.features-content-area {
    padding-bottom: 60px;
}

.prev-freure-single {
    background-color: #f7f7ff;
    border-radius: 10px;
    position: relative;
    padding-left: 190px;
    margin-bottom: 40px;
    height: 200px;
}

.prev-freure-img {
    position: absolute;
    left: 30px;
    background-color: #ffffff;
    width: 130px;
    height: 150px;
    border-radius: 10px;
    top: 25px;
}

.prev-freure-img img {
    margin-top: 31px;
    margin-left: 20px;
}

.prev-freure-content h4 {
    color: #2d2d2d;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.prev-freure-content p {
    font-size: 15px;
    letter-spacing: -1px;
    font-weight: 600;
}

.prev-freure-content {
    padding-right: 30px;
    padding-top: 30px;
}

.prev-power-area {
    background-color: #f5f5f5;
    padding: 100px 0;
}

.prev-power-area h2 {
    font-size: 35px;
    color: #2b2b2b;
    font-weight: 500;
    margin-bottom: 20px;
}

.prev-power-area h3 {
    color: #2b2b2b;
    font-weight: 400;
    margin-bottom: 40px;
}

a.btn-prev {
    background-color: #03b0d5;
    color: #eeeeee;
    border-radius: 5px;
    padding: 20px 45px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
}

.footer {
    background: #212529;
    padding: 40px 0;
}
.footer h2 {
    font-size: 15px;
    font-weight: 500;
    margin: 20px 0 0;
    color: #fff;
    font-family: 'Rubik', sans-serif !important;
}

/* ===== Header fix + Poppins utk navbar + logo 50.2 x 56 ===== */
.primary-header .navigation-area {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

/* navbar pakai Poppins saja */
.primary-header,
.primary-header .main-menu-wrap,
.primary-header .bizes-nav ul.menu > li > a {
  font-family: "Poppins", sans-serif;
}

.primary-header .navigation-area .row {
  min-height: 64px;          /* cukup untuk logo tinggi 56px */
  align-items: center;
}

/* logo fix 50.2 x 56 — override semua aturan lama */
.primary-header .logo img {
  width: 55px !important;
  height: 61px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  padding: 6px 0;
  transition: height .2s ease, padding .2s ease;
}

/* saat sticky tetap sama ukurannya */
.scroll-header .logo img {
  width: 55px !important;
  height: 61px !important;
  max-width: none !important;
  max-height: none !important;
  padding: 4px 0;
}

/* menu pakai flex (rapi kanan) */
.primary-header .main-menu-wrap nav.bizes-nav ul.menu {
  display: flex !important;
  gap: 28px;
  justify-content: flex-end;
  align-items: center;
  float: none;
  margin: 0;
  padding: 0;
}

.primary-header .bizes-nav .menu > li { float: none; padding: 0; }
.primary-header .bizes-nav ul.menu > li > a {
  padding: 0;
  line-height: 1;
  font-size: 15px;
  color: #30323c;
}
.primary-header .bizes-nav ul.menu > li > a:hover { color: #1d4ed8; }

/* responsif */
@media (max-width: 991px) {
  .primary-header .navigation-area .row { min-height: 60px; }
  /* logo TETAP 50.2x56 — tidak diubah agar konsisten */
  .primary-header .bizes-nav ul.menu { gap: 20px; }
}
@media (max-width: 767px) {
  /* jika plugin mengganti jadi mobile menu, aturan ini aman diabaikan */
}
