#mobileMenuOpen {
cursor: pointer;
z-index: 9999;
position: absolute;
right: 15px;
top: 25px; /* Aligns with logo */
width: 30px;
height: 25px;
}

/* Style the lines inside the hamburger */
#mobileMenuOpen span {
display: block;
width: 100%;
height: 3px;
margin-bottom: 5px;
background-color: #0079ff !important; /* Blue color to be visible on white/transparent */
border-radius: 3px;
}

/* 2. FIX MOBILE MENU PANEL */
.mobile-menu-panel {
position: fixed;
top: 0;
right: -100%; /* Hidden off-screen */
width: 80%;
max-width: 300px;
height: 100vh;
background: #ffffff;
box-shadow: -5px 0 15px rgba(0,0,0,0.1);
z-index: 100000; /* Above everything */
transition: right 0.3s ease-in-out;
padding: 20px;
visibility: hidden;
}

.mobile-menu-panel.open {
right: 0;
visibility: visible;
}

.mobile-menu-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
border-bottom: 1px solid #eee;
padding-bottom: 15px;
}

.close-btn {
font-size: 35px;
background: none;
border: none;
line-height: 0.7;
cursor: pointer;
}

/* 3. FIX FOOTER ON MOBILE */
@media (max-width: 767px) {
.footer-brand, 
.footer-links, 
.footer-contact, 
.footer-bottom {
text-align: center !important;
}

.footer-brand .social-links {
justify-content: center !important;
display: flex;
gap: 15px;
margin-top: 15px;
}

.footer-logo {
margin: 0 auto 15px auto;
display: block;
}
}

/* Sticky Header Logo Logic */
.header-sticky--is-sticky .light-logo { display: none !important; }
.header-sticky--is-sticky .dark-logo { display: block !important; }
.light-logo { display: block; }
.dark-logo { display: none; }

/* MOBILE HEADER IMPROVEMENTS */
@media (max-width: 768px) {

/* Shrink header height */
.header {
padding: 8px 0 !important;
}

/* Logo smaller for mobile */
.header__logo img {
width: 120px !important;
height: auto !important;
}

/* Remove big spacing above hero */
.preview-hero-text h6 {
font-size: 12px !important;
margin-top: 5px !important;
letter-spacing: 0.8px;
}

/* Main title size reduce */
.preview-hero-text h2 {
font-size: 22px !important;
line-height: 30px !important;
}

/* Body text adjust */
.preview-hero-text p {
font-size: 14px !important;
line-height: 22px !important;
}

/* Hamburger reposition & size */
.hamburger {
right: 12px !important;
top: 22px !important;
transform: scale(0.9);
}

.hamburger span {
background-color: #0079ff !important;
}

/* Hide "Innovative Tech & Software" on mobile */
.preview-hero-text h6 {
display: none !important;
}

}

/* circle dot  */
/* Make all dots equal size */
.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: #d0d5df !important; /* grey inactive dots */
    opacity: 1 !important;
    border-radius: 50% !important;
}

/* Active dot becomes solid blue circle */
.swiper-pagination-bullet-active {
    background: #007bff !important;
    transform: scale(2);
}