/* Global styles */
html {
    scroll-behavior: smooth;
   
}

@font-face {
    font-family: 'OmFont';  /* Name of the font */
    src: url('/assets/fonts/AlbertusMTStd.otf') format('truetype');  /* Correct format: 'truetype' */
    font-weight: bold !important;  /* Bold to match the imported font */
    font-style: normal;  /* Style remains normal */
}

body {
    position:relative;

    margin: 0;
    background-color: #272B38;
    scroll-behavior: smooth; /* Optional if you want to ensure smooth scrolling behavior on the body */
    -webkit-scroll-behavior: smooth; /* For older versions of WebKit browsers */
    font-size: 12px;
    font-family: 'OmFont';

}

/* Media query for larger screens */
@media (min-width: 768px) {
    body {
        font-size: 16px;
       
    }
}

/* Customizing scrollbar width */
::-webkit-scrollbar {
    width: 1px;
}

/* Header */
/* Styles for desktop (Header)*/
.web-header {
    position: relative;
    z-index: 999;
    background-color: var(--header-bg-color, #ffffff); /* Use CSS variable */
    height: 66px;
    max-width: 1920px;
    /* height: 67px ; */
    display: none;
    font-family: 'OmFont';
    font-weight: bold;
}

@media (min-width: 768px) {
    .web-header {
        display: block;
        position: sticky;
        top: 0;
   
    }
}

.web-header .header-content {
    display: flex;
    max-width: 1232px;
    margin: auto;
    align-items: center;
    justify-content: space-between;
}

.web-header .header-content .header-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 88px;
    height: 67px;
}

.web-header .header-content .header-logo img {
    width: 100%;
}

.web-header .menu {
    position: relative;
    display: flex;
    gap: 32px;
}

.web-header .menu .menu-link a {
    color: var(--link-color, black); /* Use CSS variable */
    text-decoration: none;
    /* font-family: "OmFont"; */
    font-family: 'OmFont';
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
}

/* Adjust .menu-dot style based on page position */
.web-header .menu-dot {
    height: 13px;
    width: 13px;
    background-color: var(--dot-bg-color, white); /* Use CSS variable */
    border: 1px solid var(--dot-border-color, #707070); /* Use CSS variable */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.24);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    bottom: -31.2px;
    transition: left 0.5s ease;
}

.web-header .menu-dot.homepage {
    margin-top: 5px;
    left: 12px; /* Adjust position as needed */
}

.web-header .menu-dot.our-service {
    left: 105px; /* Adjust position as needed */
}

.web-header .menu-dot.contact-us {
    left: 215px; /* Adjust position as needed */
}

.web-header .menu-dot.career {
    left: 305px; /* Adjust position as needed */
}

/* Ensure menu-dot is hidden by default, or use a specific class to hide it */
.web-header .menu-dot.privacy-policy {
    display: none; /* Hide dot when on privacy-policy page */
}

/* Styles for mobile */
.mobile-header {
    display: block;
    position: relative;
    z-index: 999;
    background-color: #ffffff; /* Use CSS variable */
    padding: 3px 18px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.mobile-header.menu-show {
    position: fixed;
    top: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .mobile-header {
        display: none;
    }
}

.mobile-header .header-content {
    display: flex;
    max-width: 340px;
    margin: auto;
    align-items: center;
    justify-content: space-between;
}

.mobile-header .header-content .header-logo {
    width: 62px;
}

.mobile-header .header-content .header-logo img {
    width: 100%;
}

.mobile-header .header-content .menu {
    display: flex;
    gap: 4px;
    margin-right: 18px;
    border: none;
    background: none;
    font-size: 8px;
}

.mobile-header .header-content .menu span {
    display: block;
    width: 8px;
    height: 8px;
    font-size: 8px;
    border-radius: 50%;
    border: 1px solid #707070;
    box-shadow: 0px 4px 8px #0000003D;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none; /* Initially hidden */
    z-index: 9;
    width: 100%;
    height: 120%;
    position: fixed;
    right: -100%;
    color: black;
    background-color: rgba(255, 255, 255, 0.96); 
    transition: right 0.3s ease; 
}

.mobile-menu.show {
    display: block; /* Show when toggled */
    right: 0; 
}

.mobile-menu .menu-bottom {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 60px;
    left: 50%;
    margin-bottom: 32px;
    transform: translate(-50%, 0);
    opacity: 0;
    transition: opacity 0.5s ease; 
}

.mobile-menu.show .menu-bottom {
    display: block;
    opacity: 1;
}

.mobile-menu .menu-links {
    margin-top: 50px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.mobile-menu .menu-links a {
    color: black;
    text-shadow: 0px 3px 6px #00000029;
    font-family: "OmFont";
    text-decoration: none;
    font-weight: 500;
    
}

.mobile-menu .menu-bottom .location {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.mobile-menu .menu-bottom .location .title {
    font-family: "OmFont";
}

.mobile-menu .menu-bottom .location .address {
    font-family: "OmFont";
    font-weight: 300;
    line-height: 2;
    margin-bottom: 26px;
}

.mobile-menu .menu-bottom .social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.mobile-menu .menu-bottom .social .social-icon {
    width: 16px;
}

.mobile-menu .menu-bottom .social .social-icon img {
    width: 100%;
}

/* CSS to prevent scrolling */
.no-scroll {
    overflow: hidden;
}
/* End Header */

/* Footer */
/* Styles for desktop (Footer)*/
.footer.web {
    color: white;
    background-color: black;
    display: none;
}

@media (min-width: 768px) {
    .footer.web {
        display: block;
    }
}

.footer.web .content-wrapper {
    margin: auto;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 90%;
    max-width: 296px;
}

@media (min-width: 768px) {
    .footer.web .content-wrapper {
        width: 100%;
        max-width: 1232px;
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer.web .content-wrapper .left .links-wrapper {
    display: flex;
    gap: 24px;
    font-family: "OmFont";
    font-size: 14px;
}

.footer.web .content-wrapper .left .links-wrapper a{
    color: white;
    text-decoration: none;
}

.footer.web .content-wrapper .left .social-wrapper {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.footer.web .content-wrapper .left .social-wrapper .img-wrapper {
    height: 25px;
    width: 25px;
    color: white;
}

.footer.web .content-wrapper .left .social-wrapper .img-wrapper img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1); /* This turns the image white */
}

.footer.web .content-wrapper .right {
    display: flex;
    font-size: 12px;
    gap: 16px;
}

.footer.web .content-wrapper .right .location {
    display: flex;
    gap: 1.5rem;
}

.footer.web .content-wrapper .right .location .location-title {
    color: white;
    font-family: "OmFont";
    text-align: left;
    margin-top: 4px;
}

.footer.web .content-wrapper .right .location .address {
    line-height: 2.5;
    text-align: left;
    font-style: italic;
}

/* Style for Mobile */
.footer.mobile {
    background: url('../images/mobile/Mobile-Homepage/Footer-background.png');
    background-size: 100%;
    display: block;
    text-align: center;
    color: white;
}

.footer.mobile .content-wrapper {
    padding: 30px 0;
}

.footer.mobile .content-wrapper .links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-family: "OmFont";
    font-size: 14px;
}

.footer.mobile .content-wrapper .links-wrapper a { 
    color: white;
    text-decoration: none;
}

.footer.mobile .content-wrapper .social-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 24px;
}

.footer.mobile .content-wrapper .social-wrapper .img-wrapper {
    width: 16px;
    height: 16px;
}

.footer.mobile .content-wrapper .social-wrapper .img-wrapper img {
    width: 100%;
}

.footer.mobile .content-wrapper .location {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    font-size: 12px;
    margin-top: 16px;
}

.footer.mobile .content-wrapper .location .location-title {
    font-family: "OmFont";
}

.footer.mobile .content-wrapper .location .address {
    font-size: 12px;
    font-style: italic;
    font-family: "WorkSans";
}

.footer.mobile .content-wrapper .location .map-wrapper {
    margin-top: 16px;
    width: 100%;
    max-width: 400px; /* Adjust as needed */
    height: 200px; /* Adjust height if necessary */
    display: flex;
    justify-content: center;
}

.social-media {
    margin-top: 20px;
    display: flex;
    gap: 50px;
    margin-bottom: 10px;
}

.social-media img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1); /* This turns the image white */
}

@media (min-width: 768px) {
    .footer.mobile {
        display: none;
    }
}

/* End Footer */

/* Homepage */
/* Desktop style */


/* End Homepage */

/* Our-Service */


/* End Our-Service */