/* ===== PREMIUM WEBSITE ENHANCEMENTS ===== */
/* Apply this after style.css for premium glassmorphism effects */

/* ===== Global Dark Theme ===== */
body {
    background: #0f172a !important;
}

/* ===== Enhanced Navbar ===== */
.navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5) !important;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6) !important;
}

.logo h2 {
    color: #ffffff !important;
}

.logo span {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu a {
    color: #cbd5e1 !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #60a5fa !important;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* ===== Hero Section - Index Page Specific ===== */
.hero::before {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.65), rgba(59, 130, 246, 0.55)) !important;
}

.hero-subtitle {
    color: #f1f5f9 !important;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8), 0 1px 5px rgba(0, 0, 0, 0.9) !important;
    font-weight: 500 !important;
}

/* ===== Page Hero Sections ===== */
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(30, 41, 59, 0.3) 100%) !important;
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-title {
    color: #ffffff !important;
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
    filter: none !important;
    line-height: 1.2;
}

.page-subtitle {
    color: #e0e7ff !important;
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    margin-bottom: 2rem !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.6;
}

.hero-badge {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #60a5fa !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-shadow: none !important;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.breadcrumb a,
.breadcrumb span {
    color: #cbd5e1 !important;
    text-decoration: none;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.breadcrumb a:hover {
    color: #60a5fa !important;
}

/* ===== Project Hero Sections ===== */
.project-hero {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
}

.project-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.project-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
    z-index: 2;
}

.project-hero-content {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
    color: white;
}

.project-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-tag {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #60a5fa !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: none !important;
}

.project-hero h1 {
    color: #ffffff !important;
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
    filter: none !important;
    line-height: 1.2;
}

.project-hero p {
    color: #e0e7ff !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;
    margin: 0 !important;
}

/* ===== All Section Backgrounds ===== */
section:not(.hero):not(.page-hero):not(.project-hero) {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
    position: relative;
    overflow: hidden;
}

section:nth-child(even):not(.hero):not(.page-hero) {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

/* ===== Section Headers - Universal Styling ===== */
.section-header h2,
.section-header h2 {
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: none !important;
    text-shadow: none !important;
}

.section-header p {
    color: #cbd5e1 !important;
    text-shadow: none !important;
}

.section-label {
    color: #60a5fa !important;
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    backdrop-filter: blur(10px);
}

/* ===== All Headings Visibility Fix ===== */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
    filter: none !important;
    text-shadow: none !important;
}

section h2 {
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ===== Paragraph Text ===== */
p {
    color: #cbd5e1 !important;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    border-top: 1px solid rgba(59, 130, 246, 0.2) !important;
    padding: 1.5rem 0 0.6rem 0 !important;
}

.footer-content {
    margin-bottom: 0.6rem !important;
    gap: 1.5rem !important;
}

.footer-section {
    padding: 0 !important;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.6rem !important;
    font-size: 1rem !important;
}

.footer-section p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
}

.footer-section ul {
    margin: 0 !important;
}

.footer-section ul li {
    margin-bottom: 0.3rem !important;
}

.footer-section ul li a {
    font-size: 0.85rem !important;
}

.footer-bottom {
    padding-top: 0.6rem !important;
    margin-top: 0.6rem !important;
}

.footer-bottom p {
    font-size: 0.8rem !important;
    margin: 0 !important;
}

.social-icons {
    gap: 0.6rem !important;
    margin-top: 0.5rem !important;
}

.social-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 1.1rem !important;
}

.footer h3,
.footer h4 {
    color: #ffffff !important;
}

.footer span {
    color: #60a5fa !important;
}

.footer p,
.footer a {
    color: #cbd5e1 !important;
}

.footer a:hover {
    color: #60a5fa !important;
}

.footer-bottom {
    border-top: 1px solid rgba(59, 130, 246, 0.1) !important;
}

.social-icon {
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transform: translateY(-3px);
}

/* ===== Enhanced Projects Section ===== */
.projects {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

.projects::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(59,130,246,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.projects .section-header h2 {
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: none !important;
    text-shadow: none !important;
}

.projects .section-header p {
    color: #cbd5e1 !important;
    text-shadow: none !important;
}

.project-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.project-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    transition: left 0.7s ease;
    z-index: 1;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    background: rgba(15, 23, 42, 0.9) !important;
    border-color: rgba(59, 130, 246, 0.6) !important;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.5), 0 0 60px rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-10px) scale(1.02);
}

.project-info h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.project-card:hover .project-info h3 {
    color: #ffffff !important;
    text-shadow: 0 0 25px rgba(96, 165, 250, 0.9), 0 2px 10px rgba(0, 0, 0, 0.5);
}

.location {
    color: #60a5fa !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.project-card:hover .location {
    color: #93c5fd !important;
    text-shadow: 0 0 15px rgba(147, 197, 253, 0.7), 0 1px 5px rgba(0, 0, 0, 0.3);
}

.description {
    color: #cbd5e1 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.project-card:hover .description {
    color: #f1f5f9 !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.project-image::after {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent) !important;
}

.project-image img {
    filter: brightness(0.9);
}

.project-card:hover .project-image img {
    filter: brightness(1.1);
    transform: scale(1.05);
}


/* ===== Enhanced Stats Section ===== */
.stats {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.stats::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(59,130,246,0.2)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.stats-grid {
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.3) !important;
}

.stat-number {
    font-size: 4rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none !important;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
    margin-bottom: 1rem;
}

.stat-item:hover .stat-number {
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 1));
    animation: pulse 2s ease-in-out infinite;
}

.stat-item p {
    color: #e0e7ff !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}


/* ===== Enhanced About Preview Section ===== */
.about-preview {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.about-content h2 {
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: none !important;
    text-shadow: none !important;
}

.about-content p {
    color: #cbd5e1 !important;
    text-shadow: none !important;
}

.about-content p::before {
    background: linear-gradient(180deg, #3b82f6, #60a5fa) !important;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

/* ===== Enhanced Testimonials Section ===== */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.testimonials .section-header h2 {
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: none !important;
    text-shadow: none !important;
}

.testimonials .section-header p {
    color: #cbd5e1 !important;
    text-shadow: none !important;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.testimonial-card::before {
    color: rgba(59, 130, 246, 0.15) !important;
}

.testimonial-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.3) !important;
}

.testimonial-text {
    color: #e0e7ff !important;
}

.testimonial-card:hover .testimonial-text {
    color: #ffffff !important;
}

.client-name {
    color: #ffffff !important;
}

.testimonial-card:hover .client-name {
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
}

.slider-btn {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #60a5fa !important;
    border: 2px solid rgba(59, 130, 246, 0.3) !important;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.6);
}


/* ===== Enhanced CTA Banner ===== */
.cta-banner {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95)),
                url('../assets/unsplash-photo-1560518883-ce09059eeffa-w1920-543c2554.jpg') center/cover !important;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid3" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid3)"/></svg>');
    opacity: 0.3;
}

.cta-content h2 {
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
    filter: none !important;
}

.cta-content p {
    color: #e0e7ff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

/* ===== Enhanced Contact Strip ===== */
.contact-strip {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    border-top: 1px solid rgba(59, 130, 246, 0.2) !important;
    position: relative;
    overflow: hidden;
}

.contact-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

.contact-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.4), 0 0 40px rgba(59, 130, 246, 0.2);
}

.contact-item h4 {
    color: #ffffff !important;
}

.contact-item:hover h4 {
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
}

.contact-item p {
    color: #cbd5e1 !important;
}

.contact-item:hover p {
    color: #e0e7ff !important;
}

/* ===== Enhanced Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%) !important;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4), 0 0 20px rgba(59, 130, 246, 0.3) !important;
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.6), 0 0 40px rgba(59, 130, 246, 0.5) !important;
    transform: translateY(-5px) scale(1.05);
}

.btn-small {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3) !important;
    border: none !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-small:hover {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5) !important;
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-light {
    background: #ffffff !important;
    color: #1e40af !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3) !important;
}

.btn-light:hover {
    background: #f0f9ff !important;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4) !important;
}


/* ===== Animations ===== */
@keyframes gradientShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(10%) translateY(-5%); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== Particle Effects ===== */
.services::after,
.projects::after,
.blog::after {
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-20px) translateX(10px); }
}

/* ===== Glow Effects ===== */
.service-card:hover,
.project-card:hover,
.blog-card:hover,
.stat-item:hover,
.testimonial-card:hover {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4),
                    0 0 60px rgba(59, 130, 246, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 15px 60px rgba(59, 130, 246, 0.6),
                    0 0 80px rgba(59, 130, 246, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .stat-number {
        font-size: 3rem !important;
    }
    
    .stat-item p {
        font-size: 1rem !important;
    }
    
    .section-header h2 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .stat-item {
        padding: 2rem 1.5rem !important;
    }
    
    .section-header h2 {
        font-size: 2rem !important;
    }
}

/* ===== Service Details Page ===== */
.service-detail-overview,
.key-benefits,
.detailed-process,
.pricing-summary,
.service-faq {
    position: relative;
}

.service-detail-overview::before,
.key-benefits::before,
.detailed-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.overview-content h2,
.key-benefits h2,
.detailed-process h2 {
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ===== SERVICE DETAILS - PROCESS STEPS - COMPLETE OVERRIDE ===== */
.detailed-process .detail-step {
    display: flex !important;
    gap: 2rem !important;
    align-items: flex-start !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.detailed-process .step-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: #ffffff !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    width: 70px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5) !important;
    flex-shrink: 0 !important;
    border: none !important;
}

.detailed-process .step-details {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.5s ease !important;
    flex: 1 !important;
}

.detailed-process .step-details:hover {
    background: rgba(15, 23, 42, 0.95) !important;
    border-color: rgba(59, 130, 246, 0.6) !important;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-5px);
}

.detailed-process .step-details h3 {
    color: #ffffff !important;
    font-size: 1.4rem !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.detailed-process .step-details p {
    color: #e0e7ff !important;
    line-height: 1.8 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3) !important;
}

.detailed-process .step-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 1rem 0 0 0 !important;
}

.detailed-process .step-list li {
    color: #cbd5e1 !important;
    padding: 0.6rem 0 !important;
    font-size: 0.95rem !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

.detailed-process .step-details:hover h3 {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.detailed-process .step-details:hover p {
    color: #f1f5f9 !important;
}

.detailed-process .step-details:hover .step-list li {
    color: #e0e7ff !important;
}

/* ===== KEY BENEFITS & FAQ SECTIONS - RESTORE STYLING ===== */
.overview-stat,
.benefit-card,
.pricing-card,
.faq-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s ease;
}

.overview-stat:hover,
.benefit-card:hover,
.pricing-card:hover,
.faq-item:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-5px);
}

.benefit-icon,
.step-icon {
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
}

.pricing-card.featured-pricing {
    background: rgba(59, 130, 246, 0.1) !important;
    border: 2px solid rgba(59, 130, 246, 0.4) !important;
}

.pricing-badge {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.faq-question h4 {
    color: #ffffff !important;
}

.faq-answer p {
    color: #cbd5e1 !important;
}

.benefit-icon,
.step-icon {
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
}

.pricing-card.featured-pricing {
    background: rgba(59, 130, 246, 0.1) !important;
    border: 2px solid rgba(59, 130, 246, 0.4) !important;
}

.pricing-badge {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.faq-question h4 {
    color: #ffffff !important;
}

.faq-answer p {
    color: #cbd5e1 !important;
}

/* ===== Project Details Page ===== */

.project-tag {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #60a5fa !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    backdrop-filter: blur(10px);
}

.project-summary,
.project-gallery,
.project-scope,
.project-results,
.project-testimonial,
.related-projects {
    position: relative;
}

.spec-card,
.gallery-item,
.scope-item,
.result-card,
.related-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s ease;
}

.spec-card:hover,
.gallery-item:hover,
.result-card:hover,
.related-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-5px);
}

.spec-icon,
.result-icon {
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
}

.gallery-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent) !important;
}

.gallery-overlay h3 {
    color: #ffffff !important;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.timeline-date {
    color: #60a5fa !important;
    font-weight: 600;
}

.timeline-info h4 {
    color: #ffffff !important;
}

.testimonial-wrapper {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

.quote-icon {
    color: rgba(59, 130, 246, 0.3) !important;
}

.testimonial-quote p {
    color: #e0e7ff !important;
}

.testimonial-author h4 {
    color: #ffffff !important;
}

.testimonial-author p {
    color: #60a5fa !important;
}

/* ===== Team Page ===== */
.leadership-section,
.team-members-section,
.company-culture {
    position: relative;
}

.leader-card,
.team-member,
.culture-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s ease;
}

.leader-card:hover,
.team-member:hover,
.culture-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-5px);
}

.leader-overlay,
.member-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent) !important;
}

.leader-role,
.member-role {
    color: #60a5fa !important;
}

.leader-bio,
.member-bio {
    color: #cbd5e1 !important;
}

.leader-stat {
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
}

.stat-number {
    color: #60a5fa !important;
}

.stat-label {
    color: #cbd5e1 !important;
}

.social-link {
    background: rgba(59, 130, 246, 0.2) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transform: translateY(-3px);
}

.culture-icon {
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
}

/* ===== About Page Specific ===== */
.mission-values,
.why-choose,
.team-preview {
    position: relative;
}

.mission-values::before,
.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.value-card,
.feature-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s ease;
}

.value-card:hover,
.feature-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-5px);
}

.value-icon,
.feature-icon {
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
}

/* ===== Pricing Page ===== */
.pricing-hero,
.pricing-plans,
.pricing-comparison,
.pricing-faq {
    position: relative;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s ease;
}

.plan-card:hover,
.plan-card.featured {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-10px) scale(1.05);
}

.plan-price {
    color: #60a5fa !important;
}

/* ===== FAQ Page ===== */
.faq-section {
    position: relative;
}

.faq-category {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* ===== Careers Page ===== */
.careers-hero,
.job-listings,
.benefits-section,
.application-process {
    position: relative;
}

.job-card,
.benefit-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s ease;
}

.job-card:hover,
.benefit-item:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-5px);
}

.job-title {
    color: #ffffff !important;
}

.job-meta {
    color: #60a5fa !important;
}

/* ===== Contact Page ===== */
.contact-hero,
.contact-form-section,
.contact-info-section,
.map-section {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(59, 130, 246, 0.5) !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.form-group label {
    color: #cbd5e1 !important;
}

.info-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

.info-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4) !important;
    transform: translateY(-5px);
}

/* ===== Blog & Blog Article Pages ===== */
.blog,
.blog-article {
    position: relative;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    transition: left 0.7s ease;
    z-index: 1;
}

.blog-card:hover::before {
    left: 100%;
}

.blog-card:hover {
    background: rgba(30, 41, 59, 0.9) !important;
    border-color: rgba(59, 130, 246, 0.6) !important;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.5), 0 0 60px rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-10px) scale(1.02);
}

.blog-info h3 {
    color: #ffffff !important;
}

.blog-card:hover .blog-info h3 {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.blog-meta {
    color: #60a5fa !important;
}

.blog-excerpt {
    color: #cbd5e1 !important;
}

.blog-card:hover .blog-excerpt {
    color: #e0e7ff !important;
}

.article-content {
    color: #cbd5e1 !important;
}

.article-content h2,
.article-content h3 {
    color: #ffffff !important;
}

.article-meta {
    color: #60a5fa !important;
}

.author-info {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.author-name {
    color: #ffffff !important;
}

.author-bio {
    color: #cbd5e1 !important;
}

/* ===== Additional Premium Effects ===== */
.service-card,
.project-card,
.blog-card,
.stat-item,
.testimonial-card,
.contact-item {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Shimmer effect on cards */
.service-card::before,
.project-card::before,
.blog-card::before {
    pointer-events: none;
}

/* Enhanced icon glow */
.service-icon,
.contact-icon {
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.4));
    transition: all 0.5s ease;
}

.service-card:hover .service-icon,
.contact-item:hover .contact-icon {
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 1));
}

/* Text glow on hover */
.service-card:hover h3,
.project-card:hover h3,
.blog-card:hover h3,
.stat-item:hover .stat-number,
.testimonial-card:hover .client-name {
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    }
    50% {
        text-shadow: 0 0 30px rgba(59, 130, 246, 1),
                     0 0 40px rgba(96, 165, 250, 0.8);
    }
}

/* Smooth transitions for all interactive elements */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
/* ===== ABOUT PAGE FIXES ===== */
.company-story {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-content h2 {
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: none !important;
    text-shadow: none !important;
}

.story-content p {
    color: #cbd5e1 !important;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5);
}

.highlight-item h4 {
    color: #ffffff !important;
}

.highlight-item p {
    color: #cbd5e1 !important;
}

.story-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.story-image-main {
    grid-column: 1 / -1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    animation: float 6s ease-in-out infinite;
}

.story-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image-secondary {
    grid-column: 1 / 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    animation: float 6s ease-in-out infinite 1s;
}

.story-image-secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mission-values {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.mission-card {
    background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
    padding: 3rem;
    border-radius: 24px;
    color: white !important;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.mission-card h3 {
    color: #ffffff !important;
}

.mission-card p {
    color: #e0e7ff !important;
}

.values-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-10px);
}

.value-card h4 {
    color: #ffffff !important;
}

.value-card p {
    color: #cbd5e1 !important;
}

.value-icon {
    color: #60a5fa !important;
}

.team-preview {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.team-member {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease;
}

.team-member:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-15px);
}

.team-member h3 {
    color: #ffffff !important;
}

.team-member .member-bio {
    color: #cbd5e1 !important;
}

.why-choose {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.why-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease;
}

.why-item:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-10px);
}

.why-number {
    color: #60a5fa !important;
}

.why-item h3 {
    color: #ffffff !important;
}

.why-item p {
    color: #cbd5e1 !important;
}

/* ===== SERVICES PAGE FIXES ===== */
.services-overview {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.overview-content h2 {
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.overview-content p {
    color: #cbd5e1 !important;
}

.services-detailed {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

.service-detailed-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s ease;
}

.service-detailed-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-15px);
}

.service-detailed-card h3 {
    color: #ffffff !important;
}

.service-detailed-card > p {
    color: #cbd5e1 !important;
}

.service-features li {
    color: #cbd5e1 !important;
}

.service-features li:hover {
    color: #60a5fa !important;
}

.process-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.process-timeline::before {
    background: linear-gradient(180deg, #3b82f6, #60a5fa) !important;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.step-number {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3) !important;
}

.step-content {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease;
}

.step-content:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-10px);
}

.step-content h3 {
    color: #ffffff !important;
}

.step-content p {
    color: #cbd5e1 !important;
}

.industry-segments {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

.segment-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s ease;
}

/* ===== INDUSTRY SEGMENTS - SERVICES PAGE ===== */
.industry-segments {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

.segment-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s ease;
}

.segment-card:hover {
    background: rgba(30, 41, 59, 0.8) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.3) !important;
}

.segment-content {
    background: transparent !important;
}

.segment-card:hover .segment-content {
    background: transparent !important;
}

.segment-content h3 {
    color: #ffffff !important;
}

.segment-content p {
    color: #cbd5e1 !important;
}

.segment-card:hover .segment-content h3 {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.segment-card:hover .segment-content p {
    color: #f1f5f9 !important;
}

/* ===== PROJECTS PAGE FIXES ===== */
.projects-gallery {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.gallery-project-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s ease;
}

.gallery-project-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-20px);
}

.gallery-project-info h3 {
    color: #ffffff !important;
}

.gallery-project-info > p {
    color: #cbd5e1 !important;
}

.success-stats {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

.success-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease;
}

.success-item:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-10px);
}

.success-item h3 {
    color: #60a5fa !important;
}

.success-item p {
    color: #cbd5e1 !important;
}

/* ===== BLOG PAGE FIXES ===== */
.blog-posts {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.blog-post-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s ease;
}

.blog-post-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.3) !important;
}

.blog-post-card:hover .post-content {
    background: rgba(30, 41, 59, 0.8) !important;
}

.blog-post-card:hover .post-content h3 {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.blog-post-card:hover .post-content > p {
    color: #e0e7ff !important;
}
    transform: translateY(-10px);
}

.blog-post-card h3 {
    color: #ffffff !important;
}

.blog-post-card > p {
    color: #cbd5e1 !important;
}

/* ===== CONTACT PAGE FIXES ===== */
.contact-main {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
}

.form-header h2 {
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.form-header p {
    color: #cbd5e1 !important;
}

.form-group label {
    color: #cbd5e1 !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(59, 130, 246, 0.5) !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.info-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease;
}

.info-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-10px);
}

.info-card h3 {
    color: #ffffff !important;
}

.info-card p {
    color: #cbd5e1 !important;
}

/* ===== HAMBURGER MENU FIXES ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #ffffff !important;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
    }
    
    .project-hero {
        min-height: 60vh;
    }
    
    .page-title {
        font-size: 2.5rem !important;
    }
    
    .project-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .page-subtitle {
        font-size: 1.1rem !important;
    }
    
    .project-hero p {
        font-size: 1rem !important;
    }
    
    .page-hero-content {
        padding: 3rem 1rem;
    }
    
    .project-hero-content {
        padding: 3rem 0;
    }
    
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-images {
        order: -1;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-cards {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu a {
        color: #ffffff !important;
        font-size: 1.2rem;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: #60a5fa !important;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 45vh;
    }
    
    .project-hero {
        min-height: 55vh;
    }
    
    .page-title {
        font-size: 2rem !important;
    }
    
    .project-hero h1 {
        font-size: 2rem !important;
    }
    
    .page-subtitle {
        font-size: 1rem !important;
    }
    
    .project-hero p {
        font-size: 0.95rem !important;
    }
    
    .page-hero-content {
        padding: 2rem 1rem;
    }
    
    .project-hero-content {
        padding: 2rem 0;
    }
    
    .project-tags {
        justify-content: center;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .story-image-main img {
        height: 300px;
    }
    
    .story-image-secondary img {
        height: 200px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step:nth-child(even) .step-content {
        grid-column: 1;
        text-align: left;
    }
    
    .process-step:nth-child(even) .step-number {
        grid-column: 1;
    }
    
    .process-step:nth-child(odd) .step-content {
        grid-column: 1;
        text-align: left;
    }
    
    .process-step:nth-child(odd) .step-number {
        grid-column: 1;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-content {
        margin-left: 60px;
    }
}
/* ===== BLOG ARTICLE PAGE FIXES ===== */
.article-content-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.article-main {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-body h2,
.article-body h3 {
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.article-body p {
    color: #cbd5e1 !important;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.lead-paragraph {
    font-size: 1.2rem !important;
    color: #e0e7ff !important;
    font-weight: 500;
}

.article-quote {
    background: rgba(59, 130, 246, 0.1) !important;
    border-left: 4px solid #3b82f6 !important;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
}

.article-quote p {
    color: #e0e7ff !important;
    font-style: italic;
    font-size: 1.1rem;
}

.article-quote cite {
    color: #60a5fa !important;
}

.article-highlight-box {
    background: rgba(59, 130, 246, 0.15) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.article-highlight-box h3 {
    color: #60a5fa !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
}

.article-highlight-box p {
    color: #e0e7ff !important;
    margin-bottom: 0 !important;
}

.article-conclusion {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.article-conclusion h3 {
    color: #60a5fa !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
}

.article-conclusion p {
    color: #cbd5e1 !important;
}

.article-share {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.article-share h4 {
    color: #ffffff !important;
}

.share-btn {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #60a5fa !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(59, 130, 246, 0.4) !important;
    color: #ffffff !important;
}

.author-box {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    gap: 2rem;
}

.author-box h3 {
    color: #ffffff !important;
    margin-bottom: 1rem !important;
}

.author-box p {
    color: #cbd5e1 !important;
}

.related-posts-section {
    margin-top: 3rem;
}

.related-posts-section h2 {
    color: #ffffff !important;
    margin-bottom: 2rem;
}

.related-post-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-post-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-5px);
}

.related-post-card h3 {
    color: #ffffff !important;
}

.related-post-card p {
    color: #cbd5e1 !important;
}

.related-category {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #60a5fa !important;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* ===== BLOG ARTICLE SIDEBAR - FIX WHITE BACKGROUND VISIBILITY ===== */
.article-sidebar {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    border-radius: 24px !important;
    padding: 2rem !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
    height: fit-content !important;
}

.sidebar-widget {
    margin-bottom: 2rem !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.sidebar-widget h3 {
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.2rem !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.popular-post-item {
    display: flex !important;
    gap: 1rem !important;
    padding: 1rem !important;
    background: rgba(30, 41, 59, 0.6) !important;
    border-radius: 12px !important;
    margin-bottom: 1rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.popular-post-item:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
    transform: translateY(-2px);
}

.popular-post-item h4 {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    margin-bottom: 0.3rem !important;
}

.popular-post-item span {
    color: #60a5fa !important;
    font-size: 0.8rem !important;
}

.category-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.category-list li {
    margin-bottom: 0.8rem !important;
}

.category-list a {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    display: flex !important;
    justify-content: space-between !important;
    padding: 0.8rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    background: rgba(30, 41, 59, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.category-list a:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #60a5fa !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
    transform: translateX(5px);
}

.category-list span {
    color: #60a5fa !important;
    font-weight: 600 !important;
}

.cta-widget {
    background: rgba(59, 130, 246, 0.15) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    text-align: center !important;
}

.cta-widget h3 {
    color: #60a5fa !important;
    margin-bottom: 1rem !important;
}

.cta-widget p {
    color: #e0e7ff !important;
    margin-bottom: 1.5rem !important;
}
    color: #60a5fa !important;
}

.cta-widget p {
    color: #e0e7ff !important;
}

/* ===== CAREERS PAGE FIXES ===== */
.why-work-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.why-work-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.why-work-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-10px);
}

.why-work-card h3 {
    color: #ffffff !important;
    margin-bottom: 1rem;
}

.why-work-card p {
    color: #cbd5e1 !important;
}

.why-work-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
}

.benefits-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-5px);
}

.benefit-item h4 {
    color: #ffffff !important;
}

.benefit-item p {
    color: #cbd5e1 !important;
}

.benefit-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.6));
}

.open-positions-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.position-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.position-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-10px);
}

.position-card h3 {
    color: #ffffff !important;
}

.position-card p {
    color: #cbd5e1 !important;
}

.position-salary {
    color: #60a5fa !important;
    font-weight: 600;
    font-size: 1.2rem;
}

.position-type {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #60a5fa !important;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.position-requirements h4 {
    color: #ffffff !important;
}

.position-requirements ul {
    list-style: none;
}

.position-requirements li {
    color: #cbd5e1 !important;
    padding: 0.3rem 0;
}

.application-process {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

.process-step-horizontal {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step-horizontal:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-5px);
}

.step-number-horizontal {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.process-step-horizontal h3 {
    color: #ffffff !important;
}

.process-step-horizontal p {
    color: #cbd5e1 !important;
}

/* ===== PRICING PAGE FIXES ===== */
.pricing-plans-main {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
}

.pricing-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    transform: translateY(-15px) scale(1.05);
}

.pricing-card.featured-pricing {
    background: rgba(59, 130, 246, 0.15) !important;
    border: 2px solid rgba(59, 130, 246, 0.5) !important;
    transform: scale(1.05);
}

.pricing-card h3 {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-card p {
    color: #e0e7ff !important;
    margin-bottom: 1.5rem !important;
    text-shadow: none !important;
}

.pricing-card:hover h3 {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover p {
    color: #f1f5f9 !important;
}

.price-amount {
    color: #60a5fa !important;
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin: 1.5rem 0;
    text-shadow: 0 2px 15px rgba(59, 130, 246, 0.5);
}

.price-label {
    color: #cbd5e1 !important;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    color: #e0e7ff !important;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    text-shadow: none !important;
}

.pricing-card:hover .pricing-features li {
    color: #f1f5f9 !important;
}

.pricing-badge {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.feature-comparison {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

/* ===== PROPER TABLE-BASED COMPARISON STYLING ===== */
.feature-comparison {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    padding: 8rem 0;
}

.comparison-table-wrapper {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    padding: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(20px);
}

/* Table Header Row */
.comparison-table thead tr {
    background: transparent;
}

.comparison-table th {
    padding: 0;
    border: none;
    vertical-align: top;
    position: relative;
}

/* Feature Column Header */
.comparison-table th.feature-column {
    width: 30%;
    background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
    padding: 2rem 1.5rem;
    text-align: left;
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* Plan Column Headers */
.comparison-table th.plan-column {
    width: 23.33%;
    background: rgba(30, 41, 59, 0.8) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.comparison-table th.plan-column:last-child {
    border-right: none;
}

/* Featured Column Styling */
.comparison-table th.featured-column {
    background: rgba(59, 130, 246, 0.25) !important;
    border-left: 2px solid rgba(59, 130, 246, 0.5);
    border-right: 2px solid rgba(59, 130, 246, 0.5);
}

/* Plan Header Content */
.plan-header-content {
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.featured-column .plan-header-content {
    padding-top: 3rem;
}

.plan-header-content h3 {
    color: #ffffff !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.8rem !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.plan-header-content .plan-price {
    color: #60a5fa !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin: 0 !important;
    text-shadow: 0 2px 15px rgba(59, 130, 246, 0.6) !important;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: #ffffff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.6);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    z-index: 10;
}

/* Table Body Rows */
.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.4) !important;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(30, 41, 59, 0.4) !important;
}

.comparison-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.15) !important;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

/* Table Cells */
.comparison-table td {
    padding: 1.5rem 1.5rem;
    text-align: center;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: middle;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.comparison-table td:last-child {
    border-right: none;
}

/* Feature Name Column */
.comparison-table td.feature-name {
    text-align: left;
    color: #ffffff !important;
    font-weight: 600;
    background: rgba(30, 41, 59, 0.6) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* Featured Column Cells */
.comparison-table td.featured-cell {
    background: rgba(59, 130, 246, 0.15) !important;
    border-left: 2px solid rgba(59, 130, 246, 0.5);
    border-right: 2px solid rgba(59, 130, 246, 0.5);
    color: #ffffff !important;
}

/* Feature Icons */
.comparison-table .icon {
    font-size: 1.2rem;
    font-weight: 700;
}

.comparison-table .has-feature .icon {
    color: #4ade80 !important;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.comparison-table .no-feature .icon {
    color: #f87171 !important;
    text-shadow: 0 0 10px rgba(248, 113, 113, 0.3);
    opacity: 0.7;
}

/* Hover Effects */
.comparison-table tbody tr:hover td {
    color: #ffffff !important;
}

.comparison-table tbody tr:hover td.feature-name {
    color: #ffffff !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .comparison-table-wrapper {
        overflow-x: auto;
        border-radius: 16px;
    }
    
    .comparison-table {
        min-width: 800px;
    }
    
    .plan-header-content {
        padding: 2rem 1rem 1.5rem 1rem;
        min-height: 120px;
    }
    
    .plan-header-content h3 {
        font-size: 1.2rem !important;
    }
    
    .plan-header-content .plan-price {
        font-size: 1.5rem !important;
    }
    
    .comparison-table td {
        padding: 1.2rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .comparison-table {
        min-width: 700px;
    }
    
    .comparison-table th.feature-column {
        font-size: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .plan-header-content {
        padding: 1.5rem 0.8rem 1.2rem 0.8rem;
        min-height: 110px;
    }
    
    .plan-header-content h3 {
        font-size: 1.1rem !important;
    }
    
    .plan-header-content .plan-price {
        font-size: 1.3rem !important;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        top: 8px;
    }
    
    .comparison-table td {
        padding: 1rem 0.8rem;
        font-size: 0.85rem;
    }
}

.pricing-faq-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

/* ===== CONTACT FORM PREMIUM STYLING ===== */
.contact-form {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #e0e7ff !important;
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px;
    color: #ffffff !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8 !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(59, 130, 246, 0.6) !important;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .process-steps-horizontal {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-arrow {
        display: none;
    }
}

/* ===== PROJECT TESTIMONIAL - COMPLETE WHITE BLOCK REMOVAL ===== */
.project-testimonial {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    padding: 8rem 0;
}

.project-testimonial .testimonial-wrapper {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    position: relative !important;
    overflow: visible !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.project-testimonial .testimonial-quote {
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    border-radius: 24px !important;
    padding: 4rem !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
    position: relative !important;
    z-index: 1 !important;
    text-align: center !important;
}

.project-testimonial .testimonial-quote::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 70%) !important;
    pointer-events: none !important;
    border-radius: 24px !important;
}

.project-testimonial .quote-icon {
    font-size: 5rem !important;
    color: rgba(59, 130, 246, 0.5) !important;
    line-height: 1 !important;
    margin-bottom: 2rem !important;
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
    top: auto !important;
    left: auto !important;
}

.project-testimonial .testimonial-quote p {
    color: #f1f5f9 !important;
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
    margin-bottom: 3rem !important;
    font-style: italic !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    position: relative !important;
    z-index: 2 !important;
}

.project-testimonial .testimonial-author {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.project-testimonial .testimonial-author img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    border: 3px solid rgba(59, 130, 246, 0.5) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
}

.project-testimonial .testimonial-author h4 {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.project-testimonial .testimonial-author p {
    color: #60a5fa !important;
    font-size: 1rem !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3) !important;
    margin: 0 !important;
}

/* ===== RELATED PROJECTS SECTION FIXES ===== */
.related-projects {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    padding: 8rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.related-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.related-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-10px);
}

.related-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-info {
    padding: 2rem;
}

.related-info h3 {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    margin-bottom: 0.8rem !important;
    text-shadow: none !important;
}

.related-card:hover .related-info h3 {
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
}

.related-info p {
    color: #60a5fa !important;
    margin-bottom: 0.8rem !important;
    text-shadow: none !important;
}

.related-price {
    color: #93c5fd !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    display: block;
    margin-bottom: 1.5rem !important;
}

.related-info .btn {
    margin-top: 1rem;
}

/* ===== HOVER TEXT VISIBILITY FIXES ===== */
.service-card:hover h3,
.project-card:hover h3,
.blog-card:hover h3,
.testimonial-card:hover .client-name,
.why-work-card:hover h3,
.benefit-item:hover h4,
.position-card:hover h3,
.pricing-card:hover h3,
.value-card:hover h4,
.why-item:hover h3,
.segment-card:hover h3,
.gallery-project-card:hover h3,
.success-item:hover h3,
.info-card:hover h3 {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.service-card:hover p,
.project-card:hover p,
.blog-card:hover p,
.testimonial-card:hover .testimonial-text,
.why-work-card:hover p,
.benefit-item:hover p,
.position-card:hover p,
.pricing-card:hover p,
.value-card:hover p,
.why-item:hover p,
.segment-card:hover p,
.gallery-project-card:hover p,
.success-item:hover p,
.info-card:hover p {
    color: #e0e7ff !important;
    text-shadow: none !important;
}d:hover p,
.success-item:hover p,
.info-card:hover p {
    color: #e0e7ff !important;
}


/* ===== SERVICE DETAILS PAGE PRICING SECTION ===== */
.pricing-summary {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    padding: 8rem 0;
}

.pricing-summary .section-header h2 {
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.pricing-summary .section-header p {
    color: #cbd5e1 !important;
}

.pricing-summary .pricing-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.pricing-summary .pricing-card:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-10px);
}

.pricing-header h3 {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-header p {
    color: #cbd5e1 !important;
    font-size: 0.95rem !important;
}

.pricing-price {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-price .price-amount {
    color: #60a5fa !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    display: block;
    text-shadow: 0 2px 15px rgba(59, 130, 246, 0.5);
}

.pricing-price .price-label {
    color: #94a3b8 !important;
    font-size: 0.9rem !important;
    margin-top: 0.5rem;
    display: block;
}

.pricing-summary .pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-summary .pricing-features li {
    color: #e0e7ff !important;
    padding: 0.8rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-summary .pricing-card:hover .pricing-features li {
    color: #f1f5f9 !important;
}

.pricing-summary .featured-pricing {
    background: rgba(59, 130, 246, 0.15) !important;
    border: 2px solid rgba(59, 130, 246, 0.5) !important;
    transform: scale(1.05);
}

.pricing-summary .pricing-badge {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
