/* ==========================================
   CSS VARIABLES
========================================== */
:root {
    --primary:  #5B8DEE;
    --primary-light: #7BA5F5 ;
    --primary-dark: #0a4a3d;
    --secondary: #89B499;
    --secondary-light: #a3c7af;
    --accent: #0F6251;
    --accent-light: #147a63;
    --background: #FCFDFD;
    --surface: #FFFFFF;
    --text-primary: #1a1a1a;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --gradient-primary: linear-gradient(135deg, #0F6251 0%, #147a63 100%);
    --gradient-accent: linear-gradient(135deg, #0F6251 0%, #147a63 100%);
    --gradient-mesh: linear-gradient(135deg, rgba(91, 141, 238, 0.1) 0%, rgba(137, 180, 153, 0.1) 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--background);
    line-height: 1.6;
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   TYPOGRAPHY
========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 14px rgba(91, 141, 238, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 141, 238, 0.45);
}

.btn-secondary {
    background: white;
    color: var(--accent);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(91, 141, 238, 0.05);
}

/* ==========================================
   HEADER / NAVIGATION
========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(12px);
   
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
     border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}
/* DROPDOWN MENU STYLES */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
}

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

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

/* Dropdown Menu Container */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%) translateY(-10px);
    z-index: 1000;
}

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

/* Dropdown Arrow */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

/* Dropdown Content */
.dropdown-content {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.dropdown-item:hover {
    background: var(--gradient-mesh);
    border-color: rgba(91, 141, 238, 0.2);
    transform: translateX(4px);
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-mesh);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.25rem;
    transition: var(--transition);
}

.dropdown-item:hover .dropdown-icon {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1);
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-text strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dropdown-text span {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* Dropdown Footer */
.dropdown-footer {
    padding: 1rem;
    border-top: 1px solid var(--border);
    background: var(--background);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.dropdown-footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-footer-link:hover {
    gap: 0.75rem;
}

.dropdown-footer-link i {
    transition: transform 0.3s ease;
}

.dropdown-footer-link:hover i {
    transform: translateX(4px);
}

/* ==========================================
   HERO SECTION
========================================== */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    /*background: linear-gradient(180deg, rgba(91, 141, 238, 0.03) 0%, rgba(252, 253, 253, 1) 100%);*/
    background-image: url(./asset/project/hero-bg-modern.svg);
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(91, 141, 238, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(137, 180, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--accent);
}

.hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: #fff;
}

.hero p {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-image {
    margin-top: 4rem;
    position: relative;
    animation: fadeInUp 1s ease;
}

.dashboard-preview {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/*.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(90deg, #F3F4F6 0%, #E5E7EB 50%, #F3F4F6 100%);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 1rem;
}*/

.dashboard-content {
    margin-top: 40px;
    background: var(--background);
    border-radius: var(--radius-md);
    padding: 2rem;
    min-height: 400px;
}

/* ==========================================
   FEATURES SECTION (4 Ways)
========================================== */
.features-grid {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(91, 141, 238, 0.2);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-mesh);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feature-preview {
    width: 100%;
    height: 200px;
    background: var(--background);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

/* VALUES SECTION */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(91, 141, 238, 0.03) 0%, rgba(252, 253, 253, 1) 100%);
}

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

/* LEFT SIDE - TABS */
.values-left {
    position: sticky;
    top: 100px;
}

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

.section-header-left h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header-left p {
    font-size: 1.0625rem;
    color: #6B7280;
    line-height: 1.7;
}

.values-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tab-btn {
    position: relative;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.tab-btn:hover {
    border-color: #5B8DEE;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(91, 141, 238, 0.15);
}

.tab-btn.active {
    background: var(--gradient-accent);
    border-color: transparent;
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(91, 141, 238, 0.25);
}

.tab-title {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.tab-btn.active .tab-title {
    color: white;
}

.tab-subtitle {
    display: block;
    font-size: 0.875rem;
    color: #6B7280;
    transition: color 0.3s ease;
}

.tab-btn.active .tab-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.tab-indicator {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #E5E7EB;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tab-btn:hover .tab-indicator {
    background: #0F6251;
    transform: translateY(-50%) scale(1.3);
}

.tab-btn.active .tab-indicator {
    background: white;
    transform: translateY(-50%) scale(1.5);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

/* RIGHT SIDE - CONTENT */
.values-right {
    position: relative;
    min-height: 500px;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.content-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.tab-content.active .content-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.content-text {
    padding: 2.5rem;
}

.content-text h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.content-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #6B7280;
}

/* ==========================================
   APP SHOWCASE SECTION
========================================== */
.app-showcase {
    padding: 6rem 0;
    background: var(--gradient-mesh);
    position: relative;
    overflow: hidden;
}

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

.app-text h2 {
    margin-bottom: 1.5rem;
}

.app-text p {
    margin-bottom: 2rem;
}

/* Updated Showcase Stats */
.showcase-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: left;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: "Manrope", sans-serif;
}

.stat-item span {
    display: block;
    font-size: 0.9375rem;
    color: var(--secondary);
}

/* Project Showcase Container */
.project-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

/* Main Project Window */
.project-window {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
}

.window-header {
    background: #2d2d2d;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #3d3d3d;
}

.window-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.window-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.window-title i {
    color: #5b8dee;
}

.window-actions {
    display: flex;
    gap: 1rem;
    color: #6b7280;
    font-size: 1rem;
}

/* Code Editor */
.window-content {
    padding: 0;
}

.code-editor {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 350px;
}

.editor-sidebar {
    background: #252525;
    padding: 1rem 0.75rem;
    border-right: 1px solid #3d3d3d;
}

.folder-item,
.file-item {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-item:hover {
    background: #2d2d2d;
    color: white;
}

.file-item.active {
    background: #3d3d3d;
    color: white;
}

.folder-item i,
.file-item i {
    font-size: 1rem;
}

.editor-main {
    background: #1e1e1e;
    padding: 1rem;
    font-family: "Courier New", monospace;
    font-size: 0.875rem;
}

.code-line {
    display: flex;
    line-height: 1.8;
}

.line-number {
    color: #6b7280;
    margin-right: 1.5rem;
    min-width: 20px;
    text-align: right;
    user-select: none;
}

.code-tag { color: #5b8dee; }
.code-attr { color: #89b499; }
.code-string { color: #fcd34d; }
.code-indent { color: transparent; }

/* Project Cards */
.project-card {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 180px;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.card-icon.success { background: #d1fae5; color: #059669; }
.card-icon.progress { background: #dbeafe; color: #2563eb; }
.card-icon.delivery { background: #fee2e2; color: #dc2626; }

.card-text {
    flex: 1;
}

.card-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.card-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Card Positions */
.floating-element {
    position: absolute;
    animation: floatSide 3s ease-in-out infinite;
}

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

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

.card-3 {
    bottom: 10%;
    left: -8%;
    animation-delay: 1s;
}

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

/* ==========================================
   TOOLS SECTION
========================================== */
.tools-section {
    padding: 6rem 0;
    background: white;
}

.tools-showcase {
    margin-top: 4rem;
    position: relative;
}

.tools-preview {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    border: 1px solid var(--border);
    min-height: 500px;
}

.tools-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    height: 100%;
}

.tools-sidebar {
    background: var(--background);
    border-radius: 12px;
    padding: 1.5rem;
}

.tools-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tools-nav-item {
    padding: 0.875rem;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    cursor: pointer;
}

.tools-nav-item.active {
    background: var(--gradient-accent);
    color: white;
    font-weight: 600;
}

.tools-nav-item:not(.active) {
    background: white;
    border: 1px solid var(--border);
}

.tools-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tools-chart {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.chart-placeholder {
    height: 200px;
    background: var(--gradient-mesh);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

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

.tools-stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.stat-value.primary {
    color: var(--primary);
}

.stat-value.accent {
    color: var(--accent);
}

/* ==========================================
   TESTIMONIALS SECTION
========================================== */
.testimonials-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.testimonials-swiper-container {
    margin-top: 4rem;
    position: relative;
    padding: 0 60px;
}

.testimonials-swiper {
    padding-bottom: 60px;
}

.testimonial-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(91, 141, 238, 0.2);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-author {
    flex: 1;
}

.testimonial-author h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.testimonial-author p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.rating {
    display: flex;
    gap: 0.25rem;
    color: #fcd34d;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    flex: 1;
}

/* Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    color: var(--accent);
    transition: var(--transition);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--gradient-accent);
    border-color: transparent;
    color: white;
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.25rem;
    font-weight: bold;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--border);
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--gradient-accent);
    width: 32px;
    border-radius: 6px;
}

/* ==========================================
   FAQ SECTION
========================================== */
.faq-section {
    padding: 6rem 0;
    background: var(--background);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    transition: var(--transition);
    color: var(--accent);
    font-size: 1.25rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   CTA SECTION / NEWSLETTER
========================================== */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-accent);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-form {
    background: white;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 0.5rem;
}

.cta-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    outline: none;
}

.cta-form button span {
    display: inline-block;
}

.cta-form button i {
    transition: transform 0.3s ease;
}

.cta-form button:hover i {
    transform: translateX(4px);
}

/* Newsletter specific styles */
.newsletter-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.125rem;
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-privacy i {
    color: #10b981;
    font-size: 1rem;
}

/* Newsletter Preview Styles */
.newsletter-preview {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-preview-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 100%;
}

.email-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.email-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-circle {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
}

.email-logo span {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9375rem;
}

.email-date {
    font-size: 0.8125rem;
    color: #9ca3af;
}

.email-subject {
    margin-bottom: 1rem;
}

.email-subject h4 {
    font-size: 1.125rem;
    color: #1a1a1a;
    font-weight: 700;
}

.email-preview-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.preview-line {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
}

.preview-line.long { width: 100%; }
.preview-line.medium { width: 80%; }
.preview-line.short { width: 60%; }

.email-cta {
    display: flex;
    justify-content: center;
}

.preview-button {
    padding: 0.625rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: floatSide 3s ease-in-out infinite;
}

.floating-stat i {
    font-size: 1.5rem;
    color: var(--accent);
}

.floating-stat strong {
    display: block;
    font-size: 1.25rem;
    color: #0f6251;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.floating-stat span {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
}

.stat-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 15%;
    right: -8%;
    animation-delay: 1s;
}

/* PROJECTS SECTION */
.projects-section {
    padding: 8rem 0;
    background: var(--background);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-mesh);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Filter Tabs */
.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0 4rem;
}

.filter-btn {
    padding: 0.75rem 1.75rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-accent);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 14px rgba(91, 141, 238, 0.35);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.project-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    opacity: 1;
    transform: scale(1);
}

.project-card.hidden {
    display: none;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

/* Project Image */
.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--gradient-mesh);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

/* Project Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.project-card:hover .project-links {
    transform: translateY(0);
}

.project-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--transition);
}

.project-link:hover {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.15);
}

/* Project Badge */
.project-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Project Content */
.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.project-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Tech Tags */
.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.375rem 0.875rem;
    background: var(--gradient-mesh);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
}

/* Projects CTA */
.projects-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-light);
}

/* Animation for filtering */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.project-card.show {
    animation: fadeIn 0.5s ease forwards;
}

/* PARTNERS MARQUEE SECTION */
.partners-section {
    padding: 3rem 0 4rem;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.partners-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.partners-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Marquee Container */
.marquee-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Gradient overlays for fade effect */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--background) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--background) 0%, transparent 100%);
}

/* Marquee wrapper */
.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

/* Marquee content */
.marquee-content {
    display: flex;
    animation: marquee 40s linear infinite;
    gap: 4rem;
    padding: 1rem 0;
}

/* Pause animation on hover */
.marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Partner logo styling */
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 80px;
    padding: 1rem 2rem;
    background: white;
    flex-shrink: 0;
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================
   FOOTER
========================================== */
.footer {
    background: #0a1e1a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
    font-size: 0.9375rem;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media (max-width: 1024px) {
    .features-4col {
        grid-template-columns: 1fr;
    }
    
    .values-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-left {
        position: relative;
        top: 0;
    }
    
    .content-image {
        height: 300px;
    }
    
    .app-showcase-content,
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .project-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 1rem 0;
    }
    
    .newsletter-preview {
        margin-top: 3rem;
    }
    
    .floating-stat {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .stat-1,
    .stat-2 {
        display: inline-flex;
        margin: 1rem 0.5rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
         padding-right: 1.5rem;
    }
    
    /* Header/Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        align-items: flex-start;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Dropdown in mobile */
    .nav-dropdown {
        position: relative;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        box-shadow: none;
        border: none;
        background: var(--background);
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 800px;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
        padding: 0.5rem 0;
    }
    
    .dropdown-item {
        padding: 0.875rem;
    }
    
    .dropdown-footer {
        background: transparent;
        border-top: 1px solid var(--border);
        margin-top: 0.5rem;
    }
    
    /* Hero */
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Values Section */
    .section-header-left h2 {
        font-size: 2rem;
    }
    
    .tab-btn {
        padding: 1.25rem 1.5rem;
    }
    
    .tab-title {
        font-size: 1rem;
    }
    
    .content-text {
        padding: 2rem;
    }
    
    .content-text h3 {
        font-size: 1.5rem;
    }
    
    /* Showcase stats */
    .showcase-stats {
        
        gap: 0.4rem;
    }
    .showcase-stats .stat-item{
        text-align: center;

    }
    .stat-item strong {
        font-size: 2rem;
    }
    
    /* Code Editor */
    .code-editor {
        grid-template-columns: 1fr;
    }
    
    .editor-sidebar {
        border-right: none;
        border-bottom: 1px solid #3d3d3d;
    }
    
    .project-window {
        max-width: 100%;
    }
    
    /* Tools section */
    .tools-stats {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials-swiper-container {
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 2rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    /* Newsletter */
    .newsletter-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .email-preview-card {
        padding: 1.25rem;
    }
    
    /* Projects */
    .projects-section {
        padding: 4rem 0;
    }
    
    .project-filters {
        gap: 0.75rem;
        margin: 2rem 0 3rem;
    }
    
    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-image {
        height: 220px;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-content h3 {
        font-size: 1.25rem;
    }
    
    /* Partners */
    .partners-section {
        padding: 2rem 0 3rem;
    }
    
    .marquee-content {
        gap: 2rem;
        animation: marquee 30s linear infinite;
    }
    
    .partner-logo {
        min-width: 140px;
        height: 60px;
        padding: 0.75rem 1.5rem;
    }
    
    .marquee-container::before,
    .marquee-container::after {
        width: 80px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
}
    .desktop-image{
    display: block;
}
.mobile-image{
    display: none;
    width: 100%;
    max-width: 90vw;
}
.mobile-image img{
    width: 100%;
}

@media (max-width:768px) {
    .cta-form{
        max-width: 90vw;
        overflow: hidden;
    }

.desktop-image{
    display: none;
}
.mobile-image{
    display: block;
}
}
