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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #c9a961;
    --text-color: #2a2a2a;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --gray-200: #e8e8e8;
    --gray-600: #666666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    color: var(--text-color);
    background-color: #ffffff;
}

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

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border-bottom: 2px solid var(--secondary-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-img:hover {
    transform: scale(1.08);
}

.logo h1 {
    font-size: 1.7rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.98rem;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 140px 20px;
    text-align: center;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.25);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.cta-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 14px 40px;
    font-size: 1.05rem;
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.4);
}

.cta-btn:active {
    transform: translateY(-1px);
}

/* About Section */
.about {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    backdrop-filter: blur(8px);
}

.about h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.about-text h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.9rem;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--gray-600);
    font-size: 1.02rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.stat {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 4px solid var(--secondary-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(26, 26, 26, 0.15);
    border-top-color: var(--accent-color);
}

.stat h3 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.stat p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(8px);
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    animation: fadeInDown 0.6s ease-out;
    font-weight: 700;
}

.services-intro {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 5px solid var(--secondary-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.5s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 86, 179, 0.08), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 32px rgba(26, 26, 26, 0.12);
    border-left-color: var(--accent-color);
}

.service-icon {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounce 0.6s ease-out;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.service-card:hover h3 {
    color: var(--secondary-color);
}

.service-card .short-desc {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
    font-size: 0.99rem;
}

.service-details {
    background: linear-gradient(135deg, #faf6f0 0%, #f5f1eb 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    border-left: 4px solid var(--secondary-color);
}

.service-details.hidden {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}

.service-details.visible {
    max-height: 500px;
    opacity: 1;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.service-details h4 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-details li {
    padding: 0.6rem 0 0.6rem 2rem;
    color: var(--gray-600);
    position: relative;
    line-height: 1.7;
    font-size: 0.98rem;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0.2rem;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-details p {
    color: var(--gray-600);
    font-size: 0.96rem;
    line-height: 1.7;
}

.learn-more-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(44, 90, 160, 0.2);
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.learn-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 58, 122, 0.3);
}

.learn-more-btn:active {
    transform: translateY(-1px);
}

/* Team Section */
.team {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(240, 246, 252, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(8px);
}

.team h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(26, 26, 26, 0.12);
}

.member-avatar {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 16px rgba(26, 26, 26, 0.3);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.team-member .title {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member .bio {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 0.99rem;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(240, 246, 252, 0.9) 100%);
    backdrop-filter: blur(8px);
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 0.99rem;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.contact-item a:hover::after {
    width: 100%;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.col {
    display: flex;
    flex-direction: column;
}

.form-control {
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(8px);
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.1);
    background-color: var(--white);
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(8px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.1);
    background-color: var(--white);
}

.submit-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 2px solid var(--secondary-color);
}

.footer p {
    margin: 0.8rem 0;
    font-size: 0.98rem;
    opacity: 0.95;
}

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .about h2,
    .services h2,
    .team h2,
    .contact h2 {
        font-size: 2rem;
    }

    .chatbot-container {
        width: 100%;
        height: 70vh;
    }
}

/* Chatbot Styles */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 999;
    filter: grayscale(100%);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.chatbot-toggle.hidden {
    display: none;
}

.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 550px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 40px rgba(0,0,0,0.16);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    animation: slideUp 0.3s ease-out;
}

.chatbot-container.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s;
}

.chatbot-close:hover {
    transform: scale(1.2);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #f9f9f9;
}

.message {
    display: flex;
    margin-bottom: 1rem;
    animation: fadeInMessage 0.3s ease-out;
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message p {
    margin: 0;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    max-width: 80%;
    line-height: 1.5;
    font-size: 0.95rem;
    filter: grayscale(100%);
}

.bot-message {
    justify-content: flex-start;
}

.bot-message p {
    background-color: #e8f4f8;
    color: var(--primary-color);
    border-bottom-left-radius: 4px;
}

.user-message {
    justify-content: flex-end;
}

.user-message p {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.chatbot-input-area {
    padding: 1rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 0.5rem;
    background-color: var(--white);
}

.chatbot-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
}

.chatbot-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 4px rgba(44, 90, 160, 0.3);
}

.chatbot-send {
    padding: 0.75rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chatbot-send:hover {
    transform: scale(1.05);
}

.chatbot-send:active {
    transform: scale(0.98);
}

/* Scrollbar styling for chatbot */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: #c99a2e;
}

@media (max-width: 480px) {
    .chatbot-container {
        width: calc(100vw - 20px);
        height: 60vh;
        bottom: 80px;
        right: 10px;
    }

    .message p {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat {
        padding: 1rem;
    }
}
