* {
    box-sizing: border-box;
}

/* Global CSS Variables for WordPress Theme */
:root {
    /* Main Color Palette */
    --color-primary: #2c3e50;
    --color-secondary: #00b648;
    --color-accent: #e74c3c;
    --color-background: #ecf0f1;
    --color-white: #ffffff;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;

    /* Typography */
    --font-family-primary: 'Quicksand', 'Arial', sans-serif;
    --font-size-small: 0.875rem;
    --font-size-medium: 1.125rem;
    --font-size-large: 2rem;
    --font-size-xlarge: 2.5rem;

    /* Spacing */
    --spacing-small: 0.5rem;
    --spacing-medium: 1rem;
    --spacing-large: 2rem;
    --spacing-xlarge: 3rem;

    /* Border Radius */
    --border-radius-small: 4px;
    --border-radius-medium: 8px;

    /* Transitions */
    --transition-default: all 0.3s ease;
}


/* Additional Styles for Scroll Animations */
.animate__animated {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Ensure smooth animation triggers */
[class*="animate__"] {
    animation-fill-mode: both;
}

/* Custom animation delays for better staggering */
.animate__delay-1s {
    animation-delay: 0.1s !important;
}

.animate__delay-2s {
    animation-delay: 0.2s !important;
}

.animate__delay-3s {
    animation-delay: 0.3s !important;
}

.animate__delay-4s {
    animation-delay: 0.4s !important;
}


body {
    font-family: var(--font-family-primary) !important;
}

.otgs-development-site-front-end {
    display: none !important;
}