@font-face {
    font-family: 'Nunito';
    src: url('../fonts/static/Nunito-Black.ttf') format('ttf');
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/static/Nunito-Bold.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/static/Nunito-Regular.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

:root {
    --primary-color: #ff6f61;
    --secondary-color: #4a4a4a;
    --accent-color: #00d1b2;
    --background-light: #f7f9fb;
    --font-main: 'Nunito', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--secondary-color);
    background-color: var(--background-light);
}

.title,
.subtitle {
    font-family: var(--font-main);
}

.site-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.95));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 30;
    padding-top: 1rem;
}

.header-logo-container {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dbdbdb;
}

.header-logo-container .logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.navbar-item,
.navbar-link {
    font-weight: 700;
    transition: all 0.3s ease;
}

.navbar-item:hover,
.navbar-link:hover {
    background-color: transparent !important;
    color: var(--primary-color) !important;
}

.navbar-burger {
    color: var(--secondary-color);
}

.site-footer {
    background-color: #363636;
    color: #fff;
    padding: 3rem 1.5rem 4rem;
    position: relative;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column .title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-column a {
    color: #ccc;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #555;
    font-size: 0.9rem;
    color: #aaa;
}

.pulsating-button {
    animation: pulsate 2s infinite;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 111, 97, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 10px 15px rgba(255, 111, 97, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 111, 97, 0);
    }
}

.card-hover-effect .card-image {
    overflow: hidden;
}

.card-hover-effect img {
    transition: transform 0.5s ease;
}

.card-hover-effect:hover img {
    transform: scale(1.1);
}

.curved-section {
    position: relative;
    padding: 6rem 1.5rem;
}

.curved-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' style='fill:%23f7f9fb;'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.image-overlap-card {
    margin-top: -80px;
    z-index: 10;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.navbar-start {
    margin: 0 auto;
    text-align: center;
}

.navbar-burger {
    margin: 0 auto;
}

iframe {
    border: 0;
}

.hero-bg {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
}

.black-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.radius-8 {
    border-radius: 8px;
}

.card-container {
    margin-top: 2rem;
    overflow: hidden;
    padding: 0;
}

.hero-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.products-image {
    object-fit: cover;
    height: 100%;
    border-radius: 4px;
}

@media (max-width: 1200px) {
    .site-footer {
        clip-path: none;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        width: 100%;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        display: none;
    }
}