/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0066CC, #004499);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

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

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

.btn-outline-light {
    background: transparent;
    color: #1a202c;
    border: 2px solid #1a202c;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-outline-light:hover {
    background: #1a202c;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #0066CC;
    border: 2px solid #0066CC;
}

.btn-outline:hover {
    background: #0066CC;
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

/* Left Section */
.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
    height: 100%;
}

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

.nav-logo img {
    height: 28px;
    width: auto;
    max-width: 140px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 12px;
    border-radius: 6px;
}

.nav-link:hover {
    color: #0066CC;
    background: rgba(0, 102, 204, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #0066CC;
    background: rgba(0, 102, 204, 0.1);
    font-weight: 600;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.utility-links {
    display: flex;
    gap: 1rem;
}

.utility-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.utility-link:hover {
    color: #0066CC;
    background: rgba(0, 102, 204, 0.1);
    transform: translateY(-1px);
}

.header-icons {
    display: flex;
    gap: 0.5rem;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(248, 249, 250, 0.8);
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-icon:hover {
    background: rgba(0, 102, 204, 0.1);
    color: #0066CC;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.2);
}

.header-icon i {
    font-size: 14px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background: #f8fafc;
}

.bar {
    width: 20px;
    height: 2px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 1px;
}

/* Navbar scroll effect */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1a202c;
    overflow: hidden;
    padding-top: 72px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Product Categories Section */
.product-categories {
    padding: 4rem 0;
    background: #ffffff;
}

.product-categories .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
    font-size: 2rem;
    font-weight: 600;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon i {
    font-size: 1.5rem;
    color: #0066CC;
}

.category-card h3 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-link {
    color: #0066CC;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.category-link:hover {
    text-decoration: underline;
}

/* Technology Stack Banner */
.tech-stack-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
}

.tech-stack-container {
    width: 100%;
    overflow: hidden;
}

.tech-stack-track {
    display: flex;
    animation: scroll-left 30s linear infinite;
    gap: 2rem;
    align-items: center;
}

.tech-stack-item {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-stack-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Featured Products Section */
.featured-products {
    padding: 4rem 0;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product-banner {
    background: #1a202c;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.product-banner-large {
    grid-column: span 1;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

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

.product-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
    max-width: 50%;
}

.product-brand {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.product-tagline {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.product-description {
    font-size: 1rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background: #ffffff;
}

.why-choose .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
    font-size: 2rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #0066CC;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Latest News Section */
.latest-news {
    padding: 4rem 0;
    background: #f8fafc;
}

.latest-news .section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a202c;
    font-size: 2rem;
    font-weight: 600;
}

.news-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.news-link {
    color: #0066CC;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #004499;
    text-decoration: underline;
}

/* Newsletter Section */
.newsletter {
    padding: 3rem 0;
    background: #1a202c;
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.newsletter-content p {
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-button {
    background: #0066CC;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-button:hover {
    background: #004499;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

.product-card {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.product-card.featured {
    border: 2px solid #0066CC;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.product-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066CC, #004499);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 1rem 0.5rem 1rem;
    flex-shrink: 0;
}

.product-icon i {
    font-size: 1.4rem;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-demo {
    margin: 0;
    text-align: center;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    min-height: 200px;
}

.product-demo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-demo img:hover {
    transform: scale(1.02);
}


.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    padding: 1rem;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
}

.product-title {
    font-size: 1.25rem;
    color: #1a202c;
    margin: 0.5rem 1rem 0.5rem 1rem;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1rem 0.5rem 1rem;
}

.stars {
    display: flex;
    gap: 1px;
}

.stars i {
    color: #fbbf24;
    font-size: 0.8rem;
}

.rating-text {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-category {
    color: #8b5cf6;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0 1rem 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: #fff;
    margin: 0 1rem 1rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-features {
    list-style: none;
    margin: 0 1rem 1rem 1rem;
    flex-grow: 1;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    color: #64748b;
    font-size: 0.85rem;
}

.product-features i {
    color: #10b981;
    font-size: 0.7rem;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* Tech Trends Section */
.tech-trends {
    padding: 6rem 0;
    background: #ffffff;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.trend-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.trend-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.trend-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.trend-icon i {
    font-size: 1.5rem;
    color: white;
}

.trend-card h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trend-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.trend-features {
    list-style: none;
    margin: 0;
}

.trend-features li {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.trend-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

/* Hub Showcase Section */
.hub-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.hub-badge {
    display: inline-block;
    background: #0066CC;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hub-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hub-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hub-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    color: #0066CC;
    font-size: 1.1rem;
    width: 20px;
}

.feature-item span {
    color: #1a202c;
    font-weight: 500;
    font-size: 0.9rem;
}

.hub-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hub-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hub-dashboard {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    min-height: 320px;
}

.dashboard-header {
    background: #1a202c;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.dashboard-status {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.dashboard-content {
    padding: 1.25rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.stat-item {
    text-align: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.dashboard-modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.module {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* Company Story Section */
.company-story {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.story-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0066CC;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #0066CC;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #0066CC;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 6rem 0;
    background: #ffffff;
}

.mv-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mv-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: #0066CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.member-photo {
    width: 80px;
    height: 80px;
    background: #0066CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-photo i {
    font-size: 2rem;
    color: white;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #0066CC;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill {
    background: #f1f5f9;
    color: #0066CC;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Technology Expertise Section */
.tech-expertise {
    padding: 6rem 0;
    background: #ffffff;
}

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

.tech-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.tech-stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.tech-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.tech-stat .stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tech-category {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-2px);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: #0066CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon i {
    font-size: 1.2rem;
    color: white;
}

.tech-category h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tag {
    background: white;
    color: #0066CC;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* Our Process Section */
.our-process {
    padding: 6rem 0;
    background: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: #0066CC;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0066CC;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    width: 40px;
    height: 40px;
    background: #0066CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.quote-icon i {
    color: white;
    font-size: 1rem;
}

.testimonial-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.85rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* Awards & Certifications Section */
.awards-certifications {
    padding: 6rem 0;
    background: #f8fafc;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.award-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066CC, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.award-icon i {
    font-size: 2rem;
    color: white;
}

.award-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.award-content p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Services Overview Section */
.services-overview {
    padding: 6rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066CC, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-features li:hover {
    color: #0066CC;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.service-features li::after {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: #ffffff;
}

/* Features Showcase Styles */
.features-showcase {
     border-radius: 12px;
    padding: 2rem;
 }

.features-showcase h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-category {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.feature-category:hover {
    border-color: #0066CC;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.category-header i {
    font-size: 1.25rem;
    color: #0066CC;
    width: 24px;
    text-align: center;
}

.category-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 0.9rem;
 }

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Responsive Design for Features Showcase */
@media (max-width: 768px) {
    .features-categories {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .features-showcase {
        padding: 1.5rem;
    }
    
    .feature-category {
        padding: 1rem;
    }
}

/* Values Showcase Styles */
.values-showcase {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
}

.values-showcase h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #A855F7);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    border-color: #8B5CF6;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    transform: translateY(-4px);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.value-icon i {
    color: white;
    font-size: 1.25rem;
}

.value-content {
    flex: 1;
}

.value-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.value-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Values */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .values-showcase {
        padding: 1.5rem;
    }
    
    .value-card {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .value-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .value-icon i {
        font-size: 1rem;
    }
}

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

.choose-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.choose-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.choose-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.choose-feature .feature-icon i {
    font-size: 1.2rem;
    color: #0066CC;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}


/* Industry Solutions Section */
.industry-solutions {
    padding: 6rem 0;
    background: #ffffff;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

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

.solution-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon i {
    font-size: 1.25rem;
    color: white;
}

.solution-header h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin: 0;
    font-weight: 600;
}

.solution-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
}

.solution-features li {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.solution-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.solution-stats {
    display: flex;
    gap: 2rem;
}

.solution-stats .stat {
    text-align: center;
}

.solution-stats .stat-number {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.solution-stats .stat-label {
    color: #64748b;
    font-size: 0.8rem;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #e2e8f0;
}

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

.team-content h3 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    color: #8b5cf6;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.skill {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.team-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.social-link {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
}

/* Tech Blog Section */
.tech-blog {
    padding: 6rem 0;
    background: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1f;
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.blog-card-featured {
    grid-row: span 2;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-featured .blog-image {
    height: 300px;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    color: #8b5cf6;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-content p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-date, .blog-read-time {
    color: #94a3b8;
    font-size: 0.8rem;
}

.blog-link {
    color: #0066CC;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #004499;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.about-description {
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature i {
    font-size: 1.5rem;
    color: #0066CC;
    margin-top: 0.5rem;
}

.feature h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    margin: 0;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #ffffff;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066CC, #004499);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin: 0;
}

.contact-details a {
    color: #0066CC;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066CC;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #1a202c;
    padding: 3rem 0 1rem;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-offset {
    /* Empty offset column for visual balance */
}

.footer-section h4 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: #0066CC;
}

/* Badge styles */
.badge {
    display: inline-block;
    background: #64748b;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.language-selector {
    color: #64748b;
    font-size: 0.9rem;
    position: relative;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-button {
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    transition: color 0.3s ease;
}

.language-button:hover {
    color: #0066CC;
}

.language-button i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-button i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-bottom: 0.5rem;
}

.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 0.75rem 1rem;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f5f9;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8fafc;
    color: #0066CC;
}

.language-option.active {
    background: #f1f5f9;
    color: #0066CC;
    font-weight: 500;
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
}

.copyright p {
    margin: 0;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .categories-grid {
        gap: 0.75rem;
    }
    .category-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    .category-btn i {
        font-size: 1rem;
    }
    .faq-question {
        padding: 1.25rem;
    }
    .faq-question h4 {
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
    .category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        flex-direction: column;
        align-items: center;
    }
    .category-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .faq-question {
        padding: 1rem;
    }
    .faq-question h4 {
        font-size: 0.95rem;
        padding-right: 0.75rem;
    }
    .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* Feedback Responsive Design */
@media (max-width: 768px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .feedback-form {
        padding: 2rem;
    }
    .guidelines-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .time-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    .form-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .types-grid {
        grid-template-columns: 1fr;
    }
    .type-card {
        padding: 1.5rem;
    }
    .feedback-form {
        padding: 1.5rem;
    }
    .time-cards {
        grid-template-columns: 1fr;
    }
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    .social-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        height: 64px;
    }
    
    .nav-left {
        gap: 1.5rem;
    }
    
    .nav-logo img {
        height: 28px;
        max-width: 120px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .utility-links {
        display: none;
    }
    
    .header-icons {
        display: none;
    }
    
    .footer-logo img {
        height: 40px;
        max-width: 150px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 64px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }

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

    .trends-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card-featured {
        grid-row: span 1;
    }

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

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

    .product-actions {
        flex-direction: column;
    }
    
    
    .product-card {
        min-height: auto;
        height: auto;
    }
    
    .product-actions {
        margin-top: 1.5rem;
    }
    
    .product-demo {
        min-height: 180px;
    }
    
    .product-demo img {
        height: 180px;
        object-fit: cover;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-card,
    .contact-form {
        padding: 1.5rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .solution-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hub-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hub-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

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

    .dashboard-modules {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Brand Resources Responsive */
    .guidelines-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    /* Legal Documents Tablet */
    .legal-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .choose-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .news-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    /* Brand Resources Mobile */
    .guidelines-grid {
        grid-template-columns: 1fr;
    }

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

    .logo-downloads {
        flex-direction: column;
        gap: 0.5rem;
    }

    .download-btn {
        justify-content: center;
    }

    /* Legal Documents Mobile */
    .legal-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .document-title {
        font-size: 2rem;
    }

    .document-section {
        padding: 1.5rem;
    }
}

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

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

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Brand Resources Page Styles */
.brand-guidelines {
    padding: 6rem 0;
    background: #f8fafc;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.guideline-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guideline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.guideline-icon {
    width: 80px;
    height: 80px;
    background: #0066CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.guideline-icon i {
    font-size: 2rem;
    color: white;
}

.guideline-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.guideline-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.color-palette {
    padding: 6rem 0;
    background: #ffffff;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.color-group h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2rem;
}

.color-items {
    display: grid;
    gap: 1.5rem;
}

.color-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.color-item:hover {
    transform: translateY(-2px);
}

.color-swatch {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.color-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.color-info p {
    font-size: 1rem;
    font-weight: 600;
    color: #0066CC;
    margin-bottom: 0.25rem;
}

.color-info span {
    font-size: 0.9rem;
    color: #64748b;
    font-family: 'Courier New', monospace;
}

.logo-downloads {
    padding: 1rem 0;
    background: #f8fafc;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.logo-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.logo-preview {
    width: 120px;
    height: 120px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid #e2e8f0;
    padding: 1rem;
}

.logo-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.logo-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.logo-downloads {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.download-btn {
    background: #0066CC;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn:hover {
    background: #004499;
    transform: translateY(-2px);
}

.typography {
    padding: 6rem 0;
    background: #ffffff;
}

.typography-content {
    margin-top: 3rem;
}

.font-showcase h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2rem;
}

.font-examples {
    display: grid;
    gap: 2rem;
}

.font-example {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #0066CC;
}

.font-example h1,
.font-example h2,
.font-example h3,
.font-example p {
    margin: 0;
    color: #1a202c;
}

.font-example p:last-child {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.usage-guidelines {
    padding: 6rem 0;
    background: #f8fafc;
}

.guidelines-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.guideline-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.guideline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guideline-list li {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.guideline-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: #0066CC;
    border-radius: 50%;
}

.contact {
    padding: 6rem 0;
    background: #ffffff;
}

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

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #0066CC;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066CC;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Page Styles */
.faq-categories {
    padding: 6rem 0;
    background: #f8fafc;
}
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}
.category-btn {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #64748b;
}
.category-btn:hover {
    border-color: #0066CC;
    color: #0066CC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}
.category-btn.active {
    background: #0066CC;
    border-color: #0066CC;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}
.category-btn i {
    font-size: 1.1rem;
}
.faq-section {
    padding: 6rem 0;
    background: #ffffff;
}
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}
.faq-category {
    margin-bottom: 4rem;
}
.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #0066CC;
}
.faq-list {
    display: grid;
    gap: 1rem;
}
.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.faq-item.active {
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-color: #0066CC;
}
.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.faq-question:hover {
    background: #f1f5f9;
}
.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}
.faq-question i {
    font-size: 1rem;
    color: #0066CC;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid #e2e8f0;
}
.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Feedback Page Styles */
.feedback-types {
    padding: 6rem 0;
    background: #f8fafc;
}
.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.type-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
.type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #0066CC;
}
.type-icon {
    width: 80px;
    height: 80px;
    background: #0066CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.type-icon i {
    font-size: 2rem;
    color: white;
}
.type-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}
.type-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feedback-form-section {
    padding: 6rem 0;
    background: #ffffff;
}
.form-container {
    max-width: 800px;
    margin: 0 auto;
}
.form-header {
    text-align: center;
    margin-bottom: 3rem;
}
.feedback-form {
    background: #f8fafc;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.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);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.rating-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
}
.rating-stars input[type="radio"] {
    display: none;
}
.rating-stars label {
    font-size: 2rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0;
}
.rating-stars input[type="radio"]:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: #fbbf24;
}
.rating-text {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}
.checkbox-group {
    margin-bottom: 1rem;
}
.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    cursor: pointer;
    font-size: 0.95rem;
    color: #64748b;
    margin: 0 !important;
    text-align: left !important;
    flex-direction: row !important;
}
.checkbox-label input[type="checkbox"] {
    display: none;
}
.checkmark {
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
    order: -1 !important;
}
.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background: #0066CC;
    border-color: #0066CC;
}
.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}
.checkbox-label a {
    color: #0066CC;
    text-decoration: none;
}
.checkbox-label a:hover {
    text-decoration: underline;
}

/* Checkbox responsive adjustments */
@media (max-width: 768px) {
    .checkbox-label {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
        margin-top: 1px;
    }
}
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.form-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.feedback-guidelines {
    padding: 6rem 0;
    background: #f8fafc;
}
.guidelines-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}
.guideline-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
}
.guideline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.guideline-list li {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}
.guideline-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: #0066CC;
    border-radius: 50%;
}

.response-time {
    padding: 6rem 0;
    background: #ffffff;
}
.response-content {
    text-align: center;
}
.response-info {
    margin-bottom: 3rem;
}
.response-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}
.response-info p {
    color: #64748b;
    font-size: 1.1rem;
}
.time-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.time-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
.time-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #0066CC;
}
.time-icon {
    width: 60px;
    height: 60px;
    background: #0066CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.time-icon i {
    font-size: 1.5rem;
    color: white;
}
.time-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}
.time-card p {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.social-links {
    text-align: center;
}
.social-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
}
.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}
.social-btn:hover {
    background: #0066CC;
    border-color: #0066CC;
    color: white;
    transform: translateY(-2px);
}

/* Legal Documents Page Styles */
.legal-nav {
    padding: 6rem 0;
    background: #f8fafc;
}

.legal-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.legal-nav-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.legal-nav-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    color: inherit;
}

.legal-nav-icon {
    width: 80px;
    height: 80px;
    background: #0066CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.legal-nav-icon i {
    font-size: 2rem;
    color: white;
}

.legal-nav-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.legal-nav-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.legal-document {
    padding: 6rem 0;
    background: #ffffff;
}

.legal-document:nth-child(even) {
    background: #f8fafc;
}

.document-header {
    text-align: center;
    margin-bottom: 4rem;
}

.document-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.document-meta {
    color: #64748b;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.document-download {
    margin-top: 1rem;
}

.document-download .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.document-download .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.document-content {
    max-width: 800px;
    margin: 0 auto;
}

.document-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.document-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0066CC;
}

.document-section p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.document-section ul {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.document-section li {
    margin-bottom: 0.75rem;
    position: relative;
}

.document-section li::before {
    content: '•';
    color: #0066CC;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.document-section strong {
    color: #1a202c;
    font-weight: 600;
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.toast {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    margin-bottom: 12px;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid;
    position: relative;
    overflow: hidden;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.hide {
    transform: translateY(100%);
    opacity: 0;
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.warning {
    border-left-color: #f59e0b;
}

.toast.info {
    border-left-color: #3b82f6;
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: #10b981;
    color: #fff;
}

.toast.error .toast-icon {
    background: #ef4444;
    color: #fff;
}

.toast.warning .toast-icon {
    background: #f59e0b;
    color: #fff;
}

.toast.info .toast-icon {
    background: #3b82f6;
    color: #fff;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.toast-message {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    color: #64748b;
    background: #f1f5f9;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    transition: width linear;
}

.toast.success .toast-progress {
    background: #10b981;
}

.toast.error .toast-progress {
    background: #ef4444;
}

.toast.warning .toast-progress {
    background: #f59e0b;
}

.toast.info .toast-progress {
    background: #3b82f6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toast-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
}
