/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1A4A88;
    /* Updated Primary */
    --accent-color: #EB885E;
    /* Updated Accent */
    --text-dark: #1F2937;
    --text-light: #F9FAFB;
    --bg-light: #F8FAFC;
    /* Slightly cooler off-white */
    --bg-white: #FFFFFF;
    --font-primary: 'Outfit', sans-serif;
    --gradient-primary: linear-gradient(135deg, #1A4A88 0%, #0e2a4e 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 700;
}

.display-1,
.display-2,
.display-3,
.display-4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Color Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

/* Glassmorphism */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: auto;
    padding: 0;
    margin: -10px 0;
    width: 180px;
}

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

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 50px;
    /* Pillow shape for modern look */
    padding: 0.75rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(30, 58, 95, 0.3);
}

.btn-primary:hover {
    background-color: #162c4a;
    border-color: #162c4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(30, 58, 95, 0.4);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 6px rgba(244, 162, 97, 0.4);
}

.btn-accent:hover {
    background-color: #e58e45;
    border-color: #e58e45;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(244, 162, 97, 0.5);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Abstract Background Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: -100px;
    right: -100px;
    animation: float 10s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: #4A90E2;
    bottom: -50px;
    left: -50px;
    animation: float 12s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Cards */
.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.feature-card {
    padding: 2rem;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--accent-color), #ffcc80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Video Section */
.video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    background-color: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

footer img {
    width: 150px;
    height: auto;
}

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

    50% {
        transform: translateY(-30px) rotate(5deg);
    }

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}