/* Import Google Font - Inter (Modern & Professional) */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;
900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*:not(i):not(.fa):not(.fab):not(.fas):not(.far):not(.fal):not(.fad):not(.fass):not(.fasr):not([class*="fa-"]) {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', Arial, sans-serif !important;
}

i.fa,
i.fas,
i.far,
i.fab,
i.fal,
i.fad,
i.fass,
i.fasr,
.fa,
.fas,
.far,
.fab,
.fal,
.fad,
.fass,
.fasr,
[class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro" !important;
}

html,
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 600;
    line-height: 1.3;
}

p,
span,
div,
a,
li,
td,
th,
label,
input,
textarea,
select,
button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', Arial, sans-serif !important;
}

.nav-menu,
.nav-link,
.services-btn,
.contact-btn,
.service-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 500;
}

.footer-container,
.footer-content,
.social-link,
.footer-section h3,
.footer-section ul li a,
.copyright {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', Arial, sans-serif !important;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select,
button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', Arial, sans-serif !important;
}

.logo,
.brand,
.title,
.subtitle,
.description,
.content,
.text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', Arial, sans-serif !important;
}

.btn,
.button,
.link,
.menu,
.nav,
.header,
.footer,
.main,
.section,
.card,
.box {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', Arial, sans-serif !important;
}

.nav-menu .nav-link {
    font-weight: 500 !important;
}

h1 {
    font-weight: 700 !important;
}

h2 {
    font-weight: 600 !important;
}

h3 {
    font-weight: 600 !important;
}

h4 {
    font-weight: 500 !important;
}

h5 {
    font-weight: 500 !important;
}

h6 {
    font-weight: 500 !important;
}

button,
.btn,
.contact-btn,
.services-btn {
    font-weight: 500 !important;
    letter-spacing: 0.5px;
}

*:not(i):not(.fa):not(.fab):not(.fas):not(.far):not(.fal):not(.fad):not(.fass):not(.fasr):not([class*="fa-"]) {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
} */



.navbar {
    background: transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border-bottom: none;
    position: fixed;
    width: 100%;
    z-index: 1000;
    height: 90px;
    font-family: 'Futura PT', sans-serif;
    /* box-shadow: 3px 3px 5px #ddd; */
}

.navbar.scrolled {
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.nav-container {
    font-family: 'Futura PT', sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 60px;
}

.logo img {
    margin-top: 25px;
    /* margin-left: -40px; */
    height: 100px;
    max-width: 100%;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo {
    color: black;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
    margin-top: 15px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 20px 25px;
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.nav-link:hover {
    background-color: #333;
    /* color: white; */
}

.navbar.scrolled .nav-link {
    color: black;
}

.services-btn,
.contact-btn {
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid white;
    background: transparent;
    margin: 0 10px;
    cursor: pointer;
}

.services-btn:hover,
.contact-btn:hover {
    background-color: white;
    color: black;
}

.navbar.scrolled .services-btn,
.navbar.scrolled .contact-btn {
    color: black;
    border-color: black;
}

.navbar.scrolled .services-btn:hover,
.navbar.scrolled .contact-btn:hover {
    background-color: black;
    color: white;
}

.services-dropdown {
    position: absolute;
    /* top: 100%; */
    /* right:-200px; */
    width: 17vw;
    background: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    overflow-x: auto;
    /* max-height: 80vh; */
}

.services-item:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    /* max-width: 1400px; */
    /* margin: 10px; */
    padding: 15px 3% 15px 8%;
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 40px;
}

.service-category {
    color: #000;
}

.category-title {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-list {
    list-style: none;
}

.service-item {
    margin-bottom: 15px;
}

.service-link {
    color: #666;
    text-decoration: none;
    padding: 5px 0;
    display: block;
    transition: all 0.3s ease;
    font-size: 13px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link:hover {
    color: #000;
    font-weight: 600;
}

.hamburger {
    margin-top: 20px;
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.navbar.scrolled .hamburger {
    color: black;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 1px solid #333;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-item {
    border-bottom: 1px solid #333;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: #333;
}

.mobile-services-toggle {
    background: none;
    border: 1px solid white;
    color: white;
    width: calc(100% - 40px);
    margin: 20px;
    margin-top: 25px;
    text-align: center;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-services-toggle:hover {
    background-color: white;
    color: black;
}

.mobile-services-content {
    background: #111;
    display: none;
    margin: 0 20px 20px 20px;
    border: 1px solid #333;
    max-height: 60vh;
    overflow-y: auto;
}

.mobile-services-content.active {
    display: block;
}

.mobile-service-category {
    padding: 20px;
    border-bottom: 1px solid #333;
}

.mobile-service-category:last-child {
    border-bottom: none;
}

.mobile-category-title {
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-service-item {
    margin-bottom: 10px;
}

.mobile-service-link {
    color: #999;
    text-decoration: none;
    font-size: 11px;
    line-height: 1.4;
    display: block;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.mobile-service-link:hover {
    color: white;
}

.mobile-contact-btn {
    background: none;
    border: 1px solid white;
    color: white;
    width: calc(100% - 40px);
    margin: 20px;
    text-align: center;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.mobile-contact-btn:hover {
    background-color: white;
    color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-container {
        padding: 0 15px;
        height: 50px;
    }

    /* .logo img {
                height: 30px;
            } */
    .logo img {
        margin-top: 22px;
        height: 66px;
        max-width: 100%;
        transition: height 0.3s ease;
    }

    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        margin: 15px;
    }

    .services-dropdown {
        right: 0;
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 45px;
    }

    .logo img {
        margin-top: 22px;
        height: 66px;
        max-width: 100%;
        transition: height 0.3s ease;
    }

    .dropdown-content {
        padding: 20px 15px;
        margin: 10px;
    }

    .hamburger {
        font-size: 20px;
        padding: 8px;
    }
}