/*-------------------------------------------
Table of Index
-----------------------------------------------
1. Base css 
2. Header css
3. Banner css
4. About css
5. Count css
6. Services css
7. Features css
8. Testimonial css
9. Team css
10. Video css
11. Blog css
12. Projects css
13. Experience css
14. Footer css
15. Why Choose Us css
16. Page title carousel css
17. Work together css
18. Purposes css
19. FAQ css
20. Inner Page Banner css
21. Portfolio css
22. Contact css
23. Animations
24. Preloader css
----------------------------------------------- */


/* 1. Base css */

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    box-sizing: border-box;
}

:root {
    --brand-color: #FFC107;
    --black-color: #101010;
    --body-text-color: #535353;
    --body-text-color-two: #202020;
}

h1,
.h1 {
    font-size: 100px;
    margin: 0;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
}

h2,
.h2 {
    font-size: 52px;
    margin: 0;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
}

h3,
.h3 {
    font-size: 42px;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

h4,
.h4 {
    font-size: 28px;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

h5,
.h5 {
    font-size: 26px;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

h6,
.h6 {
    font-size: 22px;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

p,
.p {
    font-size: 18px;
    margin: 0;
    font-family: "Tajawal", sans-serif;
}

a {
    color: var(--black-color);
    font-family: "Space Grotesk", sans-serif;
    text-decoration: none;
    margin: 0;
    font-size: 16px;
}

a:focus {
    outline: 0px solid;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--brand-color) !important;
}

a.dark-btn:hover,
a.brand-btn:hover,
a.light-btn:hover,
a.small-light-btn:hover {
    color: #fff !important;
}

.hover-img-container {
    overflow: hidden;
    position: relative;
    width: fit-content;
    transition: all 0.3s;
}

.client-hover-img-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hover-img-container img,
.client-hover-img-container img {
    transition: all 2s;
    position: relative;
    display: inline-block;
}

.hover-img-container:hover img,
.client-hover-img-container:hover img {
    transform: scale3d(1.2, 1.2, 1.2);
    z-index: 1;
}

.hover-img-container:hover::after {
    top: 20px;
    left: 20px;
}

.hover-img-container:hover::before {
    bottom: 20px;
    right: 20px;
}

.img-no-hover-effect:hover {
    transform: scale3d(1, 1, 1);
}

button {
    outline: 0px solid;
    text-decoration: none;
}

button:focus {
    outline: 0px solid;
    text-decoration: none;
}

.outline-0 {
    outline: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.brand-text {
    color: var(--brand-color);
}

.dark-text {
    color: var(--black-color);
}

.body-text {
    color: var(--body-text-color);
}

.body-text-two {
    color: var(--body-text-color-two);
}

.section-padding-top {
    padding-top: 80px;
}

.section-padding-top-xl {
    padding-top: 160px;
}

.section-padding-bottom {
    padding-bottom: 80px;
}

.section-padding-bottom-xl {
    padding-bottom: 160px;
}


/* scrollbar design */


/* width */

::-webkit-scrollbar {
    width: 10px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #fff;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--brand-color);
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-color);
}


/* font-weight */

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}


/* z-index */

.z-index-5 {
    z-index: 5;
}

.z-index-10 {
    z-index: 10;
}

.z-index-15 {
    z-index: 15;
}

.z-index-20 {
    z-index: 20;
}

.z-index-25 {
    z-index: 25;
}


/* line height */

.line-height-primary {
    line-height: 1em;
}

.line-height-1 {
    line-height: 1.1em;
}

.line-height-2 {
    line-height: 1.2em;
}

.line-height-3 {
    line-height: 1.3em;
}

.line-height-4 {
    line-height: 1.4em;
}

.line-height-5 {
    line-height: 1.5em;
}

.line-height-6 {
    line-height: 1.6em;
}

.line-height-7 {
    line-height: 1.7em;
}

.line-height-8 {
    line-height: 1.8em;
}

.line-height-9 {
    line-height: 1.9em;
}

.line-height-10 {
    line-height: 2em;
}


/* Buttons */

.brand-btn {
    background-color: var(--brand-color);
    border: 1px solid var(--brand-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    padding: 25px 65px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}

.dark-btn {
    background-color: var(--black-color);
    border: 1px solid var(--body-text-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    padding: 15px 45px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}

.light-btn {
    background-color: #fff;
    border: 1px solid var(--brand-color);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    padding: 15px 45px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}

.small-light-btn {
    background-color: #fff;
    border: 1px solid var(--body-text-color);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    padding: 15px 16px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}

.brand-btn:hover {
    border: 1px solid var(--body-text-color);
    color: #fff;
    background-color: var(--brand-color);
}

.dark-btn:hover {
    border: 1px solid var(--black-color);
    color: #fff;
    background-color: var(--black-color);
}

.light-btn:hover {
    border: 1px solid var(--brand-color);
    color: #fff;
    background-color: #fff;
}

.small-light-btn:hover {
    border: 1px solid var(--brand-color);
    color: #fff;
    background-color: #fff;
}

.dark-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--brand-color);
    right: 100%;
    visibility: hidden;
    transition: all 0.4s;
}

.light-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--brand-color);
    right: 100%;
    visibility: hidden;
    transition: all 0.4s;
}

.small-light-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--brand-color);
    right: 100%;
    visibility: hidden;
    transition: all 0.4s;
}

.brand-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--black-color);
    right: 100%;
    visibility: hidden;
    transition: all 0.4s;
}

.dark-btn:hover::before {
    right: 0;
    visibility: visible;
}

.light-btn:hover::before {
    right: 0;
    visibility: visible;
}

.small-light-btn:hover::before {
    right: 0;
    visibility: visible;
}

.brand-btn:hover::before {
    right: 0;
    visibility: visible;
}


/* slider nav buttons */

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    transition: all 0.3s;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: var(--brand-color);
}

.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
    transition: all 0.3s;
}

.owl-carousel .owl-nav button.owl-prev:hover span,
.owl-carousel .owl-nav button.owl-next:hover span {
    color: #fff !important;
}


/* Cursor */

.cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.1s;
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--brand-color);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.15s;
}


/* Basic margin padding */

.m-0 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}

.p-0 {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}


/* Margin top */

.mt-0 {
    margin-top: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-150 {
    margin-top: 150px;
}


/* Margin right */

.mr-0 {
    margin-right: 0px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-55 {
    margin-right: 50px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-110 {
    margin-right: 110px;
}

.mr-120 {
    margin-right: 120px;
}

.mr-130 {
    margin-right: 130px;
}

.mr-140 {
    margin-right: 140px;
}

.mr-150 {
    margin-right: 150px;
}


/* Margin bottom */

.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-150 {
    margin-bottom: 150px;
}


/* Margin left */

.ml-0 {
    margin-left: 0;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-110 {
    margin-left: 110px;
}

.ml-120 {
    margin-left: 120px;
}

.ml-130 {
    margin-left: 130px;
}

.ml-140 {
    margin-left: 140px;
}

.ml-150 {
    margin-left: 150px;
}


/* Padding top */

.pt-0 {
    padding-top: 0;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-175 {
    padding-top: 175px;
}


/* Padding right */

.pr-0 {
    padding-right: 0;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-110 {
    padding-right: 110px;
}

.pr-120 {
    padding-right: 120px;
}

.pr-130 {
    padding-right: 130px;
}

.pr-140 {
    padding-right: 140px;
}

.pr-150 {
    padding-right: 150px;
}

.pr-200 {
    padding-right: 200px;
}


/* Padding bottom */

.pb-0 {
    padding-bottom: 0;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-150 {
    padding-bottom: 150px;
}


/* Padding left */

.pl-0 {
    padding-left: 0;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-110 {
    padding-left: 110px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-130 {
    padding-left: 130px;
}

.pl-140 {
    padding-left: 140px;
}

.pl-150 {
    padding-left: 150px;
}

.pl-200 {
    padding-left: 200px;
}


/* 2. Header css */

.logo-container .header-logo {
    width: 90px;
}

.offcanvas-body {
    padding: 30px 30px 30px 50px;
}

.offcanvas-header {
    padding: 30px 30px 30px 50px;
}

.desktop-menu-offcanvas .off-canvas-icon {
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.nav-menu ul {
    column-gap: 35px;
}

.nav-secondary .nav-menu ul li a {
    font-size: 16px;
    transition: all 0.3s;
    color: var(--black-color);
}

.nav-menu ul li a {
    font-size: 16px;
    transition: all 0.3s;
    color: #fff;
}

.nav-menu ul li ul li a {
    font-size: 16px;
    transition: all 0.3s;
    color: var(--black-color);
}

.desktop-menu-offcanvas ul li a {
    color: var(--black-color);
}

.nav-menu ul li a:hover {
    color: var(--brand-color);
}

.nav-menu ul li a {
    position: relative;
}

.nav-menu ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--brand-color);
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.nav-menu ul li a:hover::after {
    width: 75%;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li ul {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.176);
    opacity: 0;
    text-align: left;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 190px;
    z-index: 999;
}

.submenu-container {
    background-color: var(--orange-color);
    position: absolute;
    top: 125%;
    left: 0px;
    width: fit-content;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.nav-menu ul li ul li:first-child {
    border-top: none;
}

.nav-menu ul li ul li {
    display: block;
    margin: 0;
    padding: 12px 15px;
    border-top: 1px solid rgba(246, 138, 10, 0.3);
    transition: all 0.3s ease 0s;
}

.nav-menu li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.dark-sticky {
    background-color: var(--black-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.light-sticky {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding-bottom: 35px;
    box-shadow: 0px 0px 4px 0px #e1d7d7;
}

.accordion-menu {
    width: 100%;
    max-width: 450px;
    margin: 0px auto 20px;
    background: #fff;
    border-radius: 4px;
}

.accordion-menu li.open .dropdownlink {
    color: var(--brand-color);
}

.accordion-menu li.open .dropdownlink .fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-menu li:last-child .dropdownlink {
    border-bottom: 0;
}

.dropdownlink {
    cursor: pointer;
    display: block;
    font-size: 16px;
    color: var(--black-color);
    position: relative;
    transition: all 0.4s ease-out;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    padding: 12px 0px;
}

.dropdownlink i {
    position: absolute;
    top: 17px;
    left: 16px;
}

.dropdownlink .fa-chevron-down {
    right: 12px;
    left: auto;
}

.submenuItems {
    display: none;
    width: 100% !important;
}

.submenuItems li {
    border-bottom: 2px solid #f68c0a4d;
}

.submenuItems li:last-child {
    border-bottom: none;
}

.submenuItems a {
    display: block;
    color: var(--black-color);
    padding: 12px 12px 12px 10px;
    transition: all 0.4s ease-out;
}

.submenuItems a:hover {
    background: var(--black-color);
    color: #fff;
}

.dropdownlink {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-menu li a::after {
    content: "" !important;
    position: absolute !important;
    width: 0% !important;
    height: 0px !important;
    transition: all 0.3s;
}

.accordion-menu li a:hover {
    background-color: transparent !important;
}

.accordion-menu li ul {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
    left: 0;
    opacity: 1 !important;
    position: relative;
    text-align: left;
    top: 130%;
    transition: all 0.3s ease 0s;
    visibility: visible !important;
    width: 190px;
    z-index: 999;
}


/* 3. Banner css */

.banner-one {
    height: fit-content;
    background-image: url(../img/section1/1920x1015_SECTION\ 1.jpg);
    background-blend-mode: overlay;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.banner-three {
    height: fit-content;
    background-image: url(../img/bannerThreeBg.jpg);
    background-blend-mode: overlay;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: max-content;
}

.banner-four {
    height: fit-content;
    background-image: url(../img/homeThreeBannerTwo.jpg);
    background-blend-mode: overlay;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.banner-two {
    background-image: url(../img/bannerTwoBg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100vh;
}

.banner-two-counter {
    bottom: 0px;
    right: 0px;
    width: 750px;
    padding: 45px 0px 45px 45px;
    margin: 0;
    background-color: #ffffffe6;
}

.banner-two-second-counter {
    padding-left: 45px;
}

.banner-two-border-responsive::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0px;
    width: 2px;
    height: 100%;
    background: radial-gradient( 50% 50% at 50% 50%, #f68a0a 0%, rgba(246, 138, 10, 0) 100%);
}

.banner-two-paragraph {
    padding-right: 50%;
}

.banner-onecontents {
    padding: 77px 0px 0px 0px;
}

.banner-three-contents {
    padding: 142px 0px 142px 0px;
}

.banner-three-subheading {
    padding-left: 100px;
    margin-bottom: 15px;
}

.banner-three-subheading::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0px;
    height: 1px;
    width: 85px;
    background-color: var(--brand-color);
}

.banner-onecontent-left p {
    padding-right: 25%;
}

.banner-scroll-bottom {
    left: 50%;
    transform: translateX(-50%);
    bottom: 5%;
    height: 100px;
    width: 27px;
    position: absolute;
}

.banner-scroll-bottom a {
    width: 27px;
}

.banner-scroll-bottom a p {
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
}

.banner-twocontents {
    padding: 75px 0px 0px 0px;
}

.banner-title h2 {
    position: relative;
    display: inline-block;
}

.banner-title h2::after {
    content: "";
    width: 400px; 
    height: 2px;
    background: #ff7a00; 
    display: block;
    margin: 10px auto 0;
    border-radius: 4px;
}


.floating-contact-box {
    bottom: 10%;
    left: 12px;
    width: 47px;
}

.floating-contact-box ul {
    row-gap: 65px;
    flex-direction: column;
}

.floating-contact-box ul li {
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    font-size: 20px;
}

.floating-contact-box ul .contact-info-one::before {
    content: "";
    width: 15px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: -32px;
    right: 10px;
    opacity: 0.2;
}

.floating-contact-box ul .contact-info-one-dark::before {
    content: "";
    width: 15px;
    height: 2px;
    background-color: var(--black-color);
    position: absolute;
    top: -32px;
    right: 4px;
    opacity: 0.2;
}

.floating-line {
    top: 0;
    left: 59px;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.5;
    backdrop-filter: blur(15px);
}

.floating-social-box {
    right: 0px;
    background: rgba(255, 255, 255, 0.05);
    /* backdrop-filter: blur(15px); */
    padding: 20px 30px;
    top: 0;
    height: 100%;
    width: 100px;
}

.floating-social-box ul {
    display: flex;
    list-style-type: none;
    flex-direction: column;
    width: 20px;
}

.floating-social-box ul li {
    color: #fff;
    writing-mode: vertical-rl;
    transform: rotate(-90deg);
    margin-bottom: 20px;
}

.floating-social-box ul .social-follow-text {
    transform: rotate(-180deg);
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 85px;
}

.floating-social-box ul .social-follow-text::after {
    content: "";
    width: 1px;
    height: 85px;
    background-color: #fff;
    position: absolute;
    top: 95px;
    right: 10px;
}

.floating-social-icon i {
    width: 16px;
    height: 16px;
}

.floating-social-icon a {
    color: #fff;
}

.floating-social-icon a:hover {
    color: var(--brand-color);
}

.banner-three .owl-nav-three {
    display: flex;
    gap: 16px;
    position: absolute;
    bottom: 35px;
    left: calc((100% - 1296px) / 2);
}

.banner-three .owl-nav-three button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.banner-three .owl-nav-three button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.banner-three .owl-nav-three button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.banner-three .owl-nav-three button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.banner-three-carousel .owl-carousel .owl-item {
    width: 100%;
    margin-right: 0;
}

.banner-three-carousel .owl-carousel .owl-stage-outer {
    margin: 0;
}

.ah-headline.clip span {
    padding: 0;
}

.ah-words-wrapper b {
    padding: 0;
    font-weight: 700;
}


/* 4. About css */

/* Banner Modern */
.about-banner-modern {
    position: relative;
    overflow: hidden;
}

.banner-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(246, 138, 10, 0.1) 0%, rgba(246, 138, 10, 0.05) 100%);
    padding: 10px 28px;
    border-radius: 50px;
    border: 2px solid rgba(246, 138, 10, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.banner-badge-modern i {
    color: var(--brand-color);
    font-size: 16px;
}

.banner-badge-modern span {
    color: var(--black-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.banner-underline-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.banner-underline-modern .line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-color), transparent);
    border-radius: 2px;
}

.banner-underline-modern .dot {
    width: 8px;
    height: 8px;
    background: var(--brand-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(246, 138, 10, 0.6);
}

.banner-image-modern {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.banner-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

/* About Section Modern */
.about-modern .about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(246, 138, 10, 0.1);
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid rgba(246, 138, 10, 0.2);
}

.about-badge i {
    color: var(--brand-color);
    font-size: 14px;
}

.about-badge span {
    color: var(--black-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.title-line-modern {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-color) 0%, transparent 100%);
    border-radius: 2px;
}

.about-text-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 16px;
    border: 2px solid rgba(246, 138, 10, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-text-card:hover {
    border-color: var(--brand-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(246, 138, 10, 0.15);
}

.about-text-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #ff9f1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-text-card .card-icon i {
    font-size: 28px;
    color: white;
}

.image-stack-modern {
    position: relative;
}

.image-stack-modern .image-decoration {
    position: absolute;
    border: 2px solid var(--brand-color);
    border-radius: 16px;
    opacity: 0.3;
}

.image-stack-modern .decoration-1 {
    width: 100%;
    height: 100%;
    top: 20px;
    left: -20px;
}

.image-stack-modern .decoration-2 {
    width: 100%;
    height: 100%;
    bottom: -15px;
    right: -15px;
}

.about-info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(246, 138, 10, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.about-info-card:hover {
    border-color: var(--brand-color);
    box-shadow: 0 10px 30px rgba(246, 138, 10, 0.15);
    transform: translateX(10px);
}

.about-info-card .card-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(246, 138, 10, 0.1);
    line-height: 1;
}

/* Count Cards Modern */
.count-modern .count-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.count-card-modern:hover {
    border-color: var(--brand-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(246, 138, 10, 0.2);
}

.count-card-modern .count-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #ff9f1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.count-card-modern:hover .count-icon {
    transform: scale(1.1) rotate(360deg);
}

.count-card-modern .count-icon i {
    font-size: 32px;
    color: white;
}

.count-card-modern .count-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(246, 138, 10, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -20px;
    right: -20px;
}

/* Features Modern */
.features-modern {
    position: relative;
    background-color: var(--body-text-color-two);
}

.features-modern .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.features-modern .section-badge i {
    color: var(--brand-color);
    font-size: 14px;
}

.features-modern .section-badge span {
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.title-line-white {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-color) 0%, transparent 100%);
    border-radius: 2px;
}

.features-image-modern {
    border-radius: 16px;
    overflow: hidden;
}

.features-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}


.feature-card-modern:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--brand-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(246, 138, 10, 0.3);
}

.feature-card-modern .feature-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    font-weight: 800;
    color: #ffffff;
    opacity: 50%;
    line-height: 1;
}

.feature-card-hover:hover {
    background: rgba(0, 0, 0, 0.6) !important;
    border-color: #FFC107 !important;
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 50px rgba(246, 138, 10, 0.4) !important;
}

.feature-card-hover:hover .feature-icon-hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(246, 138, 10, 0.5);
}

.feature-card-modern .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(246, 138, 10, 0.3);
}

.feature-card-modern:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(246, 138, 10, 0.5);
}

.feature-card-modern .feature-icon i {
    font-size: 28px;
    color: white;
}

/* Testimonial Modern */
.testimonial-modern .section-badge-center {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(246, 138, 10, 0.1);
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid rgba(246, 138, 10, 0.2);
}

.section-badge-center i {
    color: var(--brand-color);
    font-size: 14px;
}

.section-badge-center span {
    color: var(--black-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.title-line-center {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--brand-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.testimonial-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(246, 138, 10, 0.1);
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card-modern:hover {
    border-color: var(--brand-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(246, 138, 10, 0.2);
}

.testimonial-card-modern .quote-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.quote-icon-modern i {
    font-size: 24px;
    color: white;
}

.stars-modern i {
    color: var(--brand-color);
    font-size: 16px;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(246, 138, 10, 0.2);
}

.author-avatar-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #ff9f1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar-modern i {
    font-size: 24px;
    color: white;
}

/* Why Choose Modern */
.why-choose-modern .why-choose-image-modern {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.vision-mission-modern {
    background: linear-gradient(135deg, rgba(246, 138, 10, 0.05) 0%, rgba(246, 138, 10, 0.02) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(246, 138, 10, 0.2);
    position: relative;
}

.vm-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #ff9f1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vm-icon-modern i {
    font-size: 28px;
    color: white;
}

.mission-header-modern {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-header-modern .mission-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i {
    font-size: 22px;
    color: white;
}

.mission-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.mission-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(246, 138, 10, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.mission-card:hover {
    border-color: var(--brand-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(246, 138, 10, 0.15);
}

.mission-card .mission-number {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 50px;
    font-weight: 800;
    color: rgba(246, 138, 10, 0.1);
    line-height: 1;
}

.mission-card .mission-icon-card {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #ff9f1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mission-icon-card i {
    font-size: 22px;
    color: white;
}

/* Division Modern */
.division-modern .division-card-modern {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.division-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(246, 138, 10, 0.2);
}

.division-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    transition: all 0.4s ease;
}

.division-card-modern:hover .division-overlay {
    background: linear-gradient(180deg, rgba(246, 138, 10, 0.3) 0%, rgba(0,0,0,0.8) 100%);
}

.division-contents-modern {
    bottom: 30px;
    left: 30px;
    right: 30px;
    text-align: center;
}

.division-contents-modern .division-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.4s ease;
}

.division-card-modern:hover .division-icon {
    transform: scale(1.2);
}

.division-icon i {
    font-size: 22px;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .mission-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .about-text-card {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .banner-badge-modern {
        padding: 8px 20px;
    }
    
    .about-text-card {
        padding: 25px;
    }
    
    .count-card-modern {
        padding: 30px 20px;
    }
    
    .feature-card-modern {
        padding: 25px 20px;
    }
    
    .testimonial-card-modern {
        padding: 30px 25px;
    }
    
    .mission-card {
        padding: 25px 20px;
    }
}

.about-one {
    position: relative;
}

.about-one::after {
    content: "";
    position: absolute;
    top: 60px;
    right: -115px;
    width: 580px;
    height: 640px;
    background-image: url(../img/aboutOneShape.png);
    background-repeat: no-repeat;
    background-size: contain;
    animation-name: fadeInOutMove;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.image-cont {
    position: relative;
    overflow: hidden;
    height: 80vh;
    max-height: 502px;
}

.image-cont img {
    width: 438px;
    height: 115%;
    object-fit: cover;
    bottom: 0;
}

.image-cont-two {
    position: relative;
    overflow: hidden;
    height: 80vh;
    max-height: 316.8px;
    width: 330px;
    right: 45px;
    bottom: -30px;
}

.image-cont-two img {
    width: 330px;
    height: 110%;
    object-fit: cover;
    bottom: 0;
}

.image-cont-three {
    position: relative;
    overflow: hidden;
    height: 80vh;
    width: 573px;
    max-height: 625px;
}

.image-cont-three img {
    width: 573px;
    height: 120%;
    object-fit: cover;
    bottom: 0;
}

.image-cont-four {
    position: relative;
    overflow: hidden;
    height: 80vh;
    width: 1320px;
    max-height: 555px;
    margin-bottom: 100px;
}

.image-cont-four img {
    width: 1320px;
    height: 120%;
    object-fit: cover;
    bottom: 0;
}

.image-cont-five {
    position: relative;
    overflow: hidden;
    height: 80vh;
    width: 1320px;
    max-height: 500px;
    margin-bottom: 50px;
}

.image-cont-five img {
    width: 1320px;
    height: 120%;
    object-fit: cover;
    bottom: 0;
}

.image-cont-six {
    position: relative;
    overflow: hidden;
    height: 80vh;
    width: 640px;
    max-height: 530px;
    margin-bottom: 50px;
}

.image-cont-six img {
    width: 640px;
    height: 120%;
    object-fit: cover;
    bottom: 0;
}

.image-cont-seven {
    position: relative;
    overflow: hidden;
    height: 80vh;
    width: 640px;
    max-height: 530px;
    margin-bottom: 50px;
}

.image-cont-seven img {
    width: 640px;
    height: 120%;
    object-fit: cover;
    bottom: 0;
}

.about-one-img {
    width: 440px;
    height: auto;
}

.about-one-img-small {
    width: 330px;
    height: auto;
    right: 45px;
    bottom: -30px;
}

.about-one-subheading {
    margin-left: -90px;
    padding-right: 30%;
}

.about-one-first-text-box {
    padding-left: 90px;
}


/* 5. Count css */

.count-one-border::after {
    content: "";
    position: absolute;
    top: 0;
    right: 30px;
    width: 2px;
    height: 100%;
    background: radial-gradient( 50% 50% at 50% 50%, #f68a0a 0%, rgba(246, 138, 10, 0) 100%);
}


/* 6. Services css */

.service-one-card {
    height: 338px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-one-card .service-imag {
    height: 100%;
}

.service-one-card-container .owl-carousel .owl-item img {
    height: 100%;
}

.service-one-contents {
    top: 0;
    left: 0;
    padding: 25px 40px;
}

.service-four-card {
    padding: 46px 47px;
}

.service-one-card-container .owl-carousel .owl-item {
    min-height: 360px;
}

.service-one-card::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    border: 1px solid var(--brand-color);
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: 1s;
}

.service-one-card:hover::after {
    z-index: 0;
    background: rgb(0, 0, 0, 0.2);
    top: 0px;
    left: 0px;
    border: 1px solid rgb(146, 138, 10, 0.5);
}

.services-archieve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

.service-one-card-archieve::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 25px;
    border: 1px solid var(--brand-color);
    height: 100%;
    width: 97%;
    z-index: -1;
    transition: all 0.7s;
}

.service-one-card-archieve:hover::after {
    background: rgb(0, 0, 0, 0.2);
    top: 0px;
    left: 0px;
    border: 1px solid rgb(146, 138, 10, 0.5);
}

.services-two {
    background-color: var(--body-text-color-two);
}

.services-three {
    background-color: var(--body-text-color-two);
}

.service-imag {
    overflow: hidden;
}

.service-imag img {
    transition: all 1s;
}

.service-one-card-archieve:hover .service-imag img {
    transform: scale(1.2);
}

.service-three-cards-container .owl-stage {
    left: 20px;
}

.service-two-cards-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: 74%;
    right: 100%;
    width: 51%;
    transform: translateY(-74%);
}

.service-two-cards-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-two-cards-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-two-cards-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-two-cards-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-three-cards-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: -200px;
    right: 0px;
}

.service-three-cards-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-three-cards-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-three-cards-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-three-cards-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-two-container {
    padding-left: 100px;
}

.service-one-card-one:hover,
.service-one-card-two:hover,
.service-one-card-three:hover,
.service-one-card-four:hover,
.service-one-card-five:hover,
.service-one-card-six:hover {
    background: #000;
    border: 2px solid var(--brand-color);
}

.service-one-card-container .owl-stage {
    left: -15px;
}

.service-one-card-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: -180px;
    right: 0;
}

.service-one-card-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-one-card-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-one-card-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-one-card-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-two-card {
    padding: 70px 45px;
    background-color: var(--black-color);
    position: relative;
    overflow: hidden;
}

.service-two-cards-container .owl-stage {
    left: 50px;
}

.service-three-cards-container .service-two-card {
    overflow: inherit;
}

.service-two-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #252525;
    transition: all 0.7s;
    transform: scale(0);
}

.service-three-cards-container .service-two-card .serivice-three-contents {
    position: relative;
    z-index: 2;
}

.service-three-cards-container .service-two-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--body-text-color);
    transition: all 0.7s;
    transform: scale(0);
}

.service-two-card:hover::after {
    transform: scale(1);
}

.service-two-card a {
    transition: all 0.7s;
}

.service-two-card p {
    transition: all 0.7s;
}

.service-two-card:hover p {
    transform: scale(0);
}

.service-two-card:hover a {
    transform: translateY(-100px);
}

.services-two .owl-carousel .owl-item img {
    width: 80px;
    height: 80px;
}

.service-two-stroke-text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #f68c0a84;
}

.service-two-stroke-absolute {
    top: -20px;
    left: -20px;
    z-index: 10;
}

.service-details-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(180deg, #f68a0a 0%, rgba(246, 138, 10, 0) 100%);
    opacity: 0.5;
}

.service-two-number {
    font-size: 100px;
}

.service-two-top-paragraph {
    padding-right: 10%;
}

/* 8. Testimonial css */

.testimonial-one-slider-wrapper .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -70px;
    flex-direction: column;
}

.testimonial-one-slider-wrapper .owl-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    padding: 0;
    line-height: 30px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
    transform: rotate(90deg);
}

.testimonial-one-slider-wrapper .owl-carousel .owl-nav button.owl-prev {
    width: 45px;
    height: 45px;
    padding: 0;
    line-height: 30px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
    transform: rotate(90deg);
}

.testimonial-one-slider-wrapper .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.testimonial-one-slider-wrapper .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.testimonial-one-slider-wrapper .owl-carousel .owl-item img {
    width: 190px;
    height: 190px;
}

.testimonial-one-icon {
    max-width: 100%;
    height: 100px;
}

.testimonial-one-icon-heading {
    font-size: 20px;
    margin-top: 22px;
}

.testimonial-item-content {
    padding-left: 40px;
    padding-right: 0px;
}


/*   9. Team css */
.team-details-wrapper-modern {
    margin-top: 77px;
}

.team-header-modern {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 70px;
}

.team-header-modern h2 {
    background: linear-gradient(135deg, var(--black-color) 0%, var(--brand-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.header-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-color) 0%, #ffb066 100%);
    margin: 20px auto 0;
    border-radius: 2px;
    position: relative;
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(246, 138, 10, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(246, 138, 10, 0.8);
    }
}

.team-image-card {
    position: relative;
    width: 100%;
}

.team-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #f5f5f5;
}

.team-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    transition: all 0.4s ease;
    pointer-events: none;
}

.team-img-wrapper:hover::before {
    background: linear-gradient(180deg, rgba(246, 138, 10, 0.2) 0%, rgba(0,0,0,0.5) 100%);
}

.team-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.team-img-wrapper:hover img {
    transform: scale(1.08);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(246, 138, 10, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.team-img-wrapper:hover .img-overlay {
    opacity: 1;
}

.linkedin-connect-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    padding: 25px 30px;
    border-radius: 16px;
    margin-top: 30px;
    box-shadow: 0 10px 40px rgba(0, 119, 181, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.linkedin-connect-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: linkedinPulse 3s ease-in-out infinite;
}

@keyframes linkedinPulse {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -20px);
    }
}

.linkedin-connect-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 119, 181, 0.4);
}

.linkedin-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.linkedin-icon-wrapper i {
    font-size: 28px;
    color: white;
    transition: transform 0.4s ease;
}

.linkedin-connect-box:hover .linkedin-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(360deg);
}

.linkedin-connect-box:hover .linkedin-icon-wrapper i {
    transform: scale(1.2);
}

/* LinkedIn Content */
.linkedin-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.linkedin-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 5px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.linkedin-link {
    font-size: 20px;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Space Grotesk", sans-serif;
}

.linkedin-link:hover {
    color: white !important;
}

.linkedin-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.linkedin-connect-box:hover .linkedin-link {
    gap: 15px;
}

.linkedin-connect-box:hover .linkedin-link i {
    transform: translateX(5px);
}

.team-info-modern {
    position: relative;
}

.member-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(246, 138, 10, 0.2);
}

.member-name {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.member-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--brand-color);
    border-radius: 2px;
}

.member-position {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--body-text-color);
    font-weight: 600;
    margin: 0;
}

.position-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(246, 138, 10, 0.1) 0%, rgba(246, 138, 10, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    flex-shrink: 0;
}

.position-icon i {
    font-size: 18px;
}

.member-bio {
    margin-bottom: 40px;
}

.member-bio p {
    line-height: 1.8;
}


.member-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid rgba(246, 138, 10, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.contact-card:hover {
    border-color: var(--brand-color);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(246, 138, 10, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(246, 138, 10, 0.1) 0%, rgba(246, 138, 10, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 20px;
    color: var(--brand-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--brand-color);
}

.contact-card:hover .contact-icon i {
    color: white;
    transform: scale(1.1);
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 13px;
    color: var(--body-text-color);
    margin: 0 0 5px 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 16px;
    color: var(--black-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.contact-value:hover {
    color: var(--brand-color) !important;
}

.contact-card:hover .contact-value {
    color: var(--brand-color);
}

.team-one-card-container {
    overflow: hidden;
}

.team-img img {
    width: 100% !important;
}

.team-one-card-carousel .owl-stage-outer {
    padding-bottom: 20px;
}

.team-one-card-carousel .owl-stage {
    padding-left: 0 !important;
}

.team-one-card-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.team-two-card-info {
    padding-top: 150px;
}

.team-two-card-info p {
    color: #c1c1c1;
}

.team-one-item {
    transform: translate3d(0, 0, 0);
    position: relative;
}

.team-one-card-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.team-one-card-info p {
    color: #c1c1c1;
    margin-top: 5px;
}

.team-member-details .member-details-social a {
    transition: all 0.3s;
    color: #fff;
}

.team-member-details .member-details-social a:hover {
    transform: scale(1.6);
}

.team-member-details {
    width: 100%;
    height: 100%;
    background-color: #10101089;
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.8s;
    z-index: 2;
}

.team-member-details-second {
    width: 90%;
    height: 85%;
    background-color: #10101089;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 30px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.8s;
    z-index: 2;
}

.team-one-item:hover .team-member-details {
    visibility: visible;
    opacity: 1;
}

.team-one-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15px;
    left: 15px;
    border: 1px solid var(--brand-color);
    z-index: -1;
}

.team-home-card-container {
    overflow: hidden;
}

.team-home-item {
    width: 420px;
    height: 370px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.team-home-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.team-home-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.team-home-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-home-item:hover .team-home-img img {
    transform: scale(1.05);
}

.team-home-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background-color: rgba(34,34,34,0.9);
    text-align: center;
    backdrop-filter: blur(5px);
}

.team-home-card-info h6 {
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.team-home-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15px;
    left: 15px;
    border: 1px solid var(--brand-color);
    z-index: -1;
}

@media (max-width: 1400px) {
    .linkedin-connect-box {
        padding: 22px 28px;
    }
    
    .stat-card {
        padding: 28px 18px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .team-details-wrapper-modern {
        margin-top: 60px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .linkedin-connect-box {
        padding: 20px 25px;
    }
    
    .linkedin-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .linkedin-icon-wrapper i {
        font-size: 26px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .team-details-wrapper-modern {
        margin-top: 50px;
    }
    
    .team-header-modern {
        margin-bottom: 50px;
    }
    
    .contact-card {
        padding: 18px 22px;
    }
}

/* Tablet Small */
@media (max-width: 768px) {
    .team-header-modern h2 {
        font-size: 36px;
    }
    
    .header-line {
        width: 100px;
    }
    
    .linkedin-connect-box {
        padding: 20px;
        gap: 15px;
    }
    
    .linkedin-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .linkedin-icon-wrapper i {
        font-size: 24px;
    }
    
    .linkedin-link {
        font-size: 18px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .member-position {
        font-size: 16px;
    }
    
    .position-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .team-header-modern h2 {
        font-size: 28px;
    }
    
    .header-line {
        width: 80px;
        height: 3px;
    }
    
    .team-img-wrapper {
        border-radius: 16px;
    }
    
    .linkedin-connect-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }
    
    .linkedin-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .linkedin-link {
        justify-content: center;
        font-size: 18px;
    }
    
    .member-header {
        text-align: center;
        padding-bottom: 20px;
    }
    
    .member-name::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .member-position {
        justify-content: center;
    }
    
    .member-bio {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .contact-card:hover {
        transform: translateY(-5px);
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .team-header-modern h2 {
        font-size: 24px;
    }
    
    .linkedin-connect-box {
        padding: 20px 15px;
    }
    
    .linkedin-link {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .contact-value {
        font-size: 14px;
    }
}


@media print {
    .team-img-wrapper:hover img,
    .stat-card:hover,
    .contact-card:hover,
    .linkedin-connect-box:hover {
        transform: none;
    }
    
    .header-line {
        animation: none;
    }
}

/* Team di Home css */
.team-home-card-container {
    overflow: hidden;
}

.team-home-item {
    width: 420px;
    height: 370px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
}

.team-home-img {
    width: 100%;
    height: 100%; 
    overflow: hidden;
    position: relative;
}

.team-home-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-home-item:hover .team-home-img img {
    transform: scale(1.05); 
}

.team-home-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background-color: rgba(34,34,34,0.9);
    text-align: center;
}

.team-home-card-info h6 {
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.team-home-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15px;
    left: 15px;
    border: 1px solid var(--brand-color);
    z-index: -1;
}


/* 10. Video css */

.intro-video-one-container {
    padding-left: 300px;
}

.video-thumbnail-two-container {
    padding: 220px 0px;
    background-image: url(../img/introVideoBg.jpg);
}

.intro-video-animation {
    position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
}

.features-video-animation {
    display: inline-block;
    font-size: 24px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
}

.intro-video-animation:before {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 hsla(32, 100%, 68%, 0.6);
    -webkit-animation: ripple-data-v-4f288fb2 3s infinite;
    animation: ripple-data-v-4f288fb2 3s infinite;
    transition: all 0.4s ease;
}

.features-video-animation:before {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 hsla(32, 100%, 68%, 0.6);
    -webkit-animation: ripple-data-v-4f288fb2 3s infinite;
    animation: ripple-data-v-4f288fb2 3s infinite;
    transition: all 0.4s ease;
}

.intro-video-animation:after {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 hsla(32, 100%, 68%, 0.6);
    -webkit-animation: ripple-data-v-4f288fb2 3s infinite;
    animation: ripple-data-v-4f288fb2 3s infinite;
    transition: all 0.4s ease;
    animation-delay: 0.6s;
}

.features-video-animation:after {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 hsla(32, 100%, 68%, 0.6);
    -webkit-animation: ripple-data-v-4f288fb2 3s infinite;
    animation: ripple-data-v-4f288fb2 3s infinite;
    transition: all 0.4s ease;
    animation-delay: 0.6s;
}

.intro-video-title {
    padding-right: 8%;
}

/* 11. Blog css */
/* ========================================
   BLOG PAGE MODERN DESIGN - Additional CSS
   Tambahkan CSS ini ke file style.css Anda
   ======================================== */

/* Blog Page Banner Modern */
.blog-page-banner-modern {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%),
                url('../img/section3/layanan.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.blog-page-banner-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 193, 7, 0.03) 35px, rgba(255, 193, 7, 0.03) 70px);
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.blog-page-banner-wrapper {
    margin-top: 77px;
    min-height: 280px;
    padding: 60px 20px;
    position: relative;
}

/* Blog Card Modern */
.blog-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(246, 138, 10, 0.2);
}

.blog-image-wrapper-modern {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.blog-image-wrapper-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-modern:hover .blog-image-wrapper-modern img {
    transform: scale(1.08);
}

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #ff9f1a 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(246, 138, 10, 0.4);
}

.blog-content-wrapper-modern {
    padding: 35px;
}

.blog-meta-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.meta-item-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--body-text-color);
}

.meta-item-modern i {
    color: var(--brand-color);
    font-size: 14px;
}

.blog-title-modern {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-title-modern a {
    color: var(--black-color);
    transition: all 0.3s ease;
}

.blog-title-modern a:hover {
    color: var(--brand-color) !important;
}

.blog-excerpt-modern {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-text-color-two);
    margin-bottom: 25px;
}

.blog-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid rgba(246, 138, 10, 0.1);
}

.read-more-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #ff9f1a 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(246, 138, 10, 0.3);
}

.read-more-btn-modern:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(246, 138, 10, 0.5);
    color: white !important;
}

.read-more-btn-modern i {
    transition: transform 0.4s ease;
}

.read-more-btn-modern:hover i {
    transform: translateX(5px);
}

.blog-tags-modern {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-badge {
    padding: 6px 14px;
    background: rgba(246, 138, 10, 0.1);
    border: 1px solid rgba(246, 138, 10, 0.2);
    border-radius: 50px;
    font-size: 12px;
    color: var(--black-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: white !important;
}

/* Author Sidebar Card */
.author-sidebar-card .author-card-content {
    text-align: center;
}

.author-image-wrapper {
    margin-bottom: 20px;
}

.author-image-wrapper img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brand-color);
}

.author-name-sidebar {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
}

.author-bio-sidebar {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body-text-color);
    margin: 0;
}

/* Sidebar Modern */
.blog-sidebar-modern {
    position: sticky;
    top: 120px;
}

.search-btn-modern {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #ff9f1a 100%);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn-modern:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 5px 15px rgba(246, 138, 10, 0.4);
}

.category-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list-modern li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-list-modern li:last-child {
    border-bottom: none;
}

.category-list-modern li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-list-modern li a:hover {
    color: var(--brand-color) !important;
    padding-left: 10px;
}

.category-list-modern .count {
    width: 35px;
    height: 35px;
    background: rgba(246, 138, 10, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-color);
    transition: all 0.3s ease;
}

.category-list-modern li a:hover .count {
    background: var(--brand-color);
    color: white;
}

.recent-posts-list-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item-modern {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.recent-post-item-modern:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-thumb-modern {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.post-thumb-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recent-post-item-modern:hover .post-thumb-modern img {
    transform: scale(1.1);
}

.post-info-modern h6 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.post-info-modern h6 a {
    color: var(--black-color);
    transition: color 0.3s ease;
}

.post-info-modern h6 a:hover {
    color: var(--brand-color) !important;
}

.post-date-modern {
    font-size: 12px;
    color: var(--body-text-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive Blog Modern */
@media (max-width: 1200px) {
    .blog-title-modern {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .blog-sidebar-modern {
        margin-top: 60px;
        position: static;
    }
    
    .blog-image-wrapper-modern {
        height: 350px;
    }
    
    .blog-footer-modern {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .blog-page-banner-wrapper {
        min-height: 220px;
        padding: 40px 15px;
    }
    
    .blog-image-wrapper-modern {
        height: 280px;
    }
    
    .blog-content-wrapper-modern {
        padding: 25px;
    }
    
    .blog-title-modern {
        font-size: 22px;
    }
    
    .blog-meta-row {
        gap: 15px;
    }
    
    .meta-item-modern {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .blog-card-modern {
        border-radius: 16px;
    }
    
    .blog-image-wrapper-modern {
        height: 240px;
    }
    
    .blog-content-wrapper-modern {
        padding: 20px;
    }
    
    .blog-title-modern {
        font-size: 20px;
    }
    
    .blog-excerpt-modern {
        font-size: 15px;
    }
    
    .blog-meta-row {
        flex-wrap: wrap;
    }
    
    .read-more-btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .blog-tags-modern {
        width: 100%;
        justify-content: center;
    }
}

/* 11 (2) Blog Detail css */

.blog-details-modern-banner {
    margin-top: 77px;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.breadcrumb-link {
    color: var(--body-text-color);
    transition: all 0.3s;
}

.breadcrumb-link:hover {
    color: var(--brand-color) !important;
}

.breadcrumb-separator {
    color: var(--body-text-color);
    opacity: 0.5;
}

.breadcrumb-current {
    color: var(--black-color);
    font-weight: 600;
}

.blog-modern-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--black-color);
    position: relative;
}

.blog-meta-modern {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(246, 138, 10, 0.1) 0%, rgba(246, 138, 10, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    font-size: 18px;
}

.meta-content {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 12px;
    color: var(--body-text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 15px;
    color: var(--black-color);
    font-weight: 600;
    margin-top: 2px;
}

/* Featured Image Modern */
.featured-image-modern {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper-modern {
    position: relative;
    overflow: hidden;
}

.image-wrapper-modern img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.featured-image-modern:hover .image-wrapper-modern img {
    transform: scale(1.05);
}

.image-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-image-modern:hover .image-overlay-modern {
    opacity: 1;
}

/* Content Section */
.blog-content-modern .content-section {
    margin-bottom: 60px;
    position: relative;
    padding-left: 60px;
}

.section-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 80px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(246, 138, 10, 0.2);
    line-height: 0.8;
}

.section-title-modern {
    font-size: 32px;
    font-weight: 700;
    color: var(--black-color);
    position: relative;
    display: inline-block;
}

.section-title-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-color) 0%, #ffb066 100%);
    border-radius: 2px;
}

.content-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: var(--body-text-color-two);
    margin-bottom: 20px;
}

/* Image Grid Modern */
.image-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.image-grid-reverse {
    grid-template-columns: 1fr 2fr;
}

.grid-item-large,
.grid-item-small {
    position: relative;
}

.image-card-modern {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.image-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(246, 138, 10, 0.2);
}

.image-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-card-modern:hover img {
    transform: scale(1.08);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-card-modern:hover .image-caption {
    opacity: 1;
}

/* Quote Card Modern */
.quote-card-modern {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--brand-color);
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 25px;
}

.quote-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--black-color);
    font-weight: 500;
    font-style: italic;
    margin: 0 0 30px 0;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(246, 138, 10, 0.2);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #ff9f1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
}

.author-title {
    font-size: 14px;
    color: var(--body-text-color);
    margin-top: 3px;
}

/* Highlight Box */
.highlight-box-modern {
    background: linear-gradient(135deg, rgba(246, 138, 10, 0.1) 0%, rgba(246, 138, 10, 0.05) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(246, 138, 10, 0.2);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin: 30px 0;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
}

.highlight-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--body-text-color-two);
    margin: 0;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.stat-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-card-modern:hover {
    border-color: var(--brand-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(246, 138, 10, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--brand-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--body-text-color);
    font-weight: 600;
}

.feature-list-modern {
    margin: 30px 0;
}

.feature-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item-modern:last-child {
    border-bottom: none;
}

.feature-item-modern i {
    color: var(--brand-color);
    font-size: 20px;
    margin-top: 3px;
}

.feature-item-modern span {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: var(--body-text-color-two);
}

.full-width-image-modern {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.full-width-image-modern img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.full-width-image-modern:hover img {
    transform: scale(1.03);
}

/* Price Highlight */
.price-highlight-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.price-highlight-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(246, 138, 10, 0.1) 0%, transparent 70%);
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

.price-content {
    position: relative;
    z-index: 1;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--brand-color);
}

.price-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.blog-sidebar-modern {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    border-color: rgba(246, 138, 10, 0.3);
    box-shadow: 0 10px 35px rgba(246, 138, 10, 0.15);
}

.card-header-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(246, 138, 10, 0.2);
}

.card-header-modern i {
    color: var(--brand-color);
    font-size: 20px;
}

.card-header-modern h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    margin: 0;
}

/* Author Card */
.author-card-modern .author-card-content {
    text-align: center;
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #ff9f1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
}

.author-name-large {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
}

.author-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body-text-color);
    margin-bottom: 20px;
}

.author-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.author-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(246, 138, 10, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    transition: all 0.3s ease;
}

.author-social-links a:hover {
    background: var(--brand-color);
    color: white !important;
    transform: translateY(-3px);
}

/* Quick Info Card */
.quick-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(246, 138, 10, 0.05);
    border-radius: 8px;
}

.info-label {
    font-size: 14px;
    color: var(--body-text-color);
    font-weight: 500;
}

.info-value {
    font-size: 16px;
    color: var(--black-color);
    font-weight: 700;
}

/* Tags Card */
.tags-list-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-modern {
    padding: 8px 16px;
    background: rgba(246, 138, 10, 0.1);
    border-radius: 50px;
    font-size: 13px;
    color: var(--black-color);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag-modern:hover {
    background: var(--brand-color);
    color: white !important;
    border-color: var(--brand-color);
}

/* Section Header Modern */
.section-header-modern h2 {
    position: relative;
    display: inline-block;
}

.header-line-modern {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-color) 0%, #ffb066 100%);
    margin: 20px auto 0;
    border-radius: 2px;
    position: relative;
    animation: lineGlow 2s ease-in-out infinite;
}

/* Features Grid Modern */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.feature-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(246, 138, 10, 0.2);
}

.feature-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card-modern:hover .feature-image-wrapper img {
    transform: scale(1.1);
}

.feature-content {
    padding: 25px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body-text-color);
    margin: 0;
}

.feature-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(246, 138, 10, 0.4);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .features-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-modern-title {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-grid-modern,
    .image-grid-reverse {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-sidebar-modern {
        margin-top: 60px;
        position: static;
    }
    
    .blog-content-modern .content-section {
        padding-left: 0;
    }
    
    .section-number {
        position: relative;
        display: block;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .blog-modern-title {
        font-size: 32px;
    }
    
    .blog-meta-modern {
        gap: 20px;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .price-tag {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .blog-modern-title {
        font-size: 26px;
    }
    
    .section-title-modern {
        font-size: 24px;
    }
    
    .content-paragraph {
        font-size: 16px;
    }
    
    .quote-text {
        font-size: 18px;
    }
    
    .feature-image-wrapper {
        height: 200px;
    }
}

.blogs-one {
    margin-right: 0;
    width: 100%;
}

.blog-one-heading {
    padding-right: 10%;
}

.blogs-one-cards-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: 50%;
    right: 100%;
    width: 52%;
    transform: translateY(-50%);
}

.blogs-one-cards-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.blogs-one-cards-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.blogs-one-cards-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.blogs-one-cards-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.blogs-two-cards-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: -180px;
    right: 0px;
}

.blogs-two-cards-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.blogs-two-cards-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.blogs-two-cards-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.blogs-two-cards-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.blog-archieve-card-title {
    font-size: 32px;
    transition: all 0.5s;
}

.blog-sidebar-search-input {
    padding: 12px 30px;
    border-radius: 0;
    border-right: 0;
}

.blog-sidebar-search-icon {
    border-radius: 0;
    border-width: 0.8px 0.8px 0.8px 0px;
    border-color: #dee2e6;
    background-color: transparent;
    color: var(--black-color);
}

.blog-sidebar-search-icon:hover {
    background-color: transparent;
    border-color: #dee2e6;
    color: var(--black-color);
}

.blog-author-social i {
    font-size: 24px;
    color: var(--black-color);
}

.author-details {
    padding: 70px 55px;
    background: #f4f3f1;
}

.sidebar-category-item {
    transition: all 0.3s;
}

.sidebar-category-item a:hover {
    text-decoration: underline;
    color: var(--brand-color);
}

.popular-tags p {
    transition: all 0.3s;
    cursor: pointer;
}

.popular-tags p:hover {
    color: var(--brand-color);
}

.blockquote-container {
    padding: 40px;
    margin: 75px 90px 75px 90px;
    border-width: 1px 0px 1px 0px;
    border-color: var(--body-text-color);
    border-style: solid;
}

.blog-comment-heading {
    font-size: 32px;
    color: var(--black-color);
    font-weight: 700;
    line-height: 1.3em;
}

.blog-thanks-text p {
    position: relative;
    display: flex;
}

.blog-thanks-text p::after {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #f68a0a33;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 50px;
}

.bottom-gradient-divider {
    position: relative;
}

.bottom-gradient-divider::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 15px;
    width: 94%;
    height: 1px;
    background: linear-gradient(90deg, #f68a0a 0%, rgba(246, 138, 10, 0) 100%);
    opacity: 0.5;
}

.blog-details-page-banner-wrapper {
    margin-top: 37px;
}


/* 12. Projects css */

.projects-text-stroke {
    writing-mode: vertical-rl;
    white-space: nowrap;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #53535366;
    transition: all 0.4s;
    position: absolute;
    top: 50%;
    left: -80px;
    transform: translateY(-50%) rotate(-180deg);
}

.projects-one-item .projects-one-contents>h6>a {
    transition: all 0.4s;
}

.projects-one-item {
    position: relative;
}

.project-btn {
    position: absolute;
    right: -50px;
    width: 150px;
    height: 0px;
    bottom: 0px;
    z-index: 1;
    opacity: 0;
    transition: all 1s;
    background: transparent;
    color: #fff;
    transition: all 0.4s;
    border: 0;
    z-index: 3;
}

.project-img-ontainer {
    position: relative;
    transition: all 0.5s;
    width: fit-content;
}

.project-img-ontainer img:hover {
    transform: scale(1);
}

.under-line-hover::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -10px;
    opacity: 0;
    background-color: #f68a0a;
    transition: all 0.8s;
}

.under-line-hover:hover::after {
    opacity: 1;
    width: 100%;
}

.project-img-ontainer::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 0%;
    bottom: 0;
    right: 0;
    background-color: var(--brand-color);
    transition: all 0.5s;
    border-top-left-radius: 90%;
    z-index: 2;
}

.project-img-ontainer:hover::after {
    height: 250px;
    width: 250px;
}

.project-img-ontainer:hover .project-btn {
    bottom: 100px;
    right: 50px;
    width: 160px;
    color: #fff !important;
    opacity: 1;
}

.project-img-ontainer {
    position: relative;
}

.project-img-ontainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1;
    transition: all 0.7s;
}

.project-img-ontainer:hover::before {
    background-color: #10101075;
}

.home-one-portfolio-first-img {
    height: 770px;
    width: 520px;
}

.home-one-portfolio-second-img {
    width: 565px;
    height: 690px;
}

.home-one-portfolio-third-img {
    width: 655px;
    height: 440px;
}

.home-one-portfolio-fourth-img {
    width: 520px;
    height: 770px;
}

.home-one-portfolio-fifth-img {
    width: 605px;
    height: 440px;
}

.home-one-portfolio-sixth-img {
    width: 565px;
    height: 695px;
}

.portfolio-cta-btn {
    margin-top: 100px;
}


/* 13. Experience css */

.experience-contact-number {
    font-size: 32px;
}


/* 14. Footer css */

.footer-one {
    padding: 130px 0px;
    background-color: var(--black-color);
}

.footer-one ul li a {
    transition: all 0.3s;
    color: #fff;
}

.footer-one ul li a:hover {
    color: var(--brand-color);
}

.footer-address {
    color: #c1c1c1;
}

.footer-copyright-text {
    color: #c1c1c1;
}

.footer-email {
    font-size: 55px;
}

.footer-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: #fff; 
}


/* 15. Why Choose Us css */

.why-choose-right-col {
    background-color: var(--body-text-color-two);
    padding-left: 100px;
    padding-right: 5%;
}

.why-choose-us-two {
    background-color: var(--black-color);
}

.why-choose-item-first {
    width: 80%;
}

.why-choose-left-col {
    background-image: url(../img/whyChooseImg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.why-choose-subheading {
    padding-left: 115px;
}

.why-choose-subheading::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 2px;
    width: 100px;
    background-color: var(--brand-color);
}


/* 16. Page title carousel css */

.page-title-stroke {
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--body-text-color);
}

.title-carousel .owl-carousel.owl-theme .owl-item {
    width: fit-content !important;
}


/* 17. Work together css */

.work-together {
    padding: 220px 0px;
    background: url(../img/section2/1920\ x\ 701.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.work-together-content-wrapper {
    padding: 0% 25%;
}


/* 18. Purposes css */

.purposes-paragraph {
    color: var(--body-text-color-two);
    padding-right: 10%;
}


/* 19. FAQ css */

.accordion-item-heading {
    font-size: 20px;
}

.services-faq .accordion-item,
.service-details-faq .accordion-item {
    border: 1px solid rgba(83, 83, 83, 0.1);
    border-radius: 0px;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    box-shadow: none;
}

.service-details-faq .accordion-item .accordion-button {
    justify-content: space-between;
}

.services-faq .accordion-item .accordion-button {
    display: flex;
    justify-content: space-between;
}

.services-faq .accordion-item .accordion-button::after {
    margin-left: 5%;
}

.services-details-info-top-paragraph {
    padding-right: 10%;
}

/* Price Card Hover Glow */
.price-card {
    transition: all 0.3s ease; 
    position: relative;
    z-index: 0;
}

.price-card:hover {
    box-shadow: 0 0 20px 5px rgba(255, 165, 0, 0.7); 
    transform: translateY(-5px); 
}


/* 20. Inner Page Banner css */

.header1-menu .menu-link {
    color: #FFC107 !important;
}

.inner-page-banner-service {
    background-image: url("../img/section 4/1920\ x\ 450.jpg"), 
                      linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}


.inner-page-banner {
    background-image: url("../img/section3/layanan.jpg"), 
                      linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.inner-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 193, 7, 0.03) 35px, rgba(255, 193, 7, 0.03) 70px);
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(70px) translateY(70px); }
}

.inner-page-banner-wrapper {
    margin-top: 70px;
    position: relative;
    min-height: 250px;
    padding: 40px 20px;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}



@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5); }
}

.badge-icon {
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.badge-text {
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inner-page-banner-service h2 {
    color: #fff;
    margin: 0;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 193, 7, 0.3);
    position: relative;
    padding: 0 20px;
}

.inner-page-banner h2 {
    color: #fff;
    margin: 0;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 193, 7, 0.3);
    position: relative;
    padding: 0 20px;
}

.banner-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 24px;
}

.underline-line {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, transparent, #FFC107, transparent);
    border-radius: 2px;
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.7; transform: scaleX(1.2); }
}

.underline-dot {
    width: 8px;
    height: 8px;
    background: #FFC107;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.banner-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.decoration-left {
    top: -50px;
    left: -50px;
    animation: floatLeft 6s ease-in-out infinite;
}

.decoration-right {
    bottom: -50px;
    right: -50px;
    animation: floatRight 6s ease-in-out infinite;
}

@keyframes floatLeft {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(180deg); }
}

@keyframes floatRight {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(-180deg); }
}

.inner-page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border-top: 3px solid #FFC107;
    border-left: 3px solid #FFC107;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .inner-page-banner-wrapper {
        min-height: 200px;
        padding: 30px 15px;
    }
    
    .banner-decoration {
        width: 120px;
        height: 120px;
    }
    
    .inner-page-banner h2 {
        font-size: 28px;
    }
    
    .banner-badge {
        padding: 6px 18px;
    }
    
    .badge-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .inner-page-banner h2 {
        font-size: 24px;
    }
    
    .underline-line {
        width: 60px;
    }
}

/* 21. Portfolio css */

.portfolio-text-stroke {
    white-space: nowrap;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--body-text-color);
}

.portfolio-details-contnts-right {
    padding-left: 8%;
}

.portfolio-main-title {
    font-size: 48px;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-color) 0%, #ffb066 100%);
    border-radius: 2px;
    position: relative;
    animation: titleUnderlineGlow 2s ease-in-out infinite;
}

@keyframes titleUnderlineGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(246, 138, 10, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(246, 138, 10, 0.8);
    }
}

.project-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 35px 30px;
    border-radius: 16px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.project-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 138, 10, 0.1), transparent);
    transition: left 0.5s ease;
}

.project-info-card:hover::before {
    left: 100%;
}

.project-info-card:hover {
    border-color: var(--brand-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(246, 138, 10, 0.25);
}

.project-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #ff9f1a 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.project-info-icon i {
    font-size: 28px;
    color: white;
}

.project-info-card:hover .project-info-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(246, 138, 10, 0.4);
}

.portfolio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    width: 100%;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 370px;
    overflow: hidden;
    background: #f0f0f0;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.gallery-info-box {
    padding: 20px;
    background: #ffffff;
    border-top: 3px solid transparent;
    transition: all 0.4s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-location {
    font-size: 14px;
    font-weight: 500;
    color: var(--body-text-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.project-location i {
    font-size: 14px;
    color: var(--brand-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 50px rgba(246, 138, 10, 0.25),
        0 0 0 4px rgba(246, 138, 10, 0.1);
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-info-box {
    border-top-color: var(--brand-color);
    background: linear-gradient(180deg, #fff9f0 0%, #ffffff 100%);
}

.gallery-item:hover .project-name {
    color: var(--brand-color);
}

.gallery-item:hover .project-location {
    color: var(--black-color);
}

.gallery-item:hover .project-location i {
    transform: scale(1.2);
    animation: pinBounce 0.6s ease-in-out;
}

@keyframes pinBounce {
    0%, 100% { 
        transform: scale(1.2) translateY(0); 
    }
    50% { 
        transform: scale(1.2) translateY(-4px); 
    }
}

.gallery-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(246, 138, 10, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-image-wrapper::before {
    opacity: 1;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-color) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 0 12px 0 100%;
}

.gallery-item:hover::before {
    opacity: 0.15;
}

.gallery-image-wrapper::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.gallery-item:hover .gallery-image-wrapper::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 16px 0 100% 0;
}

.gallery-item:hover::after {
    opacity: 0.1;
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
    .portfolio-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* Large Desktop */
@media (max-width: 1399px) {
    .portfolio-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .portfolio-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .gallery-image-wrapper {
        height: 350px;
    }
    
    .portfolio-main-title {
        font-size: 42px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .portfolio-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-image-wrapper {
        height: 340px;
    }
    
    .portfolio-main-title {
        font-size: 38px;
    }
    
    .project-info-card {
        padding: 28px 25px;
    }
    
    .project-name {
        font-size: 17px;
    }
    
    .project-location {
        font-size: 13px;
    }
    
    .gallery-info-box {
        padding: 18px;
        min-height: 95px;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .portfolio-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-image-wrapper {
        height: 280px;
    }
    
    .portfolio-main-title {
        font-size: 32px;
    }
    
    .title-underline {
        width: 100px;
    }
    
    .gallery-info-box {
        padding: 15px;
        min-height: 90px;
    }
    
    .project-name {
        font-size: 16px;
    }
    
    .project-location {
        font-size: 12px;
    }
    
    .project-location i {
        font-size: 12px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .portfolio-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .gallery-item {
        max-width: 420px;
        margin: 0 auto;
    }
    
    .gallery-image-wrapper {
        height: 370px;
    }
    
    .portfolio-main-title {
        font-size: 28px;
    }
    
    .project-info-card {
        padding: 25px 20px;
    }
    
    .gallery-info-box {
        padding: 18px;
        min-height: 95px;
    }
    
    .project-name {
        font-size: 17px;
    }
    
    .project-location {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .gallery-image-wrapper {
        height: 320px;
    }
    
    .project-name {
        font-size: 15px;
    }
    
    .project-location {
        font-size: 11px;
    }
    
    .gallery-info-box {
        padding: 15px;
        min-height: 85px;
    }
}

/* 22. Contact css */

.contact-container {
    padding-left: calc((100% - 1320px) / 2);
    margin-left: 25px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--black-color);
}

.contact-info-icon i {
    font-size: 28px;
}

.contact-info-wrapper h4 {
    font-size: 32px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.contact-form-heading {
    font-size: 32px;
}

.contact-page-form input,
.contact-page-form textarea {
    padding: 12px 20px;
    border-width: 0px 0px 1px 0px;
    border-color: var(--black-color);
    border-style: solid;
    border-radius: 0;
}

.contact-image {
    width: 573px;
    height: 626px;
    overflow: hidden;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.3s ease; 
}

.contact-image img:hover {
    transform: scale(1.05);
}


.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-close:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-location-map iframe {
    width: 100%;
    margin-bottom: -5px;
}

/* Division Archive Grid */
.division-archieve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Division Card */
.division-one-card {
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.division-one-card:hover {
    transform: translateY(-5px);
}

.division-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.division-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.division-one-card:hover .division-image img {
    transform: scale(1.1);
}

/* Division Contents Overlay */
.division-one-contents {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.division-one-contents h5 {
    margin: 0;
}


/* 6. Services css */

/* Vision Mission Cards - Modern Design */
.vision-mission-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.5s ease;
    border: 2px solid rgba(246, 138, 10, 0.2);
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.vision-mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-color);
    box-shadow: 0 20px 60px rgba(246, 138, 10, 0.3);
}

.vm-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.vm-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.vision-mission-card:hover .vm-image-wrapper img {
    transform: scale(1.1);
}

.vm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    transition: all 0.5s ease;
}

.vision-mission-card:hover .vm-overlay {
    background: linear-gradient(180deg, rgba(246,138,10,0.3) 0%, rgba(0,0,0,0.9) 100%);
}

.vm-content {
    padding: 40px 35px;
    position: relative;
    z-index: 2;
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #ff9f1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(246, 138, 10, 0.3);
}

.vision-mission-card:hover .vm-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(246, 138, 10, 0.5);
}

.vm-content h3 {
    position: relative;
    display: inline-block;
}

.vm-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-color) 0%, transparent 100%);
    transition: width 0.5s ease;
}

.vision-mission-card:hover .vm-content h3::after {
    width: 100%;
}

.vm-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(246, 138, 10, 0.1);
    border: 2px solid var(--brand-color);
    border-radius: 50px;
    transition: all 0.4s ease;
    font-size: 14px;
    letter-spacing: 1px;
}

.vm-btn:hover {
    background: var(--brand-color);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(246, 138, 10, 0.4);
}

.vm-btn i {
    transition: transform 0.4s ease;
}

.vm-btn:hover i {
    transform: translateX(5px);
}

/* Banner Area */
.intro-banner-one {
    position: relative;
}

.banner-area {
    overflow: hidden;
    width: 100%;
}

.banner-thumbnail-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
}

.banner-image-wrapper {
    overflow: hidden;
    width: 100%;
    height: auto;
    display: block;
}

/* Animasi Zoom In/Out HANYA pada Gambar */
.banner-zoom-image {
    width: 100%;
    height: auto;
    display: block;
    animation: smoothZoomInOut 15s ease-in-out infinite;
    transform-origin: center center;
}

.office-life-section {
    background: #1a1a1a; 
    padding: 80px 0;
}

/* TITLE */
.office-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.office-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #d6d6d6;
    line-height: 1.6;
}

/* FLEX CONTAINER */
.office-life-row {
    display: flex;
    gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
}

.office-life-card {
    width: 330px;
    padding: 25px;
    border-radius: 22px;

    background: rgba(255, 130, 40, 0.12);
    backdrop-filter: blur(6px);

    border: 2px solid rgba(255,130,40,0.35);
    box-shadow: 
        0 0 14px rgba(255,150,50,0.3),
        inset 0 0 10px rgba(255,150,50,0.15);

    transition: 0.4s ease;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

/* SHINE EFFECT */
.office-life-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.08) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: shineMove 5s infinite linear;
}

@keyframes shineMove {
    0% { left: -150%; }
    100% { left: 200%; }
}

/* HOVER – 3D + Glow */
.office-life-card:hover {
    transform: translateY(-12px) scale(1.02) rotate3d(1, 1, 0, 4deg);
    box-shadow: 
        0 0 30px rgba(255,140,0,0.7),
        0 10px 35px rgba(0,0,0,0.5),
        inset 0 0 18px rgba(255,150,50,0.25);
}

/* CLICK GLOW */
.office-life-card:active {
    transform: scale(0.96);
    box-shadow: 0 0 40px rgba(255,160,0,1);
}

/* NEON BORDER */
.office-life-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(140deg, #ff8b31, #ffb066);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.4;
    pointer-events: none;
}

/* VIDEO WRAPPER */
.video-wrapper {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
}

/* TEXT */
.office-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.office-card-desc {
    font-size: 15px;
    color: #f1f1f1;
    opacity: 0.9;
    line-height: 1.6;
}


/* Keyframes Smooth Zoom */
@keyframes smoothZoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Container tetap static */
.contact-container {
    overflow: hidden;
}

/* Responsive Breakpoints */

/* Large Desktop (4 columns) - Default sudah ada di atas */

/* Desktop & Large Tablet (3 columns) */
@media (max-width: 1200px) {
    .division-archieve-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Tablet (2 columns) */
@media (max-width: 992px) {
    .division-archieve-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .division-image {
        height: 250px;
    }
}

/* Mobile Landscape (2 columns) */
@media (max-width: 768px) {
    .division-archieve-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .division-image {
        height: 200px;
    }
    
    .division-one-contents {
        padding: 15px;
    }
    
    .division-one-contents h5 {
        font-size: 1rem;
    }
}

/* Mobile Portrait (1 column) */
@media (max-width: 576px) {
    .division-archieve-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .division-image {
        height: 220px;
    }
    
    .division-one-contents h5 {
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .division-image {
        height: 180px;
    }
}

/* 23. Animations */

@keyframes upDownSlow {
    0% {
        transform: translateY(10%);
    }
    50% {
        transform: translateY(-10%);
    }
    100% {
        transform: translateY(10%);
    }
}

.upDown-animation-slow {
    animation-name: upDownSlow;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes upDownFast {
    0% {
        transform: translateY(30%);
    }
    50% {
        transform: translateY(-30%);
    }
    100% {
        transform: translateY(30%);
    }
}

.upDown-animation-fast {
    animation-name: upDownFast;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes spinAnimate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spin-animation-slow {
    animation-name: spinAnimate;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes upDownLeft {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.up-down-left-fast {
    animation-name: upDownLeft;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes zoomBG {
    0% {
        background-size: 100% 100%;
    }
    100% {
        background-size: 150% 150%;
    }
}

.bg-img-zoom {
    animation-name: zoomBG;
    animation-duration: 20s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
}

@keyframes PlayScaleAnimate {
    0% {
        transform: scale(1) translateX(-50%) translateY(-50%);
    }
    50% {
        transform: scale(1.1) translateX(-50%) translateY(-50%);
    }
    100% {
        transform: scale(1) translateX(-50%) translateY(-50%);
    }
}

.icon-scale {
    animation-name: PlayScaleAnimate;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes BgZoomInOut {
    0% {
        background-size: 100% 100%;
    }
    50% {
        background-size: 110% 110%;
    }
    100% {
        background-size: 100% 100%;
    }
}

.bg-zoom-in-out {
    animation-name: BgZoomInOut;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes ripple-data-v-60784e0a {
    70% {
        box-shadow: 0 0 0 40px hsla(0, 0%, 100%, 0);
    }
    to {
        box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0);
    }
}

@keyframes ripple-data-v-4f288fb2 {
    70% {
        box-shadow: 0 0 0 40px hsla(0, 0%, 100%, 0);
    }
    to {
        box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0);
    }
}

@keyframes fadeInOutMove {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }
    50% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.element-fade-in-out-move {
    animation-name: fadeInOutMove;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


/* Scroll up to bottom button */

.cs_scrollup {
    position: fixed;
    bottom: -60px;
    right: 40px;
    color: #fff;
    padding: 5px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
    background-color: #000000;
    box-shadow: 0px 1px 5px 1px rgba(#000000, 0.2);
    border-radius: 50%;
    &:hover {
        background-color: #f68a0a;
        color: #ffffff;
    }
}

.cs_scrollup.cs_scrollup_show {
    bottom: 50px;
}


/* 24. Preloader css */

.placeholder-cs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #ffffff;
}

.preloader {
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-top: 2px solid #101010;
    border-bottom: 2px solid #101010;
    animation: anim9 1s linear infinite;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .preloader {
        left: 35%;
    }
}

.preloader .preloader-inner {
    width: 20px;
    height: 20px;
    background-color: #f68a0a;
    position: absolute;
    border-radius: 50%;
    animation: scaleUp 1s linear infinite forwards;
}

@keyframes anim9 {
    to {
        transform: rotate(360deg);
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.moving-section {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: 5px 0;
    animation: 4s linear infinite slide-left
}

.moving-section-in {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 100%
}

@keyframes slide-left {
    from {
        transform: translateX(0)
    }
    to {
        transform: translateX(-100%)
    }
}


/*read mores arroow  */