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

:root {
    --primary-blue: #0d6efd;
    --accent-red: #e63946;
    --accent-green: #2a9d8f;
    --accent-orange: #f4a261;
    --accent-yellow: #e9c46a;
    --text-dark: #2b2d42;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

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

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(230, 57, 70, 0.05), transparent);
}

.hero-logo {
    max-width: 600px;
    animation: float 6s ease-in-out infinite;
}

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

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

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

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

/* Service Icons */
.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.bg-blue-light {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-blue);
}

.bg-red-light {
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-red);
}

.bg-green-light {
    background: rgba(42, 157, 143, 0.1);
    color: var(--accent-green);
}

.bg-orange-light {
    background: rgba(244, 162, 97, 0.1);
    color: var(--accent-orange);
}

/* Buttons */
.btn-primary {
    background: var(--primary-blue);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
    background: #0b5ed7;
}

/* Image styling */
.img-rounded {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Steps / Numbers */
.big-number {
    font-size: 4rem;
    font-weight: 800;
    opacity: 0.2;
    line-height: 1;
}

/* Custom Utilities */
.text-gradient-blue {
    background: linear-gradient(45deg, var(--primary-blue), #6ea8fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-logo {
        max-width: 300px;
    }
}