/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Particles Background */
.particles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.particle-1 { width: 8px; height: 8px; top: 20%; left: 20%; animation-delay: 0s; }
.particle-2 { width: 12px; height: 12px; top: 40%; right: 32%; animation-delay: 1s; }
.particle-3 { width: 4px; height: 4px; top: 60%; left: 33%; animation-delay: 2s; }
.particle-4 { width: 8px; height: 8px; bottom: 40%; right: 20%; animation-delay: 3s; }
.particle-5 { width: 4px; height: 4px; bottom: 20%; left: 25%; animation-delay: 4s; }
.particle-6 { width: 6px; height: 6px; top: 80%; right: 40%; animation-delay: 5s; }
.particle-7 { width: 10px; height: 10px; top: 10%; right: 10%; animation-delay: 2.5s; }
.particle-8 { width: 5px; height: 5px; bottom: 60%; left: 60%; animation-delay: 1.5s; }

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

/* Floating image animation for tool previews */
@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-image {
    animation: floatImage 3s ease-in-out infinite;
}

/* Hero Background */
.hero-bg {
    position: fixed;
    inset: 0;
    opacity: 0.15;
    z-index: -2;
}

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

.hero-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(15, 23, 42, 0.95) 100%);
    z-index: -1;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Support Us Button Styling */
.support-us-btn {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    color: white !important;
    border: 2px solid transparent !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.support-us-btn:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4) !important;
}

/* Portal Button Styling */
.portal-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
    color: white !important;
    border: 2px solid transparent !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    border-radius: 12px !important;
}

.portal-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4) !important;
}

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

.logo h1 {
    color: #6366f1;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: none;
    letter-spacing: -0.025em;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-1px);
}

.nav-link i {
    font-size: 1rem;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 280px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    padding: 0.5rem 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 0.5rem;
}

.dropdown-link:hover {
    background: rgba(99, 102, 241, 0.2);
    color: #ffffff;
    transform: translateX(4px);
}

.dropdown-link i {
    width: 16px;
    text-align: center;
    font-size: 0.875rem;
}

/* Desktop Click Behavior - No hover needed since JavaScript handles it */
@media (min-width: 769px) {
    .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
    }
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 80px;
    height: calc(100vh - 64px);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(99, 102, 241, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    overflow: visible;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 0 12px 12px 0;
}

.sidebar-menu:hover {
    width: 380px;
}

.sidebar-menu.collapsed {
    left: -60px;
}





.sidebar-close {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(239, 68, 68, 0.3);
    transform: scale(1.1);
}



.sidebar-nav {
    padding: 0.5rem 0;
    height: 100%;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 2px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.6);
    border-radius: 2px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.8);
}

.sidebar-nav-item {
    margin-bottom: 0.25rem;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    white-space: nowrap;
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
    color: #ffffff;
    background: rgba(99, 102, 241, 0.2);
    border-left-color: #6366f1;
}

.sidebar-nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    min-width: 20px;
}

.sidebar-nav-link span {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.sidebar-menu:hover .sidebar-nav-link span {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-dropdown {
    position: relative;
}

.sidebar-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.sidebar-dropdown-toggle:hover {
    color: #ffffff;
    background: rgba(99, 102, 241, 0.2);
    border-left-color: #6366f1;
}

.sidebar-dropdown-toggle > div:first-child {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar-dropdown-toggle i:first-child {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    min-width: 20px;
}

.sidebar-dropdown-toggle span {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.sidebar-menu:hover .sidebar-dropdown-toggle span {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-dropdown-arrow {
    font-size: 0.75rem;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-menu:hover .sidebar-dropdown-arrow {
    opacity: 1;
}

.sidebar-dropdown.open .sidebar-dropdown-arrow {
    transform: rotate(180deg);
}

.sidebar-dropdown-content {
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: max-height 0.3s ease;
    background: rgba(30, 41, 59, 0.7);
    opacity: 0;
}

.sidebar-dropdown-content::-webkit-scrollbar {
    width: 4px;
}

.sidebar-dropdown-content::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 2px;
}

.sidebar-dropdown-content::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.6);
    border-radius: 2px;
}

.sidebar-dropdown-content::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.8);
}

.sidebar-dropdown.open .sidebar-dropdown-content {
    max-height: 300px;
    opacity: 1;
}

.sidebar-menu:hover .sidebar-dropdown-content {
    opacity: 1;
}

.sidebar-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.sidebar-dropdown-link:hover {
    color: #ffffff;
    background: rgba(99, 102, 241, 0.3);
    border-left-color: #8b5cf6;
}

.sidebar-dropdown-link i {
    width: 14px;
    text-align: center;
    font-size: 0.75rem;
    min-width: 14px;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-toggle {
    display: none;
}

/* Custom scrollbar for sidebar */
.sidebar-menu::-webkit-scrollbar {
    width: 6px;
}

.sidebar-menu::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.6);
    border-radius: 3px;
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.8);
}

/* Firefox scrollbar */
.sidebar-menu {
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.6) rgba(15, 23, 42, 0.5);
}



/* Hamburger Menu - Only for Mobile/Tablet */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: #818cf8;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Menu */
.nav-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem 0;
    z-index: 1000;
    overflow-y: auto;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.nav-menu.active {
    display: flex;
}

.nav-menu > a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.nav-menu > a:hover {
    background: rgba(99, 102, 241, 0.2);
    color: #ffffff;
    padding-left: 2.5rem;
}

.nav-menu > a i {
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-dropdown-toggle:hover {
    background: rgba(99, 102, 241, 0.2);
    color: #ffffff;
}

.mobile-dropdown-toggle a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    flex: 1;
}

.mobile-dropdown-toggle a i {
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

.mobile-dropdown-arrow {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    color: #818cf8;
}

.mobile-dropdown.open .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(30, 41, 59, 0.8);
    transition: max-height 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-content {
    max-height: 400px;
}

/* Custom scrollbar for mobile dropdown */
.mobile-dropdown-content::-webkit-scrollbar {
    width: 4px;
}

.mobile-dropdown-content::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 2px;
}

.mobile-dropdown-content::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.6);
    border-radius: 2px;
}

.mobile-dropdown-content::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.8);
}

.mobile-dropdown-content a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 3rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(99, 102, 241, 0.05);
}

.mobile-dropdown-content a:hover {
    background: rgba(99, 102, 241, 0.3);
    color: #ffffff;
    padding-left: 3.5rem;
}

.mobile-dropdown-content a i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    /* Hide desktop sidebar for tablets and mobile */
    .sidebar-menu {
        display: none;
    }

    .content-container {
        margin-left: 0;
        padding-top: 64px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Show hamburger menu for tablets and mobile */
    .hamburger {
        display: flex;
    }

    /* Hide desktop nav links for tablets and mobile */
    .header-right .nav-link {
        display: none;
    }

    .sidebar-toggle {
        display: none;
    }

    .header-right {
        gap: 0.5rem;
    }

    /* Full-screen mobile layout */
    .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .hero-section {
        min-height: 80vh;
        max-height: none;
        padding: 2rem 1rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    /* Mobile menu scrolling */
    .nav-menu {
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        overflow-x: hidden;
        width: 100%;
    }

    .nav-menu::-webkit-scrollbar {
        width: 4px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: rgba(30, 41, 59, 0.5);
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: rgba(99, 102, 241, 0.6);
        border-radius: 2px;
    }

    /* Improve mobile content spacing */
    .services-overview, .why-choose-us, .cta-section {
        padding: 3rem 0;
        width: 100%;
        max-width: 100%;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .image-content {
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    .text-content {
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    .feature-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .service-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    /* Mobile-friendly buttons */
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Improve text readability on mobile */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        word-wrap: break-word;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .section-description {
        font-size: 1.1rem;
        line-height: 1.6;
        word-wrap: break-word;
    }

    /* Fix header for mobile */
    .header {
        width: 100%;
        max-width: 100%;
    }

    .nav-container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    /* Fix features list on mobile */
    .features-list {
        width: 100%;
        max-width: 100%;
    }

    .feature-item {
        font-size: 1rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
}

@media (min-width: 1025px) {
    /* Desktop: Hide hamburger and mobile menu */
    .hamburger {
        display: none !important;
    }

    .nav-menu {
        display: none !important;
    }

    /* Show desktop sidebar */
    .sidebar-menu {
        display: block;
    }

    .content-container {
        margin-left: 80px;
    }

    /* Show desktop nav links */
    .header-right .nav-link {
        display: flex;
    }

    .sidebar-toggle {
        display: none;
    }
}

/* Content Container */
.content-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding-top: 80px;
    margin-left: 80px;
    transition: margin-left 0.3s ease;
}

.content-container.sidebar-collapsed {
    margin-left: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #818cf8 0%, #a855f7 50%, #6366f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    overflow-y: auto;
}

.hero-content {
    max-width: 700px;
}

/* Hero section scrollbar styling */
.hero-section::-webkit-scrollbar {
    width: 6px;
}

.hero-section::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

.hero-section::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.6);
    border-radius: 3px;
}

.hero-section::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.8);
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #818cf8;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(129, 140, 248, 0.3);
}

.btn-secondary:hover {
    background: rgba(129, 140, 248, 0.1);
    border-color: #818cf8;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #cbd5e1;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(203, 213, 225, 0.3);
}

.btn-outline:hover {
    background: rgba(203, 213, 225, 0.1);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Sections */
.services-overview, .why-choose-us, .cta-section {
    padding: 5rem 0;
    position: relative;
}

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

.section-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(129, 140, 248, 0.5);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

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

.service-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Why Choose Us Section */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.feature-item i {
    color: #10b981;
    font-size: 1.25rem;
}

.feature-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Contact Page Specific Styles */
.contact-info-section {
    padding: 3rem 0;
}

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

.contact-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
}

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

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

.contact-card p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.contact-link {
    color: #818cf8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #a5b4fc;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 4rem 0;
    background: rgba(30, 41, 59, 0.2);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 3rem;
}

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

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

.form-group label {
    display: block;
    color: #f1f5f9;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: #f1f5f9;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}

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

.checkbox-label a {
    color: #818cf8;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    min-width: 200px;
}

.form-note {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Contact FAQ */
.contact-faq {
    padding: 4rem 0;
}

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

.faq-item {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-item h4 {
    color: #f1f5f9;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Portfolio Styles */
.portfolio-stats {
    padding: 4rem 0;
    background: rgba(30, 41, 59, 0.2);
}

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

.stat-item {
    padding: 1.5rem;
}

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

.stat-label {
    font-size: 1.125rem;
    color: #cbd5e1;
}

.portfolio-filter {
    padding: 2rem 0;
    text-align: center;
}

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

.filter-btn {
    background: rgba(30, 41, 59, 0.5);
    color: #cbd5e1;
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.portfolio-grid-section {
    padding: 3rem 0 5rem;
}

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

.portfolio-item {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: rgba(129, 140, 248, 0.5);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.btn-view,
.btn-demo {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(129, 140, 248, 0.3);
}

.btn-view:hover,
.btn-demo:hover {
    background: rgba(129, 140, 248, 0.3);
    transform: translateY(-2px);
}

.portfolio-content {
    padding: 2rem;
}

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

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

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

.tech-tag {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Service Info Button */
.service-info-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 100%;
}

.service-info-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.service-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.modal-header h2 {
    color: #f1f5f9;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h3 {
    color: #f1f5f9;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-section h3 i {
    color: #10b981;
}

.modal-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.deliverables-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.deliverable-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.deliverable-item:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.deliverable-item h4 {
    color: #818cf8;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deliverable-item h4 i {
    color: #10b981;
    font-size: 0.9rem;
}

.deliverable-item p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.example-websites {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.example-site {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.example-site:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.example-site h4 {
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.example-site p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
}

.pricing-breakdown {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.pricing-breakdown h4 {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.pricing-tier:last-child {
    border-bottom: none;
}

.pricing-tier span:first-child {
    color: #cbd5e1;
}

.pricing-tier span:last-child {
    color: #10b981;
    font-weight: 600;
}

/* Blog Styles */
.featured-post {
    padding: 4rem 0;
    background: rgba(30, 41, 59, 0.2);
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    overflow: hidden;
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.category {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

.date, .read-time {
    color: #94a3b8;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
    line-height: 1.3;
}

.featured-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.read-more-btn {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #a5b4fc;
    transform: translateX(5px);
}

.blog-categories {
    padding: 4rem 0;
}

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

.category-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
}

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

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

.category-card p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.post-count {
    color: #94a3b8;
    font-size: 0.875rem;
}

.blog-posts {
    padding: 4rem 0;
}

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

.blog-post {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(99, 102, 241, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.post-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
    line-height: 1.4;
}

.post-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-link {
    color: #818cf8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.post-link:hover {
    color: #a5b4fc;
}

.newsletter-section {
    padding: 4rem 0;
    background: rgba(30, 41, 59, 0.3);
}

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

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.newsletter-text p {
    color: #cbd5e1;
    line-height: 1.6;
}

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

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: #f1f5f9;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #818cf8;
}

.tags-section {
    padding: 3rem 0;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.tag {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

/* FAQ Styles */
.faq-search {
    padding: 2rem 0;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.125rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #f1f5f9;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}

.faq-categories {
    padding: 2rem 0;
    background: rgba(30, 41, 59, 0.2);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(30, 41, 59, 0.5);
    color: #cbd5e1;
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover,
.tab-btn.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-color: transparent;
}

.faq-content {
    padding: 4rem 0;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #f1f5f9;
}

.faq-item {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.4);
}

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

.faq-question:hover {
    background: rgba(99, 102, 241, 0.1);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0;
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.contact-support {
    padding: 4rem 0;
    background: rgba(30, 41, 59, 0.2);
}

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

.support-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.support-content p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Individual Article Styles */
.article-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: #818cf8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #a5b4fc;
}

.breadcrumb-separator {
    color: #94a3b8;
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: #cbd5e1;
}

.article-content {
    padding: 4rem 0;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-body {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 3rem;
}

.featured-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.article-intro {
    font-size: 1.25rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 2.5rem 0 1.5rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
    padding-bottom: 0.5rem;
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 2rem 0 1rem;
}

.article-body p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.article-body ul, .article-body ol {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.code-block {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
}

.code-block code {
    color: #e2e8f0;
    background: none;
    padding: 0;
}

.article-body code {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.author-bio, .related-articles, .share-article {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.author-bio h3, .related-articles h3, .share-article h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.author-bio p {
    color: #cbd5e1;
    line-height: 1.6;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 0.75rem;
}

.related-articles a {
    color: #818cf8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-articles a:hover {
    color: #a5b4fc;
}

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

.share-btn {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(129, 140, 248, 0.3);
    transform: translateY(-2px);
}

/* Testimonials Styles */
.testimonials-section {
    padding: 4rem 0;
}

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

.testimonial-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

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

.testimonial-text {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.client-details h4 {
    color: #f1f5f9;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-details span {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Blog Post Styles */
.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-category {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-post-content {
    line-height: 1.8;
    color: #e2e8f0;
    font-size: 1.1rem;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 1.5rem 0 1rem 0;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.blog-post-content blockquote {
    border-left: 4px solid #6366f1;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #94a3b8;
    background: rgba(99, 102, 241, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.blog-post-content code {
    background: rgba(99, 102, 241, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #c084fc;
    font-size: 0.9rem;
}

.blog-post-content pre {
    background: rgba(15, 23, 42, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.blog-post-content pre code {
    background: none;
    padding: 0;
    color: #e2e8f0;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.blog-nav-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.blog-tag {
    background: rgba(99, 102, 241, 0.2);
    color: #c084fc;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: rgba(99, 102, 241, 0.3);
    color: white;
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    z-index: 1000;
    transition: width 0.3s ease;
}

/* Privacy Policy Styles */
.privacy-policy-section {
    padding: 4rem 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.policy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.last-updated {
    background: rgba(99, 102, 241, 0.2);
    color: #c084fc;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #cbd5e1;
    margin: 2rem 0 1rem 0;
}

.policy-section p {
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.policy-section ul {
    color: #cbd5e1;
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.policy-section li strong {
    color: #f1f5f9;
}

.contact-info {
    background: rgba(99, 102, 241, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #818cf8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #c084fc;
}

/* Main Menu Above Footer */
.main-menu-section {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem 0;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.main-menu {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.main-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.main-menu-item:hover {
    color: #f1f5f9;
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.main-menu-item i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.95);
    padding: 3rem 0 1rem;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #818cf8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(129, 140, 248, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: #818cf8;
}

/* Responsive Design */
/* Tablet specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
        max-width: 100%;
        width: 100%;
    }

    .hero-section {
        min-height: 70vh;
        max-height: none;
        padding: 3rem 2rem;
        width: 100%;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons, .cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .btn-primary, .btn-secondary, .btn-outline {
        width: auto;
        min-width: 200px;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .section-title {
        font-size: 2.2rem;
        word-wrap: break-word;
    }

    .section-description {
        font-size: 1.1rem;
        line-height: 1.6;
        word-wrap: break-word;
    }

    /* Ensure full width on tablet */
    .content-container {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding-top: 64px;
    }

    .services-overview, .why-choose-us, .cta-section {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Ensure full viewport usage */
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .services-overview, .why-choose-us, .cta-section {
        padding: 3rem 0;
        width: 100%;
        max-width: 100%;
    }

    .main-menu {
        gap: 1rem;
        padding: 1rem 0;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-menu-item {
        padding: 0.75rem;
        font-size: 0.9rem;
        min-width: auto;
        flex: 1;
        max-width: 150px;
    }

    .main-menu-item i {
        font-size: 1.125rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .contact-form {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .filter-buttons {
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .portfolio-actions {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .featured-article {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .category-tabs {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
    }

    .support-options {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .support-options .btn-primary,
    .support-options .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .modal-content {
        width: 95%;
        margin: 0.5rem;
        max-height: 95vh;
    }

    .modal-header {
        padding: 1rem 1rem 0.5rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-header h2 {
        font-size: 1.3rem;
        word-wrap: break-word;
    }

    .deliverables-list {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .example-websites {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .article-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .article-body {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
    }

    .article-body h2 {
        font-size: 1.4rem;
        word-wrap: break-word;
    }

    .article-intro {
        font-size: 1rem;
        word-wrap: break-word;
    }

    .code-block {
        padding: 1rem;
        margin: 1rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

    .blog-post-container {
        margin: 0.5rem;
        padding: 1rem;
        width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
    }

    .blog-post-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .blog-navigation {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .blog-post-content {
        font-size: 1rem;
        word-wrap: break-word;
    }

    .policy-content {
        margin: 0.5rem;
        padding: 1.5rem 1rem;
        width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
    }

    .policy-section h2 {
        font-size: 1.4rem;
        word-wrap: break-word;
    }

    .policy-section h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
    }

    /* Full-screen mobile optimizations */
    .nav-container {
        padding: 0 1rem;
        height: 64px;
        width: 100%;
        max-width: 100%;
    }

    .content-container {
        padding-top: 64px;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .nav-menu {
        top: 64px;
        height: calc(100vh - 64px);
        width: 100%;
        max-width: 100%;
    }

    .hero-section {
        min-height: 70vh;
        max-height: none;
        padding: 2rem 1rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .service-card, .contact-card, .testimonial-card {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    /* Mobile image responsiveness */
    .feature-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Mobile text improvements */
    .features-list {
        text-align: left;
        max-width: 100%;
        width: 100%;
    }

    .feature-item {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
    }

    /* Ensure container takes full width */
    .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
}

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

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

    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
  .container { padding: 1rem; }
  .nav { flex-direction: column; }
  .btn { width: 100%; margin-bottom: 0.5rem; }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .container { padding: 2rem; }
}

/* Desktop styles */
@media (min-width: 1025px) {
  .container { max-width: 1200px; margin: 0 auto; }
}