html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo {
    margin: 0;
    font-size: 1.5em;
    color: #004d80;
}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #004d80;
    font-weight: 700;
    transition: color 0.3s;
}
nav a:hover {
    color: #00a3a3;
}
.hero {
    background: linear-gradient(to right, #004d80, #007bff);
    color: #fff;
    text-align: center;
    padding: 150px 20px 100px;
}
.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}
.cta-button {
    background: #00a3a3;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background 0.3s;
    min-width: 44px;
    min-height: 44px;
}
.cta-button:hover {
    background: #008080;
}
.secondary-cta {
    background: transparent;
    border: 2px solid #fff;
}
.small-cta {
    padding: 8px 16px;
    font-size: 0.9em;
}
section {
    padding: 80px 0;
}
h2 {
    text-align: center;
    color: #004d80;
    margin-bottom: 40px;
}
.service-grid, .solutions-grid, .stats-grid, .pricing-grid, .service-options-grid, .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.service-item, .solution-item, .stat-item, .pricing-item, .option-item, .story-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}
.service-item:hover, .solution-item:hover, .pricing-item:hover {
    transform: translateY(-5px);
}
.stat-item {
    font-size: 1.2em;
}
.pricing-item .price {
    font-size: 2em;
    color: #00a3a3;
    margin: 10px 0;
}
.pricing-item ul {
    list-style: none;
    padding: 0;
}
.pricing-item ul li {
    margin: 10px 0;
}
.pricing-item.featured {
    background: #e6f7f7;
    border: 2px solid #00a3a3;
    transform: scale(1.05);
}
.testimonials, .partners {
    margin-top: 40px;
    text-align: center;
}
form {
    max-width: 600px;
    margin: 0 auto;
}
input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button.cta-button {
    width: 100%;
    border: none;
    cursor: pointer;
}
footer {
    background: #004d80;
    color: #fff;
    text-align: center;
    padding: 20px;
}
footer a {
    color: #fff;
    text-decoration: none;
}
/* Responsive */
@media (max-width: 768px) {
    .hero { padding: 120px 10px 80px; }
    nav { display: flex; flex-direction: column; }
    nav a { margin: 10px 0; }
    .cta-button { margin: 10px 0; }
    .service-grid, .solutions-grid, .stats-grid, .pricing-grid, .service-options-grid, .stories-grid { grid-template-columns: 1fr; }
}

/* Fade-In Fallback */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
[data-aos="fade-in"] {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}
[data-aos="fade-in"].aos-animate {
    opacity: 1;
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Chatbot */
.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
#chat-toggle {
    background: #004d80;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}
#chat-container {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
}
#chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}
#chat-input {
    padding: 10px;
    border-top: 1px solid #ccc;
}
#chat-send {
    background: #00a3a3;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* Feedback Styles */
.feedback {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    z-index: 2000;
    transition: opacity 0.3s;
}
.feedback.success { background: #4caf50; }
.feedback.error { background: #f44336; }
.feedback.warning { background: #ff9800; }
.feedback.info { background: #2196f3; }