/* Chart Visual Styles */
.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.growth-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly;
    width: 100%;
    height: 220px;
    margin-bottom: 15px;
}

.chart-bars .bar {
    width: 20px;
    background: #3b82f6;
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
    margin: 0 5px;
}

.chart-bars .bar-1 { height: 80px; }
.chart-bars .bar-2 { height: 150px; }
.chart-bars .bar-3 { height: 120px; }
.chart-bars .bar-4 { height: 200px; }
.chart-bars .bar-5 { height: 170px; }

.chart-label {
    font-size: 1rem;
    text-align: center;
    color: #333;
    font-weight: 600;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h2 {
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.8rem;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3b82f6;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 1rem 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
    color: #3b82f6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 70vh;
    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-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3b82f6;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Settings Styles */

/* Verification Styles */
.verification-section {
    padding: 80px 0;
    text-align: center;
}

.verification-container {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.verification-icon span {
    font-size: 3rem;
    color: #3b82f6;
}

.verification-text {
    margin-top: 1rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 1rem;
}

.verification-subtitle, .verification-help ul {
    font-size: 0.9rem;
    color: #6b7280;
}

.verification-actions .btn {
    margin: 10px;
}

.verification-footer p {
    margin-top: 20px;
    font-size: 0.9rem;
}

.verification-footer a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.verification-footer a:hover {
    color: #2563eb;
}

/* Dashboard Styles */
.dashboard-section {
    padding: 80px 0;
    background: #f9fafb;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.dashboard-header p {
    color: #6b7280;
    font-size: 1rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 10px;
}

.stat-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #10b981;
}

.stat-change {
    color: #9ca3af;
    font-size: 0.9rem;
}

.dashboard-main {
    margin-top: 4rem;
}

.dashboard-section-content {
    margin-bottom: 3rem;
}

.dashboard-section-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.projects-list, .activity-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.project-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
}

.project-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.project-status.in-progress {
    background: #f3f4f6;
    color: #6366f1;
}

.project-status.active {
    background: #f0fdf4;
    color: #10b981;
}

.project-status.completed {
    background: #f9fafb;
    color: #9ca3af;
}

.project-progress {
    margin-top: 20px;
}

.progress-bar {
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    height: 10px;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.project-actions {
    margin-top: 20px;
    text-align: right;
}

.project-actions .btn {
    font-size: 0.9rem;
    padding: 5px 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.activity-icon {
    font-size: 1.8rem;
    color: #f59e0b;
    margin-right: 15px;
}

.activity-content p {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 5px;
}

.activity-time {
    font-size: 0.8rem;
    color: #9ca3af;
}

.quick-actions {
    text-align: center;
    margin-top: 3rem;
}

.quick-actions h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.action-btn {
    background: #ffffff;
    border: 2px solid #f3f4f6;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #3b82f6;
    color: #ffffff;
}

.action-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Settings Styles */

.settings-section {
    padding: 50px 0;
    background: #f9fafb;
}

.settings-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
}

.settings-sidebar {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.settings-nav {
    display: flex;
    flex-direction: column;
}

.settings-tab {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    border-radius: 5px;
}

.settings-tab.active {
    background-color: #e5e7eb;
    font-weight: 600;
}

.settings-tab:hover {
    background-color: #f3f4f6;
}

.tab-icon {
    margin-right: 10px;
    color: #3b82f6;
}

.settings-content {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.settings-tab-content {
    display: none;
}

.settings-tab-content.active {
    display: block;
}

.settings-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #3b82f6;
}

input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.btn {
    background-color: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2563eb;
}

.btn-outline {
    background-color: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-outline:hover {
    background-color: #3b82f6;
    color: white;
}

.btn-danger {
    background-color: #ef4444;
}

.btn-danger:hover {
    background-color: #dc2626;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.current-plan, .payment-methods, .billing-history, .security-section, .notification-section, .preference-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.option-info {
    margin-bottom: 10px;
}

/* User Menu Styles */
.user-menu {
    display: flex;
    align-items: center;
}

.user-profile {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.user-profile:hover {
    background-color: #f3f4f6;
}

.user-avatar {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.user-name {
    font-weight: 500;
    color: #374151;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-profile:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.user-dropdown a:hover {
    background-color: #f3f4f6;
}

.user-dropdown a.active {
    background-color: #e5e7eb;
    font-weight: 600;
}

/* Billing and plan styles */
.plan-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
}

.plan-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #6b7280;
    font-size: 0.9rem;
}

.plan-actions {
    display: flex;
    gap: 1rem;
}

.payment-method-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.payment-info {
    display: flex;
    align-items: center;
}

.card-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.card-details p {
    margin: 0;
    font-size: 0.9rem;
}

.payment-actions {
    display: flex;
    gap: 0.5rem;
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 0.5rem;
}

.invoice-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.invoice-date, .invoice-amount {
    font-weight: 500;
    color: #374151;
}

.invoice-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.invoice-status.paid {
    background: #d1fae5;
    color: #065f46;
}

/* Security options */
.security-option, .notification-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.session-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.session-info p {
    margin: 0;
    font-size: 0.9rem;
}

.session-time {
    color: #6b7280;
    font-size: 0.8rem;
}

.session-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.session-status.current {
    background: #d1fae5;
    color: #065f46;
}

/* Responsive design for settings */
@media (max-width: 1024px) {
    .settings-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .settings-sidebar {
        order: 2;
    }
    
    .settings-content {
        order: 1;
    }
    
    .settings-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .plan-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .payment-method-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .invoice-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .invoice-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .session-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .security-option, .notification-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #2563eb;
}

/* Process Section */
.process {
    padding: 60px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0 80px;
    background: #f8fafc;
    position: relative;
    z-index: 2;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #f8fafc 0%, rgba(59, 130, 246, 0.2) 50%, #3b82f6 100%);
    z-index: -1;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    color: #333;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #3b82f6;
    display: block;
    margin-top: 0.5rem;
}

/* Promise Section */
.promise {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    text-align: center;
    position: relative;
    margin-top: -50px;
    z-index: 1;
}

/* Add smooth transition after promise section */
.promise::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #1e40af 0%, rgba(30, 64, 175, 0.5) 50%, white 100%);
    z-index: -1;
}

.promise h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.promise p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.message-container {
    margin-top: 20px;
    padding: 0;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    min-height: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
}

.message-container.show {
    opacity: 1;
    transform: translateY(0);
}

.message-container.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-color: rgba(16, 185, 129, 0.2);
    color: #065f46;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1), 0 2px 8px rgba(16, 185, 129, 0.05);
}

.message-container.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-color: rgba(239, 68, 68, 0.2);
    color: #991b1b;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.1), 0 2px 8px rgba(239, 68, 68, 0.05);
}

.message-container .message-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.message-container .message-icon {
    font-size: 1.1rem;
    opacity: 0.8;
    animation: messageIconPulse 2s infinite;
}

.message-container.success .message-icon::before {
    content: '✓';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.message-container.error .message-icon::before {
    content: '⚠';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

@keyframes messageIconPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* Contact Section */
.contact {
    padding: 150px 0 100px;
    background: white;
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-item strong {
    color: #333;
    min-width: 60px;
}

.contact-item span {
    color: #3b82f6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-contact p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* 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;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-graphic {
        width: 300px;
        height: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 80px;
    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;
}

/* About Page Styles */
.about-hero {
    padding: 100px 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: #333;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: #f8fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.mv-card p {
    color: #666;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
}

.team-member h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.team-member .role {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: #f8fafc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.why-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.why-item p {
    color: #666;
}

/* Services Page Styles */
.services-hero {
    padding: 40px 0;
    background: white;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.main-services {
    padding: 60px 0;
    background: #f8fafc;
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.service-card-large {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 120px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1rem;
}

.service-features li {
    padding: 0.25rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-stats {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.service-stats span {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.service-stats span strong {
    color: #3b82f6;
    font-weight: 600;
}

/* Additional Services */
.additional-services {
    padding: 60px 0;
    background: white;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.additional-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-5px);
}

.additional-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.additional-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.additional-card p {
    color: #666;
}

/* Service Hero */
.service-hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Service Features */
.service-features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* Service Process */
.service-process {
    padding: 100px 0;
    background: #f8fafc;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.timeline-content p {
    color: #666;
}

/* Technologies */
.technologies {
    padding: 100px 0;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.tech-category ul {
    list-style: none;
}

.tech-category li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.tech-category li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 100px 0;
    background: #f8fafc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.portfolio-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 0.5rem;
    color: #333;
}

.portfolio-item p {
    color: #666;
    margin: 0 1.5rem 1.5rem;
}

.text-center {
    text-align: center;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.75rem 0;
    color: #666;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Contact Page Styles */
.contact-main {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info-section p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-details-list {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    padding: 0.5rem;
}

.contact-detail h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-detail p {
    color: #666;
    margin: 0;
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-block;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: #f8fafc;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-detailed {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin: 0 0.5rem 0 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #666;
}

/* Portfolio Page Styles */
.portfolio-filter {
    padding: 50px 0;
    background: white;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.portfolio-main {
    padding: 50px 0 100px;
    background: white;
}

.portfolio-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.portfolio-item-full {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item-full:hover {
    transform: translateY(-10px);
}

.portfolio-image-full {
    height: 250px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.portfolio-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.portfolio-tags span {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: #2563eb;
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: #f8fafc;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.result-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.result-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.result-card p {
    color: #666;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Blog Styles */
.blog-main {
    padding: 100px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-content {
    padding: 2rem;
    position: relative;
    z-index: 10;
    background: white;
}

.blog-meta {
    color: #3b82f6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.blog-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #3b82f6 !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative !important;
    z-index: 999 !important;
    pointer-events: auto !important;
    display: inline-block !important;
    cursor: pointer !important;
}

.blog-content .blog-link {
    position: relative !important;
    z-index: 1000 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* ULTRA SPECIFIC RULE TO FORCE CLICKABILITY */
.blog-card .blog-content a.blog-link {
    position: relative !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: inline-block !important;
    background: rgba(59, 130, 246, 0.1) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 5px !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

.blog-card .blog-content a.blog-link:hover {
    background: rgba(59, 130, 246, 0.2) !important;
    border-color: #3b82f6 !important;
    transform: translateY(-1px) !important;
}

.blog-link:hover {
    color: #2563eb;
}

/* Read More Button Styles */
.read-more-btn {
    display: inline-block;
    color: #3b82f6 !important;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
    margin-top: 1rem;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
    overflow: hidden;
}

.read-more-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.read-more-btn:hover:before {
    left: 0;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    color: white !important;
}

/* Individual Blog Post Styles */
.blog-post-content {
    padding: 100px 0;
    background: #f8fafc;
}

/* Remove conflicting wrapper - use container instead */

.blog-post-main {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-post-header {
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.blog-breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
}

.blog-breadcrumb a:hover {
    color: #1e40af;
}

.blog-post-header .blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.blog-image.large {
    height: 300px;
    margin: 0 -2rem;
    border-radius: 0;
}

.blog-post-text {
    padding: 2rem;
    line-height: 1.8;
}

.blog-post-text p {
    margin-bottom: 1.5rem;
    color: #374151;
    font-size: 1.1rem;
}

.blog-post-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem 0;
}

.blog-post-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin: 1.5rem 0 1rem 0;
}

.blog-post-text ul,
.blog-post-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-text li {
    margin-bottom: 0.5rem;
    color: #374151;
}

.blog-post-text strong {
    color: #1f2937;
}

/* Removed - using the consistent definition below */

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.related-posts {
    space-y: 1rem;
}

.related-post {
    display: block;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.related-post:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.related-post h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-post span {
    font-size: 0.9rem;
    color: #6b7280;
}

.categories {
    list-style: none;
    padding: 0;
}

.categories li {
    margin-bottom: 0.5rem;
}

.categories a {
    display: block;
    padding: 0.5rem 0;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.2s ease;
}

.categories a:hover {
    color: #3b82f6;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.newsletter-form button {
    width: 100%;
    padding: 0.75rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.newsletter-form button:hover {
    background: #1e40af;
}

.blog-post-footer {
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-buttons span {
    font-weight: 600;
    color: #6b7280;
}

.share-btn {
    padding: 0.5rem 1rem;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin-top: 0.5rem;
        border-radius: 0;
    }
    
    .about-content,
    .service-hero-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid-large,
    .portfolio-grid-full {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-hero-text h1 {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Blog Post Mobile Responsive - updated to use blog-post-container */
    
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .blog-post-header,
    .blog-post-text {
        padding: 1.5rem;
    }
    
    .blog-image.large {
        margin: 0 -1.5rem;
        height: 200px;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

/* ======================================
   ENHANCED 3D ANIMATIONS & EFFECTS
   Professional Visual Enhancements
====================================== */

/* Override existing hero-graphic with enhanced 3D animation */
.hero-graphic {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 50%, #2563eb 100%) !important;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    animation: float3D 8s ease-in-out infinite !important;
    transform-style: preserve-3d;
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.hero-graphic::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
    animation: morph 6s ease-in-out infinite;
}

@keyframes float3D {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    25% { 
        transform: translateY(-10px) rotateX(2deg) rotateY(1deg);
    }
    50% { 
        transform: translateY(-20px) rotateX(0deg) rotateY(-2deg);
    }
    75% { 
        transform: translateY(-10px) rotateX(-2deg) rotateY(1deg);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

@keyframes morph {
    0%, 100% { border-radius: 50% 50% 50% 50%; }
    25% { border-radius: 60% 40% 30% 70%; }
    50% { border-radius: 30% 70% 60% 40%; }
    75% { border-radius: 40% 60% 70% 30%; }
}

/* Enhanced 3D Card Effects */
.service-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg) !important;
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1) !important;
}

.team-member:hover {
    transform: translateY(-10px) rotateX(3deg) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.portfolio-item-full:hover {
    transform: translateY(-20px) rotateY(3deg) !important;
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.4) !important;
}

/* Enhanced Button 3D Effects */
.btn:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4) !important;
}

/* Enhanced Image Placeholders */
.image-placeholder::before, .portfolio-image-full::before, .blog-image::before, .member-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    animation: slidePattern 10s linear infinite;
    z-index: 1;
}

@keyframes slidePattern {
    0% { transform: translateX(-20px) translateY(-20px); }
    100% { transform: translateX(20px) translateY(20px); }
}

/* Particle Background for Hero */
.hero {
    position: relative;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 20s linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Professional Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 80px;
    height: 80px;
    position: relative;
}

.loader::before,
.loader::after {
    content: '';
    position: absolute;
    border: 4px solid transparent;
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin3D 1s linear infinite;
}

.loader::before {
    width: 80px;
    height: 80px;
}

.loader::after {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    animation-direction: reverse;
    animation-duration: 0.8s;
}

@keyframes spin3D {
    0% { transform: rotate(0deg) rotateY(0deg); }
    50% { transform: rotate(180deg) rotateY(90deg); }
    100% { transform: rotate(360deg) rotateY(180deg); }
}

/* Floating Element in Hero */
.floating-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    z-index: 2;
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(0deg); 
    }
    50% { 
        transform: translate(-50%, -60%) rotate(5deg); 
    }
}

/* Professional CSS Art Images */
.css-laptop {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2d3748 0%, #4a5568 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.css-laptop::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 70%;
    background: linear-gradient(145deg, #1a202c 0%, #2d3748 100%);
    border-radius: 5px;
    border: 2px solid #4a5568;
}

.css-laptop::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 45%;
    width: 10%;
    height: 5%;
    background: #4a5568;
    border-radius: 0 0 10px 10px;
}

.css-mobile {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a202c 0%, #2d3748 100%);
    border-radius: 25px;
    position: relative;
    border: 3px solid #4a5568;
}

.css-mobile::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 80%;
    height: 70%;
    background: linear-gradient(145deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 5px;
}

.css-mobile::after {
    content: '';
    position: absolute;
    bottom: 8%;
    left: 50%;
    width: 15%;
    height: 15%;
    background: #4a5568;
    border-radius: 50%;
    transform: translateX(-50%);
}

.css-chart {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 10px;
    position: relative;
    border: 2px solid #e2e8f0;
    overflow: hidden;
}

.css-chart::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 15%;
    height: 60%;
    background: #3b82f6;
    border-radius: 5px 5px 0 0;
}

.css-chart::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 45%;
    width: 15%;
    height: 40%;
    background: #1e40af;
    border-radius: 5px 5px 0 0;
    box-shadow: 20px 0 0 #2563eb;
}

/* Enhanced Service Icons with CSS Art */
.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(30, 64, 175, 0.1));
    border-radius: 50%;
    z-index: -1;
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Professional Team Photos using CSS */
.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.ceo-photo {
    background: transparent;
}

.designer-photo {
    background: transparent;
}

.developer-photo {
    background: transparent;
}

.seo-photo {
    background: transparent;
}

/* Blog Post CSS Art Images - Chart/Graph Style Thumbnails */
.blog-image {
    height: 120px;
    border-radius: 8px 8px 0 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Remove all blocking elements */
}

/* AI/Web Design - Simple Background */
.design-trends {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* Remove all pseudo-elements that block clicks */
}

/* SEO - Simple Background */
.seo-tips {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    /* Remove all pseudo-elements that block clicks */
}

/* Performance - Simple Background */
.performance {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    /* Remove all pseudo-elements that block clicks */
}

/* All pseudo-elements removed for clickability */

/* PPC - Simple Background */
.ppc-guide {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 50%, #166534 100%);
    /* Remove all pseudo-elements that block clicks */
}

/* All pseudo-elements removed for clickability */

/* UX/Mobile Design - Simple Background */
.mobile-design {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #3730a3 100%);
    /* Remove all pseudo-elements that block clicks */
}

/* All pseudo-elements removed for clickability */

/* E-commerce - Simple Background */
.ecommerce-tips {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #be185d 100%);
    /* Remove all pseudo-elements that block clicks */
}

/* All pseudo-elements removed for clickability */

/* Individual Blog Post Styles */
.breadcrumb {
    margin-bottom: 1rem;
    color: #666;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.blog-meta-header {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.blog-post-content {
    padding: 80px 0;
    background: white;
}

.blog-post-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-main {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-hero {
    height: 300px;
    margin-bottom: 3rem;
    border-radius: 15px;
}

.blog-article {
    line-height: 1.8;
    color: #333;
    padding: 2rem;
}

.blog-article .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    border-radius: 0 8px 8px 0;
}

.blog-article h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
    color: #2d3748;
}

.blog-article h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #2d3748;
}

.blog-article p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-article ol, .blog-article ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-article li {
    margin-bottom: 0.5rem;
}

.blog-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.blog-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.blog-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.blog-sidebar {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 120px;
    align-self: start;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.related-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.related-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
    line-height: 1.3;
}

.related-content span {
    font-size: 0.8rem;
    color: #666;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid #e2e8f0;
}

.category-list a:hover {
    color: #3b82f6;
}

/* Mobile Responsive for Blog Posts */
@media (max-width: 768px) {
    .blog-post-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .blog-main {
        margin-bottom: 2rem;
    }
    
    .blog-hero {
        height: 200px;
        margin-bottom: 1rem;
    }
    
    .blog-article {
        padding: 1.5rem;
    }
    
    .blog-article .lead {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .blog-article h2 {
        font-size: 1.5rem;
    }
}

/* Authentication Styles */
.auth-section {
    padding: 100px 0;
    background: white;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    background: #f8fafc;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: white;
    color: #3b82f6;
    border-bottom: 2px solid #3b82f6;
}

.auth-form-container {
    padding: 2rem;
}

.auth-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
    text-align: center;
}

.auth-form p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.forgot-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #2563eb;
}

.btn-full {
    width: 100%;
    margin-bottom: 2rem;
}

.social-login {
    text-align: center;
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.social-login p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.google-btn {
    color: #db4437;
    border-color: #db4437;
}

.google-btn:hover {
    background: #db4437;
    color: white;
}

.facebook-btn {
    color: #3b5998;
    border-color: #3b5998;
}

.facebook-btn:hover {
    background: #3b5998;
    color: white;
}

/* Payment Styles */
.payment-section {
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.payment-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.payment-tabs {
    display: flex;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.payment-tab-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.payment-tab-btn.active {
    background: #3b82f6;
    color: white;
}

.payment-form-container {
    margin-top: 2rem;
}

/* Stripe Card Element */
#card-element {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

#card-element:focus {
    border-color: #3b82f6;
}

#card-errors {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Crypto Payment Styles */
.crypto-options h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.crypto-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.crypto-btn {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.crypto-btn:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.crypto-btn.selected {
    border-color: #3b82f6;
    background: #f0f9ff;
    color: #3b82f6;
}

.crypto-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.crypto-payment-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.crypto-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid #e5e7eb;
}

.crypto-address span {
    flex: 1;
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
    color: #333;
}

.copy-btn {
    padding: 0.5rem 1rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #2563eb;
}

.crypto-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Responsive for Auth Pages */
@media (max-width: 768px) {
    .auth-container {
        margin: 0 1rem;
    }
    
    .auth-form-container {
        padding: 1.5rem;
    }
    
    .payment-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .crypto-buttons {
        grid-template-columns: 1fr;
    }
    
    .crypto-address {
        flex-direction: column;
        text-align: center;
    }
    
    .crypto-address span {
        word-break: break-all;
    }
}

/* Portfolio Project CSS Art */
.corporate-project {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.ecommerce-project {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.restaurant-project {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.branding-project {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.medical-project {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.tech-project {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.education-project {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.coffee-project {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

/* Job Icon Background Styles for Careers Page */
.tech-project {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.corporate-project {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.branding-project {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.medical-project {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Careers Page Styles */
.careers-why {
    padding: 80px 0;
    background: #f8fafc;
}

.why-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-work-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.why-work-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.why-work-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    opacity: 0.8;
}

.why-work-card h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.why-work-card p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Job Listings */
.careers-openings {
    padding: 80px 0;
    background: white;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.job-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
    position: relative;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.job-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.job-icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.job-meta h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-type,
.job-location,
.job-salary {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 500;
}

.job-salary {
    background: #ecfdf5;
    color: #059669;
}

.job-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.job-skills span {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.job-skills span:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.apply-btn {
    width: 100%;
    margin-top: auto;
}

.job-card .btn {
    transition: all 0.2s ease;
}

.job-card .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Position Badge Fix */
.position-badge {
    white-space: nowrap !important;
    display: inline-block !important;
}

/* Application Process */
.application-process {
    padding: 80px 0;
    background: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

/* Application Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    margin: 0;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 2rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    opacity: 0.7;
}

.application-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.application-form .btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Job Details Modal Styles */
.job-details-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.job-details-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 2rem;
    margin: 0;
    border-radius: 20px 20px 0 0;
}

.job-details-header h2 {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 700;
}

.job-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.detail-badge.salary {
    background: rgba(16, 185, 129, 0.9);
}

/* E-commerce Hero Visual Styles */
.ecommerce-hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.store-mockup {
    position: relative;
    transform: scale(0.9);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(0.9); }
    50% { transform: translateY(-20px) scale(0.9); }
}

.device-frame {
    width: 320px;
    height: 500px;
    background: #1f2937;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.device-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: #374151;
    border-radius: 10px;
}

.screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.store-header {
    background: #f8fafc;
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-dots {
    display: flex;
    gap: 5px;
}

.nav-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.nav-dots span:first-child {
    background: #ef4444;
}

.nav-dots span:nth-child(2) {
    background: #f59e0b;
}

.nav-dots span:last-child {
    background: #10b981;
}

.search-bar {
    flex: 1;
    height: 25px;
    background: #e2e8f0;
    border-radius: 12px;
    margin: 0 15px;
    position: relative;
}

.search-bar::before {
    content: '🔍';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.cart-icon {
    font-size: 18px;
    position: relative;
}

.cart-icon::after {
    content: '2';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.store-content {
    padding: 20px 15px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.product-card {
    background: #f1f5f9;
    border-radius: 8px;
    height: 120px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 60px;
    background: linear-gradient(45deg, #ddd6fe, #e0e7ff);
    border-radius: 4px;
}

.product-card::after {
    content: '$99';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #3b82f6;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.payment-icon,
.security-badge,
.analytics-chart {
    position: absolute;
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: bounce 3s ease-in-out infinite;
}

.payment-icon {
    top: -10px;
    right: -20px;
    animation-delay: 0s;
}

.security-badge {
    bottom: 100px;
    left: -25px;
    animation-delay: 1s;
}

.analytics-chart {
    bottom: 20px;
    right: -30px;
    animation-delay: 2s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    33% { transform: translateY(-10px); }
    66% { transform: translateY(5px); }
}

/* Service Hero Styles */
.service-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.service-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SEO Hero Visual Styles */
.seo-hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seo-dashboard {
    position: relative;
    transform: scale(0.9);
    animation: float 6s ease-in-out infinite;
}

.dashboard-frame {
    width: 350px;
    height: 450px;
    background: #1f2937;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.dashboard-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.dashboard-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    font-weight: 600;
    font-size: 14px;
}

.search-performance {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.trend-up {
    font-size: 14px;
}

.percentage {
    font-weight: bold;
    color: #d1fae5;
}

.dashboard-content {
    padding: 20px;
}

.metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.metric-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 500;
}

.keywords-section {
    background: #f1f5f9;
    border-radius: 10px;
    padding: 15px;
}

.keyword-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 12px;
}

.keyword-item:last-child {
    border-bottom: none;
}

.keyword {
    color: #374151;
    font-weight: 500;
}

.position {
    background: #3b82f6;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 10px;
}

.floating-seo-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.google-icon,
.target-icon,
.link-icon,
.speed-icon {
    position: absolute;
    background: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: bounce 3s ease-in-out infinite;
    font-weight: bold;
}

.google-icon {
    top: -15px;
    left: -20px;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    color: white;
    font-family: 'Product Sans', sans-serif;
    animation-delay: 0s;
}

.target-icon {
    top: 80px;
    right: -25px;
    animation-delay: 0.5s;
}

.link-icon {
    bottom: 120px;
    left: -20px;
    animation-delay: 1s;
}

.speed-icon {
    bottom: 10px;
    right: -20px;
    animation-delay: 1.5s;
}

/* PPC Hero Visual Styles */
.ppc-hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ads-manager {
    position: relative;
    transform: scale(0.9);
    animation: float 6s ease-in-out infinite;
}

.manager-frame {
    width: 380px;
    height: 460px;
    background: #1f2937;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.manager-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.manager-header {
    background: #f8fafc;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.platform-tabs {
    display: flex;
    gap: 5px;
}

.tab {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #e2e8f0;
    color: #64748b;
}

.tab.active {
    background: #3b82f6;
    color: white;
}

.campaign-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
}

.status-indicator.active {
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-text {
    color: #10b981;
    font-weight: 500;
}

.manager-content {
    padding: 20px;
}

.campaign-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-item {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 500;
}

.ad-preview {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 15px;
    position: relative;
}

.ad-badge {
    position: absolute;
    top: -8px;
    left: 15px;
    background: #10b981;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
}

.ad-title {
    color: #1a0dab;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    cursor: pointer;
}

.ad-title:hover {
    text-decoration: underline;
}

.ad-description {
    color: #545454;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.ad-url {
    color: #006621;
    font-size: 12px;
    font-weight: 500;
}

.floating-ppc-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.click-icon,
.conversion-icon,
.targeting-icon,
.chart-icon {
    position: absolute;
    background: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: bounce 3s ease-in-out infinite;
}

.click-icon {
    top: -15px;
    right: -20px;
    animation-delay: 0s;
}

.conversion-icon {
    top: 100px;
    left: -25px;
    animation-delay: 0.7s;
}

.targeting-icon {
    bottom: 100px;
    right: -25px;
    animation-delay: 1.4s;
}

.chart-icon {
    bottom: 20px;
    left: -20px;
    animation-delay: 2.1s;
}

/* Homepage Agency Workspace Styles */
.agency-workspace {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.workspace-container {
    position: relative;
    transform: scale(0.85);
    animation: float 8s ease-in-out infinite;
}

.main-computer {
    position: relative;
    z-index: 2;
}

.computer-frame {
    width: 420px;
    height: 280px;
    background: #1f2937;
    border-radius: 20px 20px 5px 5px;
    padding: 15px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 2px #374151,
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.computer-frame::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #374151, #4b5563, #374151);
    border-radius: 0 0 5px 5px;
}

.computer-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.browser-bar {
    background: #f1f5f9;
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.browser-dots span:first-child {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #f59e0b;
}

.browser-dots span:last-child {
    background: #10b981;
}

.url-bar {
    flex: 1;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    color: #6b7280;
    font-family: 'Courier New', monospace;
}

.website-preview {
    padding: 20px;
    height: calc(100% - 60px);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.preview-logo {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.preview-nav {
    display: flex;
    gap: 8px;
}

.preview-nav span {
    width: 25px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}

.preview-content {
    display: grid;
    gap: 15px;
}

.preview-hero {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.text-line {
    height: 8px;
    background: #3b82f6;
    border-radius: 4px;
    opacity: 0.7;
}

.text-line.long {
    width: 80%;
}

.text-line.medium {
    width: 65%;
}

.text-line.short {
    width: 45%;
}

.hero-button {
    width: 40px;
    height: 20px;
    background: #3b82f6;
    border-radius: 6px;
    margin-left: 15px;
}

.preview-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.mini-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    height: 40px;
    position: relative;
    overflow: hidden;
}

.mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
}

.mini-card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
}

.computer-stand {
    width: 100px;
    height: 80px;
    background: linear-gradient(to bottom, #6b7280, #4b5563);
    margin: -10px auto 0;
    border-radius: 0 0 20px 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.computer-stand::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -30px;
    right: -30px;
    height: 15px;
    background: linear-gradient(to right, #374151, #4b5563, #374151);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.workspace-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.coffee-cup,
.notebook,
.plant,
.phone {
    position: absolute;
    font-size: 24px;
    animation: gentleBob 4s ease-in-out infinite;
}

.coffee-cup {
    bottom: 20px;
    left: -60px;
    animation-delay: 0s;
}

.notebook {
    bottom: 30px;
    right: -80px;
    transform: rotate(-15deg);
    animation-delay: 1s;
}

.plant {
    top: 40px;
    left: -40px;
    animation-delay: 2s;
}

.phone {
    top: 60px;
    right: -50px;
    transform: rotate(20deg);
    animation-delay: 1.5s;
}

@keyframes gentleBob {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.floating-agency-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.design-icon,
.code-icon,
.growth-icon,
.rocket-icon,
.lightbulb-icon {
    position: absolute;
    background: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    animation: orbit 15s linear infinite;
}

.design-icon {
    top: -20px;
    left: -30px;
    animation-delay: 0s;
}

.code-icon {
    top: 50px;
    right: -40px;
    animation-delay: 3s;
}

.growth-icon {
    bottom: 80px;
    left: -40px;
    animation-delay: 6s;
}

.rocket-icon {
    bottom: -10px;
    right: -30px;
    animation-delay: 9s;
}

.lightbulb-icon {
    top: 150px;
    left: -60px;
    animation-delay: 12s;
}

@keyframes orbit {
    0% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-15px) scale(1.1); }
    50% { transform: translateY(-10px) scale(1); }
    75% { transform: translateY(-20px) scale(0.95); }
    100% { transform: translateY(0px) scale(1); }
}

/* Enhanced hero image container */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Web Design Hero Visual Styles */
.webdesign-hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.design-workspace {
    position: relative;
    transform: scale(0.9);
    animation: float 6s ease-in-out infinite;
}

.design-monitor {
    position: relative;
}

.monitor-frame {
    width: 360px;
    height: 220px;
    background: #f8fafc;
    border-radius: 20px 20px 10px 10px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.monitor-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
}
.design-interface {
    display: flex;
    height: 100%;
}

.toolbar {
    background: #e2e8f0;
    width: 50px;
    border-right: 1px solid #d1d5db;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}

.tool-item {
    margin-bottom: 10px;
    font-size: 18px;
    color: #4b5563;
}

.canvas-area {
    flex: 1;
    padding: 15px;
    background: linear-gradient(to bottom, #eff6ff, #dbeafe);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.design-canvas {
    flex: 1;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.canvas-header {
    background: #f9fafb;
    padding: 6px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.canvas-logo {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 5px;
}

.canvas-nav {
    display: flex;
    gap: 4px;
}

.canvas-nav span {
    width: 20px;
    height: 5px;
    background: #e5e7eb;
    border-radius: 1px;
}

.canvas-content {
    padding: 12px;
}

.content-block {
    background: #f8fafc;
    border-radius: 5px;
    height: 20px;
    margin-bottom: 8px;
}

.hero-block {
    height: 40px;
    background: #3b82f6;
    opacity: 0.8;
}

.services-block {
    display: flex;
    gap: 4px;
}

.mini-service-card {
    background: #e5e7eb;
    height: 14px;
    width: 25px;
    border-radius: 3px;
}

.layers-panel {
    background: #e2e8f0;
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    border-left: 1px solid #d1d5db;
}

.layer-item {
    width: 40px;
    height: 8px;
    background: #d1d5db;
    border-radius: 2px;
    margin-bottom: 5px;
}

.monitor-stand {
    width: 100px;
    height: 10px;
    background: #6b7280;
    border-radius: 0 0 5px 5px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.floating-design-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.color-palette,
.typography,
.responsive-icon,
.code-brackets {
    position: absolute;
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    animation: bounce 3s ease-in-out infinite;
}

.color-palette {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.typography {
    top: 80px;
    right: -40px;
    animation-delay: 0.5s;
}

.responsive-icon {
    bottom: 100px;
    left: -20px;
    animation-delay: 1s;
}

.code-brackets {
    bottom: 20px;
    right: -25px;
    animation-delay: 1.5s;
}

.job-details-body {
    padding: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h3 {
    color: #2d3748;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.detail-section p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.detail-section ul {
    list-style: none;
    padding: 0;
}

.detail-section li {
    color: #4a5568;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f7fafc;
    position: relative;
    padding-left: 1.5rem;
}

.detail-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.culture-section {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.culture-section p {
    font-style: italic;
    color: #2d3748;
    margin: 0;
}

.job-details-actions {
    background: #f8fafc;
    padding: 2rem;
    margin: 0 -2rem -2rem -2rem;
    border-radius: 0 0 20px 20px;
}

.understanding-check {
    margin-bottom: 1.5rem;
}

.understanding-check .checkbox-label {
    font-size: 0.95rem;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.5;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.action-buttons .btn {
    min-width: 140px;
    padding: 0.75rem 1.5rem;
}

/* Two-button layout for job cards */
.job-card .apply-btn {
    width: 48%;
    margin-top: 1rem;
    margin-left: 4%;
}

.job-card .btn-secondary {
    width: 48%;
    margin-top: 1rem;
    background: #64748b;
    color: white;
    border: none;
}

.job-card .btn-secondary:hover {
    background: #475569;
    transform: translateY(-2px);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .job-details-content {
        width: 95%;
        margin: 2% auto;
        max-height: 95vh;
    }
    
    .job-details-header {
        padding: 1.5rem;
    }
    
    .job-details-header h2 {
        font-size: 1.5rem;
    }
    
    .job-details-body {
        padding: 1.5rem;
    }
    
    .detail-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
    
    .job-card .apply-btn,
    .job-card .btn-secondary {
        width: 100%;
        margin: 0.5rem 0 0 0;
    }
}

/* AI Detection Warning Styles */
.ai-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #92400e;
}

.warning-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ai-detection-notice {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-content h4 {
    color: #1e40af;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.notice-content p {
    color: #1e40af;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Enhanced Process Step for AI Verification */
.process-step:nth-child(2) {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.process-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.process-step:nth-child(2) h3 {
    color: #92400e;
}

.process-step:nth-child(2) p {
    color: #92400e;
    font-weight: 500;
}

/* Mobile responsive adjustments for warnings */
@media (max-width: 768px) {
    .ai-detection-notice {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .notice-icon {
        font-size: 1.5rem;
    }
    
    .ai-warning {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .warning-icon {
        font-size: 1rem;
    }
}

/* Modern Professional Logo Styles */
.logo-3d {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

a.logo-3d {
    text-decoration: none;
    color: inherit;
}

/* Logo Icon - Geometric Design */
.logo-icon {
    position: relative;
    width: 45px;
    height: 45px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
    transition: all 0.2s ease;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.logo-icon .icon-symbol {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

/* Logo Text Styling */
.logo-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-brand .main-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a202c;
    text-decoration: none;
    margin: 0;
    line-height: 1;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    background-clip: text;
    -webkit-background-clip: text;
    position: relative;
}

.logo-brand .sub-text {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    margin: 2px 0 0 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Hover Effects */
.logo-3d:hover .logo-icon {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.logo-3d:hover .logo-icon::before {
    transform: translateX(100%);
}

.logo-3d:hover .logo-icon .icon-symbol {
    transform: scale(1.1);
}

.logo-3d:hover .logo-brand .main-text {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo-3d:hover .logo-brand .sub-text {
    color: #3b82f6;
    letter-spacing: 4px;
}

/* Footer Logo Styles */
.footer .logo-3d {
    margin-bottom: 1.5rem;
}

.footer .logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.footer .logo-icon .icon-symbol {
    font-size: 18px;
}

.footer .logo-brand .main-text {
    font-size: 1.45rem;
    color: white;
    background: white;
    background-clip: text;
    -webkit-background-clip: text;
}

.footer .logo-brand .sub-text {
    color: #a0aec0;
    font-size: 10px;
}

.footer .logo-3d:hover .logo-brand .main-text {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.footer .logo-3d:hover .logo-brand .sub-text {
    color: #2563eb;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-icon {
        width: 38px;
        height: 38px;
        margin-right: 12px;
        border-radius: 10px;
    }
    
    .logo-icon .icon-symbol {
        font-size: 16px;
    }
    
    .logo-brand .main-text {
        font-size: 1.4rem;
    }
    
    .logo-brand .sub-text {
        font-size: 9px;
        letter-spacing: 2px;
    }
    
    .footer .logo-icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }
    
    .footer .logo-icon .icon-symbol {
        font-size: 14px;
    }
    
    .footer .logo-brand .main-text {
        font-size: 1.2rem;
    }
    
    .footer .logo-brand .sub-text {
        font-size: 8px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .why-work-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .job-header {
        flex-direction: column;
        text-align: center;
    }
    
    .job-details {
        justify-content: center;
    }
}
