/* ============================================
   MODERN WEB TOOLS PLATFORM - REDESIGN
   Brand Colors: #F43E49 (Primary), #633FFF (Secondary)
   Style: Modern SaaS, Clean, High-Converting
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Mooli:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --primary-color: #0B2A4A;
    --secondary-color: #1F4E8C;
    --accent-color: #FFFFFF;
    --glow-color: #2EA3F2;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0B2A4A 0%, #1F4E8C 100%);
    --gradient-secondary: linear-gradient(135deg, #1F4E8C 0%, #0B2A4A 100%);
    --gradient-light: linear-gradient(135deg, rgba(11, 42, 74, 0.05) 0%, rgba(31, 78, 140, 0.05) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(11, 42, 74, 0.9) 0%, rgba(31, 78, 140, 0.9) 100%);
    
    /* Neutral Colors */
    --text-dark: #1a1a2e;
    --text-gray: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(244, 62, 73, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Mooli', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container width control */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Mooli', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-gray);
    font-size: 1.0625rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* ============================================
   HEADER - STICKY NAVIGATION
   ============================================ */

.header-area {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.header-area.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 0.75rem 0;
}

/* Header right-side action buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
}

.header-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: var(--text-dark);
    font-size: 16px;
    transition: var(--transition-base);
    text-decoration: none;
}

.header-cart-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--gradient-light);
}

.header-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header-account-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    max-width: 140px;
}

.header-account-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--gradient-light);
}

.header-account-btn .account-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 80px;
    display: inline-block;
}

.header-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: #25D366;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    border: none;
}

.header-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.35);
    color: #fff !important;
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--gradient-primary);
    transition: transform var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: var(--gradient-light);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: var(--gradient-light);
}

/* Dropdown Menu */
.dropdown-menu {
    background: var(--bg-white) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-lg) !important;
    padding: var(--spacing-sm) !important;
    margin-top: 0 !important;
    animation: slideDown 0.3s ease;
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    z-index: 1000;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Invisible bridge to prevent gap hover issues */
.navbar-nav .dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.5rem;
    z-index: 999;
}

/* Show dropdown on hover - Override Bootstrap */
.navbar-nav .dropdown:hover .dropdown-menu,
.navbar-nav .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Ensure parent dropdown stays active when hovering submenu */
.navbar-nav .dropdown:hover > .dropdown-toggle {
    color: var(--primary-color);
}

/* Ensure dropdown doesn't interfere with other elements */
.navbar-nav .dropdown {
    position: relative;
}

/* Dropdown icon rotation on mobile */
.dropdown-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Mobile dropdown styling */
@media (max-width: 991.98px) {
    .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(0, 0, 0, 0.05) !important;
        border-radius: 0 !important;
        padding: 0.5rem 0 !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        top: auto !important;
        left: auto !important;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
    
    .dropdown-menu .dropdown-item {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        background: transparent !important;
        color: var(--text-dark) !important;
    }
    
    .dropdown-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:focus {
        background: var(--gradient-light) !important;
        color: var(--primary-color) !important;
    }
    
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: none !important;
    }
    
    .dropdown-icon {
        font-size: 0.75rem;
        transition: transform 0.3s ease;
    }
}

/* Portfolio Gallery Styles */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-item img {
    transition: var(--transition-base);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.portfolio-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Override Bootstrap dropdown defaults to ensure consistency */
.navbar-nav .dropdown-menu {
    background-color: var(--bg-white) !important;
}

.navbar-nav .dropdown-menu .dropdown-item {
    background-color: transparent !important;
    color: var(--text-dark) !important;
}

.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus,
.navbar-nav .dropdown-menu .dropdown-item.active {
    background-color: var(--gradient-light) !important;
    color: var(--primary-color) !important;
}

/* Ensure no conflicting Bootstrap styles */
.dropdown-menu > li > a {
    background-color: transparent !important;
    color: var(--text-dark) !important;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    background-color: var(--gradient-light) !important;
    color: var(--primary-color) !important;
}

/* Debug: Change background color on hover to test if hover is working */
.navbar-nav .dropdown:hover > .dropdown-toggle {
    background-color: rgba(0, 123, 255, 0.1) !important;
}

/* Mobile responsive - show on click for mobile */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
    
    .navbar-nav .dropdown-menu.show {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: var(--text-dark) !important;
    background: transparent !important;
    padding: 0.75rem 1rem !important;
    border-radius: var(--radius-sm) !important;
    transition: var(--transition-base) !important;
    font-size: 0.9375rem !important;
    border: none !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
    clear: both !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    white-space: nowrap !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--gradient-light) !important;
    color: var(--primary-color) !important;
    transform: translateX(5px) !important;
    text-decoration: none !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background: var(--gradient-light) !important;
    color: var(--primary-color) !important;
}

.dropdown-item i {
    font-size: 1.125rem;
    width: 24px;
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(244, 62, 73, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 62, 73, 0.4);
    color: var(--accent-color);
}

.btn-primary-custom:hover::before {
    opacity: 1;
}

.btn-primary-custom:active {
    transform: translateY(0);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary-custom:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 62, 73, 0.3);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: 4rem 0 5rem;
    margin: -30px 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-section .row {
    align-items: center;
    justify-content: center;
}

.hero-section .col-lg-6 {
    max-width: 100%;
    flex: 0 0 auto;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(46, 163, 242, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80"><path fill="%23ffffff" d="M0,40 Q360,0 720,40 T1440,40 L1440,80 L0,80 Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
}

.hero-title {
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons .btn-secondary-custom {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.hero-buttons .btn-secondary-custom:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badges */
.badge {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge i {
    font-size: 1rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section-padding {
    padding: 5rem 0;
}

.section-padding .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bg-light {
    background: var(--bg-light);
}

/* ============================================
   SERVICE CARDS - GLASSMORPHISM
   ============================================ */

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-slow);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -100%;
    right: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 62, 73, 0.03) 0%, transparent 70%);
    transition: var(--transition-slow);
    pointer-events: none;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    top: -50%;
    right: -50%;
}

.service-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color var(--transition-base);
}

.service-card:hover .service-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ============================================
   PRICING CARDS
   ============================================ */

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    text-align: center;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.pricing-card.featured::before {
    transform: scaleX(1);
}

.pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.05);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.pricing-price small {
    font-size: 1.25rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-base);
    font-size: 0.9375rem;
}

.pricing-features li:hover {
    padding-left: 1rem;
    background: var(--gradient-light);
    border-radius: var(--radius-sm);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 1.125rem;
}

/* ============================================
   TOOL CARDS - SPECIAL DESIGN
   ============================================ */

.tool-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.tool-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Tool Card Specific Fixes */
.tool-card {
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

.tool-card .tool-input-group {
    position: relative;
    z-index: 10;
}

.tool-card .form-control {
    position: relative;
    z-index: 11;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    pointer-events: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    cursor: text !important;
}

.tool-card .form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(11, 42, 74, 0.1) !important;
    outline: none !important;
    z-index: 12;
}

.tool-input-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.tool-input-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.tool-input-group input {
    pointer-events: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    position: relative;
    z-index: 3;
}

.tool-result {
    background: var(--gradient-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(244, 62, 73, 0.1);
}

/* ============================================
   FORMS
   ============================================ */

.form-control {
    border-radius: var(--radius-md);
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
    font-size: 1rem;
    background: var(--bg-white);
    pointer-events: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    cursor: text;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(244, 62, 73, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-light);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-area {
    background: var(--text-dark);
    color: var(--accent-color);
    padding: 4rem 0 1.5rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.footer-text {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #FFFFFF;
    transition: var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: #FFFFFF;
    transform: none;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: #FFFFFF;
    font-size: 1.125rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: var(--transition-base);
    font-size: 1.125rem;
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF !important;
}

.footer-bottom p {
    color: #FFFFFF !important;
    margin-bottom: 0;
}

/* ============================================
   ILLUSTRATIONS
   ============================================ */

.illustration-wrapper {
    position: relative;
    padding: 2rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-wrapper::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 62, 73, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.illustration-image {
    max-width: 140%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    animation: floatImage 6s ease-in-out infinite;
    transform: scale(1.2);
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .section-padding {
        padding: 4rem 0;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 4rem 0 6rem;
    }
    
    .section-padding {
        padding: 3.5rem 0;
    }
    
    .service-card,
    .pricing-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero-section {
        padding: 3rem 0 5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-secondary-custom {
        width: 100%;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .illustration-wrapper {
        min-height: 300px;
        margin-top: 2rem;
    }
    
    .navbar-collapse {
        background: var(--bg-white);
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2.5rem 0 4rem;
    }
    
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Smooth Scroll */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus Visible */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--accent-color);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--accent-color);
}

/* ============================================
   MODERN SAAS HERO SECTION STYLES
   ============================================ */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    background: rgba(46, 163, 242, 0.2);
    color: #2EA3F2;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(46, 163, 242, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
}

.text-glow {
    background: linear-gradient(135deg, #2EA3F2 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(46, 163, 242, 0.5));
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    color: #FFFFFF;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFF;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(46, 163, 242, 0.2);
    border: 1px solid rgba(46, 163, 242, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2EA3F2;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #2EA3F2 0%, #1F4E8C 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 163, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(46, 163, 242, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #2EA3F2;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Dashboard Illustration Styling */
.illustration-wrapper {
    position: relative;
    padding: 2rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.illustration-wrapper::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 163, 242, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: float-glow 6s ease-in-out infinite;
}

@keyframes float-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05) rotate(2deg);
    }
}

.illustration-image {
    max-width: 140%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: floatImage 6s ease-in-out infinite;
    transform: scale(1.2);
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }
}
/* Service Card Content Alignment */
.service-card .service-description {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-card .btn-primary-custom,
.service-card .btn-secondary-custom {
    margin-top: auto;
    align-self: center;
    text-align: center;
}
/* Service Card List Styling */
.service-card .list-unstyled {
    text-align: left;
    margin: 0 auto;
    display: inline-block;
}

.service-card .list-unstyled li {
    padding: 0.3rem 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-card .list-unstyled li i {
    margin-right: 0.5rem;
}

/* Form elements inside service-card */
.service-card form {
    position: relative;
    z-index: 10;
}

.service-card .form-control,
.service-card .form-label,
.service-card input,
.service-card select,
.service-card textarea {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.service-card button {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}
/* ============================================
   TESTIMONIALS SLIDER STYLES
   ============================================ */

/* Text truncation utility classes */
.text-truncate-sm {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.text-truncate-md {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.text-truncate-lg {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.testimonial-card {
    min-width: calc(33.333% - 1.33rem);
    flex: 0 0 calc(33.333% - 1.33rem);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.reviewer-avatar {
    font-size: 3rem;
    color: var(--primary-color);
}

.reviewer-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.reviewer-title {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.stars i {
    font-size: 1.25rem;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn, .play-pause-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-pause-btn {
    background: var(--primary-color);
    color: white;
    font-size: 1rem;
}

.nav-btn:hover, .play-pause-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.play-pause-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dots:empty {
    display: none;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
    }
    
    .testimonials-wrapper {
        gap: 1rem;
    }
    
    .reviewer-name {
        max-width: 160px;
    }
    
    .reviewer-title {
        max-width: 160px;
    }
    
    .reviewer-info {
        flex-direction: column;
        text-align: center;
    }
    
    .reviewer-avatar {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        min-width: calc(100% - 0rem);
        flex: 0 0 100%;
        padding: 1.5rem;
    }
    
    .testimonials-wrapper {
        gap: 0;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .reviewer-name {
        font-size: 1rem;
        max-width: 180px;
    }
    
    .reviewer-title {
        font-size: 0.8rem;
        max-width: 180px;
    }
}
/* Footer Credit Links */
.footer-credit-link {
    color: #FFFFFF !important;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-credit-link:hover {
    color: #FFFFFF !important;
    text-decoration: none;
}

.footer-whatsapp-link {
    color: #FFFFFF !important;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-whatsapp-link:hover {
    color: #FFFFFF !important;
}
/* Logo Styling */
.header-logo {
    height: 52px;
    width: auto;
    max-width: 160px;
    transition: var(--transition-base);
}

.header-logo:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 250px;
    display: block;
}

/* Desktop nav items spacing */
.navbar-nav.ms-auto {
    gap: 2px;
}

.navbar-nav .nav-item.ms-lg-2,
.navbar-nav .nav-item.ms-lg-1 {
    margin-left: 0 !important;
}

/* Header actions wrapper */
.navbar-nav .header-actions-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}

/* Remove brand text styling since we're using logo now */
.brand-text {
    display: none;
}
/* Hide hero section image on mobile */
@media (max-width: 768px) {
    .hero-section .illustration-wrapper {
        display: none;
    }
    
    .hero-section .col-lg-6:last-child {
        display: none;
    }
    
    .hero-section .col-lg-6:first-child {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 50px;
    }
    
    .hero-section .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
}
/* CTA Section Spacing */
.cta-section-spacing {
    margin-bottom: 50px;
    padding-bottom: 50px;
}
/* Ensure hero badge is visible on mobile */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        display: block !important;
        text-align: center;
        width: 100%;
        margin-bottom: 1.5rem;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .badge-text {
        display: inline-block !important;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        margin-bottom: 1rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}
/* Force hero badge visibility on all devices */
.hero-section .hero-badge,
.hero-section .badge-text {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-section .hero-badge {
    margin-bottom: 1rem;
}

.hero-section .badge-text {
    display: inline-block !important;
}
/* ============================================
   WEB DEVELOPMENT PAGE STYLES
   Unique classes with same color scheme as home
   ============================================ */

/* Web Development Hero Section */
.webdev-hero-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: 3rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.webdev-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="webdev-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23webdev-grid)"/></svg>');
    z-index: 1;
}

.webdev-hero-content {
    position: relative;
    z-index: 2;
}

.webdev-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
}

.webdev-badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-color);
}

.webdev-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.webdev-text-glow {
    background: linear-gradient(135deg, var(--glow-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(46, 163, 242, 0.5);
}

.webdev-hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.95;
    color: var(--accent-color);
}

.webdev-hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.webdev-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-color);
}

.webdev-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--accent-color);
}

.webdev-hero-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.webdev-btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: var(--transition-base);
}

.webdev-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.webdev-illustration-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 2rem 0;
    overflow: hidden;
}

.webdev-illustration-image {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* Web Development Services Section */
.webdev-services-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.webdev-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.webdev-section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.webdev-service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.webdev-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.webdev-service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.webdev-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.webdev-service-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.webdev-service-btn {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
    display: inline-block;
}

.webdev-service-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--accent-color);
}

/* Web Development Pricing Section */
.webdev-pricing-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.webdev-pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
    position: relative;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.webdev-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.webdev-pricing-card.webdev-featured {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.02);
}

.webdev-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.webdev-pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.webdev-pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.webdev-pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.webdev-pricing-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.webdev-pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.webdev-pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.webdev-pricing-btn {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    display: block;
    text-align: center;
    width: 100%;
}

.webdev-pricing-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--accent-color);
}

.webdev-custom-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}
/* Web Development Portfolio Section */
.webdev-portfolio-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.webdev-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.webdev-portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.webdev-portfolio-item img {
    transition: var(--transition-base);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.webdev-portfolio-item:hover img {
    transform: scale(1.05);
}

.webdev-portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-overlay);
    color: var(--accent-color);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition-base);
}

.webdev-portfolio-item:hover .webdev-portfolio-overlay {
    transform: translateY(0);
}

.webdev-portfolio-overlay h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.webdev-portfolio-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.webdev-portfolio-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.webdev-portfolio-btn:hover {
    background: var(--glow-color);
    color: var(--accent-color);
}

/* Web Development Technologies Section */
.webdev-tech-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.webdev-tech-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.webdev-tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.webdev-tech-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.webdev-tech-card h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Web Development Process Section */
.webdev-process-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.webdev-process-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.webdev-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.webdev-process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.webdev-process-card h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.webdev-process-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Web Development Why Choose Us Section */
.webdev-why-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.webdev-feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.webdev-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.webdev-feature-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.webdev-feature-card h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.webdev-feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Web Development CTA Section */
.webdev-cta-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: 6rem 0;
    position: relative;
}

.webdev-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="webdev-cta-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23webdev-cta-grid)"/></svg>');
    z-index: 1;
}

.webdev-cta-section .container {
    position: relative;
    z-index: 2;
}

.webdev-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.webdev-cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

/* Responsive Design for Web Development Page */
@media (max-width: 992px) {
    .webdev-hero-section {
        padding: 4rem 0 6rem;
    }
    
    .webdev-hero-title {
        font-size: 2.5rem;
    }
    
    .webdev-hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .webdev-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .webdev-cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .webdev-hero-section {
        padding: 3rem 0 5rem;
    }
    
    .webdev-hero-content {
        text-align: center;
    }
    
    .webdev-hero-title {
        font-size: 2rem;
    }
    
    .webdev-hero-features {
        justify-content: center;
    }
    
    .webdev-hero-buttons {
        justify-content: center;
    }
    
    .webdev-section-title {
        font-size: 2rem;
    }
    
    .webdev-pricing-price {
        font-size: 2.5rem;
    }
    
    .webdev-cta-title {
        font-size: 1.875rem;
    }
    
    .webdev-illustration-wrapper {
        display: none;
    }
}

@media (max-width: 576px) {
    .webdev-hero-section {
        padding: 2.5rem 0 4rem;
    }
    
    .webdev-hero-title {
        font-size: 1.75rem;
    }
    
    .webdev-section-title {
        font-size: 1.75rem;
    }
    
    .webdev-service-card,
    .webdev-pricing-card,
    .webdev-feature-card,
    .webdev-process-card {
        padding: 1.5rem;
    }
}


/* ============================================
   APP DEVELOPMENT HERO SECTION
   ============================================ */

.appdev-hero-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: 4rem 0 5rem;
    margin: -30px 0;
    position: relative;
    overflow: hidden;
}

.appdev-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(46, 163, 242, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.appdev-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.appdev-hero-content {
    position: relative;
    z-index: 1;
}

.appdev-hero-badge {
    display: inline-block;
    background: rgba(46, 163, 242, 0.2);
    color: #2EA3F2;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(46, 163, 242, 0.3);
    backdrop-filter: blur(10px);
}

.appdev-badge-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.appdev-hero-title {
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
    font-size: 3.5rem;
    color: #FFFFFF;
}

.appdev-text-glow {
    background: linear-gradient(135deg, #2EA3F2 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(46, 163, 242, 0.5));
}

.appdev-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    font-weight: 400;
    color: #FFFFFF;
}

.appdev-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
    align-items: center;
}

.appdev-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFF;
}

.appdev-feature-icon {
    width: 35px;
    height: 35px;
    background: rgba(46, 163, 242, 0.2);
    border: 1px solid rgba(46, 163, 242, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2EA3F2;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.appdev-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.appdev-btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.appdev-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.appdev-illustration-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 2rem 0;
}

.appdev-illustration-image {
    width: 110%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* Responsive Design for App Development Page */
@media (max-width: 992px) {
    .appdev-hero-section {
        padding: 4rem 0 6rem;
    }
    
    .appdev-hero-title {
        font-size: 2.5rem;
    }
    
    .appdev-hero-features {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .appdev-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .appdev-hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .appdev-hero-subtitle {
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .appdev-hero-features {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .appdev-feature-item {
        font-size: 0.75rem;
    }
    
    .appdev-feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .appdev-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .appdev-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .appdev-illustration-wrapper {
        display: none;
    }
}

@media (max-width: 576px) {
    .appdev-hero-section {
        padding: 2.5rem 0 4rem;
    }
    
    .appdev-hero-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   MOBILE SLIDE MENU
   ============================================ */

.mobile-slide-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-slide-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--gradient-primary);
}

.mobile-menu-logo {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
    padding: 1rem 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.mobile-nav-link:hover {
    background: var(--gradient-light);
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-nav-link.active {
    background: var(--gradient-light);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

.mobile-nav-link i {
    font-size: 1.125rem;
    width: 24px;
}

.mobile-dropdown-toggle {
    position: relative;
}

.mobile-dropdown-icon {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.02);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-menu.show {
    max-height: 300px;
}

.mobile-dropdown-item {
    display: block !important;
    padding: 0.75rem 3rem !important;
    color: var(--text-dark) !important;
    background: transparent !important;
    text-decoration: none !important;
    font-size: 0.9375rem !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item:focus {
    background: var(--gradient-light) !important;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    padding-left: 3.5rem !important;
}

.mobile-dropdown-item:last-child {
    border-bottom: none !important;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-whatsapp-btn:hover {
    background: var(--gradient-secondary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Hide desktop menu on mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important;
    }
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
    .mobile-slide-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ============================================
   SOFTWARE DEVELOPMENT HERO SECTION
   ============================================ */

.softdev-hero-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: 4rem 0 5rem;
    margin: -30px 0;
    position: relative;
    overflow: hidden;
}

.softdev-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(46, 163, 242, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.softdev-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.softdev-hero-content {
    position: relative;
    z-index: 1;
}

.softdev-hero-badge {
    display: inline-block;
    background: rgba(46, 163, 242, 0.2);
    color: #2EA3F2;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(46, 163, 242, 0.3);
    backdrop-filter: blur(10px);
}

.softdev-badge-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.softdev-hero-title {
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
    font-size: 3.5rem;
    color: #FFFFFF;
}

.softdev-text-glow {
    background: linear-gradient(135deg, #2EA3F2 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(46, 163, 242, 0.5));
}

.softdev-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    font-weight: 400;
    color: #FFFFFF;
}

.softdev-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
    align-items: center;
}

.softdev-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFF;
}

.softdev-feature-icon {
    width: 35px;
    height: 35px;
    background: rgba(46, 163, 242, 0.2);
    border: 1px solid rgba(46, 163, 242, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2EA3F2;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.softdev-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.softdev-btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.softdev-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.softdev-illustration-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 2rem 0;
    overflow: hidden;
}

.softdev-illustration-image {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* Responsive Design for Software Development Page */
@media (max-width: 992px) {
    .softdev-hero-section {
        padding: 4rem 0 6rem;
    }
    
    .softdev-hero-title {
        font-size: 2.5rem;
    }
    
    .softdev-hero-features {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .softdev-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .softdev-hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .softdev-hero-subtitle {
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .softdev-hero-features {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .softdev-feature-item {
        font-size: 0.75rem;
    }
    
    .softdev-feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .softdev-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .softdev-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .softdev-illustration-wrapper {
        display: none;
    }
}

@media (max-width: 576px) {
    .softdev-hero-section {
        padding: 2.5rem 0 4rem;
    }
    
    .softdev-hero-title {
        font-size: 1.75rem;
    }
}
/* ============================================
   MOBILE SPACING ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    /* Reduce section padding on mobile */
    .section-padding {
        padding: 2rem 0 !important;
    }
    
    /* Reduce illustration wrapper padding and image size */
    .illustration-wrapper {
        padding: 1rem 0 !important;
        margin: 1rem 0 !important;
        min-height: auto !important;
    }
    
    .illustration-image {
        max-width: 80% !important;
        max-height: 250px !important;
        margin: 20px auto 0 auto !important;
        display: block !important;
    }
    
    /* Reduce container padding */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Reduce margins for titles and content */
    .section-title {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .section-subtitle {
        margin-bottom: 1.5rem !important;
    }
    
    /* Reduce row gaps */
    .row.g-4 {
        --bs-gutter-y: 1rem !important;
    }
    
    /* Reduce service card padding */
    .service-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Reduce list margins */
    .list-unstyled li {
        margin-bottom: 0.5rem !important;
    }
    
    /* Reduce button margins */
    .btn-primary-custom {
        margin-top: 1rem !important;
    }
}

@media (max-width: 576px) {
    /* Even tighter spacing for very small screens */
    .section-padding {
        padding: 1.5rem 0 !important;
    }
    
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .service-card {
        padding: 1rem !important;
    }
    
    .illustration-wrapper {
        padding: 0.5rem 0 !important;
        margin: 0.5rem 0 !important;
    }
    
    .illustration-image {
        max-width: 70% !important;
        max-height: 200px !important;
    }
}
/* ============================================
   SOFTWARE DEVELOPMENT CTA SECTION
   ============================================ */

.softdev-cta-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.softdev-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="softdev-cta-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23softdev-cta-grid)"/></svg>');
    z-index: 1;
}

.softdev-cta-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80"><path fill="%23ffffff" d="M0,40 Q360,0 720,40 T1440,40 L1440,80 L0,80 Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 2;
}

.softdev-cta-section .container {
    position: relative;
    z-index: 2;
}

.softdev-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.softdev-cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

/* Mobile responsive for Software Development CTA */
@media (max-width: 992px) {
    .softdev-cta-section {
        padding: 4rem 0 6rem;
    }
    
    .softdev-cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .softdev-cta-section {
        padding: 3rem 0 5rem;
    }
    
    .softdev-cta-title {
        font-size: 1.875rem;
    }
    
    .softdev-cta-subtitle {
        font-size: 1rem;
    }
    
    .softdev-cta-section::after {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .softdev-cta-section {
        padding: 2.5rem 0 4rem;
    }
    
    .softdev-cta-title {
        font-size: 1.5rem;
    }
    
    .softdev-cta-subtitle {
        font-size: 0.9rem;
    }
    
    .softdev-cta-section::after {
        height: 30px;
    }
}

/* ============================================
   DIGITAL MARKETING HERO SECTION
   ============================================ */

.digitalmarketing-hero-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: 4rem 0 5rem;
    margin: -30px 0;
    position: relative;
    overflow: hidden;
}

.digitalmarketing-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(46, 163, 242, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.digitalmarketing-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.digitalmarketing-hero-content {
    position: relative;
    z-index: 1;
}

.digitalmarketing-hero-badge {
    display: inline-block;
    background: rgba(46, 163, 242, 0.2);
    color: #2EA3F2;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(46, 163, 242, 0.3);
    backdrop-filter: blur(10px);
}

.digitalmarketing-badge-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.digitalmarketing-hero-title {
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
    font-size: 3.5rem;
    color: #FFFFFF;
}

.digitalmarketing-text-glow {
    background: linear-gradient(135deg, #2EA3F2 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(46, 163, 242, 0.5));
}

.digitalmarketing-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    font-weight: 400;
    color: #FFFFFF;
}

.digitalmarketing-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
    align-items: center;
}

.digitalmarketing-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFF;
}

.digitalmarketing-feature-icon {
    width: 35px;
    height: 35px;
    background: rgba(46, 163, 242, 0.2);
    border: 1px solid rgba(46, 163, 242, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2EA3F2;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.digitalmarketing-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.digitalmarketing-btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.digitalmarketing-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.digitalmarketing-illustration-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 2rem 0;
    overflow: hidden;
}

.digitalmarketing-illustration-image {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* Responsive Design for Digital Marketing Page */
@media (max-width: 992px) {
    .digitalmarketing-hero-section {
        padding: 4rem 0 6rem;
    }
    
    .digitalmarketing-hero-title {
        font-size: 2.5rem;
    }
    
    .digitalmarketing-hero-features {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .digitalmarketing-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .digitalmarketing-hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .digitalmarketing-hero-subtitle {
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .digitalmarketing-hero-features {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .digitalmarketing-feature-item {
        font-size: 0.75rem;
    }
    
    .digitalmarketing-feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .digitalmarketing-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .digitalmarketing-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .digitalmarketing-illustration-wrapper {
        display: none;
    }
}

@media (max-width: 576px) {
    .digitalmarketing-hero-section {
        padding: 2.5rem 0 4rem;
    }
    
    .digitalmarketing-hero-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   DIGITAL MARKETING CTA SECTION
   ============================================ */

.digitalmarketing-cta-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.digitalmarketing-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="digitalmarketing-cta-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23digitalmarketing-cta-grid)"/></svg>');
    z-index: 1;
}

.digitalmarketing-cta-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80"><path fill="%23ffffff" d="M0,40 Q360,0 720,40 T1440,40 L1440,80 L0,80 Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 2;
}

.digitalmarketing-cta-section .container {
    position: relative;
    z-index: 2;
}

.digitalmarketing-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.digitalmarketing-cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

/* Mobile responsive for Digital Marketing CTA */
@media (max-width: 992px) {
    .digitalmarketing-cta-section {
        padding: 4rem 0 6rem;
    }
    
    .digitalmarketing-cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .digitalmarketing-cta-section {
        padding: 3rem 0 5rem;
    }
    
    .digitalmarketing-cta-title {
        font-size: 1.875rem;
    }
    
    .digitalmarketing-cta-subtitle {
        font-size: 1rem;
    }
    
    .digitalmarketing-cta-section::after {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .digitalmarketing-cta-section {
        padding: 2.5rem 0 4rem;
    }
    
    .digitalmarketing-cta-title {
        font-size: 1.5rem;
    }
    
    .digitalmarketing-cta-subtitle {
        font-size: 0.9rem;
    }
    
    .digitalmarketing-cta-section::after {
        height: 30px;
    }
}
/* ============================================
   DIGITAL MARKETING SERVICE IMAGES
   ============================================ */

.digital-marketing-service-image {
    max-width: 85% !important;
    max-height: 450px !important;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .digital-marketing-service-image {
        max-width: 90% !important;
        max-height: 300px !important;
    }
}

@media (max-width: 576px) {
    .digital-marketing-service-image {
        max-width: 95% !important;
        max-height: 250px !important;
    }
}
/* ============================================
   DIGITAL MARKETING PRICING TEXT
   ============================================ */

/* Make pricing text smaller on digital marketing page */
.pricing-price {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Mobile responsive for pricing text */
@media (max-width: 768px) {
    .pricing-price {
        font-size: 1.1rem !important;
        text-align: center;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .pricing-price {
        font-size: 1rem !important;
        text-align: center;
        margin-bottom: 1rem;
    }
}

/* Digital marketing page specific responsive adjustments */
@media (max-width: 768px) {
    /* Center align pricing and buttons on mobile */
    .section-padding .pricing-price {
        text-align: center;
    }
    
    .section-padding .btn-primary-custom {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    /* Extra small screens - make pricing even smaller */
    .section-padding .pricing-price {
        font-size: 0.95rem !important;
        font-weight: 500;
    }
    
    /* Adjust button text size on very small screens */
    .section-padding .btn-primary-custom {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}
/* ============================================
   SEM SECTION IMAGE SIZE
   ============================================ */

/* Make SEM section image larger */
.section-padding.bg-light .digital-marketing-service-image {
    max-width: 110% !important;
    max-height: 600px !important;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .section-padding.bg-light .digital-marketing-service-image {
        max-width: 110% !important;
        max-height: 400px !important;
        transform: scale(1.05);
    }
}

@media (max-width: 576px) {
    .section-padding.bg-light .digital-marketing-service-image {
        max-width: 105% !important;
        max-height: 320px !important;
        transform: scale(1.02);
    }
}
/* ============================================
   SEO AND SMO SECTION IMAGE SIZE
   ============================================ */

/* Make SEO section image larger (first section) */
.section-padding:first-of-type .digital-marketing-service-image {
    max-width: 180% !important;
    max-height: 1000px !important;
    transform: scale(1.5);
    width: 180% !important;
    height: auto !important;
}

/* Make SMO section image larger (third section) */
.section-padding:nth-of-type(3) .digital-marketing-service-image {
    max-width: 180% !important;
    max-height: 1000px !important;
    transform: scale(1.5);
    width: 180% !important;
    height: auto !important;
}

@media (max-width: 768px) {
    .section-padding:first-of-type .digital-marketing-service-image,
    .section-padding:nth-of-type(3) .digital-marketing-service-image {
        max-width: 160% !important;
        max-height: 600px !important;
        transform: scale(1.4);
        width: 160% !important;
    }
}

@media (max-width: 576px) {
    .section-padding:first-of-type .digital-marketing-service-image,
    .section-padding:nth-of-type(3) .digital-marketing-service-image {
        max-width: 150% !important;
        max-height: 500px !important;
        transform: scale(1.3);
        width: 150% !important;
    }
}
/* ============================================
   REMOVE SHADOW FROM DIGITAL MARKETING IMAGES
   ============================================ */

/* Remove shadow from all digital marketing service images */
.digital-marketing-service-image {
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* Remove shadow from digital marketing hero image */
.digitalmarketing-illustration-image {
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* Remove shadow from all images in digital marketing page sections */
.section-padding .illustration-image {
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}
/* ============================================
   ERP SOLUTIONS HERO SECTION
   ============================================ */

.erpsolutions-hero-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: 4rem 0 5rem;
    margin: -30px 0;
    position: relative;
    overflow: hidden;
}

.erpsolutions-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(46, 163, 242, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.erpsolutions-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.erpsolutions-hero-content {
    position: relative;
    z-index: 1;
}

.erpsolutions-hero-badge {
    display: inline-block;
    background: rgba(46, 163, 242, 0.2);
    color: #2EA3F2;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(46, 163, 242, 0.3);
    backdrop-filter: blur(10px);
}

.erpsolutions-badge-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.erpsolutions-hero-title {
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
    font-size: 3.5rem;
    color: #FFFFFF;
}

.erpsolutions-text-glow {
    background: linear-gradient(135deg, #2EA3F2 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(46, 163, 242, 0.5));
}

.erpsolutions-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    font-weight: 400;
    color: #FFFFFF;
}

.erpsolutions-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
    align-items: center;
}

.erpsolutions-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFF;
}

.erpsolutions-feature-icon {
    width: 35px;
    height: 35px;
    background: rgba(46, 163, 242, 0.2);
    border: 1px solid rgba(46, 163, 242, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2EA3F2;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.erpsolutions-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.erpsolutions-btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.erpsolutions-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.erpsolutions-illustration-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 2rem 0;
    overflow: hidden;
}

.erpsolutions-illustration-image {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* Responsive Design for ERP Solutions Page */
@media (max-width: 992px) {
    .erpsolutions-hero-section {
        padding: 4rem 0 6rem;
    }
    
    .erpsolutions-hero-title {
        font-size: 2.5rem;
    }
    
    .erpsolutions-hero-features {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .erpsolutions-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .erpsolutions-hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .erpsolutions-hero-subtitle {
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .erpsolutions-hero-features {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .erpsolutions-feature-item {
        font-size: 0.75rem;
    }
    
    .erpsolutions-feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .erpsolutions-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .erpsolutions-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .erpsolutions-illustration-wrapper {
        display: none;
    }
}

@media (max-width: 576px) {
    .erpsolutions-hero-section {
        padding: 2.5rem 0 4rem;
    }
    
    .erpsolutions-hero-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   ERP SOLUTIONS CTA SECTION
   ============================================ */

.erpsolutions-cta-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.erpsolutions-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="erpsolutions-cta-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23erpsolutions-cta-grid)"/></svg>');
    z-index: 1;
}

.erpsolutions-cta-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80"><path fill="%23ffffff" d="M0,40 Q360,0 720,40 T1440,40 L1440,80 L0,80 Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 2;
}

.erpsolutions-cta-section .container {
    position: relative;
    z-index: 2;
}

.erpsolutions-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.erpsolutions-cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

/* Mobile responsive for ERP Solutions CTA */
@media (max-width: 992px) {
    .erpsolutions-cta-section {
        padding: 4rem 0 6rem;
    }
    
    .erpsolutions-cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .erpsolutions-cta-section {
        padding: 3rem 0 5rem;
    }
    
    .erpsolutions-cta-title {
        font-size: 1.875rem;
    }
    
    .erpsolutions-cta-subtitle {
        font-size: 1rem;
    }
    
    .erpsolutions-cta-section::after {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .erpsolutions-cta-section {
        padding: 2.5rem 0 4rem;
    }
    
    .erpsolutions-cta-title {
        font-size: 1.5rem;
    }
    
    .erpsolutions-cta-subtitle {
        font-size: 0.9rem;
    }
    
    .erpsolutions-cta-section::after {
        height: 30px;
    }
}

@media only screen and (max-width: 768px){
    html,
    body{
    width:100%;
    overflow-x:hidden;
    }
}
/* ============================================
   DIGITAL PRODUCTS HERO SECTION
   ============================================ */

.digitalproducts-hero-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: 4rem 0 5rem;
    margin: -30px 0;
    position: relative;
    overflow: hidden;
}

.digitalproducts-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(46, 163, 242, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.digitalproducts-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.digitalproducts-hero-content {
    position: relative;
    z-index: 1;
}

.digitalproducts-hero-badge {
    display: inline-block;
    background: rgba(46, 163, 242, 0.2);
    color: #2EA3F2;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(46, 163, 242, 0.3);
    backdrop-filter: blur(10px);
}

.digitalproducts-badge-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.digitalproducts-hero-title {
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
    font-size: 3.5rem;
    color: #FFFFFF;
}

.digitalproducts-text-glow {
    background: linear-gradient(135deg, #2EA3F2 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(46, 163, 242, 0.5));
}

.digitalproducts-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    font-weight: 400;
    color: #FFFFFF;
}

.digitalproducts-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
    align-items: center;
}

.digitalproducts-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFF;
}

.digitalproducts-feature-icon {
    width: 35px;
    height: 35px;
    background: rgba(46, 163, 242, 0.2);
    border: 1px solid rgba(46, 163, 242, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2EA3F2;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.digitalproducts-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.digitalproducts-btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.digitalproducts-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.digitalproducts-illustration-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 2rem 0;
    overflow: hidden;
}

.digitalproducts-illustration-image {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* ============================================
   DIGITAL PRODUCT CARDS
   ============================================ */

.digital-product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.digital-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-base);
}

.digital-product-card:hover .product-image {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 42, 74, 0.8) 0%, rgba(31, 78, 140, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.digital-product-card:hover .product-overlay {
    opacity: 1;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--gradient-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-coming-soon {
    background: linear-gradient(135deg, #FFA726 0%, #FF9800 100%);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-coming-soon:hover {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
    color: #FFFFFF;
}

/* ============================================
   DIGITAL PRODUCTS CTA SECTION
   ============================================ */

.digitalproducts-cta-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.digitalproducts-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="digitalproducts-cta-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23digitalproducts-cta-grid)"/></svg>');
    z-index: 1;
}

.digitalproducts-cta-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80"><path fill="%23ffffff" d="M0,40 Q360,0 720,40 T1440,40 L1440,80 L0,80 Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 2;
}

.digitalproducts-cta-section .container {
    position: relative;
    z-index: 2;
}

.digitalproducts-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.digitalproducts-cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

/* Responsive Design for Digital Products Page */
@media (max-width: 992px) {
    .digitalproducts-hero-section {
        padding: 4rem 0 6rem;
    }
    
    .digitalproducts-hero-title {
        font-size: 2.5rem;
    }
    
    .digitalproducts-hero-features {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .digitalproducts-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .digitalproducts-cta-section {
        padding: 4rem 0 6rem;
    }
    
    .digitalproducts-cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .digitalproducts-hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .digitalproducts-hero-subtitle {
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .digitalproducts-hero-features {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .digitalproducts-feature-item {
        font-size: 0.75rem;
    }
    
    .digitalproducts-feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .digitalproducts-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .digitalproducts-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .digitalproducts-illustration-wrapper {
        display: none;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .btn-coming-soon {
        justify-content: center;
    }
    
    .digitalproducts-cta-section {
        padding: 3rem 0 5rem;
    }
    
    .digitalproducts-cta-title {
        font-size: 1.875rem;
    }
    
    .digitalproducts-cta-subtitle {
        font-size: 1rem;
    }
    
    .digitalproducts-cta-section::after {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .digitalproducts-hero-section {
        padding: 2.5rem 0 4rem;
    }
    
    .digitalproducts-hero-title {
        font-size: 1.75rem;
    }
    
    .product-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .digitalproducts-cta-section {
        padding: 2.5rem 0 4rem;
    }
    
    .digitalproducts-cta-title {
        font-size: 1.5rem;
    }
    
    .digitalproducts-cta-subtitle {
        font-size: 0.9rem;
    }
    
    .digitalproducts-cta-section::after {
        height: 30px;
    }
}

/* ============================================
   DROPDOWN MENU COLOR FIX - ENSURE CONSISTENCY
   ============================================ */

/* Force consistent dropdown styling across all browsers and Bootstrap versions */
.dropdown-menu,
.navbar-nav .dropdown-menu,
.nav .dropdown-menu {
    background-color: var(--bg-white) !important;
    border: 1px solid var(--border-color) !important;
}

.dropdown-item,
.navbar-nav .dropdown-item,
.nav .dropdown-item,
.dropdown-menu > li > a,
.dropdown-menu .dropdown-item {
    background-color: transparent !important;
    color: var(--text-dark) !important;
    padding: 0.75rem 1rem !important;
    border-radius: var(--radius-sm) !important;
    transition: var(--transition-base) !important;
    font-size: 0.9375rem !important;
    border: none !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
    clear: both !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    white-space: nowrap !important;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active,
.dropdown-item:active,
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active,
.nav .dropdown-item:hover,
.nav .dropdown-item:focus,
.nav .dropdown-item.active,
.nav .dropdown-item:active,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: var(--gradient-light) !important;
    background-image: none !important;
    color: var(--primary-color) !important;
    transform: translateX(5px) !important;
    text-decoration: none !important;
}

/* Remove any Bootstrap default blue backgrounds */
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    background-color: var(--gradient-light) !important;
    background-image: none !important;
    color: var(--primary-color) !important;
}

/* Ensure dropdown icons are properly styled */
.dropdown-item i,
.navbar-nav .dropdown-item i,
.nav .dropdown-item i {
    font-size: 1.125rem !important;
    width: 24px !important;
    color: inherit !important;
}

/* Mobile dropdown consistency */
@media (max-width: 991.98px) {
    .mobile-dropdown-item,
    .dropdown-menu .dropdown-item {
        background-color: transparent !important;
        color: var(--text-dark) !important;
    }
    
    .mobile-dropdown-item:hover,
    .mobile-dropdown-item:focus,
    .dropdown-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:focus {
        background-color: var(--gradient-light) !important;
        color: var(--primary-color) !important;
    }
}