/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2575fc;
    --secondary-color: #6a11cb;

    /* Light Theme */
    --light-background: #f2f4f8;
    --light-surface: #fbfbfe;
    --light-text: #212529;
    --light-text-secondary: #6c757d;
    --light-border: #dee2e6;

    /* Dark Theme */
    --dark-background: #0d1117;
    --dark-surface: #161b22;
    --dark-text: #e6edf3;
    --dark-text-secondary: #8b949e;
    --dark-border: #30363d;

    --nav-height: 80px;
    --top-bar-height: 60px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--light-background);
    padding-top: calc(var(--nav-height) + var(--top-bar-height));
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--light-surface);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.dark-mode .top-bar {
    border-bottom: 1px solid var(--dark-border);
}

.top-bar {
    background: var(--light-surface);
    color: var(--light-text);
    height: 90px;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--light-border);
    padding: 10px 0;
}

.top-bar a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-info i {
    color: var(--primary-color);
}

.btn-login {
    font-weight: 600;
}

.btn-login:hover {
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    height: var(--nav-height);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}


.top-bar .nav-logo a {
    display: flex;
    align-items: center;
}

.navbar .nav-logo a{
    display: none;
}

.nav-logo svg,
.nav-logo img {
    display: block;
    height: 50px;
    width: auto;
}

.nav-logo .logo-dark,
.footer-logo .logo-dark {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-left: 0;
    flex-grow: 1;
}

.nav-link {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    cursor: pointer;
    font-size: 1.2rem;
}

#weather-info {
    gap: 0;
}

#weather-info img {
    margin-right: 0 !important;
    margin-bottom: 2px;
    
}

.nav-contact span {
    display: block;
    font-weight: 500;
}

.nav-contact small {
    color: var(--light-text-secondary);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.hamburger .fa-times {
    display: none;
}

.hamburger.active .fa-bars {
    display: none;
}

.hamburger.active .fa-times {
    display: block;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light-surface);
    z-index: 1001;
    transition: left 0.3s ease-in-out, visibility 0.3s;
    display: flex;
    flex-direction: column;
    visibility: hidden;
}

.mobile-nav.active {
    left: 0;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: var(--nav-height);
    border-bottom: 1px solid var(--light-border);
    flex-shrink: 0;
}

.mobile-nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-close {
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.mobile-nav .nav-link {
    font-size: 1.5rem;
}

.mobile-nav-footer {
    padding: 2rem;
    border-top: 1px solid var(--light-border);
}

.mobile-nav-footer .btn-quote {
    width: 100%;
    text-align: center;
}

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }
    .navbar .nav-logo a{
        display: flex;
    }
    body {
        padding-top: var(--nav-height);
    }
    .nav-menu, .nav-right .btn-quote {
        display: none;
    }
    .hamburger {
        display: flex;
    }

    .theme-toggle {
        font-size: 1.4rem;
        margin-top: .125rem;
    }

    .nav-container {
        justify-content: space-between;
    }
}

/* Hero Section */
.hero {
    min-height: 80vh;
    position: relative;
    color: #ffffff;
}

.about, .portfolio {
    position: relative;
    overflow-x: hidden;
}

.quote {
    position: relative;
}

.feature, .portfolio-item, .about-content, .quote-content {
    opacity: 0;
}

.my-tiny-slider {
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .carousel-slide:nth-child(1) {
    background-image: url('./public/5.jpg');
}
.carousel-slide:nth-child(2) {
    background-image: url('./public/2.jpg');
}
.carousel-slide:nth-child(3) {
    background-image: url('./public/3.jpg');
}
.carousel-slide:nth-child(4) {
    background-image: url('./public/4.jpg');
} */

.carousel-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-pill {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Tiny Slider styles */
.hero .tns-outer {
    position: relative;
    z-index: 2;
}

.hero .tns-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero .tns-controls button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hero .tns-controls button[data-controls="prev"] {
    left: 40px;
}
.hero .tns-controls button[data-controls="next"] {
    right: 40px;
}

.hero .tns-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero .tns-nav button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.7);
}

.hero .tns-nav button.tns-nav-active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-quote {
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 117, 252, 0.3);
}

.btn-secondary {
    background: var(--light-surface);
    color: var(--light-text);
    border: 1px solid var(--light-border);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--light-text);
    border-color: var(--light-border);
    transform: translateY(-2px);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--light-surface);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--light-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-background);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    color: var(--light-text-secondary);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
    background: var(--light-background);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Quote Section */
.quote {
    padding: 5rem 0;
    background: var(--dark-surface);
    color: var(--dark-text);
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.quote-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quote-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.quote-form {
    background: var(--dark-background);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--dark-border);
    border-radius: 5px;
    font-size: 1rem;
    background: var(--dark-surface);
    color: var(--dark-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--dark-surface);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #161b22;
    color: var(--dark-text);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-logo img,
.footer-logo svg {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--dark-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer .social-links {
    display: flex;
    gap: 1rem;
}

.footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--dark-border);
    color: var(--dark-text);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--dark-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info p,
.hours p {
    color: var(--dark-text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
    color: var(--dark-text-secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    .mobile-nav-header {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .nav-logo svg,
    .nav-logo img {
        height: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero .tns-controls button {
       display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer .social-links {
        justify-content: center;
    }

    .contact-info p,
    .hours p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .carousel-slide {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Shapes */
.shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 20px;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: -50px;
    transform: rotate(45deg);
}
.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: -80px;
    transform: rotate(60deg);
}
.shape-3 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: -40px;
    transform: rotate(30deg);
    border-radius: 50%;
}
.shape-4 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -70px;
    transform: rotate(20deg);
    border-radius: 40px;
}

/* Dark Mode */
body.dark-mode {
    background-color: var(--dark-background);
    color: var(--dark-text);
}

body.dark-mode .header {
    background: var(--dark-surface);
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

body.dark-mode .navbar {
    border-bottom-color: var(--dark-border);
}

body.dark-mode .nav-link {
    color: var(--dark-text);
}

body.dark-mode .nav-right {
    color: var(--dark-text);
}
body.dark-mode .nav-contact small {
    color: var(--dark-text-secondary);
}

body.dark-mode .about, body.dark-mode .portfolio {
    background: var(--dark-background);
}
body.dark-mode .section-header h2, body.dark-mode .about-text h3, body.dark-mode .feature h4 {
    color: var(--dark-text);
}
body.dark-mode .section-header p, body.dark-mode .about-text p, body.dark-mode .feature p {
    color: var(--dark-text-secondary);
}
body.dark-mode .feature {
    background: var(--dark-surface);
}
body.dark-mode .btn-secondary {
    background: var(--dark-surface);
    color: var(--dark-text);
    border-color: var(--dark-border);
}
body.dark-mode .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
body.dark-mode .quote {
    background: #000;
}
body.dark-mode .quote-form {
    background: var(--dark-surface);
}
body.dark-mode .form-group input, body.dark-mode .form-group select, body.dark-mode .form-group textarea {
    background: var(--dark-surface);
    color: var(--dark-text);
    border: 1px solid var(--dark-border);
}
body.dark-mode .footer {
    background: #000;
}
body.dark-mode .footer-bottom {
    border-top-color: var(--dark-border);
}
body.dark-mode .shape {
    opacity: 0.03;
}
body.dark-mode .nav-logo svg text {
    fill: var(--dark-text);
}
body.dark-mode .hamburger .bar {
    background-color: var(--dark-text);
}
body.dark-mode .nav-menu {
    background: var(--dark-surface);
}
body.dark-mode .mobile-nav {
    background-color: var(--dark-surface);
}
body.dark-mode .mobile-nav-header {
    border-bottom-color: var(--dark-border);
}
body.dark-mode .mobile-nav .nav-link,
body.dark-mode .mobile-nav-close,
body.dark-mode .mobile-nav .theme-toggle {
    color: var(--dark-text);
}
body.dark-mode .mobile-nav .nav-logo svg text {
    fill: var(--dark-text);
}
body.dark-mode .nav-logo .logo-light {
    display: none;
}
body.dark-mode .nav-logo .logo-dark {
    display: block;
}
body.dark-mode .footer .logo-light {
    display: none;
}
body.dark-mode .footer .logo-dark {
    display: block;
}
body.dark-mode .container {
    background: transparent;
    box-shadow: none;
}
body.dark-mode .top-bar, body.dark-mode .header {
    background: var(--dark-surface);
}
body.dark-mode .top-bar, body.dark-mode .top-bar a {
    color: var(--dark-text);
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -9999;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-decoration: none;
    font-weight: 600;
}

.skip-to-content:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    overflow: auto;
    z-index: 99999;
    border-radius: 5px;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
    text-decoration: none;
    border: none;
}

.back-to-top-btn.visible {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: var(--secondary-color);
}

body.dark-mode .back-to-top-btn {
    background-color: var(--primary-color);
    color: white;
}
body.dark-mode .back-to-top-btn:hover {
    background-color: var(--secondary-color);
}

/* Form Message Styles */
.form-message {
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Dark mode form messages */
body.dark-mode .form-message-success {
    background-color: #1e4a2e;
    color: #d4edda;
    border: 1px solid #2d5a3d;
}

body.dark-mode .form-message-error {
    background-color: #4a1e1e;
    color: #f8d7da;
    border: 1px solid #5a2d2d;
}

body.dark-mode .form-message-info {
    background-color: #1e4a4a;
    color: #d1ecf1;
    border: 1px solid #2d5a5a;
}

/* Loading state for submit button */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 