/* Modern Header & Navigation Styles */
:root {
    /* Brand Colors */
    --primary-color: #2563eb;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --accent-color: #7c3aed;
    
    /* Text Colors */
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    
    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-dark: #0d1829;
    
    /* Header Settings */
    --header-height: 80px;         /* Desktop header height */
    --header-height-mobile: 70px;  /* Mobile header height */
    --header-bg: rgba(13, 24, 41, 0.98);
    --header-border: rgba(255, 255, 255, 0.1);
    --header-text: #ffffff;
    --header-text-hover: #00a3e1;
    
    /* Transitions */
    --transition-speed: 0.3s;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index Layers */
    --z-header: 10000;            /* Above preloader */
    --z-dropdown: 1001;           /* Dropdown menus */
    --z-mobile-menu: 1002;        /* Mobile menu */
    --z-preloader: 9999;          /* Preloader (below header) */
    --z-mobile-menu-toggle: 1003;  /* Mobile menu toggle button */
    --z-mobile-menu-backdrop: 1001; /* Mobile menu backdrop */
}

/* Base styles */
html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    padding-top: var(--header-height); /* Account for fixed header */
    box-sizing: border-box;
    background-color: #fff;
}

/* Main Header */
header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: var(--z-header);
    border-bottom: 1px solid var(--header-border);
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: height 0.3s ease;
    overflow: hidden; /* Prevent any overflow */
}

/* Header Content */
.header-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    gap: 1.5rem;
}

/* Navigation Container */
.nav-container {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

/* Logo moved to right */
.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    padding: 0.5rem 0;
    flex-shrink: 0;
    height: 100%;
    transition: transform 0.3s ease;
    order: 2; /* Move logo to the right */
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-slogan {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin: 0.1rem 0 0 0;
    letter-spacing: 0.3px;
    line-height: 1.2;
    white-space: nowrap;
    display: block;
    opacity: 0.9;
    transition: var(--transition);
}

.logo-img {
    height: 38px;
    width: auto;
    border-radius: 6px;
    transition: transform 0.3s ease;
    object-fit: contain;
    margin-bottom: 2px;
}

@media (min-width: 992px) {
    .logo-img {
        height: 42px;
    }
}

/* .brand-name {
    font-size: 1.8rem; 
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.4px;
    white-space: nowrap;
    transition: color 0.3s ease;
    line-height: 1.1;
    margin: 0; 
} */

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}



/* Main Navigation */
.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    height: 100%;
    margin-left: 1.5rem;
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: var(--header-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    white-space: nowrap;
    opacity: 0.9;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: #fff;
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

/* Active link indicator */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: var(--transition);
    opacity: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
    opacity: 1;
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    color: white;
}

/* Navbar Toggler */
.navbar-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    color: var(--header-text);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
    margin-left: 0;
    margin-right: auto;
    order: 0; /* Mobile toggle on the left */
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-toggler .navbar-toggler-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler .navbar-toggler-icon::after {
    top: 6px;
}

/* Active state for hamburger icon */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(6px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* Show toggle button on mobile */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

/* Mobile Toggle */
.navbar-toggler {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: var(--z-mobile-menu-toggle);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Show toggle on mobile and adjust header layout */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: flex;
    }
    
    .header-content {
        position: relative;
        min-height: 80px;
        padding: 0 0.5rem;
    }
    
    .logo {
        position: absolute;
        right: 60px; /* Move logo to the right side */
        transform: none;
        margin: 0;
        padding: 0.25rem 0;
        flex-direction: column;
        align-items: flex-start;
        max-width: calc(100% - 100px);
    }
    
    .brand-slogan {
        font-size: 0.75rem;
        white-space: normal;
        line-height: 1.2;
        display: block !important;
        margin-top: 0.1rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #1a1a2e;
        padding: 1.5rem;
        transition: left 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-container.show {
        left: 0;
    }
    
    .main-nav {
        margin-top: 2rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .header-cta {
        margin: 2rem 0 0 0 !important;
        text-align: center;
    }
}

/* Overlay when mobile menu is open */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.mobile-menu-overlay.show {
    display: block;
    opacity: 1;
}

/* Modern Header Specific Styles */

/* Show mobile toggle on mobile */
@media (max-width: 991.98px) {
    .mobile-toggle {
        display: flex;
    }
    
    /* Show only mobile navigation on mobile */
    .main-nav {
        display: none;
    }
    
    /* Ensure mobile menu is visible when toggled */
    .mobile-menu.show {
        display: block;
    }
    
    /* Main header for mobile */
    .main-header {
        position: relative;
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 0.5rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        order: 2;
        justify-content: center;
        margin: 0.5rem 0;
    }
    
    .nav-container {
        order: 1;
        display: flex !important;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
    }
    
    /* Adjust body padding for top bar only */
    body {
        padding-top: 0;
        scroll-padding-top: 0;
    }
    
    /* Smooth scrolling for anchor links */
    html {
        scroll-behavior: smooth;
    }
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
    position: relative;
    pointer-events: none;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #fff;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: var(--z-mobile-menu-backdrop);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
}

/* Show mobile menu when active */
.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Ensure mobile menu is above other content when open */
body.menu-open {
    overflow: hidden;
    height: 100%;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Ensure proper spacing for fixed header */
@media (min-width: 992px) {
    .main-header {
        padding: 0 1.5rem !important;
        height: var(--header-height) !important;
    }
    
    .header-content {
        padding: 0 2rem;
    }
    
    .brand-slogan {
        font-size: 0.95rem;
        margin-top: 0.2rem;
    }
    
    .brand-slogan {
        display: block; /* Show slogan on larger screens */
    }
}



/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height-mobile);
    right: 10px;
    width: calc(100% - 20px);
    max-width: 300px;
    background: rgba(13, 24, 41, 0.98);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: var(--z-mobile-menu);
    max-height: calc(100vh - var(--header-height-mobile) - 20px);
    overflow-y: auto;
    transform: translateY(-20px) scale(0.95);
    transform-origin: top right;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.mobile-menu::-webkit-scrollbar {
    display: none;
}

.mobile-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.mobile-menu::-webkit-scrollbar {
    display: none;
}

.mobile-menu.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.mobile-menu::-webkit-scrollbar {
    display: none;
}

/* Mobile menu links */
.mobile-nav-link {
    color: #fff;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 0.15rem 0.5rem;
}

.mobile-nav-link i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    color: var(--primary-light);
    font-size: 1.1em;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
    transform: translateX(4px);
}

.mobile-nav-link.active {
    color: var(--primary-light);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
}

/* Show mobile menu when Bootstrap collapse is shown */
.mobile-menu.show,
.mobile-menu.collapsing {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}



/* Fix for Bootstrap collapse animation */
.mobile-menu.collapse:not(.show) {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
}

/* Show mobile menu when Bootstrap collapse is shown */
.mobile-menu.show,
.mobile-menu.collapsing {
    right: 0;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Ensure mobile menu is visible when toggled */
#navbarNav {
    display: none;
}

#navbarNav.show,
#navbarNav.collapsing {
    display: block;
}

.mobile-menu.active {
    right: 0;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-list li {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus,
.mobile-nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    outline: none;
}

.mobile-nav-link.active {
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-light);
}

/* Mobile Contact */
.mobile-contact {
    margin: auto -2rem -2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* No Scroll */
body.no-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
}

/* Responsive */
@media (max-width: 991.98px) {
    .nav-container {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
    }
    
    .main-header {
        top: 0;
        position: fixed;
        width: 100%;
        height: var(--header-height-mobile) !important;
        padding: 0 1rem !important;
    }
    
    body {
        padding-top: var(--header-height);
        scroll-padding-top: var(--header-height);
    }
    
    /* Ensure content is not hidden behind fixed header */
    #home {
        scroll-margin-top: calc(var(--header-height) + var(--top-bar-height) + 20px);
    }
    
    section[id] {
        scroll-margin-top: calc(var(--header-height) + var(--top-bar-height) + 20px);
    }
    
    /* Fix for mobile menu toggle alignment */
    .header-content {
        padding: 0 1.1rem; /* Increased by 10% from 1rem */
    }
}

/* Desktop styles */
@media (min-width: 992px) {
    .main-header {
        flex-direction: row;
        height: var(--header-height);
        padding: 0;
    }
    
    .header-content {
        flex-direction: row;
    }
    
    .logo {
        order: 1;
        margin: 0;
    }
    
    .nav-container {
        order: 2;
        display: flex !important;
        align-items: center;
        height: 100%;
        padding: 0;
    }
    
    .main-nav {
        display: block !important;
    }
    
    .main-nav {
        height: 100%;
        display: flex;
        align-items: center;
        order: 1; /* Navigation in the center */
    }
    
    .nav-list {
        display: flex !important;
        align-items: center;
        gap: 1rem;
        margin: 0;
        padding: 0;
        height: 100%;
        list-style: none;
    }
    
    .nav-item {
        display: flex;
        align-items: center;
        height: 100%;
        margin: 0;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0 1rem;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
        position: relative;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--primary-light);
        transition: var(--transition);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 60%;
    }
    
    .mobile-toggle {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 1199.98px) {
    .brand-name {
        font-size: 2.2rem; /* Increased by 10% from 2rem */
    }
    
    .logo-img {
        height: 61px; /* Increased by 10% from 56px */
    }
}

@media (max-width: 991.98px) {
    .header-content {
        height: 85px; /* Slightly reduced height */
        padding: 0 0.75rem; /* Reduced padding */
    }
    
    .brand-name {
        font-size: 1.8rem; /* Slightly reduced */
        white-space: nowrap;
        letter-spacing: -0.3px; /* Tighter letter spacing */
        line-height: 1.1;
        max-width: none; /* Remove max-width restriction */
    }
    
    .logo-img {
        height: 50px; /* Slightly larger */
        min-width: 50px; /* Ensure consistent width */
    }
    
    .logo {
        gap: 1.25rem; /* Increased gap */
        padding-left: 0.5rem; /* Reduced left padding */
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .header-content {
        height: 80px;
    }
    
    .brand-name {
        font-size: 1.6rem; /* Slightly reduced */
        letter-spacing: -0.25px;
        line-height: 1.1;
    }
    
    .logo-img {
        height: 46px; /* Slightly larger */
        min-width: 46px;
    }
    
    .logo {
        gap: 1.1rem;
    }
}

/* Responsive Adjustments */


@media (max-width: 991.98px) {
    .header-content {
        padding: 0 1rem;
    }
    
    .brand-slogan {
        display: none; /* Hide slogan on mobile */
    }
    
    .logo {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
    
    .logo-img {
        margin-bottom: 0;
    }

@media (max-width: 767.98px) {
    .header-content {
        height: var(--header-height-mobile);
        padding: 0 0.75rem;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .navbar-toggler {
        padding: 0.35rem 0.5rem;
        font-size: 1.25rem;
    }
    
    .logo {
        flex-direction: row;
        align-items: center;
    }
    
    .logo-content {
        flex-direction: column;
    }
    
    .brand-slogan {
        display: none;
    }
}



@media (max-width: 575.98px) {
    .brand-name {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 32px;
    }
}
    
    .brand-name {
        font-size: 1.4rem; /* Slightly reduced */
        letter-spacing: -0.2px;
        line-height: 1.1;
    }
    
    .logo-img {
        height: 44px; /* Increased from 40px */
        min-width: 44px;
    }
    
    .logo {
        gap: 1rem; /* Increased from 0.75rem */
        padding-left: 0.5rem;
    }
}

/* Extra small devices (portrait phones, less than 400px) */
@media (max-width: 399.98px) {
    .header-content {
        height: 70px;
        padding: 0 0.5rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
        letter-spacing: -0.15px;
        line-height: 1.1;
    }
    
    .logo {
        gap: 0.6rem;
        padding-left: 0.25rem;
    }
    
    .logo-img {
        height: 36px;
        min-width: 36px;
    }
}

/* Hover effects */
.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo:hover .brand-name {
    color: var(--primary-light);
}

/* Animation classes */
.fadeInDown {
    animation: fadeInDown 0.5s ease-out forwards;
}
