/* =========================================
   VistaCliq — Modern Ekobyte IT Solutions Agency Theme
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    --primary-blue: #185ef0;
    --primary-blue-dark: #0f48c2;
    --primary-blue-light: #ebf3ff;
    --accent-yellow: #ccff00;
    --accent-yellow-dark: #b5e600;
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    --bg-main: #ffffff;
    --bg-soft: #f8fafc;
    --bg-blue-tint: #f0f6ff;
    
    --border-color: #e2e8f0;
    --card-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    --hover-shadow: 0 24px 50px rgba(24, 94, 240, 0.14);
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.65;
    overflow-x: hidden;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-blue {
    color: var(--primary-blue);
}

/* =========================================
   Floating Pill Navbar (Ekobyte Style & Dynamic Scroll)
   ========================================= */
.header-wrapper {
    position: sticky;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 24px;
    transition: top 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
}

.header-wrapper.scrolled {
    top: 10px;
    padding: 0 16px;
}

.navbar {
    max-width: 1240px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 99px;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 10px 24px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(24, 94, 240, 0.15);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-width: 1200px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
}

.logo-symbol, .logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 4px 14px rgba(24, 94, 240, 0.3);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo:hover .logo-img, .logo:hover .logo-symbol {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 6px 20px rgba(24, 94, 240, 0.45);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.btn-quote {
    background: var(--accent-yellow);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 26px;
    border-radius: 99px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(204, 255, 0, 0.4);
    border: none;
    cursor: pointer;
}

.btn-quote:hover {
    background: #b8e600;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204, 255, 0, 0.6);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-number {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    background: #f1f5f9;
    padding: 10px 18px;
    border-radius: 99px;
    font-size: 0.92rem;
    transition: var(--transition);
}

.contact-number:hover {
    background: #e2e8f0;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .contact-number {
        display: none !important;
    }
}

/* =========================================
   Hero Section (Curved Blue Wave EkoByte Style)
   ========================================= */
.hero {
    position: relative;
    padding: 100px 0 120px;
    background: var(--primary-blue-light);
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 150px;
}

/* Decorative Hero Background Elements */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-curve-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: radial-gradient(circle at 0% 50%, rgba(24, 94, 240, 0.08) 0%, transparent 70%);
}

.hero-dots {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.dot-1 { top: 35%; left: 8%; opacity: 0.6; }
.dot-2 { bottom: 25%; left: 42%; opacity: 0.8; }
.dot-3 { top: 28%; right: 48%; opacity: 0.5; }

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

/* Left Hero Copy */
.hero-badge {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-blue);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.btn-blue {
    background: var(--primary-blue);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 99px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(24, 94, 240, 0.35);
}

.btn-blue:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(24, 94, 240, 0.45);
}

.help-call {
    display: flex;
    align-items: center;
    gap: 14px;
}

.help-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.3rem;
    box-shadow: 0 6px 18px rgba(204, 255, 0, 0.4);
}

.help-text {
    display: flex;
    flex-direction: column;
}

.help-text span:first-child {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.help-text span:last-child {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
}

/* Right Hero Visual */
.hero-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    background: #ffffff;
    border: 6px solid #ffffff;
    width: 100%;
    max-width: 520px;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 34px;
}

/* Floating Award Badge Sticker */
.award-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 135px;
    height: 135px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 4px solid var(--primary-blue-light);
}

.badge-text-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateRing 20s linear infinite;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.badge-inner-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

/* =========================================
   Stats Section
   ========================================= */
.stats-banner {
    padding: 60px 0;
    background: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--bg-soft);
    border-radius: 32px;
    padding: 50px 40px;
    border: 1px solid var(--border-color);
}

.stat-box {
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* =========================================
   IT Services Section
   ========================================= */
.services-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.sub-pill {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 99px;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.sec-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 16px;
}

.sec-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* EkoByte Pastel Card Design */
.service-card {
    border-radius: 28px;
    padding: 46px 34px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
}

/* Soft Pastel Background Variants */
.service-card.pastel-pink { background: #fff1f3; }
.service-card.pastel-blue { background: #e8f8fc; }
.service-card.pastel-yellow { background: #fefce8; }
.service-card.pastel-green { background: #f0fdf4; }
.service-card.pastel-lavender { background: #f8f0fc; }
.service-card.pastel-cyan { background: #e0f7fa; }

/* Circular White Icon Box with Dashed Ring */
.service-icon-wrap {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin: 0 auto 26px;
    position: relative;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border: 1px dashed rgba(37, 99, 235, 0.35);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.08) rotate(5deg);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(24, 94, 240, 0.18);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 16px;
}

.service-text {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.68;
    margin-bottom: 32px;
    flex-grow: 1;
}

/* Centered Pill Read More Button */
.btn-pill-readmore {
    border: 1.5px solid #94a3b8;
    border-radius: 99px;
    padding: 10px 28px;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card:hover .btn-pill-readmore,
.btn-pill-readmore:hover {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(24, 94, 240, 0.3);
}

/* =========================================
   About / We're Leading The Power Of Technology
   ========================================= */
.about-section {
    padding: 110px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.about-subtitle-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.about-subtitle-badge::after {
    content: '';
    width: 36px;
    height: 2px;
    background: var(--primary-blue);
}

.about-title-large {
    font-family: var(--font-heading);
    font-size: 3.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.18;
    margin-bottom: 22px;
}

.about-desc-text {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 34px;
}

/* 2x2 Checkmark Grid */
.about-checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    margin-bottom: 10px;
}

.about-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
}

.about-check-icon {
    color: var(--primary-blue);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Right Side Arched Image with Dotted Pattern & Slanted Experience Badge */
.about-visual-arch-wrap {
    position: relative;
    padding-bottom: 30px;
    padding-left: 30px;
}

.about-visual-arch {
    border-top-left-radius: 260px;
    border-top-right-radius: 260px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
    aspect-ratio: 4 / 5;
    max-height: 520px;
}

.about-visual-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-dots-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(rgba(37, 99, 235, 0.45) 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 1;
}

.experience-badge-slanted {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #ccff00;
    padding: 32px 42px;
    border-radius: 12px;
    transform: skew(-8deg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.experience-badge-content {
    transform: skew(8deg);
}

.experience-badge-content h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 6px;
}

.experience-badge-content p {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

/* =========================================
   EkoByte Latest Completed Tech Portfolio Showcase
   ========================================= */
.portfolio-showcase-section {
    padding: 110px 0;
    background: #ffffff;
    text-align: center;
}

.portfolio-subtitle-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}

.portfolio-subtitle-badge::before,
.portfolio-subtitle-badge::after {
    content: '';
    width: 36px;
    height: 2px;
    background: var(--primary-blue);
}

.portfolio-title-large {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.18;
    margin-bottom: 35px;
}

.portfolio-filter-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.portfolio-filter-btn {
    background: #ffffff;
    color: #475569;
    padding: 11px 30px;
    border-radius: 99px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.portfolio-filter-btn.active {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.28);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.portfolio-card {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(37, 99, 235, 0.4) 50%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px;
    transition: opacity 0.4s ease;
}

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

.portfolio-category-pill {
    background: #ccff00;
    color: #0f172a;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 99px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.portfolio-project-title {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    text-align: left;
    line-height: 1.25;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-title-large {
        font-size: 2.6rem;
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   EkoByte Working Process / Our Working Process How We Do
   ========================================= */
.process-section {
    padding: 110px 0;
    background: #ffffff;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.process-card {
    border-radius: 28px;
    padding: 45px 38px;
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-card:hover {
    transform: translateY(-6px);
}

.process-card-dark {
    background: #111827;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(17, 24, 39, 0.15);
}

.process-card-blue {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.35);
}

.process-step-num {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 30px;
}

.process-stripes {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1) 2px,
        transparent 2px,
        transparent 8px
    );
}

.process-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.process-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
}

.process-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.68;
}

/* =========================================
   EkoByte Testimonial / Our Client's Review About Us
   ========================================= */
.testimonial-section {
    padding: 110px 0;
    background: #f8fafc;
}

.testimonial-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 55px;
    flex-wrap: wrap;
    gap: 24px;
}

.testimonial-nav-btns {
    display: flex;
    gap: 14px;
    align-items: center;
}

.testimonial-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: scale(1.06);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.09);
    border-color: #e2e8f0;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.72;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #f1f5f9;
    padding-top: 24px;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eff6ff;
}

.testimonial-author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.testimonial-author-info span {
    font-size: 0.88rem;
    color: var(--primary-blue);
    font-weight: 600;
}

@media (max-width: 900px) {
    .process-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-wrapper {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(24, 94, 240, 0.08);
}

.faq-q {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-main);
}

.faq-plus {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-plus {
    background: var(--primary-blue);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 28px;
}

.faq-item.active .faq-a {
    max-height: 240px;
    padding: 0 28px 24px;
}

.faq-a p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

/* =========================================
   EkoByte Latest Blog / Recent Articles And News From Our Blog
   ========================================= */
.blog-showcase-section {
    padding: 110px 0;
    background: #dbeafe; /* Soft pastel sky blue exactly like EkoByte screenshot */
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 55px;
    text-align: left;
}

.blog-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.blog-img-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 11;
    margin-bottom: 22px;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.08);
}

.blog-date-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-blue);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 14px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.15;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    z-index: 2;
}

.blog-date-badge span {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 2px;
}

.blog-meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.86rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 14px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta-icon {
    color: var(--primary-blue);
    font-size: 1rem;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-blue);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.96rem;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-read-more {
    color: var(--primary-blue);
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CTA Banner / EkoByte Newsletter Section
   ========================================= */
.newsletter-section {
    padding: 60px 0 100px;
    background: #ffffff;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;
    align-items: stretch;
}

.newsletter-photo-card {
    border-radius: 28px;
    overflow: hidden;
    min-height: 380px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.newsletter-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.newsletter-content-card {
    background: #2563eb;
    border-radius: 28px;
    padding: 55px 50px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.32);
    position: relative;
    overflow: hidden;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 34px;
    max-width: 480px;
}

.newsletter-form {
    display: flex;
    gap: 14px;
    max-width: 520px;
    align-items: center;
}

.newsletter-input {
    background: #ffffff;
    border-radius: 99px;
    padding: 18px 26px;
    font-size: 0.98rem;
    border: none;
    flex: 1;
    outline: none;
    color: #0f172a;
    font-family: var(--font-body);
}

.btn-newsletter-submit {
    background: #ccff00;
    color: #0f172a;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.98rem;
    border-radius: 99px;
    padding: 18px 36px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-newsletter-submit:hover {
    background: #ffffff;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .newsletter-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-title {
        font-size: 2.2rem;
    }
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: #0b1329;
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-about {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 22px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-container, .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle, .about-list {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        position: absolute !important;
        top: 10px !important;
        padding: 0 10px !important;
    }
    .navbar {
        padding: 10px 16px !important;
        gap: 10px !important;
        max-width: 100% !important;
        justify-content: space-between !important;
    }
    .logo {
        font-size: 1.3rem !important;
        gap: 8px !important;
        font-weight: 800 !important;
    }
    .logo-img, .logo-symbol {
        width: 36px !important;
        height: 36px !important;
        border-radius: 8px !important;
        object-fit: contain !important;
        background: #ffffff !important;
        padding: 2px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    }
    .btn-quote {
        padding: 8px 14px !important;
        font-size: 0.82rem !important;
    }
    .nav-links {
        display: none;
    }
    .services-grid, .stats-grid, .testimonial-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .stat-box {
        padding: 24px 16px !important;
    }
    .stat-num {
        font-size: 2.4rem !important;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero {
        border-bottom-left-radius: 60px;
        border-bottom-right-radius: 60px;
    }
}

/* =========================================
   EkoByte Individual Detail Page UI/UX (Services, Portfolio, Blogs)
   ========================================= */
.service-detail-hero, .portfolio-detail-hero, .blog-detail-hero {
    padding: 165px 0 100px;
    margin-top: -85px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #2563eb 100%);
    color: #ffffff;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-breadcrumb {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ccff00;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.service-detail-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
}

.service-detail-subtitle {
    font-size: 1.22rem;
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.service-detail-body {
    padding: 110px 0;
    background: #ffffff;
}

.service-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-main-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.25;
}

.service-main-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.78;
    margin-bottom: 28px;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin: 40px 0;
}

.service-feature-card {
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 24px;
    padding: 34px 28px;
    transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-feature-card:hover {
    background: #ffffff;
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.service-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #eff6ff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.service-feature-card:hover .service-feature-icon {
    background: var(--primary-blue);
    color: #ffffff;
    transform: scale(1.1) rotate(-6deg);
}

.service-feature-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.service-feature-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
}

.service-benefit-box {
    background: #111827;
    color: #ffffff;
    border-radius: 32px;
    padding: 48px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.service-benefit-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

.service-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.service-benefit-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ccff00;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-sidebar {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 38px;
    position: sticky;
    top: 110px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
}

.sidebar-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-nav-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    color: #334155;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-nav-list li a:hover,
.sidebar-nav-list li a.active {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
    transform: translateX(6px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
}

.sidebar-contact-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 34px;
    text-align: center;
    color: #ffffff;
}

.sidebar-contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.sidebar-contact-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .service-layout-grid {
        grid-template-columns: 1fr;
    }
    .service-detail-title {
        font-size: 2.8rem;
    }
    .service-feature-grid,
    .service-benefit-list {
        grid-template-columns: 1fr;
    }
}

