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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo {
    width: 100px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-left: -15px;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

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

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

.btn-outline {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

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

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

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

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1d4ed8;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

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

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 100px;
  
    border-radius: 8px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.contact-info i {
    color: #3b82f6;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

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

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

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

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

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

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

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

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

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

    /* Additional responsive fixes */
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .overview-image {
        order: -1;
    }

    .overview-img {
        max-width: 100%;
        height: auto;
    }

    /* Enhanced responsive styles for About Us sections */
    .company-overview .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .company-overview .overview-text {
        order: 2;
    }

    .company-overview .overview-image {
        order: 1;
    }

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

    .mission-item {
        text-align: left;
        padding: 1.5rem;
        background: #f8fafc;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

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

    .value-card {
        padding: 1.5rem;
        text-align: center;
    }

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

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

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

    .timeline-container {
        padding-left: 2rem;
    }

    .timeline-item {
        margin-bottom: 2rem;
    }

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

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

    /* Enhanced responsive styles for Services page */
    .services-overview .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .services-overview .overview-text {
        order: 2;
    }

    .services-overview .overview-image {
        order: 1;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .service-intro h2 {
        font-size: 2rem;
    }

    .service-intro p {
        font-size: 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .portfolio-items {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .network-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Enhanced responsive styles for Contact page */
    .contact-form-container h2 {
        font-size: 2rem;
        text-align: center;
    }

    .contact-form-container p {
        text-align: center;
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }

    .contact-sidebar {
        order: -1;
        margin-bottom: 2rem;
    }

    .sidebar-content {
        text-align: center;
    }

    .map-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .map-info {
        text-align: center;
    }

    .map-embed {
        height: 300px;
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    /* Additional mobile optimizations */
    .container {
        padding: 0 1rem;
    }

    .nav-logo .logo-text {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .overview-content {
        padding: 40px 0;
    }

    .detail-card {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .portfolio-item {
        margin-bottom: 2rem;
    }

    .team-member {
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .filter-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* Additional mobile optimizations for Contact page */
    .contact-form-section {
        padding: 40px 0;
    }

    .contact-info-section {
        padding: 40px 0;
    }

    .contact-form-container h2 {
        font-size: 1.8rem;
    }

    .contact-form-container p {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
    }

    .contact-card p {
        font-size: 0.85rem;
    }

    /* Additional mobile optimizations for About Us sections */
    .company-overview .overview-text h2 {
        font-size: 1.8rem;
    }

    .company-overview .overview-text p {
        font-size: 0.9rem;
    }

    .mission-item h3 {
        font-size: 1.2rem;
    }

    .mission-item p {
        font-size: 0.9rem;
    }

    .value-card h4 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }

    /* Additional mobile optimizations for Services page */
    .services-overview .overview-text h2 {
        font-size: 1.8rem;
    }

    .services-overview .overview-text p {
        font-size: 0.9rem;
    }

    .service-intro h2 {
        font-size: 1.6rem;
    }

    .service-intro p {
        font-size: 0.9rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

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

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

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

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .overview-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

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

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

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

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

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

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

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

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

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

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

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

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Overview Sections */
.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 80px 0;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.overview-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.overview-image {
    display: flex;
    justify-content: center;
}

.overview-img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Company Details */
.company-details {
    padding: 80px 0;
    background: #f8fafc;
}

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

.detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

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

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    padding: 0.5rem 0;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
}

.detail-card li:last-child {
    border-bottom: none;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background: white;
}

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

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.mission-item {
    margin-bottom: 2rem;
}

.mission-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission-item h3 i {
    color: #2563eb;
}

.mission-item p {
    color: #64748b;
    line-height: 1.6;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Timeline */
.timeline {
    padding: 80px 0;
    background: #f8fafc;
}

.timeline h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2563eb;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.reason-card {
    text-align: center;
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
}

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

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

.reason-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Service Sections */
.service-section {
    padding: 80px 0;
}

.service-section:nth-child(even) {
    background: #f8fafc;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-intro p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

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

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

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

.feature-card li {
    padding: 0.3rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.feature-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Portfolio Styles */
.portfolio-filter {
    padding: 40px 0;
    background: #f8fafc;
}

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

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #2563eb;
    background: transparent;
    color: #2563eb;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2563eb;
    color: white;
}

.portfolio-grid {
    padding: 60px 0;
}

.portfolio-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

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

.portfolio-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: #e2e8f0;
    color: #475569;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Project Stats */
.project-stats {
    padding: 80px 0;
    background: #f8fafc;
}

.project-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

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



/* Technologies */
.technologies {
    padding: 80px 0;
    background: #f8fafc;
}

.technologies h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.tech-item {
    background: #e2e8f0;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Team Styles */
.team-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.leadership-team,
.development-team,
.infrastructure-team,
.consulting-team {
    padding: 80px 0;
}

.leadership-team {
    background: white;
}

.development-team {
    background: #f8fafc;
}

.infrastructure-team {
    background: white;
}

.consulting-team {
    background: #f8fafc;
}

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

.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #2563eb;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.member-info {
    padding: 2.5rem;
}

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

.member-position {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    background: #e2e8f0;
    color: #475569;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Company Culture */
.company-culture {
    padding: 80px 0;
    background: white;
}

.company-culture h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.culture-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-5px);
}

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

.culture-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.culture-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Join Team */
.join-team {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

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

.join-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.benefit-item i {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* Contact Styles */
.contact-info-section {
    padding: 60px 0;
    background: #f8fafc;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

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

.contact-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

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

.contact-form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-form-container p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
}

.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;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.privacy-link {
    color: #2563eb;
    text-decoration: none;
}

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

/* Contact Sidebar */
.contact-sidebar {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    height: fit-content;
}

.sidebar-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    color: #2563eb;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

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

/* Network Page */
.network-section {
    padding: 60px 0 80px;
}

.network-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.network-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.network-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.network-card h2 i {
    color: #2563eb;
}

.network-card-desc {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.network-form .form-group:last-of-type {
    margin-bottom: 1rem;
}

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

.forgot-link {
    font-size: 0.9rem;
    color: #2563eb;
    text-decoration: none;
}

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

.btn-block {
    width: 100%;
    margin-top: 0.5rem;
}

.network-card-accent {
    background: linear-gradient(145deg, #f0f7ff 0%, #e8f0fe 100%);
    border-color: #bfdbfe;
}

.network-card-accent h2 {
    margin-top: 0.25rem;
}

.freelancer-icon {
    width: 56px;
    height: 56px;
    background: #2563eb;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.network-freelancer-desc {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.freelancer-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.freelancer-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    color: #334155;
    font-size: 0.95rem;
}

.freelancer-benefits li i {
    color: #2563eb;
    font-size: 0.9rem;
}

.network-card-accent .btn {
    margin-top: auto;
}

.login-error {
    background: #fef2f2;
    color: #b91c1c;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    border: 1px solid #fecaca;
}

/* Dashboard */
.page-header-dashboard {
    padding: 120px 0 40px;
}

.page-header-network-panel {
    background: #15803d !important;
    color: #fff;
    text-align: left;
    /* Top padding clears the fixed navbar so "Network Panel" is visible */
    padding: 7.5rem 0 14px !important;
}

.page-header-network-panel .container-dashboard {
    padding-top: 0;
    padding-bottom: 0;
}

.page-header-network-panel h1 {
    font-size: 1.35rem !important;
    font-weight: 600;
    margin: 0;
    opacity: 1;
}

.dashboard-section {
    padding: 40px 0 80px;
}

.dashboard-screenshot {
    padding: 0 0 40px !important;
}

.dashboard-screenshot .container-dashboard,
.container-dashboard {
    max-width: none;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}

.dashboard-screenshot .container-dashboard {
    padding-top: 0;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
    max-width: none;
    width: 100%;
    margin: 0 auto;
}

.dashboard-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.dashboard-screenshot .dashboard-card {
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 12px;
}

.dashboard-screenshot .dashboard-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.dashboard-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-card h3 i {
    color: #2563eb;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 1rem;
}

.dashboard-screenshot .dashboard-nav {
    margin-top: 0.75rem;
}

.dashboard-screenshot .dashboard-nav-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

.dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.dashboard-nav-item i {
    width: 1.25rem;
    color: #64748b;
}

.dashboard-nav-item:hover,
.dashboard-nav-item.active {
    background: #f0f7ff;
    color: #2563eb;
}

.dashboard-nav-item.active i {
    color: #2563eb;
}

.dashboard-profile {
    text-align: center;
}

.profile-avatar {
    margin-bottom: 1rem;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e2e8f0;
}

.dashboard-screenshot .profile-img {
    width: 96px;
    height: 96px;
}

.dashboard-screenshot .dashboard-profile {
    padding: 1rem 1.25rem;
}

.dashboard-screenshot .profile-name { font-size: 1rem; }
.dashboard-screenshot .profile-email,
.dashboard-screenshot .profile-company { font-size: 0.85rem; }
.dashboard-screenshot .profile-type { font-size: 0.85rem; margin-bottom: 0.5rem; }
.dashboard-screenshot .profile-skills { margin-bottom: 0.5rem; }
.dashboard-screenshot .skill-tag { font-size: 0.75rem; padding: 2px 8px; }
.dashboard-screenshot .profile-rating { font-size: 1rem; margin-bottom: 0.15rem; }
.dashboard-screenshot .profile-status-row { margin-bottom: 0.5rem; font-size: 0.85rem; }
.dashboard-screenshot .profile-divider { margin: 0.75rem 0; }
.dashboard-screenshot .profile-info p { margin-bottom: 0.4rem; font-size: 0.8rem; }
.dashboard-screenshot .profile-avatar { margin-bottom: 0.75rem; }

.profile-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.profile-email {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.profile-company {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.profile-type {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.75rem;
}

.profile-type i {
    color: #2563eb;
    margin-right: 0.25rem;
}

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

.skill-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.profile-rating {
    font-size: 1.1rem;
    color: #f59e0b;
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.rating-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: normal;
    margin-left: 0.25rem;
}

.profile-status-row {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.profile-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 1rem 0;
}

.profile-info {
    text-align: left;
    font-size: 0.9rem;
    color: #475569;
}

.profile-info p {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-info i {
    color: #2563eb;
    width: 1.1rem;
}

.status-badge {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.dashboard-main-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dashboard-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dashboard-main-grid .dashboard-card {
    margin-bottom: 0;
}

.dashboard-earnings-overview {
    margin-bottom: 0;
}

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

.earnings-stat {
    background: linear-gradient(145deg, #f0f7ff 0%, #e0f2fe 100%);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #bae6fd;
}

.dashboard-screenshot .earnings-stat {
    padding: 0.75rem;
}

.dashboard-screenshot .earnings-stat-value {
    font-size: 1.25rem;
}

.dashboard-screenshot .earnings-stat-label {
    font-size: 0.8rem;
}

.earnings-stat-label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.earnings-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.dashboard-balance h3,
.dashboard-projects h3,
.dashboard-tickets h3,
.dashboard-pushes h3 {
    margin-bottom: 1rem;
}

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

.balance-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.dashboard-screenshot .balance-item {
    padding: 0.6rem;
}

.dashboard-screenshot .balance-value {
    font-size: 1.1rem;
}

.dashboard-screenshot .balance-label {
    font-size: 0.8rem;
}

.balance-label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.balance-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
}

.balance-pending {
    color: #d97706;
}

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

.project-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    gap: 1rem;
}

.dashboard-screenshot .project-item {
    padding: 0.5rem 0;
}

.dashboard-screenshot .project-title { font-size: 0.9rem; }
.dashboard-screenshot .project-meta { font-size: 0.8rem; }

.project-item:last-child {
    border-bottom: none;
}

.project-load-more {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.project-load-more-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2563eb;
    cursor: default;
    display: inline-block;
}

.project-load-more-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.project-title {
    font-weight: 600;
    color: #1e293b;
}

.project-meta {
    font-size: 0.85rem;
    color: #64748b;
}

.project-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.status-done {
    background: #dcfce7;
    color: #166534;
}

.status-progress {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-pending {
    background: #fef3c7;
    color: #b45309;
}

/* Dashboard Tickets */
.ticket-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ticket-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-screenshot .ticket-item {
    padding: 0.5rem 0;
}

.dashboard-screenshot .ticket-subject { font-size: 0.9rem; }
.dashboard-screenshot .ticket-meta { font-size: 0.8rem; }

.ticket-item:last-child {
    border-bottom: none;
}

.ticket-id {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    min-width: 70px;
}

.ticket-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ticket-subject {
    font-weight: 600;
    color: #1e293b;
}

.ticket-meta {
    font-size: 0.85rem;
    color: #64748b;
}

.ticket-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

/* Dashboard Pushes (Bitbucket-style) */
.push-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.push-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.push-item:last-child {
    border-bottom: none;
}

.push-load-more {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.push-load-more-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2563eb;
    cursor: default;
    display: inline-block;
}

.push-load-more-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Profile Settings – Bank accounts */
.bank-accounts-card h3 {
    margin-bottom: 0.5rem;
}

.bank-accounts-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.bank-accounts-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.bank-account-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.bank-account-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bank-account-holder {
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bank-account-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
}

.bank-account-status-active {
    background: #dcfce7;
    color: #166534;
}

.bank-account-status-inactive {
    background: #f1f5f9;
    color: #64748b;
}

.bank-account-iban {
    font-family: ui-monospace, monospace;
    font-size: 0.9rem;
    color: #475569;
    letter-spacing: 0.02em;
}

.bank-account-meta {
    font-size: 0.85rem;
    color: #64748b;
}

.btn-remove-bank {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.btn-remove-bank:hover {
    background: #fee2e2;
    color: #991b1b;
}

.bank-account-add {
    margin-bottom: 1.5rem;
}

.bank-account-add .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.bank-account-form {
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.bank-account-form h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.bank-account-form .form-group {
    margin-bottom: 1rem;
}

.bank-account-form .form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 0;
}

/* Historical orders */
.historical-orders-card h3 {
    margin-bottom: 0.5rem;
}

.historical-orders-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

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

.historical-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    gap: 1rem;
}

.historical-order-item:last-child {
    border-bottom: none;
}

.historical-order-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.historical-order-title {
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
}

.historical-order-title:hover {
    color: #2563eb;
}

.historical-order-meta {
    font-size: 0.85rem;
    color: #64748b;
}

/* Order details page */
.order-details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.order-details-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.35rem;
}

.order-details-meta {
    font-size: 0.95rem;
    color: #64748b;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.order-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.order-tab {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
}

.order-tab:hover {
    color: #2563eb;
}

.order-tab.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.order-tab-panel {
    padding: 0.5rem 0;
}

.order-details-summary {
    max-width: 820px;
}

.order-details-summary p {
    margin-bottom: 0.75rem;
    color: #475569;
}

.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-detail-block {
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.order-detail-block h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.order-detail-block p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.order-detail-full {
    grid-column: 1 / -1;
}

.order-deliverables {
    margin: 0;
    padding-left: 1.25rem;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
}

.order-deliverables li {
    margin-bottom: 0.35rem;
}

@media (max-width: 768px) {
    .order-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Communication tab */
.communication-thread {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.communication-message {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    max-width: 85%;
}

.message-client {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    align-self: flex-start;
}

.message-daniel {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    align-self: flex-end;
}

.message-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.35rem;
}

.message-date {
    font-weight: 400;
    color: #64748b;
    font-size: 0.8rem;
}

.message-body {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
}

.push-branch {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2563eb;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.push-branch i {
    color: #64748b;
    font-size: 0.75rem;
}

.push-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.push-message {
    font-weight: 600;
    color: #1e293b;
}

.push-meta {
    font-size: 0.85rem;
    color: #64748b;
    font-family: ui-monospace, monospace;
}

.push-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.dashboard-screenshot .push-item {
    padding: 0.5rem 0;
}

.dashboard-screenshot .push-message { font-size: 0.9rem; }
.dashboard-screenshot .push-meta { font-size: 0.8rem; }
.dashboard-screenshot .push-branch { font-size: 0.75rem; min-width: 160px; }

@media (max-width: 768px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-main-top,
    .dashboard-main-grid {
        grid-template-columns: 1fr;
    }

    .balance-grid,
    .earnings-overview-grid {
        grid-template-columns: 1fr;
    }

    .ticket-item,
    .push-item {
        flex-wrap: wrap;
    }
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8fafc;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.map-info {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.map-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #64748b;
}

.map-info i {
    color: #2563eb;
    width: 20px;
}

.directions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.directions h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.directions p {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.map-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Hero/Overview CSS Illustration (no external image) */
.hero-illustration,
.overview-illustration {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    background:
        radial-gradient(120px 120px at 80% 20%, rgba(59,130,246,0.25), transparent 60%),
        radial-gradient(140px 140px at 20% 80%, rgba(99,102,241,0.25), transparent 60%),
        linear-gradient(135deg, #0ea5e9 0%, #6366f1 50%, #7c3aed 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.hero-illustration::before,
.hero-illustration::after,
.overview-illustration::before,
.overview-illustration::after {
    content: '';
    position: absolute;
    border-radius: 16px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(2px);
}

.hero-illustration::before,
.overview-illustration::before {
    width: 68%;
    height: 46%;
    top: 10%;
    left: 8%;
}

.hero-illustration::after,
.overview-illustration::after {
    width: 54%;
    height: 36%;
    bottom: 10%;
    right: 8%;
}

.hero-illustration .glow,
.overview-illustration .glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(220px 120px at 30% 30%, rgba(255,255,255,0.15), transparent 60%),
                radial-gradient(180px 120px at 70% 70%, rgba(255,255,255,0.10), transparent 60%);
    pointer-events: none;
}

/* MetaPOS Specific */
.metapos-overview .features-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.5rem;
}

.metapos-overview .badge {
    background: #eef2ff;
    color: #1e40af;
    border: 1px solid #c7d2fe;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pricing-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.pricing-card {
    position: relative;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.pricing-card.popular {
    border-color: #2563eb;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: #2563eb;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.pricing-header p {
    color: #64748b;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin: 0.5rem 0 0.75rem;
}

.price .currency {
    font-size: 1.2rem;
    vertical-align: super;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.pricing-features li {
    padding: 0.4rem 0 0.4rem 1.4rem;
    color: #475569;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading animation */
.loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loaded {
    opacity: 1;
} 


@media (max-width: 768px) {
    .contact-content  {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .map-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mission-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}

/* Legal Pages Styles */
.legal-content {
    background: var(--bg-light);
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.legal-section {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-section h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 500;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.company-details,
.contact-details {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.company-details h3,
.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-date {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-wrapper {
        margin: 0 1rem;
        border-radius: 8px;
    }

    .legal-section {
        padding: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .company-details,
    .contact-details {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-wrapper {
        margin: 0 0.5rem;
        border-radius: 6px;
    }

    .legal-section {
        padding: 1rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
    }

    .legal-section p {
        font-size: 0.9rem;
    }

    .legal-section ul {
        padding-left: 1rem;
    }

    .company-details,
    .contact-details {
        padding: 0.8rem;
    }
}