@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* Custom Fonts */
.font-bebas {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Custom Colors */
.bg-navy {
    background-color: #161f37;
}

.text-navy {
    color: #161f37;
}

.text-cyan-custom {
    color: #00a8cc;
}

.bg-cyan-custom {
    background-color: #00a8cc;
}

.bg-cyanCustom {
    background-color: #00a8cc;
}

.text-cyanCustom {
    color: #00a8cc;
}

.border-cyanCustom {
    border-color: #00a8cc;
}

.bg-cyanCustom\/5 {
    background-color: rgba(0, 168, 204, 0.05);
}

.bg-cyanCustom\/10 {
    background-color: rgba(0, 168, 204, 0.1);
}

.border-cyanCustom\/20 {
    border-color: rgba(0, 168, 204, 0.2);
}

.border-cyanCustom\/35 {
    border-color: rgba(0, 168, 204, 0.35);
}

/* Component Styles */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(22, 31, 55, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
}

/* Patterns & Animations */
.dot-pattern {
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 24px 24px;
}

.dot-pattern-cyan {
    background-image: radial-gradient(rgba(0, 168, 204, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
}

@keyframes waveMove {
    0% { transform: scale(1) translateX(0); }
    50% { transform: scale(1.05) translateX(-10px); }
    100% { transform: scale(1) translateX(0); }
}

.animate-wave-slow {
    animation: waveMove 15s ease-in-out infinite;
}

.hero-gradient {
    background-color: #161f37;
    background-image: radial-gradient(circle at 80% 20%, rgba(0, 168, 204, 0.2) 0%, transparent 50%),
                      radial-gradient(circle at 10% 80%, rgba(0, 168, 204, 0.1) 0%, transparent 40%);
    background-repeat: no-repeat;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.animate-scroll-vertical {
    animation: scrollVertical 40s linear infinite;
}

@keyframes scrollHorizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-scroll-horizontal {
    animation: scrollHorizontal 40s linear infinite;
}

.mask-gradient-x {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.mask-gradient-y {
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

/* Scrollbar utilities */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
