@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette matching Bramwa Logo */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;

    --primary: #0052ff;
    /* Bramwa Logo Blue */
    --primary-light: #3b82f6;
    --secondary: #ff5a00;
    /* Bramwa Logo Orange */
    --secondary-light: #ff7a00;
    --accent: #ef4444;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    --border-color: #e2e8f0;
    --border-color-hover: rgba(0, 82, 255, 0.25);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0052ff 0%, #0099ff 100%);
    --gradient-accent: linear-gradient(135deg, #ff5a00 0%, #ff8a00 100%);
    --gradient-light: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(0, 82, 255, 0.06) 0%, transparent 70%);

    /* Layout & Shadow constants */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 82, 255, 0.04);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 25px rgba(0, 82, 255, 0.15);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border: 2px solid var(--bg-secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Global Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 16px;
    font-weight: 800;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header.scrolled {
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 2px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    transition: var(--transition-normal);
}

.header.scrolled .header-container {
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo styling to overflow navbar boundaries without affecting container height */
.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    margin-top: -15px;
    margin-bottom: -15px;
    vertical-align: middle;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.75rem;
    cursor: pointer;
}

/* Mobile Nav Styles */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: white;
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-normal);
        z-index: 999;
        padding: 40px;
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        right: 0;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-normal);
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 82, 255, 0.35);
}

.btn-secondary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 90, 0, 0.25);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 90, 0, 0.35);
}

.btn-outline {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 82, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 90, 0, 0.03) 0%, transparent 50%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero {
        padding: 140px 0 80px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-tagline {
    background: rgba(0, 82, 255, 0.06);
    color: var(--primary);
    border: 1px solid rgba(0, 82, 255, 0.12);
    padding: 8px 16px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-tagline-orange {
    background: rgba(255, 90, 0, 0.06);
    color: var(--secondary);
    border: 1px solid rgba(255, 90, 0, 0.12);
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-desc {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

@media (max-width: 992px) {
    .hero-desc {
        margin: 0 auto 40px auto;
    }
}

.hero-btns {
    display: flex;
    gap: 20px;
}

@media (max-width: 992px) {
    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }
}

/* Hero Globe and Graphics */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-scene {
    position: relative;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-globe {
    width: 300px;
    height: 300px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 80s linear infinite;
    overflow: hidden;
}

.globe-ring {
    position: absolute;
    border: 1px dashed rgba(0, 82, 255, 0.15);
    border-radius: 50%;
}

.ring-1 {
    width: 360px;
    height: 360px;
    animation: rotate-reverse 30s linear infinite;
}

.ring-2 {
    width: 420px;
    height: 420px;
    animation: rotate 45s linear infinite;
}

.floating-node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}

.node-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    color: var(--primary);
}

.node-2 {
    bottom: 15%;
    right: 5%;
    animation-delay: 1.5s;
    color: var(--secondary);
}

.node-3 {
    top: 60%;
    left: -5%;
    animation-delay: 3s;
    color: #10b981;
}

/* Stats Bar */
.stats {
    background-color: var(--bg-secondary);
    border-y: 1px solid var(--border-color);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item h3 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--primary);
}

.stat-item p {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services section */
.services-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.search-box {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.1);
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    width: 100%;
    scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .filter-tabs {
        width: auto;
    }
}

.filter-btn {
    padding: 10px 20px;
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    white-space: nowrap;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 82, 255, 0.15);
    box-shadow: var(--shadow-md), 0 15px 30px rgba(0, 82, 255, 0.05);
}

.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

.service-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.03) 100%);
}

.service-icon {
    position: absolute;
    bottom: 15px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 82, 255, 0.3);
    z-index: 2;
}

.service-card:nth-child(even) .service-icon {
    background: var(--gradient-accent);
    box-shadow: 0 4px 12px rgba(255, 90, 0, 0.3);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-badge {
    align-self: flex-start;
    padding: 4px 10px;
    background: rgba(0, 82, 255, 0.05);
    color: var(--primary);
    border: 1px solid rgba(0, 82, 255, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.service-card:nth-child(even) .service-badge {
    background: rgba(255, 90, 0, 0.05);
    color: var(--secondary);
    border-color: rgba(255, 90, 0, 0.1);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card:nth-child(even):hover h3 {
    color: var(--secondary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-learn-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
}

.service-card:nth-child(even) .service-learn-more {
    color: var(--secondary);
}

.service-learn-more i {
    transition: var(--transition-fast);
}

.service-card:hover .service-learn-more i {
    transform: translateX(4px);
}

.no-services {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-secondary);
    border: 1px dashed var(--border-color);
    border-radius: 20px;
}

.no-services i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.no-services h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* Why Choose Us Section */
.why-us {
    background-color: var(--bg-secondary);
    border-y: 1px solid var(--border-color);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

.why-us-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 576px) {
    .why-us-card-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.why-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 82, 255, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.why-card:nth-child(even) .why-card-icon {
    background: rgba(255, 90, 0, 0.08);
    color: var(--secondary);
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
}

/* Forms & Control Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 18px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
}

.toast {
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 16px 24px;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(100px);
    opacity: 0;
    transition: var(--transition-normal);
}

.toast.active {
    transform: translateX(0);
    opacity: 1;
}

.toast-success {
    border-left: 4px solid var(--primary);
}

.toast-error {
    border-left: 4px solid var(--accent);
}

/* Contact & Footer */
.contact-section {
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 82, 255, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-text h5 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-info-text p {
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: white;
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 24px;
    }
}

.footer {
    background-color: #0b0f19;
    /* Premium deep navy/black footer */
    color: #94a3b8;
    padding: 80px 0 40px 0;
    font-size: 0.95rem;
}

.footer h4 {
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand p {
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}