/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark Mode Variables */
:root {
    --bg-color: #fff;
    --text-color: #333;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-scrolled: rgba(255, 255, 255, 0.98);
    --card-bg: #fff;
    --border-color: #e9ecef;
    --hero-bg: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --section-bg: #f8f9fa;
    --footer-bg: #1a252f;
    --contact-preview-bg: #2c3e50;
    --hero-title-color: #222;
    --hero-subtitle-color: #444;
    --primary-btn-bg: #222;
    --primary-btn-color: #fff;
    --primary-btn-hover-bg: #fff;
    --primary-btn-hover-color: #222;
    --secondary-btn-bg: #fff;
    --secondary-btn-color: #222;
    --secondary-btn-border: #222;
    --secondary-btn-hover-bg: #222;
    --secondary-btn-hover-color: #fff;
    --accent-color: #c9a961;
    --accent-color-hover: #b8965a;
}

[data-theme="dark"] {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --nav-bg: rgba(26, 26, 26, 0.95);
    --nav-scrolled: rgba(26, 26, 26, 0.98);
    --card-bg: #2d2d2d;
    --border-color: #404040;
    --hero-bg: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    --section-bg: #2d2d2d;
    --footer-bg: #0d1117;
    --contact-preview-bg: #1a1a1a;
    --hero-title-color: #fff;
    --hero-subtitle-color: #e0e0e0;
    --primary-btn-bg: #fff;
    --primary-btn-color: #222;
    --primary-btn-hover-bg: #222;
    --primary-btn-hover-color: #fff;
    --secondary-btn-bg: #222;
    --secondary-btn-color: #fff;
    --secondary-btn-border: #fff;
    --secondary-btn-hover-bg: #fff;
    --secondary-btn-hover-color: #222;
    --accent-color: #b8965a;
    --accent-color-hover: #9a7d3a;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dark Mode Toggle */
.theme-toggle {
    position: relative;
    display: flex;
    align-items: center;
}

.theme-toggle-btn {
    background: none;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.theme-toggle-btn:hover {
    border-color: #c9a961;
    transform: scale(1.1);
}

.theme-toggle-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--nav-scrolled);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 700;
    transition: color 0.3s ease;
}

[data-theme="dark"] .nav-logo h2 {
    color: #f8f9fa;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a961;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #c9a961;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    min-height: 80vh;
    background: #f5f5f5;
    position: relative;
    margin-top: 0;
    padding-top: 0;
    color: inherit;
    background-image: url('assets/imgs/B5008AS56333.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: none !important;
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 2;
}

.hero-text {
    text-align: center;
    flex: 1;
    padding: 2rem 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--hero-title-color, #222);
    letter-spacing: 1px;
    transition: color 0.3s;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--hero-subtitle-color, #444);
    transition: color 0.3s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Button Styles */
.hero-buttons .btn, button, input[type="button"], input[type="submit"] {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
    outline: none;
    text-decoration: none;
    background: var(--primary-btn-bg, #222);
    color: var(--primary-btn-color, #fff);
    border: 2px solid var(--primary-btn-bg, #222);
}

.btn:hover, .btn:focus, button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus {
    background: var(--primary-btn-hover-bg, #fff);
    color: var(--primary-btn-hover-color, #222);
    border: 2px solid var(--primary-btn-bg, #222);
    box-shadow: 0 4px 24px rgba(34,34,34,0.12);
}

.btn-primary, .hero-buttons .btn-primary {
    background: var(--primary-btn-bg, #222);
    color: var(--primary-btn-color, #fff);
    border: 2px solid var(--primary-btn-bg, #222);
}

.btn-primary:hover, .btn-primary:focus, .hero-buttons .btn-primary:hover, .hero-buttons .btn-primary:focus {
    background: var(--primary-btn-hover-bg, #fff);
    color: var(--primary-btn-hover-color, #222);
    border: 2px solid var(--primary-btn-bg, #222);
    box-shadow: 0 4px 24px rgba(34,34,34,0.12);
}

.btn-secondary, .hero-buttons .btn-secondary {
    background: var(--secondary-btn-bg, #fff);
    color: var(--secondary-btn-color, #222);
    border: 2px solid var(--secondary-btn-border, #222);
}

.btn-secondary:hover, .btn-secondary:focus, .hero-buttons .btn-secondary:hover, .hero-buttons .btn-secondary:focus {
    background: var(--secondary-btn-hover-bg, #222);
    color: var(--secondary-btn-hover-color, #fff);
    border: 2px solid var(--secondary-btn-border, #222);
    box-shadow: 0 4px 24px rgba(34,34,34,0.12);
}

/* Ensure anchor tags styled as buttons are consistent */
a.btn, .hero-buttons a.btn, .portfolio-overlay .view-project {
    color: var(--primary-btn-color, #fff) !important;
    background: var(--primary-btn-bg, #222) !important;
    border: 2px solid var(--primary-btn-bg, #222) !important;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}

a.btn:hover, a.btn:focus, .hero-buttons a.btn:hover, .hero-buttons a.btn:focus, .portfolio-overlay .view-project:hover, .portfolio-overlay .view-project:focus {
    background: var(--primary-btn-hover-bg, #fff) !important;
    color: var(--primary-btn-hover-color, #222) !important;
    border: 2px solid var(--primary-btn-bg, #222) !important;
    box-shadow: 0 4px 24px rgba(34,34,34,0.12);
}

/* Images Styles */
section img:not(.nav-logo img) {
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

section img:not(.nav-logo img):hover {
    border-color: #666;
}

/* Dark mode adjustments for image borders */
body.dark-mode section img:not(.nav-logo img) {
    border-color: #444;
}

body.dark-mode section img:not(.nav-logo img):hover {
    border-color: #888;
}





/* Enhanced Portfolio Section Styles */
.portfolio {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    background: transparent;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform-origin: center;
    opacity: 1;
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 24px;
    text-align: center;
}

.portfolio-overlay p {
    color: #ddd;
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.view-project {
    padding: 10px 25px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-project:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: var(--accent-color-hover);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--section-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: #c9a961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    opacity: 0.8;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    color: #c9a961;
    font-weight: bold;
    margin-right: 0.5rem;
}



/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: var(--section-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Preview Section */
.contact-preview {
    padding: 80px 0;
    background: var(--contact-preview-bg);
    color: white;
    text-align: center;
}

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: #c9a961;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: #c9a961;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #c9a961;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #c9a961;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #b8965a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.6;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: 5% auto;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}

.lightbox-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.lightbox-info {
    padding: 2rem;
}

.lightbox-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.lightbox-info p {
    color: #666;
    line-height: 1.6;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close:hover {
    color: #c9a961;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--card-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }

    .hero-image {
        margin-left: 0;
        margin-top: 2rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lightbox-content {
        max-width: 95%;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .portfolio-filters {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Page-specific styles for About and Contact pages */
.page-header {
    padding: 120px 0 80px;
    background: var(--hero-bg);
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.page-content {
    padding: 80px 0;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--card-bg);
    color: var(--text-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

[data-theme="dark"] .form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.form-group select option {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 8px 12px;
}

[data-theme="dark"] .form-group select option {
    background: #2d2d2d;
    color: #e0e0e0;
}

[data-theme="dark"] .form-group select {
    background-color: #2d2d2d;
    color: #e0e0e0;
    border-color: #404040;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c9a961;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-card i {
    font-size: 2rem;
    color: #c9a961;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-section p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.skill-item {
    background: var(--section-bg);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.skill-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.skill-item p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Animation utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
