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

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

/* Remove all horizontal padding from entire website */
section,
.container,
div[class*="container"],
div[class*="max-w"],
[class*="px-4"],
[class*="px-6"],
[class*="px-8"],
[class*="px-10"],
[class*="px-12"],
.section-nav-bar,
.navbar,
.nav-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Override TailwindCSS padding utilities */
.px-4, .px-6, .px-8, .px-10, .px-12,
.sm\:px-4, .sm\:px-6, .sm\:px-8,
.md\:px-4, .md\:px-6, .md\:px-8,
.lg\:px-4, .lg\:px-6, .lg\:px-8,
[class*="px-4"],
[class*="px-6"],
[class*="px-8"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Exception for button padding - maintain internal padding for buttons and links */
a.group.px-8,
a[class*="px-8"][class*="group"],
button[class*="px-8"],
a[href][class*="px-8"] {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .nav-container {
    padding-left: 0;
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.nav-container .nav-logo {
    margin-left: 15px;
    padding-left: 0;
}

@media (min-width: 769px) {
    .nav-container {
        padding: 0;
    }
    
    .nav-container .nav-logo {
        margin-left: 20px;
    }
}

.nav-logo h2 {
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Brand with image logo */
.nav-logo {
    flex-shrink: 0;
    margin-right: 0;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { height: 34px; width: auto; display: block; mix-blend-mode: multiply; }
.brand-name {
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-weight: 800; font-size: 1.25rem;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.nav-link i {
    font-size: 0.9rem;
    color: #6366f1;
}

.nav-link:hover {
    color: #6366f1;
}

/* Language Switcher Button */
.nav-item-lang {
    display: flex;
    align-items: center;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid #6366f1;
    border-radius: 8px;
    color: #6366f1;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-switcher-btn:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.lang-switcher-btn .lang-code {
    font-weight: 700;
    font-size: 0.85rem;
}

.lang-switcher-btn i {
    font-size: 0.9rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
    transition: width 0.3s ease;
}

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

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

.nav-item-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item-dropdown .nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-link i {
    font-size: 1rem;
    color: #6366f1;
    width: 20px;
    text-align: center;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(99, 102, 241, 0.1) 50%, rgba(168, 85, 247, 0.1) 100%);
    color: #6366f1;
    padding-left: 1.75rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

/* Header CTA button */
.nav-item-cta { 
    display: none;
    margin-left: auto;
}

@media (min-width: 768px) {
    .nav-item-cta { display: block; }
}

@media (min-width: 1024px) {
    .nav-menu {
        gap: 0.75rem;
    }
}

@media (min-width: 1200px) {
    .nav-menu {
        gap: 1rem;
    }
}
.nav-cta {
    padding: 6px 12px;
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.45);
}
.nav-cta .arrow { margin-left: 3px; font-size: 0.75rem; }
.schedule-call-btn i {
    font-size: 0.7rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(1200px 600px at 20% 10%, rgba(34,211,238,0.15), rgba(0,0,0,0) 60%),
                radial-gradient(1000px 600px at 80% 30%, rgba(168,85,247,0.15), rgba(0,0,0,0) 60%),
                linear-gradient(135deg, #0ea5e9 0%, #6366f1 50%, #a855f7 100%);
    padding-top: 80px;
}

.hero-badge {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

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

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

.gradient-text {
    color: #ffffff;
}

.hero-description {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

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

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hero Graphics */
.hero-graphic {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-image {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: #6366f1;
}

.floating-card span {
    font-weight: 600;
    color: #2d3748;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

/* Hero stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    color: #e5e7eb;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.stat-number { font-size: 2rem; font-weight: 800; color: #fff; }
.stat-label { opacity: 0.9; font-size: 0.95rem; text-align: center; }

/* Scroll indicator */
.scroll-indicator { margin-top: 2rem; display: flex; justify-content: center; }
.mouse {
    width: 24px; height: 40px; border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.7);
    position: relative; opacity: 0.9;
}
.mouse::after { content: ''; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: wheel 2s infinite; }
@keyframes wheel { 0%{opacity:1; transform: translate(-50%,0);} 100%{opacity:0; transform: translate(-50%,10px);} }

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

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

/* About Section */
.about {
    background: white;
}

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

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

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.about-card p {
    color: #718096;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Results Section */
.results { background: #ffffff; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.result-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 30px rgba(2,6,23,0.06); }
.result-media { position: relative; height: 180px; background: linear-gradient(135deg, #c7d2fe, #a7f3d0); display: flex; align-items: center; justify-content: center; }
.result-media .rating { position: absolute; top: 12px; right: 12px; background: #7c3aed; color: #fff; padding: 6px 10px; border-radius: 9999px; font-weight: 700; box-shadow: 0 8px 16px rgba(124,58,237,0.3); }
.result-media .play { width: 56px; height: 56px; border-radius: 9999px; border: none; background: #22d3ee; color: #fff; font-size: 1.1rem; box-shadow: 0 10px 24px rgba(34,211,238,0.45); cursor: pointer; }
.result-body { padding: 1rem; }
.result-body h3 { color: #0f172a; margin-bottom: 0.25rem; }
.result-body p { color: #475569; margin-bottom: 0.75rem; }
.pill { background: #d1fae5; color: #047857; font-weight: 700; border-radius: 9999px; padding: 8px 12px; display: inline-block; }

/* Solutions Section */
.solutions { background: #f8fafc; }
.solutions .section-title { color: #0f172a; }
.solutions .section-description { color: #64748b; }
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.solution-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.06);
    padding: 1.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.12);
}
.solution-icon {
    width: 44px; height: 44px; border-radius: 12px; margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center; color: #fff;
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
}
.solution-icon i { font-size: 1.25rem; }
.solution-card h3 { color: #0f172a; font-size: 1.125rem; margin-bottom: 0.5rem; }
.solution-card p { color: #475569; margin-bottom: 0.75rem; }
.solution-list { list-style: none; margin: 0 0 1rem; padding: 0; }
.solution-list li { position: relative; padding-left: 1.25rem; color: #0f172a; margin: 0.35rem 0; }
.solution-list li::before { content: '\2713'; position: absolute; left: 0; color: #22c55e; font-weight: 700; }
.solution-link { color: #06b6d4; text-decoration: none; font-weight: 600; }
.solution-link i { margin-left: 6px; }

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

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

.service-card p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Portfolio Section */
.portfolio {
    background: white;
}

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

.portfolio-item {
    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:hover {
    transform: translateY(-10px);
}

/* Portfolio Filter Buttons */
.portfolio-filter-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.portfolio-filter-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.portfolio-filter-btn.active {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

/* Portfolio Item Filtering */
.portfolio-item.hidden {
    display: none !important;
}

.portfolio-item.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Portfolio Filters */
@media (max-width: 768px) {
    .portfolio-filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

.portfolio-image {
    height: 250px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder {
    text-align: center;
    color: #a0aec0;
}

.portfolio-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: #718096;
    margin-bottom: 1rem;
}

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

.tag {
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Real Results Section */
.real-results {
    background: #ffffff;
    padding: 5rem 0;
    color: #1e293b;
}

.real-results .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.real-results .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.real-results .section-header p {
    font-size: 1.125rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.result-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #1e40af 50%, #7c3aed 75%, #a855f7 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(34, 211, 238, 0.2);
    border: 1px solid rgba(34, 211, 238, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/5;
    min-height: 300px;
}

.result-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.3);
    border-color: rgba(168, 85, 247, 0.3);
}

.result-video {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.result-card:hover .video-placeholder {
    transform: scale(1.1);
}

.rating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    backdrop-filter: blur(10px);
}

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

.result-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.client-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.client-role {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.result-badge {
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Admin Controls */
.admin-controls {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(2,6,23,0.08);
    margin-top: 3rem;
}

.admin-controls h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

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

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

.admin-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.admin-form input {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.25s ease;
}

.admin-form input:focus {
    outline: none;
    border-color: #6366f1;
}

.admin-form button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.admin-form .btn-primary {
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
    color: white;
}

.admin-form .btn-secondary {
    background: #f1f5f9;
    color: #0f172a;
    border: 2px solid #e2e8f0;
}

.admin-form button:hover {
    transform: translateY(-2px);
}

/* Video Player Styles */
.video-player {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 20px;
}

/* Contact Section */
.contact {
    background: #f8fafc;
    color: #0f172a;
    padding: 5rem 0;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

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

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(2,6,23,0.06);
    margin-bottom: 1rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.method-icon i {
    font-size: 1.25rem;
}

.method-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.method-content p {
    color: #64748b;
    margin: 0;
}

.why-choose {
    margin-bottom: 2rem;
}

.why-choose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.benefits-list i {
    color: #22c55e;
    font-size: 1rem;
}

.cta-button {
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(2,6,23,0.08);
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.form-subtitle {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.security-banner {
    background: #dbeafe;
    color: #1e40af;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.proposal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.25s ease;
}

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

.char-count {
    font-size: 0.75rem;
    color: #64748b;
    text-align: right;
    margin-top: 0.25rem;
}

.submit-button {
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
}

.response-time {
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Results Grid - Mobile styles consolidated in main media queries above */

/* Tablet Styles (between mobile and desktop) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

    .case-featured {
        grid-template-columns: 1fr;
    }

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

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
}

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

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

/* Case Studies */
.case-studies { background: #ffffff; }
.case-filters { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.chip { 
    border: 1px solid rgba(34, 211, 238, 0.3); 
    background: #fff; 
    color: #0f172a; 
    padding: 8px 14px; 
    border-radius: 9999px; 
    cursor: pointer; 
    font-weight: 600; 
    transition: all 0.3s ease;
}
.chip i { margin-right: 6px; color: #64748b; }
.chip:hover { 
    border-color: #22d3ee; 
    background: rgba(34, 211, 238, 0.05);
    transform: translateY(-1px);
}
.chip-active { 
    background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%); 
    border-color: transparent; 
    color: white; 
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
}
.chip-active i { color: white; }

.case-featured { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: stretch; }
.case-left { background: #f8fafc; border-radius: 18px; padding: 1.5rem; box-shadow: 0 8px 24px rgba(2,6,23,0.06); }
.badge-row { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.5rem; }
.badge { background: #ecfeff; color: #0e7490; border: 1px solid #a5f3fc; padding: 4px 10px; border-radius: 9999px; font-weight: 700; font-size: 0.8rem; }
.dim-text { color: #64748b; font-size: 0.9rem; }
.case-title { color: #0f172a; font-size: 1.5rem; margin-bottom: 1rem; }
.case-block h4 { color: #0f172a; font-size: 1rem; margin: 0.75rem 0 0.25rem; }
.case-block p { color: #475569; }
.case-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1rem 0; }
.kpi { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 1rem; text-align: center; }
.kpi-num { font-size: 1.25rem; font-weight: 800; color: #0f172a; display: block; }
.kpi-label { color: #64748b; font-size: 0.85rem; }
.case-quote { border-left: 4px solid #06b6d4; background: #f0fdff; color: #0f172a; padding: 1rem; border-radius: 8px; font-style: italic; }
.case-quote cite { display: block; margin-top: 0.5rem; font-style: normal; color: #64748b; }
.case-cta-row { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; }
.case-cta { text-decoration: none; font-weight: 700; color: #06b6d4; }
.investment { color: #0f172a; }

.case-right { display: flex; }
.case-visual { flex: 1; border-radius: 18px; box-shadow: 0 8px 24px rgba(2,6,23,0.08); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; padding: 1rem; background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #2563eb 100%); }
.case-visual i { font-size: 2rem; opacity: 0.9; }
.case-visual-metric { font-size: 2.25rem; font-weight: 800; text-align: center; }
.case-visual-metric span { display: block; font-size: 0.9rem; font-weight: 600; opacity: 0.9; }
.case-visual-sub { opacity: 0.9; font-weight: 600; margin-top: 0.5rem; }

@media (max-width: 992px) {
    .case-featured { grid-template-columns: 1fr; }
}

/* Process – Vertical timeline to match provided design */
.process--timeline { background: #ffffff; }
.process--timeline .section-title { color: #0f172a; }
.process--timeline .section-description { color: #64748b; }

/* Remove center line and dots when requested */
.process--timeline .timeline-line { display: none; }
.process--timeline .dot { display: none; }
.process--timeline .timeline-row { grid-template-columns: 1fr 1fr; }

.timeline { position: relative; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, #22d3ee 0%, #6366f1 50%, #1d4ed8 100%); transform: translateX(-50%); border-radius: 3px; }
.timeline-row { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: stretch; gap: 1rem; margin: 2.25rem 0; }
.timeline-card { background: #f8feff; border: 1px solid #e2f3ff; border-radius: 16px; padding: 1.25rem; box-shadow: 0 10px 30px rgba(2, 132, 199, 0.08); height: 100%; display: flex; flex-direction: column; }
.timeline-card h3 { color: #0f172a; margin: 0.25rem 0 0.5rem; }
.timeline-card p { color: #475569; }
.timeline-card ul { margin-left: 1rem; color: #0f172a; margin-bottom: 0; padding-left: 1.25rem; }
.timeline-card li { margin: 0.25rem 0; }
.timeline-card .card-headline { display: flex; align-items: center; gap: 10px; color: #0f172a; font-weight: 800; }
.timeline-card .badge-icon { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 18px rgba(99,102,241,0.25); }
.timeline-card .num { background: #eef2ff; color: #4f46e5; border-radius: 9999px; padding: 4px 8px; font-size: 0.85rem; }
.timeline-card .week { background: #e0f2fe; color: #0369a1; border-radius: 9999px; padding: 4px 8px; font-size: 0.8rem; font-weight: 700; }

.dot { width: 40px; height: 40px; border-radius: 9999px; background: radial-gradient(circle at 30% 30%, #22d3ee, #6366f1); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; box-shadow: 0 8px 24px rgba(99,102,241,0.35); margin: 0 auto; }

.process-bottom { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.bottom-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 1rem; text-align: center; box-shadow: 0 8px 24px rgba(2,6,23,0.06); }
.bottom-card h4 { color: #0f172a; margin-bottom: 0.25rem; }
.bottom-card p { color: #475569; }
.mini-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; color: #fff; background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%); box-shadow: 0 10px 18px rgba(99,102,241,0.25); }

/* Timeline mobile styles already covered in main 768px media query */

.performance { background: #f8fafc; }
.perf-banner { text-align: center; margin-bottom: 2rem; }
.banner-image { max-width: 100%; height: auto; border-radius: 12px; box-shadow: 0 8px 24px rgba(2,6,23,0.1); }
.perf-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.perf-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 30px rgba(2,6,23,0.06); }
.perf-image { width: 100%; height: auto; display: block; }
.perf-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; text-align: center; }
.pstat .num { display: block; font-size: 1.75rem; font-weight: 800; color: #0f172a; }
.pstat .label { color: #64748b; }

/* Resources Section */
.resources { background: #ffffff; }
.resources-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.resource-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 1.5rem; box-shadow: 0 8px 24px rgba(2,6,23,0.06); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.resource-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(2,6,23,0.12); }
.resource-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: #fff; background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%); box-shadow: 0 8px 20px rgba(99,102,241,0.25); }
.resource-icon i { font-size: 1.25rem; }
.resource-card h3 { color: #0f172a; font-size: 1.125rem; margin-bottom: 0.5rem; }
.resource-card p { color: #475569; margin-bottom: 1rem; }
.resource-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: 0.875rem; }
.downloads { color: #64748b; }
.rating { color: #f59e0b; font-weight: 600; }
.resource-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 10px 16px; background: linear-gradient(135deg, #22d3ee 0%, #6366f1 50%, #a855f7 100%); color: #fff; text-decoration: none; border-radius: 8px; font-weight: 600; transition: transform 0.25s ease; }
.resource-btn:hover { transform: translateY(-2px); }

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

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

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

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

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

.footer-section ul li a:hover {
    color: #667eea;
}

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

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

.social-links a:hover {
    background: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation Mobile Enhancements */
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0;
        gap: 1rem;
        position: relative;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }

    /* Menu icon on left, logo in middle */
    .nav-logo {
        order: 1;
        margin-left: 15px;
        margin-right: auto;
        padding-left: 0;
    }

    /* Ensure nav toggle is always visible on mobile */
    .nav-container .nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-logo .brand-logo {
        height: 28px;
    }

    .nav-logo .brand-name {
        font-size: 1.1rem;
    }

    /* Mobile menu - slide in from left */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1.5rem 0;
        align-items: stretch;
        z-index: 999;
        display: flex !important;
    }

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

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }

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

    .nav-link {
        padding: 0.75rem 1.5rem;
        width: 100%;
        justify-content: flex-start;
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .nav-item-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        margin-left: 1rem;
        border-left: 2px solid #e2e8f0;
    }

    .dropdown-link {
        padding: 0.75rem 1.5rem 0.75rem 2rem;
    }

    .nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        order: 0;
        margin-left: 0;
        margin-right: auto;
        padding: 10px 8px;
        position: relative;
        z-index: 1001;
        background: transparent;
        border: none;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle .bar {
        width: 28px;
        height: 3px;
        background: #1f2937;
        margin: 5px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
        display: block;
        flex-shrink: 0;
    }

    .nav-toggle:hover .bar,
    .nav-toggle:focus .bar {
        background: #6366f1;
    }

    /* Ensure container doesn't wrap elements */
    .nav-container {
        flex-wrap: nowrap;
    }

    .nav-item-cta {
        display: none !important;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section Mobile */
    .hero {
        padding-top: 60px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-badge {
        top: 70px;
        font-size: 0.8rem;
        padding: 4px 10px;
    }

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

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

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

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

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

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

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-graphic {
        height: auto;
        flex-direction: column;
    }

    .hero-banner-image {
        max-height: 250px;
    }

    .floating-card {
        position: relative;
        margin: 1rem;
    }

    /* Services Section Mobile */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-card {
        padding: 1.25rem;
    }

    /* About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    /* Stats/Performance Section Mobile */
    .perf-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .pstat .num {
        font-size: 1.5rem;
    }

    .pstat .label {
        font-size: 0.85rem;
    }

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

    /* Contact Section Mobile */
    .contact {
        padding: 3rem 0;
    }

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

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.75rem;
    }

    .contact-method {
        padding: 1rem;
    }

    .why-choose h3 {
        font-size: 1.25rem;
    }

    .benefits-list {
        font-size: 0.95rem;
    }

    .security-banner {
        font-size: 0.8rem;
        padding: 0.875rem;
    }

    .submit-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

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

    .footer-section {
        text-align: center;
    }

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

    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    /* CTA Section Mobile */
    .contact#cta {
        padding: 3rem 1rem;
    }

    .contact#cta .section-title {
        font-size: 1.75rem;
    }

    .contact#cta .section-description {
        font-size: 0.95rem;
    }

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

    /* Resources Grid Mobile */
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Case Studies Mobile */
    .case-featured {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .chip {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    /* Process Timeline Mobile */
    .timeline-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-card {
        padding: 1rem;
    }

    /* Results/Client Success Stories Mobile */
    .real-results {
        padding: 3rem 0;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0;
    }

    .result-card {
        aspect-ratio: 4/5;
        min-height: 250px;
        border-radius: 16px;
    }

    .result-info {
        padding: 1rem 0.75rem 0.75rem;
    }

    .client-name {
        font-size: 1rem;
    }

    .client-role {
        font-size: 0.8rem;
    }

    .result-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    /* General Spacing */
    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Images Responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Fix overflow issues */
    body {
        overflow-x: hidden;
    }

    /* Hide nav-link icons text on very small screens if needed */
    .nav-link i {
        font-size: 0.85rem;
    }

    /* About CTA Mobile */
    .about-cta {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    /* Navigation Small Mobile */
    .nav-container {
        padding: 0 10px;
        justify-content: flex-start;
    }

    .nav-toggle {
        order: 0;
        margin-left: 0;
        margin-right: auto;
    }

    .nav-logo {
        order: 1;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-logo .brand-logo {
        height: 24px;
    }

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

    .brand {
        gap: 6px;
    }

    /* Hero Small Mobile */
    .hero {
        padding-top: 50px;
        padding-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 3px 8px;
        top: 60px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }

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

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

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

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

    .hero-banner-image {
        max-height: 200px;
    }

    /* Buttons Small Mobile */
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }

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

    /* Services Small Mobile */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .solution-card {
        padding: 1rem;
    }

    .solution-icon {
        width: 40px;
        height: 40px;
    }

    .solution-card h3 {
        font-size: 1rem;
    }

    /* About Small Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-card {
        padding: 1.25rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

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

    /* Stats Small Mobile */
    .perf-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pstat .num {
        font-size: 1.75rem;
    }

    .pstat .label {
        font-size: 0.8rem;
    }

    /* Contact Small Mobile */
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
    }

    .contact-subtitle,
    .form-subtitle {
        font-size: 0.9rem;
    }

    .contact-method {
        padding: 0.875rem;
        flex-direction: column;
        text-align: center;
    }

    .method-icon {
        width: 40px;
        height: 40px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.625rem;
        font-size: 0.9rem;
    }

    /* Footer Small Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }

    /* Section Titles Small Mobile */
    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    /* CTA Small Mobile */
    .contact#cta {
        padding: 2.5rem 0.75rem;
    }

    .contact#cta .section-title {
        font-size: 1.5rem;
    }

    .contact#cta .section-description {
        font-size: 0.85rem;
    }

    /* Resources Small Mobile */
    .resource-card {
        padding: 1.25rem;
    }

    .resource-icon {
        width: 40px;
        height: 40px;
    }

    /* Case Studies Small Mobile */
    .case-title {
        font-size: 1.25rem;
    }

    .chip {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    /* Process Timeline Small Mobile */
    .timeline-card h3 {
        font-size: 1.1rem;
    }

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

    /* Results/Client Success Stories Small Mobile */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .result-card {
        aspect-ratio: 9/16;
        min-height: 350px;
    }

    .client-name {
        font-size: 0.9rem;
    }

    .client-role {
        font-size: 0.75rem;
    }

    .result-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }

    /* Process Bottom Cards Small Mobile */
    .process-bottom {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* General Spacing Small Mobile */
    section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 0.75rem;
    }

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

    /* Images Small Mobile - already set globally */
    
    /* Nav link text adjustments */
    .nav-link {
        font-size: 0.9rem;
    }

    /* Ensure buttons are touch-friendly */
    .btn,
    .nav-cta,
    .submit-button,
    .chip {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .chip {
        min-width: auto;
    }

    /* Form improvements */
    .proposal-form {
        gap: 1.25rem;
    }

    /* Text Adjustments */
    .hero-title,
    .section-title {
        word-wrap: break-word;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        margin-top: 1.5rem;
    }

    /* KPI Cards Small Mobile */
    .case-kpis {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Performance Section Small Mobile */
    .performance {
        padding: 2.5rem 0;
    }

    /* Resource Meta Small Mobile */
    .resource-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

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

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(34, 211, 238, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(34, 211, 238, 0.8), 0 0 30px rgba(99, 102, 241, 0.6);
    }
}

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

@keyframes wiggle {
    0%, 7% {
        transform: rotateZ(0);
    }
    15% {
        transform: rotateZ(-15deg);
    }
    20% {
        transform: rotateZ(10deg);
    }
    25% {
        transform: rotateZ(-10deg);
    }
    30% {
        transform: rotateZ(6deg);
    }
    35% {
        transform: rotateZ(-4deg);
    }
    40%, 100% {
        transform: rotateZ(0);
    }
}

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

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.animate-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced hover animations */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Floating animation for cards */
.floating-card {
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    animation-delay: 4s;
}

/* Enhanced card hover effects */
.solution-card,
.service-card,
.about-card,
.portfolio-item,
.resource-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.solution-card::before,
.service-card::before,
.about-card::before,
.portfolio-item::before,
.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.1), transparent);
    transition: left 0.6s;
}

.solution-card:hover::before,
.service-card:hover::before,
.about-card:hover::before,
.portfolio-item:hover::before,
.resource-card:hover::before {
    left: 100%;
}

.solution-card:hover,
.service-card:hover,
.about-card:hover,
.portfolio-item:hover,
.resource-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Pulsing animation for CTA buttons */
.nav-cta,
.btn-primary,
.cta-button,
.submit-button {
    animation: pulse 2s infinite;
}

.nav-cta:hover,
.btn-primary:hover,
.cta-button:hover,
.submit-button:hover {
    animation: none;
    transform: translateY(-2px) scale(1.05);
}

/* Glowing effect for important elements */
.hero-badge {
    animation: glow 3s ease-in-out infinite;
}

/* Shimmer effect for loading states */
.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Bounce animation for interactive elements */
.result-card:hover .video-placeholder {
    animation: bounce 0.6s ease-in-out;
}

/* Rotating animation for icons */
.card-icon:hover i,
.service-image:hover i,
.resource-icon:hover i {
    animation: rotate 0.6s ease-in-out;
}

/* Wiggle animation for playful elements */
.nav-toggle:hover .bar {
    animation: wiggle 0.5s ease-in-out;
}

/* Staggered animation for grid items */
.results-grid .result-card,
.solutions-grid .solution-card,
.services-grid .service-card,
.about-grid .about-card,
.portfolio-grid .portfolio-item,
.resources-grid .resource-card {
    animation: fadeInScale 0.6s ease-out;
}

.results-grid .result-card:nth-child(1) { animation-delay: 0.1s; }
.results-grid .result-card:nth-child(2) { animation-delay: 0.2s; }
.results-grid .result-card:nth-child(3) { animation-delay: 0.3s; }
.results-grid .result-card:nth-child(4) { animation-delay: 0.4s; }
.results-grid .result-card:nth-child(5) { animation-delay: 0.5s; }
.results-grid .result-card:nth-child(6) { animation-delay: 0.6s; }

.solutions-grid .solution-card:nth-child(1) { animation-delay: 0.1s; }
.solutions-grid .solution-card:nth-child(2) { animation-delay: 0.2s; }
.solutions-grid .solution-card:nth-child(3) { animation-delay: 0.3s; }
.solutions-grid .solution-card:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced navbar scroll effect */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

/* Smooth transitions for all interactive elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Loading spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

/* Text reveal animation */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-reveal {
    animation: textReveal 0.8s ease-out;
}

/* Gradient text animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

/* RTL (Right-to-Left) Support for Arabic */
html[dir="rtl"],
body.rtl {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', 'Tajawal', 'Inter', sans-serif;
}

html[dir="rtl"] body,
body.rtl {
    font-family: 'Cairo', 'Tajawal', 'Inter', sans-serif;
}

html[dir="rtl"] .nav-container,
body.rtl .nav-container {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-menu,
body.rtl .nav-menu {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-link,
body.rtl .nav-link {
    margin-right: 0;
    margin-left: 1.5rem;
}

html[dir="rtl"] .nav-link i,
body.rtl .nav-link i {
    margin-left: 0.5rem;
    margin-right: 0;
}

html[dir="rtl"] .nav-toggle,
body.rtl .nav-toggle {
    order: 0;
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .nav-logo,
body.rtl .nav-logo {
    order: 1;
    margin-right: 20px;
    margin-left: auto;
}

@media (max-width: 768px) {
    html[dir="rtl"] .nav-logo,
    body.rtl .nav-logo {
        margin-right: 15px;
    }
}

html[dir="rtl"] .nav-container .nav-logo,
body.rtl .nav-container .nav-logo {
    margin-right: 20px;
    margin-left: auto;
}

@media (max-width: 768px) {
    html[dir="rtl"] .nav-container .nav-logo,
    body.rtl .nav-container .nav-logo {
        margin-right: 15px;
    }
}

html[dir="rtl"] .nav-container,
body.rtl .nav-container {
    padding: 0;
}

html[dir="rtl"] .flex,
body.rtl .flex {
    flex-direction: row-reverse;
}

html[dir="rtl"] .flex-row,
body.rtl .flex-row {
    flex-direction: row-reverse;
}

html[dir="rtl"] .justify-start,
body.rtl .justify-start {
    justify-content: flex-end;
}

html[dir="rtl"] .justify-end,
body.rtl .justify-end {
    justify-content: flex-start;
}

html[dir="rtl"] .text-left,
body.rtl .text-left {
    text-align: right;
}

html[dir="rtl"] .text-right,
body.rtl .text-right {
    text-align: left;
}

html[dir="rtl"] .ml-2,
body.rtl .ml-2 {
    margin-left: 0;
    margin-right: 0.5rem;
}

html[dir="rtl"] .mr-2,
body.rtl .mr-2 {
    margin-right: 0;
    margin-left: 0.5rem;
}

html[dir="rtl"] .ml-4,
body.rtl .ml-4 {
    margin-left: 0;
    margin-right: 1rem;
}

html[dir="rtl"] .mr-4,
body.rtl .mr-4 {
    margin-right: 0;
    margin-left: 1rem;
}

html[dir="rtl"] .pl-4,
body.rtl .pl-4 {
    padding-left: 0;
    padding-right: 1rem;
}

html[dir="rtl"] .pr-4,
body.rtl .pr-4 {
    padding-right: 0;
    padding-left: 1rem;
}

html[dir="rtl"] .left-1/2,
body.rtl .left-1/2 {
    left: auto;
    right: 50%;
}

html[dir="rtl"] .right-1/2,
body.rtl .right-1/2 {
    right: auto;
    left: 50%;
}

html[dir="rtl"] .transform,
body.rtl .transform {
    transform: translateX(50%);
}

html[dir="rtl"] input[type="text"],
html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] textarea,
html[dir="rtl"] select,
body.rtl input[type="text"],
body.rtl input[type="email"],
body.rtl input[type="tel"],
body.rtl textarea,
body.rtl select {
    text-align: right;
    direction: rtl;
}

/* Language Switcher Button */
.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid #6366f1;
    border-radius: 25px;
    color: #6366f1;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-switcher-btn:hover {
    background: #6366f1;
    color: white;
    transform: scale(1.05);
}

.lang-switcher-btn .lang-code {
    font-weight: 700;
}

html[dir="rtl"] .lang-switcher-btn,
body.rtl .lang-switcher-btn {
    flex-direction: row-reverse;
}

/* Section Navigation Bar */
.section-nav-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
    position: sticky;
    top: 70px;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section-nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-nav-link {
    text-decoration: none;
    color: #2d2e32;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.section-nav-link:hover {
    color: #6366f1;
}

.section-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #00AEEF, #7B2FF7);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.section-nav-link:hover::after {
    transform: scaleX(1);
}

/* RTL Support for Section Navigation */
html[dir="rtl"] .section-nav-menu,
body.rtl .section-nav-menu {
    flex-direction: row-reverse;
}

html[dir="rtl"] .section-nav-link::after,
body.rtl .section-nav-link::after {
    left: auto;
    right: 0;
}

@media (max-width: 768px) {
    .section-nav-bar {
        top: 60px;
        padding: 0.75rem 0;
    }
    
    .section-nav-menu {
        gap: 1.5rem;
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    
    .section-nav-link {
        font-size: 0.9rem;
    }
}

/* Arrow direction fix for RTL */
html[dir="rtl"] .arrow,
html[dir="rtl"] .fa-arrow-right,
body.rtl .arrow,
body.rtl .fa-arrow-right {
    transform: scaleX(-1);
}

html[dir="rtl"] .fa-chevron-down,
body.rtl .fa-chevron-down {
    transform: none;
}

/* Grid alignment for RTL */
html[dir="rtl"] .grid,
body.rtl .grid {
    direction: rtl;
}

/* Card text alignment */
html[dir="rtl"] .text-center,
body.rtl .text-center {
    text-align: center;
}

html[dir="rtl"] .service-card,
html[dir="rtl"] .about-card,
html[dir="rtl"] .portfolio-item,
body.rtl .service-card,
body.rtl .about-card,
body.rtl .portfolio-item {
    text-align: right;
}

/* Float icons and badges */
html[dir="rtl"] .absolute.left-10,
body.rtl .absolute.left-10 {
    left: auto;
    right: 2.5rem;
}

html[dir="rtl"] .absolute.right-10,
body.rtl .absolute.right-10 {
    right: auto;
    left: 2.5rem;
}

/* Notification position for RTL */
html[dir="rtl"] .notification,
body.rtl .notification {
    left: 20px;
    right: auto;
    transform: translateX(-100%);
}

html[dir="rtl"] .notification[style*="translateX(0)"],
body.rtl .notification[style*="translateX(0)"] {
    transform: translateX(0) !important;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}
