/* CODENEXT - Premium Professional Styles */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,700&family=Manrope:wght@400;600;700&display=swap');

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-extra-light: #eff6ff;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --success: #10b981;
    --light: #f8fafc;
    --light-gray: #f1f5f9;
    --gray: #94a3b8;
    --gray-dark: #475569;
    --dark: #020617;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }
body { font-family: 'Manrope', sans-serif; font-size: 16px; line-height: 1.6; color: var(--secondary); background: var(--white); padding-top: 40px; }
h1, h2, h3, h4, h5, h6 { font-family: 'DM Sans', sans-serif; font-weight: 700; line-height: 1.2; }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* Buttons */
.btn { font-weight: 600; padding: 12px 28px; border-radius: var(--radius-full); transition: var(--transition); border: 2px solid transparent; position: relative; overflow: hidden; }
.btn::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:hover::before { left: 100%; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3); }
.btn:active { transform: translateY(-1px); }
.btn-primary { background: var(--primary); border-color: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }
.btn-outline-primary { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }
.btn-light { background: var(--white); color: var(--primary); }
.btn-dark { background: var(--secondary); color: var(--white); }
.btn-lg { padding: 16px 36px; }

/* Navigation - White background with navy blue text */
.navbar { 
    padding: 15px 0; 
    transition: var(--transition); 
    background: #ffffff !important; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.08); 
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar.scrolled { 
    padding: 10px 0; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.12); 
}
.navbar-brand img { height: 42px; }
.nav-link { 
    font-weight: 600; 
    font-size: 0.95rem; 
    color: #1e3a5f !important; 
    padding: 8px 18px !important; 
}
.nav-link:hover, .nav-link.active { 
    color: #2563eb !important; 
}
.dropdown-menu { 
    border: none; 
    border-radius: var(--radius-lg); 
    padding: 12px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.15); 
    margin-top: 8px; 
    min-width: 220px; 
    background: #ffffff;
}
.dropdown-item { 
    font-weight: 500; 
    padding: 10px 16px; 
    border-radius: var(--radius);
    color: #1e3a5f;
}
.dropdown-item:hover { 
    background: #f0f7ff; 
    color: #2563eb; 
}
.navbar-toggler { 
    color: #1e3a5f; 
    border-color: rgba(30,58,95,0.3);
}
.navbar-toggler i { 
    color: #1e3a5f; 
    font-size: 1.5rem;
}
/* Primary button for white navbar */
.btn-primary {
    background: #2563eb;
    border-color: #2563eb;
}
.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

/* Hero Section */
.hero-section { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 0 80px; }
.hero-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 20% 40%, rgba(37, 99, 235, 0.15) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 60%, rgba(245, 158, 11, 0.08) 0%, transparent 50%); }
.hero-bg-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(37, 99, 235, 0.15); border: 1px solid rgba(37, 99, 235, 0.3); padding: 8px 16px; border-radius: var(--radius-full); color: var(--primary-light); font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }
.hero-badge .badge-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; }
.hero-section h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 24px; }
.hero-section h1 span { background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-section .lead { font-size: 1.2rem; color: var(--gray); margin-bottom: 32px; max-width: 540px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.hero-image::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 200px; height: 200px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; z-index: -1; opacity: 0.25; filter: blur(60px); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Stats */
.stats-section { background: var(--white); padding: 60px 0; border-bottom: 1px solid var(--light-gray); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; padding: 20px; }
.stat-icon { width: 60px; height: 60px; background: var(--primary-extra-light); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.stat-icon i { font-size: 24px; color: var(--primary); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--secondary); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.95rem; color: var(--gray); font-weight: 500; }

/* Sections */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--gray-dark); }
.section-header .highlight { color: var(--primary); position: relative; }

/* Modern Service Cards */
.service-card-modern {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    transform: scaleX(0);
    transition: all 0.4s ease;
}
.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}
.service-card-modern:hover::before { transform: scaleX(1); }
.service-icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.service-card-modern:hover .service-icon-box {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    transform: scale(1.1) rotate(5deg);
}
.service-icon-box i { font-size: 38px; color: #2563eb; transition: all 0.4s ease; }
.service-card-modern:hover .service-icon-box i { color: #fff; }
.service-card-modern h3 { font-size: 1.4rem; font-weight: 700; color: #1e293b; margin-bottom: 15px; }
.service-card-modern p { color: #64748b; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.service-card-modern .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.service-card-modern .learn-more:hover { gap: 12px; color: #1d4ed8; }

/* Process Steps */
.process-step { padding: 20px; }
.process-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}
.process-icon i {
    font-size: 36px;
    color: #2563eb;
    transition: all 0.4s ease;
}
.process-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step:hover .process-icon {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    transform: scale(1.1);
}
.process-step:hover .process-icon i {
    color: white;
}
.process-step h5 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

/* ROI Calculator */
.roi-calculator {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.roi-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}
.roi-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.roi-box h5 {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.roi-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

/* Case Study Cards */
.case-study-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.case-study-header {
    position: relative;
    overflow: hidden;
}
.case-study-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}
.case-study-card:hover .case-study-header img {
    transform: scale(1.1);
}
.case-study-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.case-study-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.case-study-body h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}
.client-info {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 15px;
}
.case-study-details {
    flex: 1;
}
.detail-item {
    margin-bottom: 12px;
}
.detail-item h6 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}
.detail-item p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
}
.result-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.result-list li {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
}
.result-list li strong {
    color: #10b981;
}
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}
.tech-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Industry Cards */
.industry-card {
    background: white;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}
.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #2563eb;
}
.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}
.industry-icon i {
    font-size: 24px;
    color: #2563eb;
}
.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}
.industry-card:hover .industry-icon i {
    color: white;
}
.industry-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 991px) {
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .tech-grid { grid-template-columns: 1fr; }
}
.tech-category {
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.tech-category:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #2563eb;
}
.tech-category h5 {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tech-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.tech-tag:hover {
    background: #2563eb;
    color: white;
}

/* CTA Modern */
.cta-modern {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-modern .cta-content { position: relative; z-index: 1; text-align: center; }
.cta-modern h2 { color: #fff; font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
.cta-modern p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn-custom { background: #fff; color: #2563eb; padding: 16px 40px; font-weight: 600; border-radius: 50px; border: none; text-decoration: none; display: inline-block; transition: all 0.3s; }
.btn-custom:hover { background: #1e293b; color: #fff; transform: translateY(-3px); }

/* Service Cards (existing) */
.service-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}
@media (max-width: 991px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .service-grid { grid-template-columns: 1fr; }
}
.service-card { background: var(--white); border-radius: var(--radius-xl); padding: 0; transition: var(--transition); border: 1px solid var(--light-gray); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: var(--transition); z-index: 1; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-image { width: 100%; height: 180px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-image img { transform: scale(1.1); }
.service-card .card-body { padding: 28px 24px; }
.service-icon { width: 70px; height: 70px; background: var(--primary-extra-light); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: var(--transition); }
.service-card:hover .service-icon { background: var(--primary); }
.service-icon i { font-size: 28px; color: var(--primary); transition: var(--transition); }
.service-card:hover .service-icon i { color: var(--white); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card p { color: var(--gray-dark); margin-bottom: 20px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.service-link:hover { gap: 12px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.about-content h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
.about-content .subtitle { font-size: 1.1rem; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.about-content p { color: var(--gray-dark); margin-bottom: 24px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.about-feature { display: flex; align-items: center; gap: 12px; }
.about-feature i { color: var(--success); font-size: 18px; }

/* Pricing Calculator */
.pricing-calculator {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.pricing-calculator .form-label { color: #1e3a5f; font-size: 0.95rem; font-weight: 600; }
.pricing-calculator .form-select, .pricing-calculator .form-range {
    border-radius: 12px;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}
.pricing-calculator .form-select:focus, .pricing-calculator .form-range:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.pricing-result { background: white; border-radius: 16px; padding: 30px; margin-top: 30px; }
.result-price { font-size: 3rem; font-weight: 800; color: #2563eb; line-height: 1; }

/* Blog Cards */
.blog-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s ease; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.blog-image { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-image img { transform: scale(1.1); }
.blog-category { position: absolute; top: 15px; left: 15px; background: #2563eb; color: white; padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.blog-content { padding: 24px; }
.blog-content h4 { color: #1e3a5f; margin-bottom: 12px; font-size: 1.1rem; line-height: 1.4; }
.blog-content p { color: #64748b; font-size: 0.9rem; margin-bottom: 15px; }
.blog-meta { display: flex; gap: 15px; font-size: 0.8rem; color: #94a3b8; }
.blog-meta i { margin-right: 4px; }
.cta-section { margin-bottom: 80px; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(37, 99, 235, 0.2) 0%, transparent 60%); }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { color: #000000; font-size: 2.5rem; margin-bottom: 16px; }
.cta-content p { color: var(--gray); font-size: 1.15rem; margin-bottom: 32px; }

/* Products */
.product-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; transition: var(--transition); border: 1px solid var(--light-gray); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-image { height: 220px; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-image img { transform: scale(1.1); }
.product-content { padding: 28px; }
.product-content h3 { font-size: 1.3rem; margin-bottom: 12px; }
.product-content p { color: var(--gray-dark); margin-bottom: 20px; }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.portfolio-item { border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.portfolio-item img { width: 100%; height: 280px; object-fit: cover; transition: var(--transition); }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: var(--transition); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); font-size: 1.2rem; }
.portfolio-overlay span { color: var(--gray); font-size: 0.9rem; }

/* Footer */
.footer { background: var(--dark); color: var(--white); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-about { }
.footer-about h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; }
.footer-about p { color: var(--gray); margin-top: 16px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); }
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #ffffff; transition: var(--transition); }
.footer-links a:hover { color: #3b82f6; padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; text-align: center; color: #ffffff; }
.footer-bottom a { color: #ffffff; }

/* Top Bar - Fixed at top */
.top-bar {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    padding: 8px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}

/* Navigation - Fixed below top bar */
.navbar.fixed-top {
    top: 38px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar.fixed-top.bg-white {
    background: #fff !important;
}

/* Body padding for fixed headers */
body {
    padding-top: 140px;
}

/* Hero slide content adjusted for fixed headers */
.hero-slide-content {
    padding-top: 20px;
}
.top-bar a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}
.top-bar a:hover {
    color: #3b82f6;
}
.top-bar .top-contact {
    display: flex;
    gap: 20px;
    margin-right: 20px;
    align-items: center;
    font-size: 0.75rem;
}
.top-bar .top-social {
    display: flex;
    gap: 12px;
}
.top-bar .top-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}
.top-bar .top-social a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #1e3a5f;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

/* Hero Inquiry Form */
.hero-inquiry-form {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    margin-bottom: 40px;
}
.inquiry-form-header {
    text-align: center;
    margin-bottom: 25px;
}
.inquiry-form-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.inquiry-form-header p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}
.hero-inquiry-form .form-control,
.hero-inquiry-form .form-select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.hero-inquiry-form .form-control:focus,
.hero-inquiry-form .form-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.hero-inquiry-form .btn-primary {
    padding: 14px;
    font-size: 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.slider-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}
.whatsapp-float i {
    color: white;
    font-size: 30px;
}
@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 5px 30px rgba(37,211,102,0.6); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37,99,235,0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.5);
}
.back-to-top i {
    color: white;
    font-size: 24px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e3a5f;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}
.cookie-consent.show {
    display: block;
}
.cookie-consent p {
    color: white;
    margin: 0;
    font-size: 0.95rem;
}
.cookie-consent a {
    color: #3b82f6;
    text-decoration: underline;
}
.cookie-consent .btn {
    margin-left: 15px;
}

/* Team Card Styles */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.team-card:hover {
    transform: translateY(-10px);
}
.team-image {
    overflow: hidden;
}
.team-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.team-card:hover .team-image img {
    transform: scale(1.1);
}
.team-info {
    padding: 20px;
}
.team-info h4 {
    color: #1e3a5f;
    margin-bottom: 5px;
}

/* Client Logo Styles */
.client-logo {
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Search Button */
.search-btn {
    cursor: pointer;
    margin-left: 10px;
}

/* ===== ENHANCED INTERACTIVE FEATURES ===== */

/* Animated Counters */
.counter-item { text-align: center; padding: 30px; }
.counter-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #eff6ff, #dbeafe); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: #2563eb; transition: all 0.3s ease; }
.counter-item:hover .counter-icon { background: linear-gradient(135deg, #2563eb, #06b6d4); color: white; transform: scale(1.1); }
.counter-number { font-size: 3rem; font-weight: 800; color: #1e3a5f; line-height: 1; margin-bottom: 5px; }
.counter-label { font-size: 1rem; color: #64748b; font-weight: 500; }
.counter-suffix { font-size: 1.5rem; color: #2563eb; }

/* Pricing Calculator */
.pricing-calculator { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); border-radius: 24px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.calculator-result { background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%); border-radius: 16px; padding: 30px; text-align: center; color: white; margin-top: 30px; }
.calculator-result .price { font-size: 3rem; font-weight: 800; line-height: 1; }
.calculator-result .period { font-size: 1rem; opacity: 0.9; }
.range-slider { width: 100%; height: 8px; border-radius: 4px; background: #e2e8f0; outline: none; -webkit-appearance: none; }
.range-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: #2563eb; cursor: pointer; }

/* Multi-Step Wizard */
.wizard-container { background: white; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); overflow: hidden; max-width: 700px; margin: 0 auto; }
.wizard-progress { background: #f1f5f9; height: 6px; }
.wizard-progress-bar { background: linear-gradient(90deg, #2563eb, #06b6d4); height: 100%; transition: width 0.5s ease; }
.wizard-steps { padding: 40px; }
.wizard-step { display: none; }
.wizard-step.active { display: block; }
.wizard-option { padding: 20px; border: 2px solid #e2e8f0; border-radius: 16px; margin-bottom: 15px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 15px; }
.wizard-option:hover { border-color: #2563eb; background: #f8fafc; }
.wizard-option.selected { border-color: #2563eb; background: #eff6ff; }
.wizard-option .icon { width: 50px; height: 50px; background: #e2e8f0; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.wizard-option.selected .icon { background: #2563eb; color: white; }
.wizard-nav { padding: 20px 40px; border-top: 1px solid #e2e8f0; display: flex; justify-content: space-between; }
.wizard-result { text-align: center; padding: 40px; }

/* Product Tabs */
.product-tabs { margin-bottom: 40px; }
.tab-nav { display: flex; gap: 10px; border-bottom: 2px solid #e2e8f0; margin-bottom: 30px; flex-wrap: wrap; }
.tab-btn { padding: 15px 30px; background: none; border: none; font-weight: 600; color: #64748b; cursor: pointer; position: relative; }
.tab-btn::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: #2563eb; transform: scaleX(0); transition: transform 0.3s ease; }
.tab-btn.active { color: #2563eb; }
.tab-btn.active::after { transform: scaleX(1); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Demo Video */
.demo-video-container { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.video-overlay .play-btn { width: 80px; height: 80px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #2563eb; }

/* Screenshot Slider */
.screenshot-slider { position: relative; border-radius: 16px; overflow: hidden; }
.screenshot-slide { display: none; }
.screenshot-slide.active { display: block; }
.screenshot-nav { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.screenshot-dot { width: 12px; height: 12px; border-radius: 50%; background: #cbd5e1; cursor: pointer; }
.screenshot-dot.active { background: #2563eb; width: 30px; border-radius: 6px; }

/* Comparison Table */
.comparison-table { overflow-x: auto; border-radius: 16px; }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 20px; text-align: center; border-bottom: 1px solid #e2e8f0; }
.comparison-table th { background: #1e3a5f; color: white; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table .check { color: #10b981; }
.comparison-table .cross { color: #ef4444; }

/* Sticky CTA */
.sticky-cta { position: fixed; bottom: 100px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.sticky-cta a { padding: 12px 20px; border-radius: 50px; display: flex; align-items: center; gap: 10px; font-weight: 600; box-shadow: 0 5px 20px rgba(0,0,0,0.15); transition: all 0.3s ease; text-decoration: none; }
.sticky-cta a:hover { transform: translateX(-5px); }
.sticky-cta .sticky-call { background: #2563eb; color: white; }
.sticky-cta .sticky-whatsapp { background: #25D366; color: white; }
.sticky-cta .sticky-demo { background: linear-gradient(135deg, #f59e0b, #ef4444); color: white; }

/* Smart Contact Form */
.smart-contact-form { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.smart-form-group { margin-bottom: 25px; }
.smart-form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #1e3a5f; }
.form-submit-btn { width: 100%; padding: 16px; font-size: 1.1rem; font-weight: 600; border-radius: 12px; background: linear-gradient(135deg, #2563eb, #06b6d4); border: none; color: white; cursor: pointer; }

/* Use Case Grid */
.use-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
@media (max-width: 991px) { .use-case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .use-case-grid { grid-template-columns: 1fr; } }
.use-case-card { background: white; border-radius: 16px; padding: 30px; border: 2px solid #e2e8f0; transition: all 0.3s ease; }
.use-case-card:hover { border-color: #2563eb; transform: translateY(-5px); box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15); }
.use-case-card .icon { width: 60px; height: 60px; background: linear-gradient(135deg, #eff6ff, #dbeafe); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 20px; }
.use-case-card h4 { color: #1e3a5f; margin-bottom: 10px; }
.use-case-card p { color: #64748b; font-size: 0.9rem; }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 991px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.blog-card-image { height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: all 0.3s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.1); }
.blog-card-content { padding: 25px; }
.blog-card-category { display: inline-block; background: #eff6ff; color: #2563eb; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; }
.blog-card h4 { color: #1e3a5f; font-size: 1.2rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { color: #64748b; font-size: 0.9rem; margin-bottom: 15px; }
.blog-card-meta { display: flex; gap: 15px; color: #94a3b8; font-size: 0.85rem; }

/* Industry Guides */
.guide-card { background: white; border-radius: 20px; padding: 35px; border: 2px solid #e2e8f0; transition: all 0.3s ease; text-align: center; }
.guide-card:hover { border-color: #2563eb; transform: translateY(-5px); box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15); }
.guide-card .icon { width: 70px; height: 70px; background: linear-gradient(135deg, #eff6ff, #dbeafe); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; color: #2563eb; }
.guide-card h4 { color: #1e3a5f; margin-bottom: 10px; }
.guide-card p { color: #64748b; font-size: 0.9rem; margin-bottom: 20px; }

/* Enhanced Hero */
.hero-enhanced { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); min-height: 85vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-enhanced::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 20% 40%, rgba(37, 99, 235, 0.2) 0%, transparent 50%); }
.hero-enhanced h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; color: white; line-height: 1.1; margin-bottom: 20px; }
.hero-enhanced h1 span { background: linear-gradient(135deg, #60a5fa, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-enhanced .lead { font-size: 1.2rem; color: #94a3b8; margin-bottom: 30px; max-width: 550px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-buttons .btn { padding: 14px 32px; font-weight: 600; }
.hero-trust-badges { display: flex; gap: 30px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-trust-badges .badge { display: flex; align-items: center; gap: 10px; color: #94a3b8; }
.hero-trust-badges .badge i { color: #10b981; font-size: 1.25rem; }


/* Breadcrumb Banner */
.breadcrumb-banner {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}
.breadcrumb-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=600&fit=crop') center/cover;
    opacity: 0.15;
}
.breadcrumb-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,58,95,0.95) 0%, rgba(15,23,42,0.9) 100%);
}
.breadcrumb-banner .container {
    position: relative;
    z-index: 1;
}
.breadcrumb-banner h1 {
    color: white;
    font-size: 2.75rem;
    margin-bottom: 12px;
}
.breadcrumb-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}
.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: #3b82f6;
}
.breadcrumb span {
    color: rgba(255,255,255,0.5);
}
.breadcrumb .current {
    color: white;
}

/* Legal Content */
.legal-content {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}
.legal-content h2 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 16px;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content h4 {
    color: var(--gray-dark);
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 12px;
}
.legal-content p {
    color: var(--gray-dark);
    line-height: 1.8;
}
.legal-content ul {
    padding-left: 20px;
}
.legal-content li {
    color: var(--gray-dark);
    margin-bottom: 8px;
}

/* Callback Floating Button */
.callback-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: auto;
    height: 55px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 25px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}
.callback-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: white;
}
.callback-float i {
    font-size: 1.3rem;
}
.callback-float span {
    display: block;
}
@media (max-width: 576px) {
    .callback-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        padding: 0;
        border-radius: 50%;
    }
    .callback-float span {
        display: none;
    }
    .callback-float i {
        font-size: 1.5rem;
    }
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9997;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
}
#backToTop.show {
    opacity: 1;
    visibility: visible;
}
#backToTop:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
}

/* Page Header Update */
.page-header {
    background: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(15,23,42,0.92) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=600&fit=crop') center/cover no-repeat;
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header.services-bg { background-image: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(15,23,42,0.92) 100%), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1920&h=600&fit=crop'); }
.page-header.products-bg { background-image: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(15,23,42,0.92) 100%), url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=1920&h=600&fit=crop'); }
.page-header.about-bg { background-image: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(15,23,42,0.92) 100%), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&h=600&fit=crop'); }
.page-header.contact-bg { background-image: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(15,23,42,0.92) 100%), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&h=600&fit=crop'); }
.page-header.portfolio-bg { background-image: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(15,23,42,0.92) 100%), url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?w=1920&h=600&fit=crop'); }
.page-header.training-bg { background-image: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(15,23,42,0.92) 100%), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1920&h=600&fit=crop'); }
.page-header.careers-bg { background-image: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(15,23,42,0.92) 100%), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1920&h=600&fit=crop'); }
.page-header.blog-bg { background-image: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(15,23,42,0.92) 100%), url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?w=1920&h=600&fit=crop'); }
.page-header.legal-bg { background-image: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(15,23,42,0.92) 100%), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&h=600&fit=crop'); }
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
}
.page-header h1 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 12px;
    position: relative;
}
.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    position: relative;
}

/* Contact */
.contact-form { background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); }
.form-control { padding: 14px 18px; border-radius: var(--radius); border: 2px solid var(--light-gray); font-family: inherit; transition: var(--transition); }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); outline: none; }

/* Responsive */
@media (max-width: 991px) {
    .hero-section { padding: 100px 0 60px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 767px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-section h1 { font-size: 2rem; }
    .section { padding: 60px 0; }
    .hero-slider { min-height: auto; }
    .hero-inquiry-form { margin-top: 30px; }
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-size: 80px;
    color: #2563eb;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: Georgia, serif;
}
.testimonial-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2563eb;
}
.testimonial-info h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 3px;
}
.testimonial-info span {
    font-size: 0.85rem;
    color: #64748b;
}
.testimonial-rating {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* About Page Enhancements */
.about-hero-image {
    position: relative;
}
.about-hero-image img {
    width: 100%;
}
.about-experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(37,99,235,0.4);
    display: flex;
    flex-direction: column;
}
.about-experience-badge .years {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.about-experience-badge .text {
    font-size: 0.8rem;
    opacity: 0.9;
}
.about-stats-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}
.stat-box {
    text-align: center;
}
.stat-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 4px;
}
.stat-box p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* Mission Vision Cards */
.mission-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}
.mission-card:hover .mission-icon {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
}
.mission-icon i {
    font-size: 32px;
    color: #2563eb;
    transition: all 0.3s ease;
}
.mission-card:hover .mission-icon i {
    color: white;
}
.mission-card h3 {
    font-size: 1.35rem;
    color: #1e293b;
    margin-bottom: 15px;
}
.mission-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #2563eb;
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.feature-icon i {
    font-size: 28px;
    color: #2563eb;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon i {
    color: white;
}
.feature-card h4 {
    font-size: 1.15rem;
    color: #1e293b;
    margin-bottom: 12px;
}
.feature-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
