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

html {
    scroll-behavior: smooth;
}

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

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

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.08);
}

.navbar {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    animation: logoFloat 3s ease-in-out infinite;
}

.brand-name {
    font-size: 20px;
    font-weight: bold;
    color: #0066cc;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0066cc;
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #0066cc;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 0;
}

.animated-gradient {
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, #0066cc, #00cc66, #0066cc, #00cc66);
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #00cc66;
    color: white;
}

.btn-primary:hover {
    background-color: #00aa55;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 204, 102, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #0066cc;
    transform: translateY(-2px);
}

.btn-primary-large {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-secondary-large {
    padding: 15px 40px;
    font-size: 16px;
}

.hero-graphics {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: slideInRight 0.8s ease-out;
}

.hero-svg {
    width: 100%;
    max-width: 300px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 60px;
    color: #0066cc;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #00cc66);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066cc15, #00cc6615);
    border-radius: 50%;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #0066cc;
}

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

/* Section Styles */
.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Service Section */
.service-section {
    padding: 80px 0;
    background-color: white;
}

.service-section.alternate {
    background-color: #f8f9fa;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.service-section.alternate .service-content {
    grid-template-columns: 1fr 1fr;
}

.service-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #0066cc;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.8;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00cc66;
    font-weight: bold;
    font-size: 18px;
}

.service-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.service-graphic svg {
    width: 100%;
    max-width: 350px;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Mobile Apps Section */
.mobile-apps {
    padding: 80px 0;
    background-color: white;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.app-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.app-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.app-card:hover {
    border-color: #0066cc;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.app-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon svg {
    width: 100%;
    height: 100%;
}

.app-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #0066cc;
}

.app-link {
    display: inline-block;
    margin-top: 20px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.app-link:hover {
    color: #00cc66;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00cc66 0%, #00aa55 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #0066cc;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066cc15, #00cc6615);
    border-radius: 50%;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0066cc;
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

.info-card a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: white;
}

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

.value-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #0066cc;
}

/* News Grid */
.news-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.2);
}

.news-date {
    background: linear-gradient(135deg, #0066cc, #0052a3);
    color: white;
    padding: 20px;
    text-align: center;
    min-width: 80px;
}

.date-month {
    display: block;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.date-day {
    display: block;
    font-size: 32px;
    font-weight: bold;
}

.date-year {
    display: block;
    font-size: 12px;
}

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0066cc;
    line-height: 1.4;
}

.news-category {
    display: inline-block;
    background-color: #0066cc15;
    color: #0066cc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

.read-more {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #00cc66;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: white;
}

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

.team-member {
    text-align: center;
}

.member-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066cc15, #00cc6615);
    border-radius: 50%;
}

.member-avatar svg {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #0066cc;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 34px 0 10px;
}

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

.footer-section h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    color: white;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 13px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0066cc;
}

.contact-info p {
    margin-bottom: 6px;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    flex-wrap: wrap;
    color: #888;
    font-size: 12px;
    line-height: 1.4;
}

.footer-bottom p {
    margin: 0;
}

/* Policy Content */
.policy-section {
    padding: 60px 0;
    background-color: white;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
}

.policy-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
    margin-bottom: 15px;
}

.policy-content p {
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.policy-content ul,
.policy-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-content li {
    color: #666;
    margin-bottom: 10px;
}

.policy-content a {
    color: #0066cc;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Newsletter */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

/* Quick Response */
.quick-response {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.response-item {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.response-item h3 {
    font-size: 28px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 15px;
}

.response-item p {
    color: #666;
    font-size: 16px;
}

/* Services List */
.services-list {
    padding: 80px 0;
    background-color: white;
}

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

.service-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid #0066cc;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
    transform: translateY(-5px);
}

.service-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 10px;
}

.service-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Certifications */
.certifications-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.cert-item {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon svg {
    width: 100%;
    height: 100%;
}

.cert-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 10px;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background-color: white;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.story-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 2;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero .container {
        flex-direction: column;
        gap: 40px;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .features-grid,
    .values-grid,
    .stats-grid,
    .team-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-header h1 {
        font-size: 36px;
    }

    .policy-content {
        font-size: 14px;
        line-height: 1.8;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-section .btn {
        display: block;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

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

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

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

    .section-title {
        font-size: 24px;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 15px;
    }

    .logo {
        width: 30px;
        height: 30px;
    }

    .brand-name {
        font-size: 16px;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero,
    .footer,
    .menu-toggle {
        display: none;
    }

    body {
        background: white;
    }

    a {
        color: #0066cc;
        text-decoration: underline;
    }

    .btn {
        border: 1px solid #0066cc;
    }
}
