/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Playfair+Display:wght@400;700;900&display=swap');

/* CSS Variables */
:root {
    --primary: #FF6B6B;
    --primary-dark: #EE5253;
    --secondary: #4ECDC4;
    --secondary-dark: #36B3AC;
    --accent: #FFD166;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --light-gray: #F2F2F2;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Loader Animation */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.75s, visibility 0.75s;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dog-icon {
    font-size: 3rem;
    margin-right: 10px;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 7px 20px rgba(255, 107, 107, 0.4);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    color: var(--text-dark);
}

.section-title::after {
    content: "";
    position: absolute;
    height: 4px;
    width: 70px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

/* Paw Print Background Elements */
.paw-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
}

.paw {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23FF6B6B' d='M256,224c-79.41,0-192,122.76-192,200.25,0,34.9,26.81,55.75,71.74,55.75,48.84,0,81.09-25.08,120.26-25.08,39.51,0,71.85,25.08,120.26,25.08,44.93,0,71.74-20.85,71.74-55.75C448,346.76,335.41,224,256,224ZM108.72,211.11C95.26,191.18,64,125.21,64,88,64,57.67,80.14,48,96,48s32,9.67,32,40c0,30.42-26,92.05-19.28,123.11ZM193.41,190.89c-7.31-30.76-37.47-91.34-37.47-122C155.94,37.22,174.69,24,192,24s36.06,13.22,36.06,44.89c0,30.67-30.15,91.25-37.47,122ZM319.06,190.89c-7.31-30.76-37.47-91.34-37.47-122C281.59,37.22,300.34,24,317.65,24s36.06,13.22,36.06,44.89c0,30.67-30.15,91.25-37.47,122ZM404.56,211.11C411.31,180,384,118.4,384,88c0-30.33,16.14-40,32-40s32,9.67,32,40c0,37.21-31.26,103.18-44.72,123.11Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Header Styles */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary);
    position: relative;
    transition: var(--transition);
}

.logo-icon {
    font-size: 2rem;
    margin-right: 10px;
    color: var(--primary);
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}

.burger-line {
    width: 30px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--off-white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 60%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    width: 50%;
    padding-right: 30px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.7s;
}

.hero-image {
    width: 50%;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.9s;
}

.hero-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 209, 102, 0.2);
    z-index: -1;
}

.shape-1 {
    top: -100px;
    left: -50px;
}

.shape-2 {
    bottom: -50px;
    right: -100px;
}

.hero-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1.1s;
}

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

/* Services Section */
.services {
    background-color: var(--white);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    z-index: 0;
    transform: translate(150px, -150px);
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    z-index: 0;
    transform: translate(-100px, 100px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 10;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    top: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
}

.service-text {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--off-white);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-container {
    position: relative;
    z-index: 10;
    padding: 40px 0;
}

.testimonial-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 15px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-card::before {
    content: """;
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-btn {
    background-color: var(--white);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: var(--transition);
    margin: 0 10px;
}

.testimonial-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Blogs Section */
.blogs {
    background-color: var(--white);
    position: relative;
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-text {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-link {
    margin-top: auto;
}

/* Contact Section */
.contact {
    background-color: var(--off-white);
    position: relative;
    padding: 100px 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.info-text {
    flex: 1;
}

.info-text h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-text p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    flex: 1.2;
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-field {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.form-field::placeholder {
    color: #bbb;
}

textarea.form-field {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background-color: var(--primary);
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 7px 15px rgba(255, 107, 107, 0.3);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    padding: 80px 0 0;
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--white);
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-about p {
    margin-bottom: 20px;
    color: #bbb;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary);
}

.quick-links ul {
    list-style: none;
}

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

.quick-links a {
    color: #bbb;
    transition: var(--transition);
}

.quick-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #bbb;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.copyright {
    color: #bbb;
}

.text-primary {
    color: var(--primary);
}

/* Blog Post Page */
.breadcrumb {
    background-color: var(--off-white);
    padding: 120px 0 20px;
    text-align: center;
}

.breadcrumb h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.breadcrumb-links {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-links a {
    color: var(--text-light);
    font-weight: 500;
}

.breadcrumb-links a:hover {
    color: var(--primary);
}

.breadcrumb-links span {
    margin: 0 10px;
    color: var(--text-light);
}

.blog-post {
    padding: 70px 0;
}

.post-container {
    display: flex;
    gap: 50px;
}

.post-main {
    flex: 7;
}

.post-sidebar {
    flex: 3;
}

.post-header {
    margin-bottom: 30px;
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.post-meta span {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.post-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.post-content {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.post-content h2,
.post-content h3 {
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 15px;
}

.post-content ul,
.post-content ol {
    margin: 20px 0 20px 20px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.post-nav a {
    background-color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--box-shadow);
    display: inline-flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
}

.post-nav a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.post-nav a i {
    margin: 0 5px;
}

/* Sidebar */
.sidebar-widget {
    background-color: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.recent-posts li {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.recent-post-info a {
    color: var(--text-dark);
}

.recent-post-info a:hover {
    color: var(--primary);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.categories ul {
    list-style: none;
}

.categories li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.categories li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories a {
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
}

.categories a:hover {
    color: var(--primary);
}

.categories a span {
    background-color: var(--light-gray);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-image {
        width: 80%;
    }
    
    .hero-title {
        font-size: 2.7rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .post-container {
        flex-direction: column;
    }
    
    .testimonial-item {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero {
        height: auto;
        padding: 120px 0 60px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-icon {
        margin-bottom: 15px;
    }
    
    .post-nav {
        flex-direction: column;
        gap: 15px;
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animated-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}