/* Custom src/fonts */
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Google Sans Text';
    src: url('fonts/Google Sans Text Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Google Sans Text';
    src: url('fonts/Google Sans Text Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Google Sans Text';
    src: url('fonts/Google Sans Text Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Google Sans Text';
    src: url('fonts/Google Sans Text Medium Italic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'Google Sans Text';
    src: url('fonts/Google Sans Text Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Google Sans Text';
    src: url('fonts/Google Sans Text Bold Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

body {
    background-color: #ffffff;
    color: #282828;
    overflow-x: hidden;
}



/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Card Hover Effects */
.feature-card {
    transition: all 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(40, 40, 40, 0.08);
}
.feature-card:hover .icon-wrapper {
    background-color: #007bff;
    color: #ffffff;
    transform: scale(1.1);
}
.icon-wrapper {
    transition: all 0.4s ease;
}

/* Minimalist Grid Background */
.grid-bg {
    background-image:
        linear-gradient(to right, rgba(40,40,40,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(40,40,40,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}
