/* ================= VARIABLES ================= */
:root {
    --font-primary: 'Syne', sans-serif;
    --font-secondary: 'Lexend Deca', sans-serif;

    --color-primary: #0A9AD2;
    --color-secondary: #001F3E;
    --color-text: #606B75;
    --color-black: #000000;
    --color-white: #ffffff;
}

/* ================= GLOBAL ================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-white);
    overflow-x: hidden;
}

ul {
    padding-left: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

header,
footer,
section {
    overflow: hidden;
}

:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Scrollbar styling for WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
    border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
    background: lighten(var(--color-primary), 10%);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) #1a1a1a;
}

.hide {
    display: none;
}

.hidden {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary) !important;

}

/* ================= HEADINGS ================= */
.banner-heading {
    font-size: clamp(26px, 3.5vw, 65px);
    line-height: clamp(40px, 4.5vw, 80px);
    font-weight: 600;
    margin-bottom: clamp(14px, 2vw, 24px);
    color: var(--color-white);
}

.label {
    font-size: clamp(12px, 2vw, 14px);
    line-height: clamp(20px, 3vw, 32px);
    font-weight: 600;
    color: var(--color-black);
    background: #F2F2F2;
    display: inline-block;
    padding: 0px 10px;
    border-radius: 5px;
    margin-bottom: clamp(8px, 1.5vw, 12px);
    color: var(--color-black);
}

.title {
    font-size: clamp(22px, 3vw, 40px);
    line-height: clamp(22px, 4vw, 40px);
    font-weight: 600;
    margin-bottom: clamp(8px, 1.5vw, 12px);
    color: var(--color-black);
}

.body-text {
    font-size: clamp(14px, 2vw, 14px);
    line-height: clamp(22px, 2.8vw, 20px);
    font-weight: 400;
    margin-bottom: clamp(10px, 2.5vw, 15px);
    color: var(--color-text);
}

/* ================= BUTTONS ================= */
.buttons-group {
    display: inline-flex;
    gap: 15px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1vw, 12px);
    padding: clamp(8px, 1vw, 8px) clamp(14px, 2vw, 20px);
    border-radius: 5px;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    text-transform: capitalize;
}

.primary-btn img {
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    width: 15px;
}

.primary-btn:hover {
    transform: translateY(-2px);
}

.primary-btn:hover img {
    transform: unset;
}

.btn-black {
    background: var(--color-black);
    color: var(--color-white);
}

.btn-black img {
    filter: invert(1);
}

.btn-black:hover img {
    transform: unset;
}

.btn-blue {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-blue img {
    filter: invert(1);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-black);
}

/* ================= PAGE LOADER ================= */
#pageLoader {
    position: fixed;
    inset: 0;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#pageLoader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    gap: clamp(6px, 1vw, 12px);
}

.loader span {
    width: clamp(18px, 2vw, 32px);
    height: clamp(18px, 2vw, 32px);
    background: var(--color-white);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loader span:nth-child(1) {
    animation-delay: -0.32s;
}

.loader span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.3;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ================= HEADER ================= */
header {
    padding: clamp(16px, 2.5vw, 25px) 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        backdrop-filter 0.4s ease;
}

header.is-fixed {
    position: fixed;
    background: rgba(17, 17, 17, 0);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

header.is-hidden {
    transform: translateY(-100%);
}

header .right {
    display: flex;
    align-items: center;
    gap: clamp(20px, 4vw, 50px);
}

header .header-cta {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
    color: #000000;
    font-family: var(--font-primary);
    text-decoration: underline;
    font-size: clamp(14px, 1.2vw, 16px);
    background: white;
    padding: 10px 20px;
    border-radius: 5px;
}

header .header-cta img {
    width: clamp(16px, 1.5vw, 20px);
    filter: invert(1);
}

header .menu-toggle {
    cursor: pointer;
    width: clamp(28px, 3vw, 40px);
    background: none;
    border: none;
}

.offcanvas-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.offcanvas-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(.77, 0, .18, 1);
}

.offcanvas-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #111;
    color: var(--color-white);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(20px, 5vw, 60px);
    will-change: transform;
}

.offcanvas-nav {
    list-style: none;
    padding: 0;
    text-align: center;
}

.offcanvas-nav li {
    margin: clamp(12px, 2vw, 20px) 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.offcanvas-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: clamp(20px, 3vw, 28px);
    transition: color 0.3s ease, opacity 0.3s ease;
    font-family: var(--font-primary);
}

.offcanvas-nav a:hover {
    color: var(--color-primary);
}

.menu-close {
    position: absolute;
    top: clamp(20px, 3vw, 30px);
    right: clamp(20px, 4vw, 40px);
    font-size: clamp(22px, 3vw, 28px);
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    opacity: 0;
    transform: rotate(-90deg);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.offcanvas-menu.active {
    pointer-events: auto;
}

.offcanvas-menu.active .offcanvas-overlay {
    opacity: 1;
}

.offcanvas-menu.active .offcanvas-content {
    transform: translateX(0);
}

.offcanvas-menu.active .offcanvas-nav li {
    opacity: 1;
    transform: translateY(0);
}

.offcanvas-menu.active .offcanvas-nav li:nth-child(1) {
    transition-delay: 0.1s;
}

.offcanvas-menu.active .offcanvas-nav li:nth-child(2) {
    transition-delay: 0.2s;
}

.offcanvas-menu.active .offcanvas-nav li:nth-child(3) {
    transition-delay: 0.3s;
}

.offcanvas-menu.active .offcanvas-nav li:nth-child(4) {
    transition-delay: 0.4s;
}

.offcanvas-menu.active .offcanvas-nav li:nth-child(5) {
    transition-delay: 0.5s;
}

.offcanvas-menu.active .menu-close {
    opacity: 1;
    transform: rotate(0deg);
}

body.menu-open {
    overflow: hidden;
}

/* ================= BANNER MAIN SLIDER ================= */
.banner-main {
    height: 100%;
    width: 100%;
    padding-top: clamp(120px, 10vw, 150px);
    padding-bottom: clamp(30px, 5vw, 50px);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background 0.6s ease;
}

.banner-main .head-wrapper {
    transition: opacity 0.5s ease;
}

.banner-main .head-wrapper.fade-out {
    opacity: 0;
}

.banner-main .head-wrapper.fade-in {
    opacity: 1;
}

.banner-main .head-wrapper p {
    color: var(--color-white);
    margin-top: clamp(50px, 8vw, 100px);
}

.banner-main .right {
    margin-top: clamp(100px, 15vw, 190px);
}

.banner-main .slide-indicators-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(10px, 2vw, 20px);
}

.banner-main .head h3 {
    color: var(--color-white);
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: clamp(20px, 2vw, 20px);
    margin-left: clamp(0px, -1vw, -8px);
}

.banner-main .slide-indicators-wrapper .box {
    flex: 1 1 0;
    background: var(--color-white);
    border-radius: clamp(3px, 0.5vw, 5px);
    padding: clamp(5px, 1.5vw, 10px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.banner-main .slide-indicators-wrapper .box h4 {
    font-size: clamp(12px, 1.5vw, 16px);
    color: var(--color-black);
    font-weight: 600;
}

.banner-main .slide-indicators-wrapper .box .btn-blue {
    width: 100%;
    margin-top: clamp(5px, 1vw, 10px);
    text-align: center;
    justify-content: center;
    padding: clamp(2px, 0.8vw, 3px);
    font-size: clamp(12px, 1.2vw, 14px);
}

.banner-main .slide-indicators-wrapper .box.active {
    transform: scale(1.1);
    box-shadow: 0 clamp(3px, 0.8vw, 5px) clamp(10px, 2vw, 15px) rgba(0, 0, 0, 0.2);
}

.banner-bottom {
    display: block;
    margin: clamp(30px, 8vw, 70px) auto 0;
    width: 100%;
    height: clamp(30px, 2vw, 30px);
    cursor: pointer;
}

/* ================= ABOUT US ================= */
.about {
    padding-top: clamp(30px, 6vw, 100px);
    padding-bottom: clamp(30px, 10vw, 150px);
    background-image: url(../images/about-right-img.webp);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: clamp(200px, 45vw, 700px);
    width: 100%;
}

.about .right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
}

.industires-sub-boxes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: clamp(5px, 2vw, 15px);
    margin-top: clamp(15px, 4vw, 30px);
}

.industires-sub-boxes h3 {
    font-size: clamp(13px, 1.5vw, 16px);
    color: var(--color-white);
    background: var(--color-secondary);
    padding: clamp(10px, 2vw, 15px) clamp(14px, 3vw, 20px);
    border-radius: clamp(6px, 1vw, 10px);
}

/* ================= SERVICES MAIN ================= */
.services-main {
    padding: clamp(30px, 6vw, 70px) 0;
    background: #F2F2F2;
    border-radius: 20px;
}

.services-main .head-wrapper .label {
    background: var(--color-white);
}

.services-main .services-row {
    margin-top: 20px;
}

.services-main .services-box .content {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    min-height: 275px;
}

.services-main .services-box .content .icon-box {
    display: flex;
    gap: 20px;
    align-items: center;
}

.services-main .services-box .content .icon-box img {
    width: 30px;
}

.services-main .services-box .content .icon-box h3 {
    color: var(--color-black);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.services-main .services-box .content ul {
    margin-top: 20px;
    margin-left: 15px;
}

.services-main .services-box .content ul li {
    font-size: clamp(14px, 2vw, 14px);
    line-height: clamp(22px, 2.8vw, 20px);
    font-weight: 400;
    list-style: disc;
}

.services-main .services-box .overlay img {
    border-radius: 10px;
}

.services-main .services-box .overlay .btn-blue {
    font-size: clamp(13px, 1.2vw, 14px);
}

.services-box.top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-box.bottom {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    height: 100%;
    margin-top: 10px;
}

.services-box.bottom .content {
    width: 60%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.services-box.bottom .overlay {
    height: 82%;
}

.services-box.bottom .overlay img {
    height: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.services-main .services-box .overlay {
    text-align: center;
    position: relative;
}

.services-main .services-box .overlay a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    display: inline-flex;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.services-main .services-box .overlay:hover a {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.services-main .services-box.bottom .overlay a {
    width: 200px;
}

/* ================= INTEGRATION ================= */
.integration {
    padding: clamp(30px, 6vw, 70px) 0;
}

.integration-boxes-row {
    padding-bottom: 50px;
    border-bottom: 1px solid #F2F2F2;
}

.integration .content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.integration .content-box h3 {
    color: var(--color-black);
    font-size: 17px;
    font-weight: 600;
}

.integration .content-box .circle {
    position: relative;
}

.integration .content-box .circle h4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: var(--color-white);
}

.integration .content-box.unorder {
    margin-top: 60px;
}

/* ================= COUNTETR ================= */
.counter {
    padding: clamp(30px, 6vw, 70px) 0;
    background-image: url(../images/about-right-img.webp);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: clamp(200px, 45vw, 700px);
    width: 100%;
}

.counter-boxes-row {
    margin-top: 50px;
}

.counter-box {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: var(--color-white);
}

.large-counter {
    height: 100%;
    min-height: 500px;
}

.small-counter {
    min-height: 250px;
}

.counter-content {
    padding: 30px;
    width: 100%;
    padding-bottom: 10px;
}

.counter-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-secondary) !important;
}

.large-counter .counter-content p {
    color: var(--color-white);
}

.small-counter .counter-content h2 {
    color: var(--color-black);
}

.small-counter .counter-content p {
    color: var(--color-black);
}

.counter-2 {
    border: 1px solid #0A9AD2;
}

.counter-3 {
    border: 1px solid #001F3E;
}

/* ================= PORTFOLIO MAIN ================= */
.portfolio-main {
    padding: clamp(30px, 6vw, 70px) 0;
    background: #F2F2F2;
    border-radius: 20px;
}

.portfolio-main .col-img {
    background-image: url(../images/about-right-img.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.portfolio-main .head-wrapper .label {
    background: var(--color-white);
}

.portfolio-main .head-wrapper .body-text {
    width: 75%;
}

.portfolio-main .img-box {
    margin-bottom: 30px;
}

.portfolio-main .img-box img {
    border-radius: 10px;
}

.portfolio-main .img-box h3 {
    font-size: 20px;
    color: var(--color-black);
    margin: 20px 0;
    font-weight: 600;
}

.portfolio-main .img-box button {
    background: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    border-radius: 50px;
    font-size: 12px;
    padding: 5px 15px;
    pointer-events: none;
}

/* ================= REVIEWS MAIN ================= */
.reviews-main {
    padding: clamp(30px, 6vw, 70px) 0;
}

.owl-carousel {
    display: block;
}

.reviews-row {
    position: relative;
}

.review-card.text-card {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
}

.review-card.text-card .card {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
}

.review-card.image-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.review-card.image-card .body-text {
    margin-bottom: 0;
}

.review-card .stars {
    color: var(--color-primary);
    font-size: 18px;
    margin-bottom: 5px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 55px;
}

.review-user img {
    width: 40px !important;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user h6 {
    color: var(--color-black);
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 600;
}

.review-user span {
    font-size: 12px;
    color: var(--color-text);
}

.review-card .card {
    background: #f4f4f4;
    border-radius: 14px;
    padding: 25px;
    height: 100%;
    border: none;
}

/* Owl Nav Position (Top Right Like Image) */
.reviews-row .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 10px;
    display: flex !important;
}

.reviews-row .owl-nav button {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: #e0e0e0 !important;
    border: none !important;
}

.reviews-row .owl-nav button:hover {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.reviews-counter-row {
    padding-top: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F2F2F2;
}

.counter-reviews h3 {
    color: var(--color-secondary);
    font-family: var(--font-secondary) !important;
}

/* ================= FOOTER SECTIONS ================= */
.reach-out {
    padding: clamp(30px, 6vw, 50px) 0;
}

.cta-footer {
    width: 100%;
    height: 350px;
    background-image: url(../images/cta-footer.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    overflow: visible;
    margin-top: -200px;
}

.cta-footer .row {
    justify-content: flex-end;
}

.cta-footer .cta-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -47px;
}

.cta-footer .cta-box .head {
    background: var(--color-primary);
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    justify-content: space-between;
}

.cta-footer .cta-box .head h3 {
    color: var(--color-white);
    font-size: 22px;
    margin-bottom: 0;
}

.cta-footer .cta-box .head img {
    filter: invert(1);
}

.cta-footer .cta-box .items {
    background: var(--color-secondary);
    width: 100%;
    padding: 30px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cta-footer .cta-box .items ul {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-footer .cta-box .items li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-footer .cta-box .items li img {
    width: 15px;
}

.cta-footer .cta-box .items a {
    color: var(--color-white);
    font-size: 14px;
}

.main-footer {
    background: black;
}

.main-footer .top-row {
    border-bottom: 1px solid var(--color-text);
}

.main-footer .bottom-row {
    padding: 50px 0;
}

.main-footer .border-col {
    border-right: 1px solid var(--color-text);
    border-left: 1px solid var(--color-text);
}

.main-footer .content {
    padding: 50px 30px;
}

.main-footer .content h5 {
    color: var(--color-primary);
    font-size: 14px;
}

.main-footer .content li a {
    color: var(--color-white);
    font-size: 12px;
}

.main-footer .content.content-box {
    padding-left: 0;
}

.main-footer .content.content-box h3 {
    color: var(--color-white);
    font-size: 22px;
}

.main-footer .content.contact-social {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.main-footer .content ul {
    margin-bottom: 0;
}

.main-footer .contact-main-menu {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding-right: 0;
    padding-bottom: 0;
    height: 100%;
}

.main-footer .content .copyright p {
    text-align: right;
}

/* ================= INNER PAGES ================= */
.banner-inner .body-text {
    color: white;
    text-align: center;
}

.overview {
    padding: clamp(30px, 10vw, 150px) 0;
    background-image: url(../images/about-right-img.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.services-tabs {
    padding: clamp(30px, 6vw, 70px) 0;
    background: #F2F2F2;
    border-radius: 20px;
}

.services-tabs .head-wrapper .label {
    background: var(--color-white);
}

.services-tabs .tabs-row {
    margin-top: 30px;
    padding: 25px 10px;
    background: var(--color-white);
    border-radius: 10px;
}

.services-tabs .tabs-row .nav-pills {
    /* gap: 3px; */
    justify-content: space-between;
}

.services-tabs .tabs-row .nav-link {
    background: #F2F2F2;
    text-align: left;
    color: var(--color-black);
    padding: 15px;
    font-size: 18px;
}

.services-tabs .tabs-row .nav-link.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.services-tabs .tabs-row .img-fluid {
    width: 100%;
    border-radius: 5px;
    height: 100%;
    object-fit: cover;
}

.services-tabs .tabs-row .tab-content {
    position: relative;
    padding-left: 20px;
}

.services-tabs .tabs-row .btn-white {
    color: var(--color-primary);
    position: absolute;
    right: -5px;
    bottom: -5px;
}

.portfolio-carousel-row {
    margin-top: 50px;
}

.portfolio-carousel-row .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 10px;
    display: flex !important;
    justify-content: flex-end;
}

.portfolio-carousel-row .owl-nav button {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: var(--color-white) !important;
    border: none !important;
}

.portfolio-carousel-row .owl-nav button:hover {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
}

/* ===================================== */
/* Header Layout */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.desktop-menu li a {
    text-decoration: none;
    font-weight: 400;
    color: #fff;
    transition: 0.3s ease;
    font-family: var(--font-primary);
}

.desktop-menu li a:hover {
    opacity: 0.7;
}

/* Hide mobile toggle on desktop */
.menu-toggle {
    display: none;
    cursor: pointer;
}

/* ========================= */
/* Responsive Behavior */
/* ========================= */

@media (max-width: 991px) {

    /* Hide desktop menu */
    .desktop-menu {
        display: none;
    }

    /* Show mobile toggle */
    .menu-toggle {
        display: block;
        width: 26px;
    }

    /* Optional: reduce spacing */
    header .right {
        gap: 15px;
    }
}

/* =========================== */
.main-footer .contact-main-menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    align-items: baseline;
    padding-left: 70px;
    position: relative;
}

/* Wrapper for 2 column layout */
.contact-main-menu .menu-wrapper {
    display: flex;
}

/* Remove default list styling */
.contact-main-menu .cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-main-menu .cta-list a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
}

.main-footer .content .copyright p {
    text-align: right;
    position: absolute;
    bottom: 0;
}