/* ================== VARIABLES ================== */
:root {
    --primary-color: #1b295c;
    --primary-dark: #121d42;
    --secondary-color: #f9a61a;
    --accent-green: #60b246;
    --accent-blue: #00aeef;
    --maroon: #9e2024;
}

/* ================== FONTS ================== */
* {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

/* ================== GLOBAL ================== */
body {
    font-family: 'Inter', sans-serif;
}

/* ================== TEXT & GRADIENTS ================== */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.bg-brand-blue {
    background-color: var(--primary-color) !important;
}

.bg-brand-orange {
    background-color: var(--secondary-color) !important;
}

.bg-brand-light {
    background-color: #f3f4f6;
}

.text-brand-orange {
    color: var(--secondary-color) !important;
}

.text-brand-blue {
    color: var(--primary-color) !important;
}

/* ================== BUTTONS ================== */
.btn-gradient {
    background: linear-gradient(90deg, #d25c5e, #d25c5e);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    /*background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));*/
    transform: translateY(-3px);
    /*box-shadow: 0 10px 20px rgba(27, 41, 92, 0.3);*/
}

/* ================== CARDS ================== */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.innovative-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.innovative-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.story-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.story-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.story-card:hover::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(27, 41, 92, 0.8) 100%);
}



.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

/* ================== FOOTER & HEADER ================== */
.footer-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.sticky-nav {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e0, transparent);
}

/* ================== ORBIT ANIMATION ================== */
@keyframes orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-reverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.animate-orbit {
    animation: orbit 40s linear infinite;
}

.animate-orbit-reverse {
    animation: orbit-reverse 40s linear infinite;
}

.paused {
    animation-play-state: paused;
}

/* ================== MISC ================== */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes scroll-vertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.animate-scroll {
    animation: scroll-vertical 20s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}