/* ============================================= */
/* ABOUT-US.CSS - EXTERNAL STYLESHEET */
/* ============================================= */

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

/* ============================================= */
/* RESET & BASE STYLES */
/* ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* ============================================= */
/* TYPOGRAPHY */
/* ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111827;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #f8d56b, #0d9488);
    border-radius: 2px;
}

.section-description {
    color: #4b5563;
    margin-bottom: 0;
    max-width: 32rem;
    text-align: center;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ============================================= */
/* LAYOUT & CONTAINERS */
/* ============================================= */
.section-container {
    padding: 4rem 1.5rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

/* ============================================= */
/* HERO SECTION */
/* ============================================= */
.hero-section {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    color: white;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section,
.hero-section *:not(.mobile-menu-toggle) {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* ============================================= */
/* NAVIGATION */
/* ============================================= */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 5%;
    z-index: 10;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links li {
    margin-right: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.nav-links a:hover {
    color: #f8d56b;
}

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

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f8d56b;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.mobile-menu-close {
    display: none;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1002;
}

/* ============================================= */
/* BUTTONS & CTAs */
/* ============================================= */
.cta-button {
    background-color: #f8d56b;
    color: #333 !important;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-shadow: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* ============================================= */
/* ABOUT & TEAM */
/* ============================================= */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

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

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #f8d56b;
}

.about-text p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.mission-section {
    padding: 4rem 0;
    margin-top: 2rem;
    background-color: #f8f9fa;
}

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

.mission-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #f8d56b;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.mission-card p, .mission-card li {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.mission-card ul {
    padding-left: 1.25rem;
    text-align: left;
}

.mission-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.mission-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0d9488;
    font-weight: bold;
}

.team-section {
    margin-top: 2rem;
}

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

.team-member {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid #f0fdf4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.member-position {
    color: #0d9488;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: #4b5563;
    line-height: 1.6;
}

.team-grid.scrollable-team::-webkit-scrollbar {
    height: 4px;
}

.team-grid.scrollable-team::-webkit-scrollbar-thumb {
    background: #f8d56b;
    border-radius: 2px;
}

.team-grid.scrollable-team::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* ============================================= */
/* GOOGLE REVIEWS SECTION - FIXED ARROW POSITION */
/* ============================================= */
.reviews-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    position: relative;
}

.reviews-slider-container {
    position: relative;
    margin: 2rem 0;
    padding: 0 4rem; /* Add padding for arrow buttons */
}

.reviews-slider {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
}

.review-card {
    flex: 0 0 calc(100% - 1rem);
    min-width: 0;
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #0d9488;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid #f8d56b;
}

.review-author {
    flex: 1;
}

.review-author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.review-meta {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6b7280;
    gap: 0.5rem;
}

.review-stars {
    color: #f8d56b;
    margin-left: 0.5rem;
}

.review-content {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    max-height: 4.8em;
    overflow: hidden;
    flex-grow: 1;
    font-size: 1.05rem;
}

.review-content.expanded {
    max-height: none;
}

.review-read-more {
    color: #0d9488;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.review-read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.review-card.expanded .review-read-more i {
    transform: rotate(180deg);
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #0d9488;
    font-size: 1.2rem;
}

.slider-button:hover {
    background: #f8d56b;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slider-button.prev {
    left: 0;
}

.slider-button.next {
    right: 0;
}

.slider-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3f4f6;
}

/* Mobile responsive fixes for arrows */
@media (max-width: 768px) {
    .reviews-slider-container {
        padding: 0 3.5rem; /* More padding for mobile arrows */
    }
    
    .slider-button {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .slider-button.prev {
        left: 5px;
    }
    
    .slider-button.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .reviews-slider-container {
        padding: 0 3rem;
    }
    
    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ============================================= */
/* FOOTER */
/* ============================================= */
.footer {
    background-color: #111827;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8d56b;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-about p {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f8d56b, transparent);
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
    padding: 0.25rem 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #f8d56b;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #f8d56b;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 15px;
}

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

.footer-social a {
    color: #111827;
    background-color: #f8d56b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background-color: white;
    color: #111827;
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
    font-size: 0.9rem;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-credits {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f8d56b, #0d9488, #f8d56b);
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.footer-legal-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #f8d56b;
}

.separator {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Hide the entire Instagram section on all screens by default */
.footer-instagram {
    display: none;
}

/* Show the Instagram section only on laptop screens (1024px and above) */
@media (min-width: 1024px) {
    .footer-instagram {
        display: block;
    }
}

/* Instagram Card Styles */
.instagram-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 320px;
    transition: transform 0.3s ease;
}

.instagram-card:hover {
    transform: translateY(-5px);
}

.instagram-header {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.instagram-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid #f8d56b;
}

.instagram-info {
    display: flex;
    flex-direction: column;
}

.instagram-username {
    font-weight: 600;
    font-size: 14px;
    color: #262626;
}

.instagram-name {
    font-size: 12px;
    color: #8e8e8e;
}

.instagram-embed {
    height: 320px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.instagram-stats {
    display: flex;
    justify-content: space-around;
    padding: 12px;
    background: white;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #8e8e8e;
}

.instagram-stats i {
    margin-right: 4px;
    color: #0d9488;
}

.instagram-follow-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: #405DE6;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
}

.instagram-follow-btn:hover {
    background: #3a4bc1;
}

.instagram-follow-btn i {
    margin-right: 8px;
}

/* ============================================= */
/* RESPONSIVE STYLES */
/* ============================================= */

/* Mobile Styles */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Navigation */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-links a {
        color: white;
        font-size: 1.5rem;
        font-weight: 500;
        padding: 0.5rem 1rem;
        position: relative;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #f8d56b;
        transition: width 0.3s ease;
    }
    
    .nav-links a:hover::after {
        width: 100%;
    }
    
    .nav-links a.active {
        color: #f8d56b;
    }
    
    /* Section Header */
    .section-header {
        flex-direction: column;
        align-items: center;
    }
    
    .section-text {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* About Content */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
        max-width: 300px;
    }
    
    /* Mission Grid */
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Team Grid */
    .team-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: unset;
    }
    
    .team-member {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
    
    .team-grid.scrollable-team {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }
    
    .team-grid.scrollable-team .team-member {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Reviews */
    .review-card {
        flex: 0 0 calc(100% - 1rem);
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-about p {
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .review-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

/* Extra Large Screens */
@media (min-width: 1440px) {
    .section-container {
        max-width: 1200px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
}

/* ============================================= */
/* ACCESSIBILITY & ANIMATIONS */
/* ============================================= */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.cta-button:focus {
    outline: 2px solid #f8d56b;
    outline-offset: 2px;
}

/* Loading animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }