/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --dark: #0c111e; /* Darker background for more contrast */
    --dark-light: #181f33; /* Slightly darker */
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(24, 31, 51, 0.5); /* Semi-transparent background for glassmorphism */
    --glass-border: rgba(99, 102, 241, 0.3);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Added slight border-radius to images */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===========================
   Utility Classes
   =========================== */
.container {
    max-width: 1280px; /* Slightly wider container */
    margin: 0 auto;
    padding: 0 25px; /* Slightly more padding */
}

.section-padding {
    padding: 120px 0; /* Increased padding for better separation */
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-dark {
    background: var(--dark-light);
}

.bg-gradient {
    background: var(--gradient);
}

/* ===========================
   Buttons
   =========================== */
.btn-primary,
.btn-secondary,
.btn-white {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px; /* Added letter spacing */
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4); /* Stronger shadow */
}

.btn-primary:hover {
    transform: translateY(-3px); /* Stronger lift effect */
    box-shadow: 0 18px 45px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary);
    backdrop-filter: blur(5px); /* Added slight blur to secondary for a premium look */
}

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 18px 42px;
    font-size: 18px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===========================
   WhatsApp Float Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15); /* More pronounced hover */
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

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

/* ===========================
   Navigation (New Glassmorphism Style)
   =========================== */
.navbar {
    position: fixed;
    top: 20px; /* Lifted from the top edge */
    left: 50%;
    transform: translateX(-50%);
    width: 95%; /* Confined width */
    max-width: 1240px;
    
    /* Glassmorphism Effect */
    background: var(--glass-bg);
    backdrop-filter: blur(15px); /* Stronger blur */
    border: 1px solid var(--glass-border);
    border-radius: 20px; /* Rounded corners */
    
    z-index: 999;
    padding: 15px 30px; /* Adjusted padding */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* NEW: Logo Image Styling */
.logo {
    display: inline-block;
    padding: 0; /* Remove padding from the anchor link */
}

.navbar-logo {
    height: 50px; /* Set a consistent height for the logo in the navbar */
    width: auto;
}

.logo-text {
    color: var(--white);
}

.logo-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 5px 0; /* Added vertical padding for better hit area */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px; /* Slightly thicker underline */
    background: var(--gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--white);
}

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

.nav-cta {
    /* Kept the button styling from .btn-primary */
    padding: 10px 24px !important;
    font-size: 15px !important; /* Slightly larger CTA text */
    margin-left: 10px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 150px; /* Adjusted for floating navbar */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Enhanced background for depth */
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
        var(--dark); /* Base dark color */
    animation: gradientShift 20s ease infinite; /* Slower, smoother shift */
}

@keyframes gradientShift {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.05) translate(10px, 10px); }
    100% { transform: scale(1) translate(0, 0); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-title {
    font-size: 72px; /* Larger, more impactful title */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.hero-subtitle {
    font-size: 22px; /* Larger subtitle */
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px; /* Increased gap */
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px 25px;
    background: var(--dark-light);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 52px; /* Larger number */
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 5px;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
    opacity: 0.7;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 80px; /* Increased spacing */
}

.section-title {
    font-size: 52px; /* Larger title */
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================
   Services Grid
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-12px); /* Stronger lift effect */
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

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

.service-card.featured {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-icon {
    width: 70px; /* Slightly smaller icon container */
    height: 70px;
    background: var(--gradient);
    border-radius: 15px; /* Less rounded corner */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    color: white;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.service-features i {
    color: var(--primary);
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 14px;
}

/* ===========================
   Process Timeline
   =========================== */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-top: 20px;
}

/* Timeline Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: rgba(99, 102, 241, 0.2);
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 70px; /* Increased spacing */
    align-items: center;
    position: relative;
    z-index: 2;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--dark-light);
    border: 3px solid var(--primary); /* Highlighted border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.process-step:nth-child(odd) .step-content {
    text-align: right;
}

.process-step:nth-child(odd) .step-number {
    margin-left: -50px; /* Pull into the center line */
}

.process-step:nth-child(even) .step-number {
    margin-right: -50px; /* Pull into the center line */
}

.step-content {
    flex-grow: 1;
    background: var(--dark-light);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: var(--transition);
}

.step-content:hover {
    box-shadow: var(--shadow);
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===========================
   Tech Grid
   =========================== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: var(--dark-light);
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: var(--transition);
}

.tech-item:hover {
    border-color: var(--primary);
    transform: translateY(-8px); /* Stronger lift */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-item i {
    font-size: 52px; /* Larger icon */
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-item span {
    font-weight: 600;
    color: var(--white); /* White text for better impact */
    font-size: 15px;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    text-align: center;
}

.cta-content h2 {
    font-size: 52px; /* Larger CTA title */
    font-weight: 900;
    margin-bottom: 25px;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   Contact Form
   =========================== */
.contact-wrapper {
    max-width: 800px; /* Wider form container */
    margin: 0 auto;
}

.contact-form {
    background: var(--dark-light);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px; /* Increased gap */
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px; /* Larger padding */
    background: var(--dark);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
    background: var(--dark-light); /* Slight change on focus */
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 25px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-light);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

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

/* NEW: Footer Logo Image Styling */
.footer-logo-img {
    height: 50px; /* Larger logo height for the footer */
    width: auto;
    margin-bottom: 25px;
}

.footer-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px; /* Larger social icons */
    height: 45px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    font-size: 18px;
    color: var(--text-muted);
}

.social-links a:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-5px); /* Stronger lift effect */
    color: var(--white);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--white);
}

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

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 8px; /* More pronounced slide effect */
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--text-muted);
    font-size: 15px;
}

.footer-bottom a {
    color: var(--primary);
    font-weight: 600;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .navbar {
        width: 100%;
        top: 0;
        left: 0;
        transform: translateX(0);
        border-radius: 0;
        padding: 15px 20px;
        background: var(--dark-light); /* Less glass on mobile */
        border: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px; /* Adjusted to new navbar height */
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--dark-light); 
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 44px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-timeline::before {
        left: 25px; /* Move timeline line to the left */
        transform: translateX(0);
    }
    
    .process-step {
        flex-direction: row !important; /* Forces all steps to align left */
        text-align: left !important;
        padding-left: 50px; /* Space for the line */
        gap: 20px;
    }
    
    .process-step:nth-child(odd) .step-number,
    .process-step:nth-child(even) .step-number {
        margin-left: 0;
        margin-right: 0;
        position: absolute;
        left: 0;
        top: 0;
        transform: translateX(0);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 640px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

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

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Smooth Loading */
body {
    animation: fadeIn 0.6s ease;
}

/* New: Particles floating animation for better depth */
@keyframes float {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-50px) translateX(20px) scale(1.1); opacity: 0.8; }
    100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
}

/* ===========================
   Page Hero
   =========================== */
.page-hero {
    padding: 180px 0 100px; /* Increased padding for floating navbar */
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
    text-align: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 64px; /* Larger title */
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.page-subtitle {
    font-size: 22px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================
   Service Detail Sections
   =========================== */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px; /* Increased gap */
    align-items: center;
}

.service-detail-grid.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.service-detail-content h2 {
    font-size: 48px; /* Larger headline */
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.lead {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 26px;
    margin: 30px 0 20px;
    font-weight: 700;
    color: var(--white);
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--text-muted);
    font-weight: 500;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-list strong {
    color: var(--white);
}

.cta-inline {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Visual Cards */
.visual-card {
    background: var(--dark-light);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.visual-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}

.visual-card h4 {
    font-size: 26px;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
}

.result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.result-stat {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 10px;
    background: var(--dark);
    border: 1px solid var(--glass-border);
}

.result-number {
    font-size: 38px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
}

.result-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 5px;
    font-weight: 500;
}

.tech-list {
    list-style: none;
    text-align: left;
}

.tech-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.tech-list i {
    color: var(--primary);
    flex-shrink: 0;
}

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

.tool-badge {
    background: var(--dark);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
}

.stack-list {
    text-align: left;
}

.stack-item {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

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

.stack-label {
    font-weight: 600;
    color: var(--white);
}

.stack-value {
    color: var(--text-muted);
    text-align: right;
}

/* Responsive */
@media (max-width: 968px) {
    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-title {
        font-size: 48px;
    }
    
    .service-detail-content h2 {
        font-size: 36px;
    }
    
    .result-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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