/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 70px;
    display: flex;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 0;
    min-height: 50px;
}

/* Mobile nav-logo improvements */
@media (max-width: 768px) {
    .nav-logo {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        flex-shrink: 0 !important;
        min-width: 150px !important;
        height: 50px !important;
        padding: 0 !important;
        flex-direction: row !important;
    }
    
    .nav-logo .logo {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0 !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2) !important;
    }
    
    .nav-logo .company-name {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #3b82f6 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 120px !important;
        line-height: 1.2 !important;
        text-shadow: 0 1px 2px rgba(59, 130, 246, 0.3) !important;
    }
}

.nav-logo img {
    flex-shrink: 0;
    display: block;
    visibility: visible;
    opacity: 1;
    background: #f0f0f0;
    border: 1px solid #ddd;
}

.logo {
    height: 45px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1.1);
    display: block;
    visibility: visible;
    opacity: 1;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.2);
}

/* Logo specific improvements */
.nav-logo .logo,
.footer-logo .logo {
    display: block;
    background: transparent;
    box-shadow: none;
}

/* Ensure logo maintains aspect ratio */
.logo {
    aspect-ratio: auto;
    object-position: center;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu Styling */
.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    background: none !important;
    box-shadow: none !important;
    height: auto !important;
    width: auto !important;
    left: auto !important;
    top: auto !important;
    flex-direction: row !important;
    text-align: left !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
.hamburger {
        display: none !important;
    }
}

/* Mobile hamburger menu */
@media (max-width: 768px) {
    .navbar {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    }
    
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    }
    .hamburger {
        display: flex !important;
        cursor: pointer !important;
        padding: 8px !important;
        z-index: 1001 !important;
        width: 40px !important;
        height: 40px !important;
        justify-content: center !important;
        align-items: center !important;
        border-radius: 8px !important;
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
        transition: all 0.3s ease !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5) !important;
        border: 2px solid #3b82f6 !important;
    }
    
    .hamburger i {
        color: white !important;
        font-size: 20px !important;
        transition: all 0.3s ease !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
        font-weight: bold !important;
    }
    
    .hamburger:hover {
        background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%) !important;
        transform: scale(1.05) !important;
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4) !important;
    }
    
    .hamburger:hover i {
        transform: rotate(90deg) !important;
    }
    
    .hamburger.active {
        background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%) !important;
        transform: scale(1.05) !important;
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4) !important;
    }
    
    .hamburger.active i {
        transform: rotate(90deg) !important;
    }
    
    /* Force hamburger to be visible on mobile */
    #hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .hamburger span,
    .hamburger .bar {
        width: 25px !important;
        height: 3px !important;
        background: #3b82f6 !important;
        margin: 3px 0 !important;
        transition: 0.3s !important;
        border-radius: 2px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Force hamburger lines to be visible */
    #hamburger .bar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #3b82f6 !important;
        width: 25px !important;
        height: 3px !important;
        margin: 3px 0 !important;
        border-radius: 2px !important;
    }
    
    .hamburger:hover {
        background: rgba(59, 130, 246, 0.2) !important;
        transform: scale(1.05) !important;
    }
    
    .hamburger span {
        width: 25px !important;
        height: 3px !important;
        background: #3b82f6 !important;
        margin: 3px 0 !important;
        transition: 0.3s !important;
        border-radius: 2px !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px) !important;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px) !important;
    }
    
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 70px !important;
        flex-direction: column !important;
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        width: 100% !important;
        text-align: center !important;
        transition: left 0.3s ease !important;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15) !important;
        padding: 20px 0 !important;
        height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        z-index: 1000 !important;
        border-top: 1px solid #e2e8f0 !important;
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-link {
        padding: 15px 20px !important;
        display: block !important;
        border-bottom: 1px solid #f1f5f9 !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #334155 !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
    }
    
    .nav-link:hover {
        background-color: #f7fafc !important;
        color: #3b82f6 !important;
    }
}

/* Ensure desktop navigation is visible */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        background: none !important;
        box-shadow: none !important;
        height: auto !important;
        width: auto !important;
        left: auto !important;
        top: auto !important;
        flex-direction: row !important;
        text-align: left !important;
        padding: 0 !important;
        margin: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-link {
        display: inline-block !important;
        padding: 8px 0 !important;
        border-bottom: none !important;
        font-size: 0.95rem !important;
        color: #4a5568 !important;
        text-decoration: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar {
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
    }
    
    .nav-link {
        display: inline-block !important;
        padding: 8px 0 !important;
        border-bottom: none !important;
        font-size: 0.95rem !important;
    }
}

/* Fix navbar visibility on About section */
#about {
    position: relative;
    z-index: 1;
}

.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 8px 0;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    border: 2px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    border: 2px solid rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.cta-button::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(102, 126, 234, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: #4a5568;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    opacity: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 70%),
                radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.1) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    min-width: 120px;
    min-height: 100px;
    text-align: center;
}

.floating-card i {
    font-size: 2rem;
    color: #3b82f6;
}

.floating-card span {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: -4s;
}

.card-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: -1s;
}

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

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

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #3b82f6;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(-45deg); }
    40% { transform: translateY(-10px) rotate(-45deg); }
    60% { transform: translateY(-5px) rotate(-45deg); }
}

/* Section Styles */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a202c;
    letter-spacing: -0.025em;
}

.section-description {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.025em;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Products Section */
.products {
    background: #f8fafc;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(240, 147, 251, 0.03) 100%);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.product-card p {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.coming-soon-badge span {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.coming-soon-badge.live-now span {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    color: #3b82f6;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.products-cta {
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.products-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.products-cta p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Corporate Services Design */
.services-badge {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.services-corporate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.corporate-service-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    opacity: 0;
    transition: all 0.3s ease;
}

.corporate-service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.corporate-service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.service-tech-tags span {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.corporate-service-card:hover .service-tech-tags span {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.service-overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.corporate-service-card:hover .service-overlay-text {
    opacity: 0;
}

.service-overlay-text h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.corporate-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.corporate-service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.view-more-container {
    text-align: center;
    margin: 50px 0;
}

.view-more-services-btn {
    background: white;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-more-services-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.view-more-services-btn i {
    transition: transform 0.3s ease;
}

.view-more-services-btn:hover i {
    transform: translateY(2px);
}

/* Filtering Animation */
.modern-service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.modern-service-card.hidden {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
    text-align: center;
    line-height: 1.3;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-top: auto;
    text-align: left;
    padding-left: 0;
}

.service-features li {
    padding: 6px 0;
    color: #3b82f6;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.product-features li {
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 5px;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a202c;
}

.feature p {
    color: #4a5568;
    line-height: 1.6;
}

.about-visual {
    position: relative;
    height: 400px;
}

.about-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    min-height: 400px;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #000;
}

.about-video:hover {
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 20px;
    cursor: pointer;
    z-index: 5;
    pointer-events: auto;
    user-select: none;
}

.about-video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.play-button i {
    font-size: 2rem;
    color: #3b82f6;
    margin-left: 5px;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Portfolio Section */
.portfolio {
    background: #ffffff;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #4a5568;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.portfolio-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio-tech span {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    opacity: 0.8;
}

.contact-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 70%),
                radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.1) 0%, transparent 70%);
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.contact-badge span {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Contact Stats */
.contact-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.contact-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-content {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #3b82f6;
    font-weight: 500;
}

/* Contact Main */
.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    gap: 20px;
}

.contact-method-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
}

.contact-method-card.primary-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    transform: scale(1.05);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-method-card.primary-card:hover {
    transform: scale(1.05) translateY(-5px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #3b82f6;
}

.contact-method-card.primary-card .method-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-method-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a202c;
}

.contact-method-card.primary-card h3 {
    color: white;
}

.contact-method-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.contact-method-card.primary-card p {
    color: rgba(255, 255, 255, 0.9);
}

.method-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-method-card.primary-card .method-btn {
    background: white;
    color: #3b82f6;
}

.method-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Enhanced Contact Form */
.enhanced-contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.form-header p {
    color: #4a5568;
    font-size: 1rem;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
    box-sizing: border-box;
}

.form-group textarea {
    padding-right: 20px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-icon,
.select-icon {
    position: absolute;
    right: 15px;
    top: 70%;
    transform: translateY(-50%);
    color: #3b82f6;
    font-size: 1rem;
    pointer-events: none;
    z-index: 10;
}

/* Default positioning for inputs and selects */
.form-group input + .input-icon,
.form-group select + .select-icon {
    top: 70%;
}



/* Row form adjustments */
.form-row .form-group .input-icon,
.form-row .form-group .select-icon {
    top: 70%;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-right: 20px;
}

/* Remove icon from textarea - better approach */
.form-group textarea + .input-icon {
    display: none;
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-actions .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 15px;
}

.form-note {
    font-size: 0.85rem;
    color: #4a5568;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Office Info */
.office-info {
    position: relative;
    z-index: 2;
}

.office-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.office-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.office-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.office-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.office-details {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.office-item i {
    font-size: 1.2rem;
    color: #3b82f6;
    margin-top: 5px;
    width: 20px;
}

.office-item strong {
    display: block;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 5px;
}

.office-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.office-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.office-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    color: #3b82f6;
    text-decoration: none;
    border: 2px solid #3b82f6;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.office-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 5px 0;
}

.footer-logo img {
    flex-shrink: 0;
    height: 45px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1.1);
}

.footer-logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.2);
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    color: #a0aec0;
    margin-bottom: 20px;
}

.footer-section h4,
.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d3748;
    color: #a0aec0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.social-links a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #a0aec0;
}

.contact-details i {
    color: #3b82f6;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .contact-details p {
        justify-content: center;
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .video-card {
        padding: 1.5rem;
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .case-study-content {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    
    .case-study-card {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
    }

    /* Tablet Floating Cards */
    .floating-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        width: 100%;
        max-width: 500px;
        height: 350px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .floating-card {
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        color: #334155;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(59, 130, 246, 0.3);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 120px;
        position: relative;
    }

    .floating-card i {
        font-size: 1.8rem;
        color: #3b82f6;
        margin-bottom: 10px;
        display: block;
    }

    /* Tablet Navigation */
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 70px !important;
        flex-direction: column !important;
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        width: 100% !important;
        text-align: center !important;
        transition: left 0.3s ease !important;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15) !important;
        padding: 20px 0 !important;
        height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        z-index: 1000 !important;
        border-top: 1px solid #e2e8f0 !important;
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-link {
        padding: 15px 20px !important;
        display: block !important;
        border-bottom: 1px solid #f1f5f9 !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #334155 !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
    }
    
    .nav-link:hover {
        background-color: #f7fafc !important;
        color: #3b82f6 !important;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer !important;
        padding: 4px !important;
        z-index: 1001 !important;
    }
    
    .hamburger span {
        width: 25px !important;
        height: 3px !important;
        background: #3b82f6 !important;
        margin: 3px 0 !important;
        transition: 0.3s !important;
        border-radius: 2px !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px) !important;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px) !important;
    }
}

/* Comprehensive Responsive Design */
/* Extra Small Devices (phones, 600px and down) */
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .floating-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
    }
    
    .floating-card {
        padding: 15px;
        min-height: 80px;
    }
    
    .nav-logo .company-name {
        font-size: 16px;
        max-width: 150px;
        font-weight: 700;
        color: #3b82f6;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-logo .logo {
        width: 40px;
        height: 40px;
    }
}

/* Small Devices (portrait tablets and large phones, 600px and up) */
@media (min-width: 601px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .floating-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 400px;
    }
}

/* Medium Devices (landscape tablets, 768px and up) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .floating-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 500px;
    }
}

/* Large Devices (laptops/desktops, 1024px and up) */
@media (min-width: 1025px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .floating-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 600px;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 50px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .floating-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
        max-width: 800px;
    }
}

/* Ultra Wide Screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 60px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .floating-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        max-width: 1000px;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .floating-cards {
        height: 200px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title .highlight {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Mobile Responsive Design - Enhanced */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
        min-width: 150px;
        height: 50px;
        padding: 5px 0;
    }

    .nav-logo .logo {
        width: 48px;
        height: 48px;
        object-fit: contain;
        border-radius: 10px;
        flex-shrink: 0;
        display: block;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    }

    .nav-logo .company-name {
        font-size: 17px;
        font-weight: 700;
        color: #3b82f6;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 130px;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 20px 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
        border-top: 1px solid #e2e8f0;
    }

    .nav-menu.active {
        left: 0;
        display: flex !important;
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid #f1f5f9;
        font-size: 16px;
        font-weight: 500;
        color: #334155;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .nav-link:hover {
        background-color: #f7fafc;
        color: #3b82f6;
    }
    
    .nav-link.cta-button {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        color: white;
        margin: 10px 20px;
        border-radius: 8px;
        border: none;
    }
    
    .nav-link.cta-button:hover {
        background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
        color: white;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Hero Section Mobile - Enhanced */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        width: 100%;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
        font-weight: 800;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 30px;
        line-height: 1.6;
        max-width: 100%;
        text-align: center;
        width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 40px;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .btn {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        border-radius: 8px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 44px;
        min-width: 44px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 40px;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .stat {
        text-align: center;
        min-width: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 120px;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: #3b82f6;
    }

    .stat-label {
        font-size: 0.9rem;
        color: #64748b;
        margin-top: 5px;
    }

    .hero-visual {
        height: 350px;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }

    .floating-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
        max-width: 350px;
        height: 300px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .floating-card {
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
        text-align: center;
        font-size: 0.9rem;
        font-weight: 600;
        color: #334155;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(59, 130, 246, 0.3);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100px;
        position: relative;
    }

    .floating-card i {
        font-size: 1.5rem;
        color: #3b82f6;
        margin-bottom: 8px;
        display: block;
    }

    /* Services Mobile - Enhanced */
    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }

    .service-card {
        padding: 30px 20px;
        text-align: center;
        border-radius: 16px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .service-card i {
        font-size: 3rem;
        color: #3b82f6;
        margin-bottom: 20px;
        display: block;
    }

    .service-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 1rem;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Portfolio Mobile - Enhanced */
    .portfolio {
        padding: 80px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }

    .portfolio-item {
        border-radius: 16px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
    }

    .portfolio-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .portfolio-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .portfolio-content {
        padding: 25px 20px;
    }

    .portfolio-content h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .portfolio-content p {
        font-size: 0.95rem;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* Contact Mobile - Enhanced */
    .contact {
        padding: 80px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .contact-item i {
        font-size: 1.5rem;
        color: #3b82f6;
        width: 30px;
        text-align: center;
    }

    .contact-form {
        background: rgba(255, 255, 255, 0.95);
        padding: 30px 20px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid #e2e8f0;
    }

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

    .form-group label {
        display: block;
        font-weight: 600;
        color: #374151;
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #ffffff;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .btn-submit {
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    }

    /* Footer Mobile - Enhanced */
    .footer {
        padding: 60px 0 30px;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        color: #ffffff;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #cbd5e1;
    }

    .footer-section a:hover {
        color: #3b82f6;
    }

    .social-links {
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: #ffffff;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: #3b82f6;
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #475569;
        margin-top: 30px;
    }

    .footer-bottom p {
        color: #94a3b8;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    /* Mobile Container & Layout */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .section-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 15px;
        font-weight: 800;
        color: #1e293b;
    }

    .section-description {
        font-size: 1.1rem;
        text-align: center;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 50px;
        max-width: 100%;
    }

    /* Mobile Typography */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
        font-weight: 700;
    }

    p {
        line-height: 1.6;
        font-size: 1rem;
    }

    /* Mobile Buttons */
    .btn {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        text-align: center;
        border: none;
        cursor: pointer;
        font-size: 1rem;
    }

    .btn-primary {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        color: white;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    }

    .btn-secondary {
        background: transparent;
        color: #3b82f6;
        border: 2px solid #3b82f6;
    }

    .btn-secondary:hover {
        background: #3b82f6;
        color: white;
        transform: translateY(-2px);
    }

    /* Products Mobile - Enhanced */
    .products {
        padding: 80px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }

    .product-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .product-card i {
        font-size: 3rem;
        color: #3b82f6;
        margin-bottom: 20px;
        display: block;
    }

    .product-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 15px;
    }

    .product-card p {
        font-size: 1rem;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* About Mobile - Enhanced */
    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        color: #1e293b;
    }

    .about-text p {
        font-size: 1.1rem;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .about-stat {
        text-align: center;
        padding: 25px 15px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .about-stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #3b82f6;
        display: block;
        margin-bottom: 10px;
    }

    .about-stat-label {
        font-size: 1rem;
        color: #64748b;
        font-weight: 600;
    }

    /* Additional Mobile Optimizations */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    input, textarea, select {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }

    /* Mobile Scroll Behavior */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    /* Mobile Touch Improvements */
    .btn, .nav-link, .hamburger {
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
        touch-action: manipulation;
    }

    /* Mobile Image Optimization */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Mobile Form Improvements */
    input, textarea, select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 8px;
    }

    /* Mobile Focus States */
    *:focus {
        outline: 2px solid #3b82f6;
        outline-offset: 2px;
    }

    /* Blue Accent Glow Effects */
.hero-title .highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.btn-primary {
    background: linear-gradient(135deg, #6787FE 0%, #4F46E5 50%, #3B82F6 100%);
    box-shadow: 0 4px 15px rgba(103, 135, 254, 0.4);
    border: 1px solid rgba(103, 135, 254, 0.6);
    position: relative;
    overflow: hidden;
}


.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(103, 135, 254, 0.6);
    transform: translateY(-2px);
}


.service-card {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    position: relative;
    overflow: hidden;
}


.service-card:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border: 1px solid rgba(102, 126, 234, 0.5);
    transform: translateY(-3px);
}


.portfolio-item {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border: 1px solid rgba(102, 126, 234, 0.5);
    transform: translateY(-3px);
}


.contact-form {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.floating-card {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    position: relative;
    overflow: hidden;
}


.floating-card:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    border: 1px solid rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}


/* Mobile Animation Performance */
    .floating-card, .service-card, .portfolio-item, .product-card {
        will-change: transform;
        transform: translateZ(0);
    }

    /* Mobile Animations */
    .service-card, .portfolio-item, .product-card {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .service-card.animate-in, 
    .portfolio-item.animate-in, 
    .product-card.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    /* Mobile Loading States */
    .loading {
        opacity: 0.7;
        pointer-events: none;
    }

    .loading::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        border: 2px solid #3b82f6;
        border-radius: 50%;
        border-top-color: transparent;
        animation: spin 1s linear infinite;
    }

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

    /* Final Mobile Optimizations */
    .product-card {
        padding: 30px 20px;
        margin: 0 10px;
    }

    /* Mobile Container Final Fix */
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Mobile Text Sizing */
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .section-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }

    /* Mobile Button Sizing */
    .btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile Form Improvements */
    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Mobile Image Optimization */
    .hero-visual img,
    .portfolio-item img,
    .service-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Mobile Spacing */
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    /* Mobile Blue Shiny Glow Effects */
    .hero-title .highlight {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }


    .btn-primary {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #3b82f6 100%);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        border: 1px solid rgba(102, 126, 234, 0.6);
        position: relative;
        overflow: hidden;
    }


    .btn-primary:hover {
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        transform: translateY(-2px);
    }


    .service-card {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        border: 1px solid rgba(102, 126, 234, 0.3);
    }

    .service-card:hover {
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
        border: 1px solid rgba(102, 126, 234, 0.5);
    }

    .portfolio-item {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        border: 1px solid rgba(102, 126, 234, 0.3);
    }

    .portfolio-item:hover {
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
        border: 1px solid rgba(102, 126, 234, 0.5);
    }

    .contact-form {
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.25);
        border: 1px solid rgba(102, 126, 234, 0.4);
    }

    .floating-card {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        border: 1px solid rgba(102, 126, 234, 0.4);
    }

    .floating-card:hover {
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
        border: 1px solid rgba(102, 126, 234, 0.6);
    }

    /* Mobile Header Final Fix */
    .navbar {
        height: 70px;
        display: flex !important;
        align-items: center !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-bottom: 1px solid rgba(59, 130, 246, 0.2) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 70px;
        padding: 0 20px;
    }
    
    /* Mobile nav-container improvements */
    @media (max-width: 768px) {
        .nav-container {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            width: 100% !important;
            height: 70px !important;
            padding: 0 20px !important;
            max-width: 100% !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
    }

    /* Mobile Logo Perfect Alignment */
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
        min-width: 150px;
        height: 50px;
        padding: 5px 0;
    }

    .nav-logo .logo {
        width: 48px;
        height: 48px;
        object-fit: contain;
        border-radius: 10px;
        flex-shrink: 0;
        display: block;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    }

    .nav-logo .company-name {
        font-size: 17px;
        font-weight: 700;
        color: #3b82f6;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 130px;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
    }

    .products-cta {
        padding: 40px 25px;
        margin: 0 10px;
    }

    .products-cta h3 {
        font-size: 1.5rem;
    }

    /* About Mobile */
    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .about-visual {
        height: 300px;
        order: -1;
    }

    .about-features {
        gap: 20px;
    }

    .feature {
        text-align: left;
        gap: 15px;
    }

    /* Portfolio Mobile */
    .portfolio {
        padding: 60px 0;
    }

    .portfolio-filter {
        gap: 10px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
        flex: 1;
        min-width: auto;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-item {
        height: 250px;
        margin: 0 10px;
    }

    .portfolio-img {
        border-radius: 12px;
    }

    .portfolio-item:hover .portfolio-img {
        transform: scale(1.05);
    }

    /* Contact Mobile */
    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
        margin: 0 10px;
    }

    /* Product Pages Mobile */
    .product-hero {
        padding: 80px 0 60px;
    }

    .product-title {
        font-size: 2.5rem;
    }

    .product-subtitle {
        font-size: 1.2rem;
    }

    .product-description {
        font-size: 1.1rem;
    }

    .product-actions {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .demo-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* How It Works Mobile */
    .how-it-works {
        padding: 60px 0;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .step {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .contact-info {
        gap: 25px;
        margin-bottom: 20px;
    }

    .contact-item {
        gap: 15px;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section {
        padding: 0 20px;
    }

    .social-links {
        justify-content: center;
    }

    /* Section Spacing */
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .container {
        padding: 0 10px;
    }

    /* Case Studies Mobile */
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .case-study-card {
        margin: 0 10px;
    }
    
    .case-study-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    
    .case-study-content h3 {
        font-size: 1.3rem;
    }
    
    .case-study-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .case-study-stats .stat-number {
        font-size: 1.5rem;
    }
    
    /* Scroll to top button mobile */
    .scroll-to-top {
        bottom: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-visual {
        height: 250px;
    }

    .floating-card {
        padding: 12px;
        font-size: 0.8rem;
    }

    .floating-card i {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Company name mobile */
    .company-name {
        font-size: 1.2rem;
    }

    .logo {
        height: 40px;
        max-width: 100px;
    }

    /* Buttons mobile */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        gap: 10px;
    }

    /* Service cards extra small */
    .service-card {
        padding: 25px 15px;
        margin: 0 5px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    /* Product cards extra small */
    .product-card {
        padding: 25px 15px;
        margin: 0 5px;
    }

    .products-cta {
        padding: 30px 20px;
        margin: 0 5px;
    }

    .products-cta h3 {
        font-size: 1.3rem;
    }

    /* Contact form extra small */
    .contact-form {
        padding: 20px 15px;
        margin: 0 5px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    /* Portfolio extra small */
    .portfolio-item {
        height: 200px;
        margin: 0 5px;
    }

    .portfolio-filter {
        gap: 8px;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        min-width: 80px;
    }

    /* Section spacing extra small */
    .section-title {
        font-size: 1.6rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 8px;
    }

    /* Navigation extra small */
    .nav-container {
        padding: 0 10px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 15px;
    }

    /* Footer extra small */
    .footer-section {
        padding: 0 15px;
    }

    .footer-logo img {
        height: 40px;
        width: auto;
        max-width: 100px;
        object-fit: contain;
    }

    .footer-logo span {
        font-size: 1.3rem;
    }
}

/* Landscape phone adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-visual {
        height: 280px;
    }

    section {
        padding: 50px 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

/* Service Pages Styles */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    color: white;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
    pointer-events: none;
}

.service-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #1a202c;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1d4ed8;
}

.breadcrumb span {
    margin: 0 8px;
    color: #1a202c;
}

/* Portfolio Hero */
.portfolio-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Blog Post Hero */
.blog-post-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Blog Post Hero Breadcrumb Styling */
.blog-post-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    text-align: center;
    margin-bottom: 30px;
}

.blog-post-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.blog-post-hero .breadcrumb a:hover {
    color: white;
}

.blog-post-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* Product Page Styles */
.product-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.product-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.product-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    text-align: center;
    margin-bottom: 30px;
}

.product-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.product-hero .breadcrumb a:hover {
    color: white;
}

.product-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.product-badge {
    margin-bottom: 20px;
}

.badge-live {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.product-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.product-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.product-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.product-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.product-features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.7;
}

.product-categories {
    padding: 100px 0;
    background: #f8fafc;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.category-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.category-card p {
    color: #4a5568;
    line-height: 1.6;
}

.ai-features {
    padding: 100px 0;
    background: #f8fafc;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ai-feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.ai-feature-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ai-feature-card:hover .ai-feature-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ai-feature-card:hover .ai-feature-image img {
    transform: scale(1.05);
}

.ai-feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.ai-feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

.product-benefits {
    padding: 100px 0;
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a202c;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 5px;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.7;
}

.benefits-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.product-demo {
    padding: 100px 0;
    background: #f8fafc;
}

.demo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.demo-video {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Video container styles */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-overlay:hover {
    opacity: 0.9;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 4px;
}

.video-label {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* Hide overlay when video is playing */
.product-video:focus + .video-overlay,
.product-video:active + .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.demo-features {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.demo-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a202c;
}

.demo-features ul {
    list-style: none;
    padding: 0;
}

.demo-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #4a5568;
}

.demo-features li i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.use-cases {
    padding: 100px 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.use-case-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.use-case-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.use-case-card:hover .use-case-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.use-case-card:hover .use-case-image img {
    transform: scale(1.05);
}

.use-case-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.use-case-card p {
    color: #4a5568;
    line-height: 1.6;
}

.product-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: white;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    pointer-events: none;
}

.how-it-works .section-title {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.how-it-works .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.step:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px 20px 0 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.2;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Step Connector Line for Desktop */
@media (min-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .step {
        position: relative;
    }
    
    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -15px;
        transform: translateY(-50%);
        width: 30px;
        height: 2px;
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        opacity: 0.3;
    }
}



.service-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.service-title .highlight {
    color: white;
    -webkit-text-fill-color: white;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

/* Make all service page highlights white */
.service-hero .highlight {
    color: white;
    -webkit-text-fill-color: white;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.service-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.service-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.service-details {
    padding: 100px 0;
    background: white;
}

.service-offerings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.offering-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.offering-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.offering-icon i {
    font-size: 2rem;
    color: white;
}

.offering-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.offering-card p {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.offering-card ul {
    list-style: none;
    padding: 0;
}

.offering-card li {
    padding: 8px 0;
    color: #3b82f6;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.offering-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Technologies Section */
.technologies {
    padding: 100px 0;
    background: #f8fafc;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.process-step p {
    color: #4a5568;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8fafc;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border: 1px solid #e2e8f0;
}

.pricing-card.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.2rem;
    color: #3b82f6;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
}

.period {
    font-size: 1rem;
    color: #4a5568;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card .features li {
    padding: 10px 0;
    color: #4a5568;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-card .features li:last-child {
    border-bottom: none;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

/* App Categories */
.app-categories {
    padding: 100px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.category-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.category-item i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.category-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #3b82f6;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.testimonials-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.testimonials-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    letter-spacing: -0.025em;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 70px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-top: 60px;
    align-items: start;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    color: rgba(102, 126, 234, 0.1);
    font-family: serif;
    font-weight: bold;
    line-height: 1;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.testimonial-content {
    margin-bottom: 30px;
    position: relative;
}

.stars {
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}

.stars i {
    color: #ffd700;
    font-size: 17px;
    margin-right: 0;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #1a202c;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.testimonial-author img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 8px 0;
    letter-spacing: 0.025em;
    position: relative;
    z-index: 2;
}

.author-info span {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
    letter-spacing: 0.025em;
    position: relative;
    z-index: 2;
}

/* Case Studies Section */
.case-studies {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.case-studies-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.case-studies-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
}

.case-studies-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.case-study-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    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-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.case-study-content {
    padding: 30px;
}

.case-study-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-study-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.3;
}

.case-study-excerpt {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 25px;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.case-study-stats .stat {
    text-align: center;
}

.case-study-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

.case-study-stats .stat-label {
    font-size: 12px;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature-tag {
    background: #f7fafc;
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.case-study-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.case-study-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Video Content Section */
.video-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.video-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.video-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
}

.video-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.video-content {
    padding: 25px;
}

.video-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    line-height: 1.3;
}

.video-content p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 15px;
}

.video-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #a0aec0;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.video-cta p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 30px;
}

/* Industries Section */
.industries {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

/* Industry Pages Styles */
.industry-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.industry-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.industry-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.industry-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    text-align: center;
    margin-bottom: 30px;
}

.industry-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.industry-hero .breadcrumb a:hover {
    color: white;
}

.industry-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.industry-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.industry-badge span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.industry-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.industry-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.industry-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.industry-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.industry-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.industry-stat .stat-content {
    text-align: left;
}

.industry-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.industry-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Industry Solutions */
.industry-solutions {
    padding: 100px 0;
    background: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.solution-icon i {
    font-size: 2rem;
    color: white;
}

.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.solution-card p {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.solution-features ul {
    list-style: none;
    padding: 0;
}

.solution-features li {
    padding: 8px 0;
    color: #3b82f6;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Industry Technologies */
.industry-technologies {
    padding: 100px 0;
    background: #f8fafc;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Industry Case Studies */
.industry-case-studies {
    padding: 100px 0;
    background: white;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.case-study-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.case-study-image {
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 30px;
}

.case-study-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-study-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.case-study-description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

.case-study-stats {
    display: flex;
    gap: 30px;
}

.case-study-stats .stat {
    text-align: center;
}

.case-study-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

.case-study-stats .stat-label {
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 500;
}

/* Industry Process */
.industry-process {
    padding: 100px 0;
    background: #f8fafc;
}

.industry-process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.industry-process .process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.industry-process .process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.industry-process .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.industry-process .process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.industry-process .process-step p {
    color: #4a5568;
    line-height: 1.7;
}

/* Industry CTA */
.industry-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.industry-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.industry-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.industry-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.industry-cta .cta-buttons .btn {
    min-width: 200px;
}

.industry-cta .cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.industry-cta .cta-buttons .btn-secondary:hover {
    background: white;
    color: #3b82f6;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    opacity: 0.3;
    pointer-events: none;
}

.industries-badge {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.industries-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.industries-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.industries-list {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.industries-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.industries-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.industry-item:hover {
    border-bottom-color: #3b82f6;
    transform: translateX(10px);
}

.industry-item:hover .industry-icon-small {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.industry-item:hover span {
    color: #3b82f6;
}

.industry-icon-small {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.industry-icon-small i {
    font-size: 1.3rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.industry-item:hover .industry-icon-small i {
    color: white;
}

.industry-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    transition: all 0.3s ease;
}

.industries-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.industries-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.industries-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.industries-btn:hover::before {
    left: 0;
}

.industries-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.industries-btn i {
    transition: transform 0.3s ease;
}

.industries-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Corporate Services */
@media (max-width: 1200px) {
    .services-corporate-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .services-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .services-corporate-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .corporate-service-card {
        height: 250px;
    }
    
    .service-overlay-text h3 {
        font-size: 1.5rem;
    }
    
    .service-overlay {
        padding: 20px;
    }
    
    .service-overlay h4 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .service-overlay p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 1.6rem;
    }
    
    .service-tech-tags span {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

@media (max-width: 600px) {
    .services-main-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .services-corporate-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .corporate-service-card {
        height: 220px;
    }
    
    .service-overlay-text {
        padding: 20px 15px;
    }
    
    .service-overlay-text h3 {
        font-size: 1.3rem;
    }
    
    .view-more-services-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Industries Responsive Design */
@media (max-width: 1200px) {
    .industries-main-title {
        font-size: 2.5rem;
    }
    
    .industries-row {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .industries {
        padding: 80px 0;
    }
    
    .industries-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .industries-column {
        gap: 20px;
    }
    
    .industry-item {
        padding: 15px 0;
    }
    
    .industry-icon-small {
        width: 45px;
        height: 45px;
    }
    
    .industry-icon-small i {
        font-size: 1.1rem;
    }
    
    .industry-item span {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .industries {
        padding: 60px 0;
    }
    
    .industries-main-title {
        font-size: 2rem;
    }
    
    .industries-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .industries-list {
        padding: 0 20px;
    }
    
    .industry-item {
        padding: 12px 0;
        gap: 15px;
    }
    
    .industry-icon-small {
        width: 40px;
        height: 40px;
    }
    
    .industry-icon-small i {
        font-size: 1rem;
    }
    
    .industry-item span {
        font-size: 1rem;
    }
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-title {
        font-size: 2.2rem;
    }
    
    .service-description {
        font-size: 1.1rem;
    }
    
    .service-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .service-offerings {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offering-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Blog Styles */
.blog-categories {
    padding: 30px 0;
    background: #f8fafc;
}

.categories-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: transparent;
}

.blog-posts {
    padding: 80px 0;
}

/* Featured Post Styling */
.featured-post {
    margin-bottom: 60px;
}

.featured-post .blog-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-post .blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Regular Posts Grid */
.blog-grid {
    margin-bottom: 50px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: start;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: fit-content;
}

/* Filtered posts styling */
.blog-post[style*="display: block"] {
    margin-bottom: 30px;
}

.blog-post[style*="display: none"] {
    margin-bottom: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

/* Posts grid for filtered results */
.posts-grid:has(.blog-post[style*="display: block"]) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Featured Post Image */
.featured-post .post-image {
    grid-column: 1;
}

.featured-post .post-image img {
    height: 400px;
    width: 100%;
}

.featured-post .post-content {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.post-image:hover img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.post-category.featured-category {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 10px 20px;
    font-size: 0.85rem;
}

.post-category.web-dev {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.post-category.mobile {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.post-category.blockchain {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.post-category.tutorials {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #2c3e50;
}

.post-category.industry {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #2c3e50;
}

.post-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #718096;
}

.post-meta i {
    margin-right: 5px;
}

.post-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #1a202c;
}

.featured-post .post-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.post-excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
    gap: 10px;
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.newsletter-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 80px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    background: white;
    color: #3b82f6;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Responsive Design */
@media (max-width: 1024px) {
    .featured-post .blog-post {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    
    .featured-post .post-image {
        grid-column: 1;
        grid-row: 1;
    }
    
    .featured-post .post-content {
        grid-column: 1;
        grid-row: 2;
        padding: 30px;
    }
    
    .posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blog-posts {
        padding: 60px 20px;
    }
    
    .featured-post {
        margin-bottom: 40px;
    }
    
    .featured-post .blog-post {
        border-radius: 15px;
        margin: 0 10px;
    }
    
    .featured-post .post-content {
        padding: 25px;
    }
    
    .featured-post .post-title {
        font-size: 1.5rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-title {
        font-size: 1.2rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .featured-post .blog-post {
        margin: 0;
        border-radius: 10px;
    }
    
    .featured-post .post-content {
        padding: 20px;
    }
    
    .featured-post .post-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .featured-post .post-image img {
        height: 250px;
    }
    
    .posts-grid {
        padding: 0;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .post-meta span {
        font-size: 0.8rem;
    }
    
    .categories-filter {
        padding: 0 10px;
        gap: 10px;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Additional Blog Spacing Fix */
.blog-posts .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Careers Styles */
.why-work-with-us {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.open-positions {
    padding: 80px 0;
}

.job-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: transparent;
}

.jobs-grid {
    display: grid;
    gap: 25px;
}

.job-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.job-meta span {
    background: #f7fafc;
    color: #4a5568;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.job-salary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.job-description {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.job-skills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.skill-tag {
    background: #edf2f7;
    color: #2d3748;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.job-actions {
    display: flex;
    gap: 15px;
}

.apply-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.details-btn {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.details-btn:hover {
    background: #3b82f6;
    color: white;
}

.application-process {
    padding: 80px 0;
    background: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

/* Responsive for Blog and Careers */
@media (max-width: 768px) {
    .blog-post.featured {
        grid-column: span 1;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .job-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .offering-card {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    .cta-content h2 {
        font-size: 1.7rem;
    }
} 

/* Application Form Styles */
.application-section {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: white;
}

.application-header {
    text-align: center;
    margin-bottom: 50px;
}

.application-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 20px 0;
    font-weight: 700;
}

.application-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.application-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.application-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    color: #333;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f8f9fa;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title i {
    color: #3b82f6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.file-upload-label {
    display: inline-block;
    padding: 12px 20px;
    background: #3b82f6;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.file-upload-label:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.file-name {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

.application-tips {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: fit-content;
}

.application-tips h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.application-tips h3 i {
    color: #f39c12;
}

.application-tips ul {
    list-style: none;
    padding: 0;
}

.application-tips li {
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
    color: #34495e;
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
}

.application-tips li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.application-tips li:last-child {
    border-bottom: none;
}

/* Job Details Page Styles */
.job-details-section {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: white;
}

.job-details-header {
    margin-bottom: 50px;
}

.job-details-hero {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    color: #333;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.job-info h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.job-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.job-meta span {
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
}

.job-posted {
    background: #e3f2fd !important;
    color: #1976d2 !important;
}

.job-info p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1.1rem;
}

.job-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.apply-now-btn,
.save-job-btn,
.share-job-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.apply-now-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.apply-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.save-job-btn {
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #dee2e6;
}

.save-job-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.share-job-btn {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.share-job-btn:hover {
    background: #3b82f6;
    color: white;
}

.job-details-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.job-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
}

.content-section h2 i {
    color: #3b82f6;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.overview-item h4 {
    color: #3b82f6;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-item p {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

.responsibilities-list,
.requirements-list {
    list-style: none;
    padding: 0;
}

.responsibilities-list li,
.requirements-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
    color: #34495e;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.responsibilities-list li:before {
    content: "→";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.requirements-list li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.responsibilities-list li:last-child,
.requirements-list li:last-child {
    border-bottom: none;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #e9ecef;
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-content p {
    color: #6c757d;
    line-height: 1.5;
}

.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sidebar-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.apply-sidebar-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.apply-sidebar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

.related-jobs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-job {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-job:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.related-job h4 {
    margin-bottom: 8px;
}

.related-job h4 a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 1rem;
}

.related-job h4 a:hover {
    text-decoration: underline;
}

.related-job p {
    color: #6c757d;
    margin: 5px 0;
    font-size: 0.9rem;
}

.related-job .job-level {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Design for Forms and Job Details */
@media (max-width: 1024px) {
    .application-form-container,
    .job-details-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .job-details-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .job-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .application-section,
    .job-details-section {
        padding: 80px 20px 30px;
    }
    
    .application-title,
    .job-info h1 {
        font-size: 2rem;
    }
    
    .application-form,
    .job-details-hero,
    .content-section,
    .sidebar-section {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .job-meta {
        justify-content: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .job-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .application-title,
    .job-info h1 {
        font-size: 1.5rem;
    }
}

/* Contact Section Mobile Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }

    .contact-header {
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .contact-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .contact-subtitle {
        font-size: 1.1rem;
        margin: 0 auto 30px;
    }

    .contact-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .contact-stat {
        justify-content: center;
    }

    .contact-main {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }

    .contact-methods {
        order: 2;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .enhanced-contact-form {
        order: 1;
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .contact-method-card.primary-card {
        transform: none;
    }

    .contact-method-card:hover {
        transform: translateY(-3px);
    }

    .contact-method-card.primary-card:hover {
        transform: translateY(-3px);
    }

    .office-info {
        padding: 0 20px;
    }

    .office-card {
        padding: 30px 20px;
    }

    .office-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .office-actions {
        flex-direction: column;
        gap: 10px;
    }

    .office-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }

    .contact-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-badge span {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .contact-stats {
        gap: 20px;
    }

    .stat-content {
        text-align: center;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .contact-main {
        gap: 30px;
        padding: 0 15px;
    }

    .enhanced-contact-form {
        padding: 25px 15px;
    }

    .form-header h3 {
        font-size: 1.3rem;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 40px 12px 15px;
        font-size: 0.9rem;
    }

    .input-icon,
    .select-icon {
        right: 12px;
        top: 65%;
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-actions .btn {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
    }

    .contact-method-card {
        padding: 25px 20px;
    }

    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .contact-method-card h3 {
        font-size: 1.1rem;
    }

    .contact-method-card p {
        font-size: 0.85rem;
    }

    .method-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .office-info {
        padding: 0 15px;
    }

    .office-card {
        padding: 25px 15px;
    }

    .office-header h3 {
        font-size: 1.3rem;
    }

    .office-item {
        gap: 15px;
    }

    .office-item i {
        font-size: 1rem;
    }

    .office-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* Careers Page Mobile Responsive */
@media (max-width: 768px) {
    .application-form,
    .content-section,
    .sidebar-section {
        padding: 20px;
    }
    
    .job-meta span {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        align-self: center;
    }
}

/* Blog Post Page Styles */
.blog-post-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.blog-post-header {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-post-header .post-category {
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.blog-post-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0 30px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    color: white;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-title {
    font-size: 0.9rem;
    opacity: 0.8;
}

.post-stats {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-content {
    padding: 40px;
    line-height: 1.8;
}

.lead-paragraph {
    font-size: 1.2rem;
    color: #4a5568;
    font-weight: 400;
    margin-bottom: 30px;
    padding: 20px;
    background: #f7fafc;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
}

.article-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    font-weight: 600;
}

.article-content h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin: 30px 0 15px;
    font-weight: 600;
}

.article-content h4 {
    color: #4a5568;
    font-size: 1.2rem;
    margin: 25px 0 10px;
    font-weight: 600;
}

.article-content p {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    color: #4a5568;
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.article-content li strong {
    color: #2c3e50;
}

blockquote {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    font-size: 1.1rem;
    font-style: italic;
    position: relative;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.info-box {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.info-box h4 {
    color: #1976d2;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box p {
    color: #1565c0;
    margin: 0;
}

.trend-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.trend-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.trend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.trend-item i {
    color: #3b82f6;
    font-size: 2rem;
    margin-bottom: 15px;
}

.trend-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.trend-item p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

.cta-box {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: white;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.cta-box .cta-button {
    background: white;
    color: #000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #e2e8f0;
}

.cta-box .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

.post-tags {
    padding: 30px 40px;
    border-top: 1px solid #e2e8f0;
}

.post-tags h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    background: #f8f9fa;
    color: #495057;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 5px 10px 5px 0;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.share-buttons {
    padding: 30px 40px;
    border-top: 1px solid #e2e8f0;
}

.share-buttons h4 {
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.share-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.email { background: #6c757d; }

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.author-bio {
    padding: 40px;
    border-top: 1px solid #e2e8f0;
    background: #f8f9fa;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.author-avatar-large img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #dee2e6;
}

.author-bio .author-info h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.author-bio .author-info p {
    color: #6c757d;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 35px;
    height: 35px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.author-social a:hover {
    transform: translateY(-2px);
    background: #5a6fd8;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.widget h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-post {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.mini-post img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.mini-post-content h4 {
    margin-bottom: 8px;
}

.mini-post-content h4 a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
}

.mini-post-content h4 a:hover {
    color: #3b82f6;
}

.mini-post-date {
    color: #6c757d;
    font-size: 0.85rem;
}

.newsletter-widget {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.newsletter-widget h3,
.newsletter-widget p {
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    background: white;
    color: #3b82f6;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud .tag {
    margin: 0;
}

/* Responsive Design for Blog Posts */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-post-title {
        font-size: 2.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .blog-post-hero {
        padding: 100px 20px 40px;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 25px;
    }
    
    .trend-list {
        grid-template-columns: 1fr;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .social-share {
        justify-content: center;
    }
    
    .widget {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .blog-post-title {
        font-size: 1.5rem;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .post-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-share {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
}

/* Portfolio Project Pages */
.project-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 120px 0 80px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    z-index: 1;
}

.project-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.project-badge {
    margin-bottom: 20px;
}

.badge-web {
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-mobile {
    background: #1d4ed8;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-ai {
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-title {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
}

.project-subtitle {
    font-size: 1.4em;
    font-weight: 500;
    margin-bottom: 25px;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.project-description {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.meta-item i {
    opacity: 0.8;
}

.project-actions {
    display: flex;
    gap: 20px;
}

.project-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid.mobile-gallery {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 250px 250px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.main-image {
    grid-row: span 2;
}

.project-details {
    padding: 80px 0;
    background: #ffffff;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.details-content h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
}

.details-content h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #34495e;
    font-family: 'Inter', sans-serif;
}

.details-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
    font-family: 'Inter', sans-serif;
}

.features-list, .challenges-list {
    list-style: none;
    padding: 0;
}

.features-list li, .challenges-list li {
    padding: 10px 0;
    font-size: 1.05em;
    line-height: 1.6;
}

.features-list li i {
    color: #3b82f6;
    margin-right: 12px;
    font-size: 16px;
}

.tech-stack {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.tech-stack h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
}

.tech-category {
    margin-bottom: 25px;
}

.tech-category h4 {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #34495e;
    font-family: 'Inter', sans-serif;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.project-stats {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.project-stats h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.client-testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.client-testimonial h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
}

.client-testimonial blockquote {
    font-style: italic;
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
    border-left: 4px solid #3b82f6;
    padding-left: 20px;
}

.client-testimonial cite {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.awards, .certifications, .features-highlight, .analytics-modules {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.awards h3, .certifications h3, .features-highlight h3, .analytics-modules h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.awards-list, .cert-list, .feature-list, .module-list {
    list-style: none;
    padding: 0;
}

.awards-list li, .cert-list li, .feature-list li, .module-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}

.awards-list li i, .cert-list li i, .feature-list li i, .module-list li i {
    color: #f39c12;
    margin-right: 10px;
    width: 16px;
}

.related-projects {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.related-projects h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.related-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-item h4 {
    font-size: 1.2em;
    font-weight: 600;
    margin: 20px 20px 10px 20px;
    color: #2c3e50;
}

.related-item p {
    margin: 0 20px 20px 20px;
    color: #666;
    font-size: 14px;
}

/* Portfolio hover effect for clickable items */
.portfolio-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

/* ===============================================
   COMPREHENSIVE RESPONSIVE DESIGN FOR ALL DEVICES
   =============================================== */

/* Large Desktop & 4K Screens (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

/* Desktop (1200px - 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Laptop & Small Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .navbar {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 25px;
    }
}

/* iPad Pro & Large Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .navbar {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Tablet specific adjustments */
    .service-card {
        padding: 1.5rem;
    }
    
    .portfolio-item {
        height: 250px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .industries-list {
        flex-direction: column;
    }
    
    .industries-column {
        width: 100%;
    }
}

/* iPad Mini & Small Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Navigation adjustments */
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Content spacing */
    .section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 100px 0 50px 0;
    }
    
    /* Form adjustments */
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Button adjustments */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Mobile Phones (320px - 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* All grids become single column */
    .services-grid,
    .portfolio-grid,
    .features-grid,
    .team-grid,
    .testimonials-grid,
    .blog-grid,
    .case-studies-grid,
    .products-grid,
    .industries-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Navigation */
    .navbar {
        padding: 0 10px;
        height: 60px;
    }
    
    .nav-logo span {
        font-size: 1rem;
    }
    
    .nav-logo {
        gap: 10px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Content adjustments */
    .section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 80px 0 40px 0;
        text-align: center;
    }
    
    .service-card,
    .portfolio-item,
    .feature-card,
    .testimonial-card,
    .case-study-card,
    .product-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Forms */
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-control,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 15px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    /* Tables become scrollable */
    .table-responsive {
        overflow-x: auto;
    }
    
    /* Hide less important elements on mobile */
    .hide-mobile {
        display: none !important;
    }
    
    /* Floating elements adjustments */
    .ai-float,
    .live-chat-float {
        bottom: 20px;
        right: 15px;
    }
    
    .ai-icon,
    .live-chat-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    /* Chat widget adjustments */
    .ai-chat {
        width: calc(100vw - 30px);
        height: 450px;
        right: 15px;
        left: 15px;
        bottom: 100px;
    }
    
    /* Video content adjustments */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-card {
        padding: 1rem;
    }
    
    /* Contact form adjustments */
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-method-card {
        padding: 1.5rem;
    }
    
    /* Office info adjustments */
    .office-info {
        margin-top: 2rem;
    }
    
    .office-card {
        padding: 1.5rem;
    }
}

/* Extra Small Phones (320px and below) */
/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .navbar {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    
    .hero {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* iPad and tablet specific */
@media (min-width: 768px) and (max-width: 1024px) {
    .nav-logo {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .nav-logo .company-name {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .service-title {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 30px;
    }
}

/* Mobile landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .navbar {
        height: 60px;
    }
    
    .nav-container {
        height: 60px;
    }
    
    .service-hero {
        padding: 80px 0 40px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
}

/* Extra mobile optimizations */
@media (max-width: 480px) {
    .nav-logo .company-name {
        font-size: 10px;
        max-width: 80px;
        text-align: center;
        line-height: 1.2;
    }
    
    .nav-logo .logo {
        width: 30px;
        height: 30px;
    }
    
    .logo-fallback {
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
    }
    
    .service-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Mobile-specific fixes for all pages */
@media (max-width: 768px) {
    /* Fix navigation on all pages */
    .nav-logo {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        min-width: 80px;
    }
    
    .nav-logo .logo {
        width: 35px;
        height: 35px;
    }
    
    .nav-logo .company-name {
        font-size: 12px;
        font-weight: 600;
        color: #3b82f6;
        text-align: center;
        line-height: 1.2;
    }
    
    /* Fix service pages */
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Fix blog pages */
    .blog-post-hero {
        padding: 100px 0 40px;
    }
    
    .blog-post-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    /* Fix portfolio pages */
    .project-hero {
        padding: 100px 0 60px;
    }
    
    .project-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    /* Fix case study pages */
    .case-study-hero {
        padding: 100px 0 60px;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    /* Fix forms */
    .application-form,
    .contact-form {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 12px;
    }
    
    /* Fix tables */
    table {
        font-size: 14px;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    /* Fix images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix videos */
    video {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        padding: 0 5px;
    }
    
    .nav-logo .company-name {
        font-size: 9px;
        max-width: 70px;
    }
    
    .nav-logo .logo {
        width: 28px;
        height: 28px;
    }
    
    .service-card,
    .portfolio-item {
        padding: 0.8rem;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

/* Portfolio Pages Responsive */
@media (max-width: 768px) {
    .project-hero {
        padding: 100px 0 60px 0;
    }
    
    .project-title {
        font-size: 2.5em;
    }
    
    .project-subtitle {
        font-size: 1.2em;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
    }
    
    .gallery-grid.mobile-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
    }
    
    .gallery-item.main-image {
        grid-row: span 1;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-stack, .project-stats, .client-testimonial, 
    .awards, .certifications, .features-highlight, .analytics-modules {
        margin-bottom: 20px;
        padding: 20px;
    }
    
    .details-content h2 {
        font-size: 2em;
    }
    
    .details-content h3 {
        font-size: 1.3em;
    }
}

/* Landscape Orientation (phones & tablets) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 30px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .ai-chat {
        height: 350px;
        bottom: 80px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .ai-float,
    .hamburger,
    .social-links {
        display: none !important;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .section {
        padding: 20px 0;
    }
    
    * {
        color: #000 !important;
        background: #fff !important;
    }
}

/* High DPI Displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-attachment: fixed;
    }
    
    .service-card,
    .portfolio-item {
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #ffffff;
        --bg-color: #1a1a1a;
        --card-bg: #2a2a2a;
    }
    
    .dark-mode-support {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
}

/* ===============================================
   iOS SPECIFIC OPTIMIZATIONS
   =============================================== */

/* iOS Safe Area Support (iPhone X+) */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
    
    .container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .hero {
        padding-top: max(100px, calc(100px + env(safe-area-inset-top)));
    }
    
    .footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* iOS Webkit Specific */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari specific styles */
    body {
        -webkit-overflow-scrolling: touch;
        -webkit-text-size-adjust: 100%;
    }
    
    .service-card,
    .portfolio-item,
    .btn {
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Fix iOS input zoom */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    /* iOS specific button styles */
    .btn {
        -webkit-appearance: none;
        border-radius: 8px;
        cursor: pointer;
    }
    
    /* iOS specific form styles */
    .form-control {
        -webkit-appearance: none;
        -webkit-border-radius: 8px;
    }
}

/* iPhone Specific Breakpoints */
/* iPhone SE, 5s */
@media only screen 
    and (device-width: 320px) 
    and (device-height: 568px) 
    and (-webkit-device-pixel-ratio: 2) {
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

/* iPhone 6, 6S, 7, 8 */
@media only screen 
    and (device-width: 375px) 
    and (device-height: 667px) 
    and (-webkit-device-pixel-ratio: 2) {
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* iPhone 6+, 6S+, 7+, 8+ */
@media only screen 
    and (device-width: 414px) 
    and (device-height: 736px) 
    and (-webkit-device-pixel-ratio: 3) {
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* iPhone X, XS, 11 Pro */
@media only screen 
    and (device-width: 375px) 
    and (device-height: 812px) 
    and (-webkit-device-pixel-ratio: 3) {
    
    .navbar {
        padding-top: max(15px, env(safe-area-inset-top));
    }
    
    .hero {
        padding-top: max(120px, calc(120px + env(safe-area-inset-top)));
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
}

/* iPhone XS Max, 11, 11 Pro Max */
@media only screen 
    and (device-width: 414px) 
    and (device-height: 896px) 
    and (-webkit-device-pixel-ratio: 2) {
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* iPhone 12, 12 Pro, 13, 13 Pro, 14, 14 Pro */
@media only screen 
    and (device-width: 390px) 
    and (device-height: 844px) 
    and (-webkit-device-pixel-ratio: 3) {
    
    .navbar {
        padding-top: max(15px, env(safe-area-inset-top));
    }
    
    .hero {
        padding-top: max(120px, calc(120px + env(safe-area-inset-top)));
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
}

/* iPhone 12 Pro Max, 13 Pro Max, 14 Plus, 14 Pro Max, 15, 15 Plus, 15 Pro, 15 Pro Max */
@media only screen 
    and (device-width: 428px) 
    and (device-height: 926px) 
    and (-webkit-device-pixel-ratio: 3) {
    
    .hero-title {
        font-size: 2.7rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* iPad Mini */
@media only screen 
    and (device-width: 768px) 
    and (device-height: 1024px) 
    and (-webkit-device-pixel-ratio: 2) {
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* iPad Air, iPad Pro 11" */
@media only screen 
    and (device-width: 820px) 
    and (device-height: 1180px) 
    and (-webkit-device-pixel-ratio: 2) {
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
}

/* iPad Pro 12.9" */
@media only screen 
    and (device-width: 1024px) 
    and (device-height: 1366px) 
    and (-webkit-device-pixel-ratio: 2) {
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .container {
        max-width: 900px;
    }
}

/* iOS Landscape Orientation */
@media screen and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    .hero {
        padding: 80px 0 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    /* Hide elements that take too much space in landscape */
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

/* iOS PWA Support */
@media all and (display-mode: standalone) {
    .navbar {
        padding-top: max(20px, env(safe-area-inset-top));
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .hero {
        padding-top: max(100px, calc(100px + env(safe-area-inset-top)));
    }
    
    /* About video mobile styling */
    .about-visual {
        height: 300px;
    }
    
    .about-video-container {
        min-height: 300px;
    }
    
    .about-video {
        object-fit: contain;
    }
}

/* iOS Dark Mode */
@media (prefers-color-scheme: dark) and (-webkit-min-device-pixel-ratio: 2) {
    .navbar {
        background: rgba(26, 26, 26, 0.95);
        border-bottom: 1px solid #333;
    }
    
    .service-card {
        background: #2a2a2a;
        border: 1px solid #333;
    }
    
    .hero {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    }
}

/* Desktop Site Mode Responsive Fix */
@media (min-width: 320px) and (max-width: 1200px) {
    .navbar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
    }
    
    .nav-container {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-logo {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-logo .logo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-logo .company-name {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Force Mobile Hamburger Menu Visible */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1001 !important;
        width: 35px !important;
        height: 35px !important;
        background: rgba(59, 130, 246, 0.1) !important;
        border-radius: 6px !important;
        justify-content: center !important;
        align-items: center !important;
        cursor: pointer !important;
    }
    
    .hamburger span,
    .hamburger .bar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #3b82f6 !important;
        width: 25px !important;
        height: 3px !important;
        margin: 3px 0 !important;
        border-radius: 2px !important;
        transition: 0.3s !important;
    }
    
    .hamburger:hover {
        background: rgba(59, 130, 246, 0.2) !important;
        transform: scale(1.05) !important;
    }
}

/* Additional Mobile Hamburger Override */
@media (max-width: 768px) {
    #hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    #hamburger .bar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #3b82f6 !important;
        width: 25px !important;
        height: 3px !important;
        margin: 3px 0 !important;
        border-radius: 2px !important;
        transition: 0.3s !important;
    }
    
    /* Force mobile menu to be visible when active */
    .nav-menu.active {
        left: 0 !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: fixed !important;
        top: 70px !important;
        width: 100vw !important;
        height: calc(100vh - 70px) !important;
        z-index: 1000 !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 30px 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Force mobile menu items to be visible */
    .nav-menu.active .nav-link {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 15px 20px !important;
        color: #334155 !important;
        text-decoration: none !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        border-bottom: 1px solid #e2e8f0 !important;
        transition: all 0.3s ease !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    
    .nav-menu.active .nav-link:hover {
        background-color: #f7fafc !important;
        color: #3b82f6 !important;
    }
    
    .nav-menu.active .nav-link.cta-button {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
        color: white !important;
        border-radius: 8px !important;
        margin: 20px 20px 0 20px !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3) !important;
        width: calc(100% - 40px) !important;
        max-width: calc(100% - 40px) !important;
        display: block !important;
        text-align: center !important;
        padding: 15px 20px !important;
        box-sizing: border-box !important;
    }
    
    .nav-menu.active .nav-link.cta-button:hover {
        background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%) !important;
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4) !important;
    }
} 