html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.primary-color {
    color: #004E64;
}

.bg-primary {
    background-color: #004E64;
}

.accent-color {
    color: #D97706;
}

.bg-accent {
    background-color: #D97706;
}

.hover-accent:hover {
    color: #D97706;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Preloader CSS */
#pre-load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-container {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-container.has-theme-gradient {
    background: conic-gradient(from 0deg, #004E64, #D97706, #004E64);
    animation: spin 2s linear infinite;
}

.loader-icon {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.loader-icon img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* Logo CSS */
.site-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .site-logo {
        height: 40px;
    }
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body.menu-open {
    overflow: hidden;
}

footer {
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .whatwe-slider,
    .services-slider,
    .testimonial-slider {
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@supports (height: 100svh) {
    body {
        min-height: 100svh;
    }
}

#products-scroll .p-10 h3,
#products-scroll .p-10 p {
    display: none;
}

.dark {
    background-color: #0b1220;
    color: #e5e7eb;
}

.dark .bg-white {
    background-color: #0b1220 !important;
}

.dark .bg-gray-50 {
    background-color: #0b1220 !important;
}

.dark .text-slate-900 {
    color: #e5e7eb !important;
}

.dark .primary-color {
    color: #e5e7eb !important;
}

.dark .text-gray-600 {
    color: #cbd5e1 !important;
}

.dark .text-gray-500 {
    color: #94a3b8 !important;
}

.dark .text-gray-400 {
    color: #94a3b8 !important;
}

.dark .border {
    border-color: #1f2937 !important;
}

.dark .border-gray-100 {
    border-color: #1f2937 !important;
}

.dark .border-t {
    border-color: #1f2937 !important;
}

.dark header.bg-white {
    background-color: #0b1220 !important;
}

.dark footer {
    background-color: #0b1220 !important;
    color: #94a3b8 !important;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {

    html,
    body {
        width: 100% !important;
        overflow-x: hidden !important;
        position: relative;
        -webkit-text-size-adjust: 100%;
    }

    body {
        font-size: 15px;
        line-height: 1.6;
    }

    .site-logo {
        height: 45px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        hyphens: auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-section h1 {
        font-size: 26px;
    }

    .hero-section p {
        font-size: 14px;
        line-height: 1.6;
    }
}