/* =====================================================
   WEBARCLIGHT - PROJECT & PRODUCTS MASTER STYLESHEET
   100% Unified with index.php Modern UI/UX Design System
===================================================== */

:root {
    --logo-purple: #5300FC;
    --logo-violet: #B425BC;
    --logo-pink: #D326D6;
    --logo-coral: #E159A0;
    --logo-orange: #FEAB4C;
    --brand-purple: #5300FC;
    --brand-magenta: #D326D6;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --brand-gradient: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-hover-shadow: 0 25px 60px rgba(83, 0, 252, 0.12);
}

html {
    font-size: 90%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

*, html, body, button, input, textarea, select { 
    font-family: 'Plus Jakarta Sans', 'Ubuntu', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
}

/* =====================================================
   TYPOGRAPHY & HEADINGS (Unified with index.php)
===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Ubuntu', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.highlight-text,
h2 span,
h1 span {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.08rem;
    color: #1e293b;
    line-height: 1.7;
    font-weight: 500;
}

/* Containers & Sections */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 85px 0;
    position: relative;
}

.bg-lighter {
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

/* =====================================================
   BUTTONS (Exact match with index.php)
===================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.98rem;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(83, 0, 252, 0.28);
    letter-spacing: 0.2px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(180, 37, 188, 0.45);
    color: #ffffff !important;
}

.btn-primary i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid rgba(83, 0, 252, 0.3);
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.btn-outline:hover {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
    color: #ffffff !important;
    border-color: transparent;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(83, 0, 252, 0.32);
}

.btn-outline i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-outline:hover i {
    transform: translateX(4px);
}

/* =====================================================
   HERO SECTION (Exact 1:1 match with index.php)
===================================================== */
.hero {
    min-height: 100vh;
    padding: 0;
    position: relative;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    color: var(--white);
    max-width: 820px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(calc(-50% + 40px));
    animation: fadeInUp 1s ease-out 0.5s forwards;
    position: absolute;
    top: 52%;
    left: 5%;
    background: rgba(18, 26, 38, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 48px 52px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

@keyframes fadeInUp {
    to { 
        opacity: 1; 
        transform: translateY(-50%);
    } 
}

.hero-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 22px;
    text-align: left;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.12rem;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 300;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.65;
}

.hero-cta-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 5px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff !important;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 35%, #E159A0 70%, #FE7B42 100%);
    border-radius: 12px;
    box-shadow: none;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    color: #ffffff !important;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff !important;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-secondary:hover {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%) !important;
    border-color: transparent !important;
    transform: translateY(-3px) scale(1.02);
    color: #ffffff !important;
}

/* =====================================================
   PROJECTS SHOWCASE SECTION (Modern Overlap UI & Best Hover)
===================================================== */
.projects-showcase-section {
    padding: 95px 0;
    background: #ffffff;
    position: relative;
}

.project-list-container {
    display: flex;
    flex-direction: column;
    gap: 90px;
    margin-top: 35px;
}

.project-row {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    position: relative;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-row.reverse {
    grid-template-columns: 1fr 1.25fr;
}

.project-row.reverse .project-image-column {
    order: 2;
}

.project-row.reverse .project-details-column {
    order: 1;
    margin-right: -70px;
    margin-left: 0;
}

.project-image-column {
    position: relative;
    width: 100%;
    min-height: 480px;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    overflow: hidden;
    z-index: 1;
    background: #0f172a;
}

.project-image-column img,
.project-image-column video {
    width: 100%;
    height: 100%;
    min-height: 480px;
    max-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.project-row:hover .project-image-column img {
    transform: scale(1.05);
    filter: brightness(1.03);
}

.project-details-column {
    position: relative;
    z-index: 2;
    margin-left: -70px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 0 !important;
    padding: 48px 44px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

/* Animated Top Gradient Beam */
.project-details-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.project-row:hover .project-details-column {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px -10px rgba(83, 0, 252, 0.18), 0 15px 35px -5px rgba(211, 38, 214, 0.1);
    border-color: rgba(83, 0, 252, 0.4);
}

.project-row:hover .project-details-column::before {
    opacity: 1;
    transform: scaleX(1);
}

.project-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #5300FC;
    background: rgba(83, 0, 252, 0.08);
    border: 1.5px solid rgba(83, 0, 252, 0.25);
    border-radius: 50px;
    margin-bottom: 16px;
    transition: all 0.35s ease;
}

.project-category::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5300FC, #D326D6);
    box-shadow: 0 0 8px rgba(83, 0, 252, 0.6);
}

.project-row:hover .project-category {
    background: rgba(83, 0, 252, 0.14);
    border-color: rgba(83, 0, 252, 0.5);
    transform: translateX(4px);
}

.project-details-column h3 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0a0e1a;
    margin-bottom: 14px;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.project-details-column p {
    font-size: 1.02rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 24px;
}

.project-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.project-tech-tags .tag {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 50px;
    background: #ffffff;
    color: #0f172a;
    border: 1.5px solid #cbd5e1;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-tech-tags .tag:hover {
    transform: translateY(-2px);
    border-color: #5300FC;
    color: #5300FC;
    box-shadow: 0 4px 14px rgba(83, 0, 252, 0.15);
}

.project-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.project-details-column .btn-outline {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1.5px solid rgba(83, 0, 252, 0.3);
    color: var(--brand-purple);
    background: #ffffff;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-row:hover .project-details-column .btn-outline {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
    color: #ffffff !important;
    border-color: transparent;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(83, 0, 252, 0.35);
}

.project-row:hover .project-details-column .btn-outline i {
    transform: translateX(5px);
}

/* =====================================================
   KEYWORDS / CORE CAPABILITIES GRID (Glass Cards)
===================================================== */
.keywords-section {
    padding: 95px 0;
}

.keywords-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.keyword-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 38px 32px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Animated Top Gradient Beam on Card */
.keyword-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.keyword-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(83, 0, 252, 0.14);
    border-color: rgba(83, 0, 252, 0.35);
}

.keyword-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.keyword-card i {
    font-size: 1.75rem;
    color: #5300FC;
    background: rgba(83, 0, 252, 0.08);
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 22px;
    transition: all 0.4s ease;
}

.keyword-card:hover i {
    background: linear-gradient(135deg, #5300FC, #D326D6);
    color: #ffffff;
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 8px 20px rgba(83, 0, 252, 0.3);
}

.keyword-card h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0a0e1a;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}

.keyword-card p {
    font-size: 0.98rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
}

/* =====================================================
   OUR ACHIEVEMENTS (Eye-Friendly UI - Matches index.php)
===================================================== */
.achievements-section {
    padding: 95px 0 90px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.achievements-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #5300FC;
    background: rgba(83, 0, 252, 0.06);
    border: 1px solid rgba(83, 0, 252, 0.16);
    border-radius: 30px;
    padding: 6px 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.achievements-title {
    font-size: 2.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 52px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.achievements-title .highlight-text {
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 30%, #D326D6 60%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    position: relative;
    z-index: 2;
}

.achievement-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 38px 24px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.achievement-card:hover {
    transform: translateY(-6px);
    border-color: #5300FC;
    box-shadow: 0 16px 36px rgba(83, 0, 252, 0.12), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    letter-spacing: -1px;
}

.achievement-number .symbol {
    background: linear-gradient(135deg, #5300FC 0%, #D326D6 50%, #FEAB4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-left: 4px;
}

.achievement-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 22px;
    letter-spacing: 0.2px;
}

.achievement-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(83, 0, 252, 0.06);
    color: #5300FC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: auto;
}

.achievement-card:hover .achievement-icon {
    background: linear-gradient(135deg, #5300FC 0%, #B425BC 50%, #FEAB4C 100%);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(83, 0, 252, 0.25);
}

/* =====================================================
   CTA SECTION (Obsidian Glass Theme)
===================================================== */
.cta-section-products {
    background: linear-gradient(145deg, #0d0822 0%, #170733 50%, #08162e 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.cta-section-products::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #5300FC 0%, #B425BC 25%, #D326D6 50%, #E159A0 75%, #FEAB4C 100%);
}

.cta-section-products h2 {
    color: #ffffff;
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.cta-section-products p {
    color: #cbd5e1;
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 38px auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   RESPONSIVE BREAKPOINTS (Tablet & Mobile Views)
===================================================== */
@media (max-width: 1024px) {
    html {
        font-size: 88%;
    }
    
    .container,
    .container-wide {
        padding: 0 24px;
    }
    
    h2 {
        font-size: 2.35rem;
    }
    
    .section-subtitle {
        font-size: 1.02rem;
        margin-bottom: 2.8rem;
    }
    
    /* Hero Section Tablet */
    .hero {
        min-height: 85vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .hero-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto;
        max-width: 720px;
        padding: 40px 38px;
        animation: none !important;
        opacity: 1 !important;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.35rem;
        text-align: center;
    }

    .hero-content p {
        text-align: center;
    }

    .hero-cta-btns {
        justify-content: center;
    }
    
    /* Keywords Section Tablet */
    .keywords-section {
        padding: 75px 0;
    }
    
    .keywords-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    
    .keyword-card {
        padding: 32px 26px;
    }
    
    /* Projects Showcase Tablet - Overlapped with Zero Border Radius & Right Overhang */
    .projects-showcase-section {
        padding: 75px 0;
    }
    
    .project-list-container {
        gap: 75px;
    }
    
    .project-row,
    .project-row.reverse {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        position: relative;
        width: 100%;
    }
    
    .project-image-column,
    .project-row.reverse .project-image-column {
        order: 1 !important;
        width: calc(100% - 44px) !important;
        align-self: flex-start;
        min-height: 360px;
        max-height: 420px;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    
    .project-image-column img,
    .project-image-column video {
        min-height: 360px;
        max-height: 420px;
        border-radius: 0 !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .project-details-column,
    .project-row.reverse .project-details-column {
        order: 2 !important;
        position: relative;
        z-index: 2;
        margin-top: -70px !important;
        margin-left: 44px !important;
        margin-right: 0 !important;
        width: calc(100% - 44px) !important;
        align-self: flex-end;
        background: #ffffff;
        border: 1.5px solid #e2e8f0;
        border-radius: 0 !important;
        padding: 38px 36px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    }
    
    .project-details-column h3 {
        font-size: 1.65rem;
    }
    
    /* Achievements Tablet */
    .achievements-section {
        padding: 75px 0 70px;
    }
    
    .achievements-title {
        font-size: 2.3rem;
        margin-bottom: 38px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .achievement-card {
        padding: 32px 20px 24px;
        min-height: 200px;
    }
    
    .achievement-number {
        font-size: 2.9rem;
    }
    
    /* CTA Section Tablet */
    .cta-section-products {
        padding: 80px 24px;
    }
    
    .cta-section-products h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.98rem;
        margin-bottom: 2rem;
    }
    
    .container,
    .container-wide {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        animation: none !important;
        opacity: 1 !important;
        margin: 20px auto !important;
        padding: 36px 24px !important;
        border-radius: 14px !important;
        width: calc(100% - 30px) !important;
        max-width: calc(100% - 30px) !important;
        min-height: auto;
        text-align: center !important;
        box-sizing: border-box !important;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.25 !important;
        margin-bottom: 22px !important;
        text-align: center !important;
        font-weight: 700 !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        line-height: 1.65 !important;
        margin-bottom: 30px !important;
        text-align: center !important;
        font-weight: 300 !important;
    }
    
    .hero-cta-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        justify-content: center;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
    }
    
    /* Keywords Section Mobile */
    .keywords-section {
        padding: 60px 0;
    }
    
    .keywords-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .keyword-card {
        padding: 26px 22px;
        border-radius: 16px;
    }
    
    .keyword-card i {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
    
    .keyword-card h4 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }
    
    .keyword-card p {
        font-size: 0.94rem;
        line-height: 1.6;
    }
    
    /* Project Showcase Mobile - Overlapped with Zero Border Radius & Right Overhang */
    .projects-showcase-section {
        padding: 60px 0;
    }
    
    .project-list-container {
        gap: 60px;
        margin-top: 25px;
    }
    
    .project-row,
    .project-row.reverse {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        position: relative;
        width: 100%;
    }
    
    .project-image-column,
    .project-row.reverse .project-image-column {
        order: 1 !important;
        width: calc(100% - 28px) !important;
        align-self: flex-start;
        min-height: 250px;
        max-height: 290px;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    
    .project-image-column img,
    .project-image-column video {
        min-height: 250px;
        max-height: 290px;
        border-radius: 0 !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .project-details-column,
    .project-row.reverse .project-details-column {
        order: 2 !important;
        position: relative;
        z-index: 2;
        margin-top: -55px !important;
        margin-left: 28px !important;
        margin-right: 0 !important;
        width: calc(100% - 28px) !important;
        align-self: flex-end;
        background: #ffffff;
        border: 1.5px solid #e2e8f0;
        border-radius: 0 !important;
        padding: 28px 22px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .project-category {
        font-size: 0.78rem;
        padding: 5px 14px;
        margin-bottom: 12px;
    }
    
    .project-details-column h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .project-details-column p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    
    .project-tech-tags {
        gap: 6px;
        margin-bottom: 22px;
    }
    
    .project-tech-tags .tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    .project-actions {
        width: 100%;
    }
    
    .project-details-column .btn-outline {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    /* Achievements Mobile */
    .achievements-section {
        padding: 60px 0 55px;
    }
    
    .achievements-title {
        font-size: 1.85rem;
        margin-bottom: 30px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .achievement-card {
        padding: 24px 16px 20px;
        min-height: 175px;
        border-radius: 16px;
    }
    
    .achievement-number {
        font-size: 2.3rem;
        margin-bottom: 6px;
    }
    
    .achievement-label {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }
    
    .achievement-icon {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }
    
    /* CTA Section Mobile */
    .cta-section-products {
        padding: 60px 20px;
    }
    
    .cta-section-products h2 {
        font-size: 1.85rem;
    }
    
    .cta-section-products p {
        font-size: 1rem;
        margin-bottom: 28px;
        line-height: 1.6;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 320px;
    }
    
    /* WhatsApp Floating Button Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .container,
    .container-wide {
        padding: 0 16px;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 0 !important;
    }
    
    .hero-content {
        padding: 24px 16px !important;
        margin: 20px auto !important;
        width: calc(100% - 30px) !important;
        max-width: calc(100% - 30px) !important;
        box-sizing: border-box !important;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.25 !important;
        margin-bottom: 22px !important;
        text-align: center !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
        text-align: center !important;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
        gap: 16px;
    }
    
    .achievement-card {
        min-height: 160px;
        padding: 22px 16px 18px;
    }
    
    .project-image-column,
    .project-row.reverse .project-image-column {
        width: calc(100% - 18px) !important;
        min-height: 210px;
        max-height: 240px;
        border-radius: 0 !important;
    }
    
    .project-image-column img,
    .project-image-column video {
        min-height: 210px;
        max-height: 240px;
        border-radius: 0 !important;
    }
    
    .project-details-column,
    .project-row.reverse .project-details-column {
        margin-top: -45px !important;
        margin-left: 18px !important;
        margin-right: 0 !important;
        width: calc(100% - 18px) !important;
        padding: 24px 18px;
        border-radius: 0 !important;
    }
    
    .project-details-column h3 {
        font-size: 1.28rem;
    }
}
