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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #1C888E 0%, #0F5A60 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1C888E 0%, #0F5A60 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #8FA68E;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8f9 0%, #f5f9f8 100%);
}

.mission h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.8;
    color: #555;
}

.mission-highlight {
    background: linear-gradient(135deg, #1C888E 0%, #BA764C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.highlight {
    background: linear-gradient(135deg, #1C888E 0%, #BA764C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2c3e50;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f9 100%);
    transition: all 0.3s;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1C888E 0%, #BA764C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.service-card-image {
    width: 300px;
    height: 300px;
    margin: -2rem auto 1.5rem auto;
    object-fit: contain;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 50%;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-light {
    background: linear-gradient(135deg, #f0f8f9 0%, #f5f9f8 100%);
}

.section-white {
    background: white;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.section-content p {
    margin-bottom: 1.5rem;
}

/* Grid Sections */
.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.grid-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.grid-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1C888E;
}

.grid-card p {
    color: #666;
    line-height: 1.6;
}

/* List Styles */
.styled-list {
    list-style: none;
    max-width: 800px;
    margin: 2rem auto;
}

.styled-list li {
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.styled-list li:before {
    content: "✓";
    position: absolute;
    left: 1rem;
    color: #1C888E;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Story Section */
.story {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F5A60 0%, #1C888E 100%);
    color: white;
}

.story h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #BA764C;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8f9 0%, #f5f9f8 100%);
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-button {
    padding: 15px 30px;
    border: 2px solid #1C888E;
    color: #1C888E;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-button:hover {
    background: linear-gradient(135deg, #1C888E 0%, #BA764C 100%);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #0F5A60;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #BA764C;
}

.footer-section p, .footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    opacity: 0.7;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #bdc3c7;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #1C888E 0%, #BA764C 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(28, 136, 142, 0.4);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Chat Widget Styles */
#chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1C888E 0%, #BA764C 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(28, 136, 142, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(28, 136, 142, 0.6);
}

.chat-button svg {
    width: 28px;
    height: 28px;
    color: white;
    transition: all 0.3s ease;
}

.chat-button .close-icon {
    display: none;
}

.chat-button.open .chat-icon {
    display: none;
}

.chat-button.open .close-icon {
    display: block;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 550px;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.chat-window.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    background: linear-gradient(135deg, #1C888E 0%, #0F5A60 100%);
    color: white;
    padding: 1.2rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 5px;
    object-fit: contain;
}

.chat-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-status {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    animation: statusBlink 2s infinite;
}

@keyframes statusBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.minimize-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.minimize-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.minimize-button svg {
    width: 18px;
    height: 18px;
    color: white;
}

.chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

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

.chat-messages::-webkit-scrollbar-thumb {
    background: #1C888E;
    border-radius: 3px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    animation: messageSlideIn 0.3s ease;
}

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

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    line-height: 1.5;
}

.bot-message .message-content {
    background: #f0f8f9;
    color: #2c3e50;
    border-bottom-left-radius: 4px;
}

.user-message .message-content {
    background: linear-gradient(135deg, #1C888E 0%, #BA764C 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-content p {
    margin: 0;
    font-size: 0.9rem;
}

.message-content p + p {
    margin-top: 0.5rem;
}

.message-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 0.25rem;
    padding: 0 0.5rem;
}

.user-message .message-time {
    text-align: right;
}

.chat-input-container {
    padding: 1rem;
    border-top: 1px solid #e0e0e0;
    background: #fafafa;
}

.chat-form-step {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.chat-form-step.hidden {
    display: none;
}

.chat-form-step input,
.chat-form-step textarea {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-family: inherit;
    font-size: 0.9rem;
    resize: none;
    transition: border-color 0.3s ease;
}

.chat-form-step input:focus,
.chat-form-step textarea:focus {
    outline: none;
    border-color: #1C888E;
}

.chat-form-step textarea {
    max-height: 100px;
    overflow-y: auto;
}

.chat-send-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1C888E 0%, #BA764C 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat-send-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(28, 136, 142, 0.4);
}

.chat-send-button svg {
    width: 20px;
    height: 20px;
    color: white;
}

.chat-footer {
    padding: 0.75rem 1rem;
    background: #f0f8f9;
    border-radius: 0 0 15px 15px;
    text-align: center;
}

.chat-footer p {
    margin: 0;
    font-size: 0.75rem;
    color: #666;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 0.3rem;
    padding: 0.75rem 1rem;
    margin: 0 1.5rem;
    background: #f0f8f9;
    border-radius: 12px;
    width: fit-content;
    border-bottom-left-radius: 4px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #1C888E;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Quick Action Buttons */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0 1rem 1rem 1rem;
}

.quick-action-btn {
    padding: 0.6rem 1rem;
    background: white;
    border: 2px solid #1C888E;
    color: #1C888E;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-action-btn:hover {
    background: linear-gradient(135deg, #1C888E 0%, #BA764C 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(28, 136, 142, 0.3);
}

/* Chat Input Updates */
.chat-input-container {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

#chat-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-family: inherit;
    font-size: 0.9rem;
    resize: none;
    max-height: 100px;
    transition: border-color 0.3s ease;
}

#chat-input:focus {
    outline: none;
    border-color: #1C888E;
}

/* Contact Form Container */
.contact-form-container {
    padding: 1rem 1.5rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

#contact-form input,
#contact-form textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #1C888E;
}

#contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn,
.cancel-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.submit-btn {
    background: linear-gradient(135deg, #1C888E 0%, #BA764C 100%);
    color: white;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28, 136, 142, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cancel-btn {
    background: #f0f0f0;
    color: #666;
}

.cancel-btn:hover {
    background: #e0e0e0;
}

/* Message Content Links */
.message-content a {
    color: #1C888E;
    text-decoration: underline;
}

.user-message .message-content a {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #1C888E 0%, #0F5A60 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-logo-container {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .hero-text {
        text-align: center !important;
    }
    
    .hero-text h1 {
        font-size: 2.5rem !important;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Chat Widget Mobile Adjustments */
    #chat-widget {
        bottom: 15px;
        right: 15px;
    }

    .chat-button {
        width: 55px;
        height: 55px;
    }

    .chat-window {
        width: calc(100vw - 30px);
        height: calc(100vh - 100px);
        bottom: 75px;
    }

    .chat-header {
        padding: 1rem;
    }

    .chat-logo {
        width: 35px;
        height: 35px;
    }

    .chat-messages {
        padding: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Services Page Styles */
.service-section {
    padding: 80px 0;
    background: white;
}

.service-section:nth-child(even) {
    background: linear-gradient(135deg, #f0f8f9 0%, #f5f9f8 100%);
}

.service-section h2 {
    font-size: 2.5rem;
    color: #1C888E;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f9 100%);
    transition: all 0.3s;
}

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

.service-icon {
    width: 250px;
    height: 250px;
    margin: -2rem auto 1.5rem auto;
    object-fit: contain;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 50%;
}

.service-card-emoji {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1C888E 0%, #BA764C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Story/Timeline Page Styles */
.timeline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8f9 0%, #f5f9f8 100%);
}

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

.timeline-wrapper {
    position: relative;
    padding: 80px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #1C888E, #BA764C, #6D998A);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    padding: 0 20px;
    scroll-behavior: smooth;
}

.timeline-bubble {
    position: relative;
    z-index: 5;
    flex-shrink: 0;
    cursor: pointer;
}

.bubble-icon {
    width: 120px;
    height: 120px;
    background: white;
    border: 4px solid #1C888E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-size: 3rem;
}

.timeline-bubble.tech .bubble-icon {
    border-color: #BA764C;
    background: rgba(186, 118, 76, 0.1);
}

.timeline-bubble:hover .bubble-icon {
    transform: scale(1.15);
    box-shadow: 0 10px 40px rgba(28, 136, 142, 0.3);
}

.timeline-bubble.active .bubble-icon {
    background: linear-gradient(135deg, #1C888E 0%, #BA764C 100%);
    color: white;
    transform: scale(1.2);
    box-shadow: 0 15px 50px rgba(28, 136, 142, 0.4);
}

.timeline-bubble.tech.active .bubble-icon {
    background: linear-gradient(135deg, #BA764C 0%, #6D998A 100%);
}

.bubble-label {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: #1C888E;
    font-size: 0.9rem;
}

.timeline-bubble.tech .bubble-label {
    color: #BA764C;
}

.timeline-content-display {
    margin-top: 80px;
    min-height: 200px;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    animation: fadeIn 0.5s ease;
}

.timeline-content-display.hidden {
    display: none;
}

.timeline-content-display h2 {
    font-size: 2rem;
    color: #1C888E;
    margin-bottom: 1rem;
}

.timeline-content-display.tech h2 {
    color: #BA764C;
}

.timeline-content-display .year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #BA764C;
    margin-bottom: 1.5rem;
}

.timeline-content-display p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.tech-label {
    display: inline-block;
    background: #BA764C;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

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

/* Responsive for timeline */
@media (max-width: 768px) {
    .bubble-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .timeline-content-display {
        padding: 2rem;
    }
}
