:root {
    --primary-color: #0d47a1;
    --accent-color: #1565c0;
    --accent2-color: #ff7f50;
    /* Coral */
    --light-background-color: #f8faff;
    --dark-background-color: #0a192f;
    --dark-text-color: #1a202c;
    --gray-text-color: #4a5568;
    --light-border-color: #e2e8f0;
    --button-rounded-radius: 12px;
    --font-family-heading: 'Outfit', sans-serif;
    --font-family-body: 'Poppins', sans-serif;
}

/* Base Styles */
body {
    scroll-behavior: smooth;
    color: var(--dark-text-color);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Branded Images - Applied via filter and overlay */
.branded-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.branded-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.2) 0%, rgba(255, 127, 80, 0.1) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.branded-image-container:hover::after {
    opacity: 0.4;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal-up {
    animation: fadeInUp 1s ease forwards;
}

.reveal-left {
    animation: fadeInLeft 1s ease forwards;
}

.reveal-right {
    animation: fadeInRight 1s ease forwards;
}

/* Custom Text and Utility */
.text-coral {
    color: var(--accent2-color);
}

.bg-coral {
    background-color: var(--accent2-color);
}

/* Patterns */
.bg-pattern {
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 24px 24px;
}

/* Navigation Hover Effects */
nav a {
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section Customizations */
#hero {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.animate-bounce-slow {
    animation: bounce 3s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Footer Improvements */
#global-footer {
    background: linear-gradient(180deg, #0a192f 0%, #050d1a 100%);
}

/* Button Refinement */
.btn-premium {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-premium:hover::before {
    left: 100%;
}