/*
Theme Name: Dev Mizan
Theme URI: https://devmizan.com
Author: Dev Mizan
Author URI: https://devmizan.com
Description: A modern WordPress theme for Dev Mizan
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: devmizan
Tags: modern, responsive, custom
*/

/* Basic Reset and WordPress Styles */
* {
    box-sizing: border-box;
}

/* Smooth scrolling for native wheel scrolling */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    scroll-behavior: smooth;
}

/* Header Sticky Fix - Ensure header stays in place */
header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
}

/* WordPress Admin Bar Fix - Prevent header overlap */
body.admin-bar header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar header {
        top: 46px;
    }
}

/* Header spacing - ensure content doesn't overlap with fixed header */
/* For non-home pages, add spacing after header (header height 80px + 70px spacing = 150px) */
body:not(.home) main > section:first-child {
    padding-top: 150px !important; /* Header height (80px) + spacing (70px) */
}



@media screen and (max-width: 782px) {
    body.admin-bar:not(.home) main > section:first-child {
        padding-top: 196px !important; /* Header (80px) + mobile admin bar (46px) + spacing (70px) */
    }
}

/* Line Clamp Utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ensure Tailwind utilities work */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* Custom styles for WordPress elements */
.wp-caption,
.wp-caption-text,
.gallery-caption {
    margin: 0;
}

.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* Custom Logo Styling */
.custom-logo-link {
    display: inline-block;
}

.custom-logo-link img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

/* Stats Section Background Gradient */
.stats-bg-gradient {
    background-image: radial-gradient(circle at center, #3ead3c 0%, transparent 50%);
    background-size: 200% 200%;
    background-position: 0% 0%;
}

/* Stats Section Underline Initial State */
.stat-underline {
    transform: scaleX(0);
    transform-origin: left;
}

/* Contact Section Icons - Make stroke white on hover */
.group:hover .contact-icon {
    stroke: white !important;
}

/* Technology Stack Section Icons - Make stroke white on hover */
.group:hover .technology-icon {
    stroke: white !important;
}

/* Single Post Page Styles */
.single-post-content .prose {
    color: #1a1a1a;
}

.single-post-content .prose h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.single-post-content .prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.single-post-content .prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.single-post-content .prose a {
    color: #3ead3c;
    text-decoration: underline;
    transition: color 0.3s;
}

.single-post-content .prose a:hover {
    color: #2d8a2b;
}

.single-post-content .prose ul,
.single-post-content .prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.single-post-content .prose li {
    margin-bottom: 0.5rem;
}

.single-post-content .prose blockquote {
    border-left: 4px solid #3ead3c;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #475569;
}

.single-post-content .prose img {
    border-radius: 12px;
    margin: 2rem 0;
}

.single-post-content .prose code {
    background-color: #f1f5f9;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: #3ead3c;
}

.single-post-content .prose pre {
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 2rem 0;
}

.single-post-content .prose pre code {
    background-color: transparent;
    color: #fff;
    padding: 0;
}

/* Single Project Page Styles */
.project-content .prose {
    color: #1a1a1a;
}

.project-content .prose h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.project-content .prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.project-content .prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.project-content .prose a {
    color: #3ead3c;
    text-decoration: underline;
    transition: color 0.3s;
}

.project-content .prose a:hover {
    color: #2d8a2b;
}

.project-content .prose ul,
.project-content .prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.project-content .prose li {
    margin-bottom: 0.5rem;
}

.project-content .prose blockquote {
    border-left: 4px solid #3ead3c;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #475569;
}

.project-content .prose img {
    border-radius: 12px;
    margin: 2rem 0;
}

.project-content .prose code {
    background-color: #f1f5f9;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: #3ead3c;
}

.project-content .prose pre {
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 2rem 0;
}

.project-content .prose pre code {
    background-color: transparent;
    color: #fff;
    padding: 0;
}

/* Comments Section Styles */
.comments-area {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.comments-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.comment {
    margin-bottom: 2rem;
    padding: 0;
}

.comment-body {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8faf8;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.comment-body:hover {
    background: #e8f5e8;
    border-color: #3ead3c;
    box-shadow: 0 4px 6px rgba(62, 173, 60, 0.1);
}

.comment-author {
    flex-shrink: 0;
}

.comment-author .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comment-meta {
    flex: 1;
}

.comment-author-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.comment-author-name a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.comment-author-name a:hover {
    color: #3ead3c;
}

.comment-metadata {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.comment-metadata a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

.comment-metadata a:hover {
    color: #3ead3c;
}

.comment-content {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.comment-content p {
    margin-bottom: 1rem;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #3ead3c;
    color: white;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.comment-reply-link:hover {
    background: #2d8a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(62, 173, 60, 0.3);
}

.comment-respond {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.comment-reply-title small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: #64748b;
}

.comment-reply-title small a {
    color: #3ead3c;
    text-decoration: none;
    font-weight: 500;
}

.comment-reply-title small a:hover {
    text-decoration: underline;
}

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

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none;
    border-color: #3ead3c;
    box-shadow: 0 0 0 3px rgba(62, 173, 60, 0.1);
}

.comment-form-comment textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3ead3c;
    cursor: pointer;
}

.comment-form-cookies-consent label {
    font-size: 0.875rem;
    color: #64748b;
    cursor: pointer;
    margin: 0;
}

.form-submit {
    margin-top: 1rem;
}

.form-submit input[type="submit"] {
    background: #3ead3c;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit input[type="submit"]:hover {
    background: #2d8a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(62, 173, 60, 0.3);
}

.logged-in-as {
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: #f8faf8;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.logged-in-as a {
    color: #3ead3c;
    text-decoration: none;
    font-weight: 500;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

/* Nested Comments */
.children {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    padding-left: 2rem;
}

.children .comment-body {
    background: white;
    border: 1px solid #e2e8f0;
}

.children .comment-body:hover {
    background: #f8faf8;
    border-color: #3ead3c;
}

/* Required field indicator */
.required {
    color: #ef4444;
}

/* Comment navigation */
.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.comment-navigation a {
    color: #3ead3c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.comment-navigation a:hover {
    color: #2d8a2b;
    text-decoration: underline;
}

/* Navigation Menu Styles */
header nav ul.menu,
header nav ul.flex {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

header nav ul.menu li,
header nav ul.flex li {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul.menu li a,
header nav ul.flex li a {
    text-decoration: none;
    display: block;
}

/* Mobile Menu Styles */
#mobile-menu ul.menu,
#mobile-menu ul.flex {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
}

#mobile-menu ul.menu li,
#mobile-menu ul.flex li {
    width: 100%;
}

#mobile-menu ul.menu li a,
#mobile-menu ul.flex li a {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

#mobile-menu ul.menu li a:hover,
#mobile-menu ul.flex li a:hover {
    background-color: #f8faf8;
}

/* Sub-menu styles */
header nav ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 0.5rem;
}

header nav ul.menu li:hover > ul.sub-menu,
header nav ul.flex li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header nav ul.sub-menu li {
    width: 100%;
}

header nav ul.sub-menu li a {
    padding: 0.75rem 1.5rem;
    display: block;
    font-size: 0.875rem;
}

header nav ul.sub-menu li a:hover {
    background-color: #f8faf8;
    color: #3ead3c;
}

/* ============================================
   Dark Homepage Template Styles
   ============================================ */

/* Dark Theme Color Variables */
:root {
    --dark-bg-primary: #0a0a0a;
    --dark-bg-secondary: #1a1a1a;
    --dark-bg-tertiary: #0f1a0f;
    --dark-text-primary: #ffffff;
    --dark-text-secondary: #e2e8f0;
    --dark-text-muted: #94a3b8;
    --dark-accent: #3ead3c;
    --dark-accent-hover: #2d8a2b;
    --dark-border: rgba(62, 173, 60, 0.2);
    --dark-border-hover: rgba(62, 173, 60, 0.4);
}

/* Dark Homepage Base Styles */
.dark-homepage {
    background-color: var(--dark-bg-primary);
    color: var(--dark-text-primary);
    min-height: 100vh;
}

/* Dark Homepage Typography */
.dark-homepage h1,
.dark-homepage h2,
.dark-homepage h3,
.dark-homepage h4,
.dark-homepage h5,
.dark-homepage h6 {
    color: var(--dark-text-primary);
    font-weight: 700;
}

.dark-homepage p {
    color: var(--dark-text-secondary);
}

/* Dark Homepage Cards */
.dark-homepage .stat-card,
.dark-homepage .service-card,
.dark-homepage .tech-item,
.dark-homepage .portfolio-card,
.dark-homepage .pricing-card,
.dark-homepage .testimonial-card,
.dark-homepage .about-stat-card {
    background-color: var(--dark-bg-secondary);
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dark-homepage .stat-card:hover,
.dark-homepage .service-card:hover,
.dark-homepage .tech-item:hover,
.dark-homepage .portfolio-card:hover,
.dark-homepage .pricing-card:hover,
.dark-homepage .testimonial-card:hover,
.dark-homepage .about-stat-card:hover {
    border-color: var(--dark-border-hover);
    box-shadow: 0 8px 24px rgba(62, 173, 60, 0.2);
    transform: translateY(-4px);
}

/* Professional Gradients */
.dark-homepage .bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--dark-bg-primary), var(--dark-bg-tertiary), var(--dark-bg-primary));
}

.dark-homepage .bg-gradient-to-r {
    background-image: linear-gradient(to right, transparent, rgba(62, 173, 60, 0.1), transparent);
}

/* Dark Homepage Buttons */
.dark-homepage .hero-button-primary,
.dark-homepage .hero-button-secondary,
.dark-homepage .contact-submit-btn {
    transition: all 0.3s ease;
    cursor: pointer;
}

.dark-homepage .hero-button-primary:hover,
.dark-homepage .contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 173, 60, 0.3);
}

.dark-homepage .hero-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 173, 60, 0.2);
}

/* Dark Homepage Form Elements */
.dark-homepage input[type="text"],
.dark-homepage input[type="email"],
.dark-homepage textarea {
    background-color: var(--dark-bg-secondary);
    border: 1px solid var(--dark-border);
    color: var(--dark-text-primary);
    transition: all 0.3s ease;
}

.dark-homepage input[type="text"]:focus,
.dark-homepage input[type="email"]:focus,
.dark-homepage textarea:focus {
    outline: none;
    border-color: var(--dark-accent);
    box-shadow: 0 0 0 3px rgba(62, 173, 60, 0.1);
}

.dark-homepage input[type="text"]::placeholder,
.dark-homepage input[type="email"]::placeholder,
.dark-homepage textarea::placeholder {
    color: var(--dark-text-muted);
}

/* Dark Homepage Links */
.dark-homepage a {
    color: var(--dark-accent);
    transition: color 0.3s ease;
}

.dark-homepage a:hover {
    color: var(--dark-accent-hover);
}

/* Floating Icons Animation */
.dark-homepage .floating-icon {
    animation: float 6s ease-in-out infinite;
}

.dark-homepage .floating-icon:nth-child(2) {
    animation-delay: -2s;
}

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

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

/* Text Reveal Animation Support */
.dark-homepage .text-reveal-word {
    display: inline-block;
    overflow: hidden;
}

/* Portfolio Image Hover Effect */
.dark-homepage .portfolio-image-container {
    overflow: hidden;
    border-radius: 0.75rem 0.75rem 0 0;
}

.dark-homepage .portfolio-image-container img {
    transition: transform 0.5s ease;
}

.dark-homepage .portfolio-card:hover .portfolio-image-container img {
    transform: scale(1.1);
}

/* Pricing Toggle Button */
.dark-homepage #pricing-toggle {
    position: relative;
    cursor: pointer;
}

.dark-homepage #pricing-toggle span {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 23px;
    height: 23px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* Testimonials Carousel */
.dark-homepage .testimonials-carousel {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dark-homepage .testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.dark-homepage #testimonials-track {
    display: flex;
    gap: 2rem;
    will-change: transform;
}

/* Dynamic Scrolling Shadows */
.dark-homepage .stat-card,
.dark-homepage .service-card,
.dark-homepage .portfolio-card,
.dark-homepage .pricing-card,
.dark-homepage .testimonial-card,
.dark-homepage .about-stat-card {
    transition: box-shadow 0.5s ease;
}

/* Sticky Header for Dark Homepage */
.dark-homepage header {
    background-color: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease;
}

.dark-homepage header nav a,
.dark-homepage header nav button {
    color: var(--dark-text-primary) !important;
}

.dark-homepage header nav a:hover {
    color: var(--dark-accent) !important;
}

/* Section Spacing */
.dark-homepage section {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dark-homepage .hero-headline {
        font-size: 2.5rem;
    }
    
    .dark-homepage .floating-icon {
        display: none;
    }
    
    .dark-homepage #testimonials-track {
        gap: 1rem;
    }
}

/* Loading State */
.dark-homepage.loading {
    opacity: 0;
}

.dark-homepage.loaded {
    opacity: 1;
    transition: opacity 0.8s ease;
}

/* Accessibility Improvements */
.dark-homepage *:focus-visible {
    outline: 2px solid var(--dark-accent);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .dark-homepage {
        background: white;
        color: black;
    }
    
    .dark-homepage .floating-icon,
    .dark-homepage .testimonials-carousel {
        display: none;
    }
}

/* ============================================
   DevMizan Hero Section Styles
   ============================================ */

/* Main Section Container */
.devmizan-hero-section {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

#devmizan-hero {
    position: relative;
    min-height: 100dvh;
    min-height: 100vh; /* Fallback for older browsers */
    color: #ffffff; /* White text for contrast on gradient background */
}

/* Animated Gradient Background - Removed, using inline styles instead */
.devmizan-hero-gradient {
    display: none; /* Disabled - using inline styles on section */
}

/* Icon List Styles */
.devmizan-icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.devmizan-icon-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: inherit;
}

.devmizan-icon-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 18px;
    color: inherit;
}

.devmizan-icon-list-text {
    display: inline-block;
}

/* Main Heading */
.devmizan-main-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-align: center;
    color: inherit;
    margin: 0;
}

/* Animated Text Container - Typing Effect */
.devmizan-animated-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-align: center;
    color: inherit;
    margin: 0;
    min-height: 1.2em;
    position: relative;
}

.ha-animated-text-wrap {
    display: inline-block;
    position: relative;
}

.typing-text {
    display: inline-block;
    position: relative;
    color: #39FF14;
}

/* Typing Cursor */
.typing-cursor {
    display: inline-block;
    margin-left: 2px;
    color: #39FF14;
    font-weight: 300;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Subheading */
.devmizan-subheading {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    color: inherit;
    margin: 0;
}

/* Description Text */
.devmizan-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    margin: 0;
}

/* Buttons */
.devmizan-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.devmizan-button-portfolio {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.devmizan-button-portfolio:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.devmizan-button-primary {
    background-color: #39FF14; /* Primary color - Bright Green */
    color: #0A1214; /* Dark text for contrast */
}

.devmizan-button-primary:hover {
    background-color: #2ECC11; /* Darker green on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(57, 255, 20, 0.4);
}

/* Floating Icons */
.devmizan-floating-icon {
    z-index: 1;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.25);
    pointer-events: none;
    position: absolute;
    animation: floatIcon 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.devmizan-floating-icon:hover {
    color: rgba(57, 255, 20, 0.6);
    transform: scale(1.2);
}

.devmizan-floating-icon i {
    display: block;
}

/* Individual floating icon animations with different delays and speeds */
.floating-icon-1 {
    animation: floatIcon 8s ease-in-out infinite;
    animation-delay: 0s;
}

.floating-icon-2 {
    animation: floatIcon 7s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-icon-3 {
    animation: floatIcon 9s ease-in-out infinite;
    animation-delay: 0.5s;
}

.floating-icon-4 {
    animation: floatIcon 6.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.floating-icon-5 {
    animation: floatIcon 8.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.floating-icon-6 {
    animation: floatIcon 7.5s ease-in-out infinite;
    animation-delay: 1.2s;
}

.floating-icon-7 {
    animation: floatIcon 9.5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.floating-icon-8 {
    animation: floatIcon 6s ease-in-out infinite;
    animation-delay: 1.8s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.25;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px) translateX(-5px) rotate(-5deg);
        opacity: 0.35;
    }
    75% {
        transform: translateY(-15px) translateX(15px) rotate(3deg);
        opacity: 0.4;
    }
}

/* Service Icons Section */
.devmizan-service-icons {
    margin-top: 2rem;
    padding: 1.5rem 0;
}

.devmizan-service-icon-item {
    transition: all 0.3s ease;
}

.devmizan-service-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.devmizan-service-icon-wrapper i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.devmizan-service-icon-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

/* Hover Effects */
.devmizan-service-icon-item:hover .devmizan-service-icon-wrapper {
    background: rgba(57, 255, 20, 0.2);
    border-color: #39FF14;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(57, 255, 20, 0.3);
}

.devmizan-service-icon-item:hover .devmizan-service-icon-wrapper i {
    color: #39FF14;
    transform: scale(1.1);
}

.devmizan-service-icon-item:hover .devmizan-service-icon-label {
    color: #39FF14;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .devmizan-icon-list {
        gap: 21px;
        justify-content: center;
    }
    
    .devmizan-icon-list-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .devmizan-icon-list-icon {
        width: 13px;
        height: 13px;
        font-size: 13px;
    }
    
    .devmizan-icon-list-text {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .devmizan-main-heading {
        font-size: 45px;
        line-height: 1.3;
    }
    
    .devmizan-animated-text {
        font-size: 1em;
        line-height: 1.3;
    }
    
    .devmizan-subheading {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .devmizan-description {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .devmizan-floating-icon {
        display: none;
    }
    
    .devmizan-button {
        width: 100%;
        max-width: 280px;
    }
    
    .devmizan-service-icons {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .devmizan-service-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .devmizan-service-icon-wrapper i {
        font-size: 20px;
    }
    
    .devmizan-service-icon-label {
        font-size: 11px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .devmizan-main-heading {
        font-size: 56px;
        line-height: 1.2;
    }
    
    .devmizan-animated-text {
        font-size: 40px;
    }
}

/* Custom CSS from Elementor JSON */
.hero-ani-service {
    width: 100% !important;
}

/* ========================================
   DevMizan Horizontal Scroll Section Styles
   ======================================== */

.devmizan-horizontal-scroll-section {
    position: relative;
    width: 100%;
    background: linear-gradient(157deg, #072502 0%, #0A1214 100%);
    overflow: hidden;
    padding: 50px 0 0;
}

/* Section Header */
.devmizan-scroll-header {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 0 40px;
    margin-bottom: 30px;
}

.devmizan-scroll-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.devmizan-scroll-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.devmizan-scroll-container-parent {
    position: relative;
    width: 100%;
    min-height: 2000px;
    overflow: hidden;
}

.devmizan-scroll-sticky {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    will-change: transform;
}

.devmizan-scroll-track {
    display: flex;
    flex-direction: row;
    width: fit-content;
    height: auto;
    gap: 40px;
    padding: 0 5vw;
    will-change: transform;
    align-items: center;
}

.devmizan-scroll-panel {
    position: relative;
    width: 63vw;
    max-width: 840px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Project Card */
.devmizan-panel-card {
    width: 100%;
    background: #0F172A;
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.devmizan-panel-card:hover {
    box-shadow: 0 4px 6px rgba(57, 255, 20, 0.2);
    border-color: rgba(57, 255, 20, 0.4);
}

.devmizan-card-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #0F172A;
}

.devmizan-card-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.devmizan-card-footer {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #0F172A;
}

.devmizan-card-label {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.devmizan-card-link {
    font-size: 16px;
    font-weight: 500;
    color: #39FF14;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.devmizan-card-link:hover {
    color: #2ECC11;
}

/* Responsive Styles for Horizontal Scroll */
@media (max-width: 1024px) {
    .devmizan-scroll-container-parent {
        min-height: 1800px;
    }
    
    .devmizan-scroll-heading {
        font-size: 40px;
    }
    
    .devmizan-scroll-description {
        font-size: 16px;
    }
    
    .devmizan-scroll-track {
        gap: 32px;
        padding: 0 4vw;
    }
    
    .devmizan-scroll-panel {
        width: 59.5vw;
        max-width: 630px;
    }
}

@media (max-width: 768px) {
    .devmizan-horizontal-scroll-section {
        padding: 60px 0 0;
    }
    
    .devmizan-scroll-header {
        padding: 0 0 40px;
        margin-bottom: 30px;
    }
    
    .devmizan-scroll-heading {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .devmizan-scroll-description {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .devmizan-scroll-container-parent {
        min-height: 1500px;
    }
    
    .devmizan-scroll-track {
        gap: 24px;
        padding: 0 3vw;
    }
    
    .devmizan-scroll-panel {
        width: 56vw;
        max-width: 420px;
    }
    
    .devmizan-card-footer {
        padding: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Portfolio Card Styling */
.portfolio-card-featured {
    transition: all 0.3s ease;
}

.portfolio-card-featured:hover {
    transform: translateY(-4px);
}

/* Ensure clickable cards have proper cursor and hover states */
a .devmizan-panel-card,
a .portfolio-card-featured,
a .project-card {
    text-decoration: none;
}

a:hover .devmizan-panel-card,
a:hover .portfolio-card-featured,
a:hover .project-card {
    text-decoration: none;
}
    
    .devmizan-card-label {
        font-size: 14px;
    }
    
    .devmizan-card-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .devmizan-horizontal-scroll-section {
        padding: 40px 0 0;
    }
    
    .devmizan-scroll-heading {
        font-size: 28px;
    }
    
    .devmizan-scroll-description {
        font-size: 14px;
    }
    
    .devmizan-scroll-container-parent {
        min-height: 1200px;
    }
    
    .devmizan-scroll-track {
        gap: 20px;
        padding: 0 2vw;
    }
    
    .devmizan-scroll-panel {
        width: 52.5vw;
    }
    
    .devmizan-panel-card {
        border-radius: 8px;
    }
}

/* ========================================
   DevMizan About Section Styles
   ======================================== */

.devmizan-about-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 60px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Dark Green-Black Gradient Background - Removed, using inline styles instead */
.devmizan-about-gradient {
    display: none; /* Disabled - using inline styles on section */
}

/* Services Section */
.devmizan-services-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Services Section Gradient Background - Removed, using inline styles instead */
.devmizan-services-gradient {
    display: none; /* Disabled - using inline styles on section */
}

/* Particle Effects for Pricing Section */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #39FF14;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 10px #39FF14, 0 0 20px #39FF14;
}

.particle-1 { animation: float1 6s ease-in-out infinite; }
.particle-2 { animation: float2 8s ease-in-out infinite; }
.particle-3 { animation: float3 7s ease-in-out infinite; }
.particle-4 { animation: float4 9s ease-in-out infinite; }
.particle-5 { animation: float5 6.5s ease-in-out infinite; }

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(50px, -50px) scale(1.5); opacity: 0.6; }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    50% { transform: translate(-40px, 60px) scale(1.3); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(60px, 40px) scale(1.4); opacity: 0.7; }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.25; }
    50% { transform: translate(-50px, -60px) scale(1.6); opacity: 0.55; }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
    50% { transform: translate(45px, 55px) scale(1.2); opacity: 0.65; }
}

/* Main Content Container */
.devmizan-about-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* About Our Expertise Banner */
.devmizan-about-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin: 0 auto 32px;
    font-family: 'Inter', sans-serif;
    justify-content: center;
}

.devmizan-about-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.devmizan-about-banner-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

/* Heading */
.devmizan-about-heading {
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-align: center;
}

.devmizan-about-heading span {
    color: #fff;
}

/* Description */
.devmizan-about-description {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.9);
}

/* Two Column Layout */
.devmizan-about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

/* Left Column - DM Logo */
.devmizan-about-left-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* DM Container */
.devmizan-about-dm-container {
    position: relative;
    width: 300px;
    height: 300px;
    background: #0F172A;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Geometric Lines */
.devmizan-about-dm-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.devmizan-about-dm-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.devmizan-about-dm-line.line-1 {
    width: 2px;
    height: 80%;
    top: 10%;
    left: 20%;
    transform: rotate(45deg);
}

.devmizan-about-dm-line.line-2 {
    width: 2px;
    height: 80%;
    top: 10%;
    right: 20%;
    transform: rotate(-45deg);
}

.devmizan-about-dm-line.line-3 {
    width: 80%;
    height: 2px;
    left: 10%;
    top: 30%;
    transform: rotate(45deg);
}

.devmizan-about-dm-line.line-4 {
    width: 80%;
    height: 2px;
    left: 10%;
    bottom: 30%;
    transform: rotate(-45deg);
}

/* DM Text */
.devmizan-about-dm-text {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    font-family: 'Inter', sans-serif;
    letter-spacing: 8px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.devmizan-dm-logo {
    width: auto;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Badge Icons */
.devmizan-about-badge-icon {
    position: absolute;
    z-index: 3;
}

.devmizan-about-badge-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #39FF14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(57, 255, 20, 0.1);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.devmizan-about-badge-icon.badge-top-left {
    top: 0;
    left: 0;
}

.devmizan-about-badge-icon.badge-top-right {
    top: 0;
    right: 0;
}

.devmizan-about-badge-icon.badge-bottom-left {
    bottom: 0;
    left: 0;
}

.devmizan-about-badge-icon.badge-bottom-right {
    bottom: 0;
    right: 0;
}

/* Right Column - My Expertise */
.devmizan-about-right-column {
    display: flex;
    flex-direction: column;
}

/* My Expertise Header */
.devmizan-about-expertise-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.devmizan-about-expertise-icon {
    width: 40px;
    height: 40px;
    background: #39FF14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.devmizan-about-expertise-title {
    font-size: 24px;
    font-weight: 600;
    color: #39FF14;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Expertise Description */
.devmizan-about-expertise-description {
    font-size: 16px;
    line-height: 1.6;
    color: #F8FAFC;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

/* Icon Boxes Grid */
.devmizan-about-icon-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.devmizan-about-icon-box {
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.devmizan-about-icon-box:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.devmizan-about-icon-box-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.devmizan-about-icon-box-icon.icon-yellow {
    background: #F59E0B;
}

.devmizan-about-icon-box-icon.icon-blue {
    background: #3B82F6;
}

.devmizan-about-icon-box-icon.icon-indigo {
    background: #6366F1;
}

.devmizan-about-icon-box-icon.icon-green {
    background: #10B981;
}

.devmizan-about-icon-box-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.devmizan-about-icon-box-description {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Responsive Styles for About Section */
@media (max-width: 1024px) {
    .devmizan-about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .devmizan-about-left-column {
        min-height: 300px;
    }
    
    .devmizan-about-dm-container {
        width: 250px;
        height: 250px;
    }
    
    .devmizan-about-dm-text {
        font-size: 56px;
    }
    
    .devmizan-dm-logo {
        height: 90px;
    }
    
    .devmizan-about-badge-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .devmizan-about-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .devmizan-about-heading {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .devmizan-about-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 32px;
    }
    
    .devmizan-about-content-grid {
        gap: 32px;
        margin-top: 40px;
    }
    
    .devmizan-about-left-column {
        min-height: 250px;
    }
    
    .devmizan-about-dm-container {
        width: 200px;
        height: 200px;
    }
    
    .devmizan-about-dm-text {
        font-size: 48px;
        letter-spacing: 4px;
    }
    
    .devmizan-dm-logo {
        height: 70px;
    }
    
    .devmizan-about-badge-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .devmizan-about-expertise-title {
        font-size: 20px;
    }
    
    .devmizan-about-expertise-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .devmizan-about-icon-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .devmizan-about-icon-box {
        padding: 20px;
    }
    
    .devmizan-about-icon-box-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .devmizan-about-icon-box-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .devmizan-about-icon-box-description {
        font-size: 13px;
    }
    
    .devmizan-about-banner {
        padding: 10px 20px;
        margin-bottom: 24px;
    }
    
    .devmizan-about-banner-text {
        font-size: 14px;
    }
    
    .devmizan-about-banner-icon {
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .devmizan-about-section {
        padding: 80px 0;
    }
    
    .devmizan-about-heading {
        font-size: 48px;
    }
    
    .devmizan-about-icon-boxes {
        gap: 20px;
    }
}

/* Testimonials Marquee Animation */
.testimonials-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    width: fit-content;
    animation: marquee-scroll 60s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments for testimonials */
.testimonial-card {
    width: calc((100vw - 2rem - 3rem) / 3.5); /* Mobile: account for padding and gaps */
}

@media (min-width: 768px) {
    .testimonial-card {
        width: calc((100vw - 4.5rem) / 3.5); /* Desktop: 3 gaps of 1.5rem */
    }
}

@media (max-width: 768px) {
    .testimonials-track {
        animation-duration: 40s;
    }
}

/* Let's Connect Section - Contact Form Styling */
.contact-form-wrapper {
    font-family: 'Inter', sans-serif;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="url"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper input[type="number"],
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    background-color: #0f1b24;
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 6px;
    color: #ffffff;
    padding: 12px 16px;
    width: 100%;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="url"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper input[type="number"]:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: #39FF14;
    box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.1);
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form-wrapper label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.contact-form-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2339FF14'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

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

.contact-form-wrapper input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    accent-color: #39FF14;
}

.contact-form-wrapper input[type="submit"],
.contact-form-wrapper button[type="submit"] {
    background-color: #39FF14;
    color: #0F172A;
    border: none;
    border-radius: 6px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-form-wrapper input[type="submit"]:hover,
.contact-form-wrapper button[type="submit"]:hover {
    background-color: #2ECC11;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(57, 255, 20, 0.3);
}

.contact-form-wrapper a {
    color: #39FF14;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-form-wrapper a:hover {
    color: #2ECC11;
    text-decoration: underline;
}

/* Header Navigation Menu Styling */
header nav ul li a,
header nav .menu li a,
header nav .flex li a {
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

header nav ul li a:hover,
header nav .menu li a:hover,
header nav .flex li a:hover {
    color: #39FF14 !important;
}

header nav ul li.current-menu-item > a,
header nav ul li.current_page_item > a,
header nav .menu li.current-menu-item > a,
header nav .menu li.current_page_item > a {
    color: #39FF14 !important;
}

/* Mobile Menu Styling */
#mobile-menu ul li a,
#mobile-menu .menu li a,
#mobile-menu .flex li a {
    color: #ffffff !important;
    padding: 12px 0;
    display: block;
    transition: color 0.3s ease;
}

#mobile-menu ul li a:hover,
#mobile-menu .menu li a:hover,
#mobile-menu .flex li a:hover {
    color: #39FF14 !important;
}

/* Single Post Content Styling */
.single-post-content .prose {
    color: #CBD5E1;
}

.single-post-content .prose h2 {
    color: #FFFFFF;
    font-size: 1.875rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.single-post-content .prose h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.single-post-content .prose h4 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.single-post-content .prose p {
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.single-post-content .prose a {
    color: #39FF14;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.single-post-content .prose a:hover {
    color: #2ECC11;
}

.single-post-content .prose ul,
.single-post-content .prose ol {
    color: #CBD5E1;
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.single-post-content .prose li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.single-post-content .prose strong {
    color: #FFFFFF;
    font-weight: 600;
}

.single-post-content .prose em {
    color: #CBD5E1;
    font-style: italic;
}

.single-post-content .prose blockquote {
    border-left: 4px solid #39FF14;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: #E2E8F0;
    font-style: italic;
}

.single-post-content .prose code {
    background-color: #0F172A;
    color: #39FF14;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.single-post-content .prose pre {
    background-color: #0F172A;
    color: #CBD5E1;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    border: 1px solid #39FF14/20;
}

.single-post-content .prose img {
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

/* Pricing Shortcode Wrapper */
.pricing-shortcode-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Ensure shortcode pricing tables match dark theme */
.pricing-shortcode-wrapper * {
    color: inherit;
}

.pricing-shortcode-wrapper h1,
.pricing-shortcode-wrapper h2,
.pricing-shortcode-wrapper h3,
.pricing-shortcode-wrapper h4 {
    color: #fff;
}

.pricing-shortcode-wrapper p,
.pricing-shortcode-wrapper li {
    color: #94A3B8;
}
