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

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

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

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

@media (min-width: 1920px) {
    .nav-container {
        max-width: 1800px;
    }
}

@media (max-width: 1200px) {
    .nav-container {
        max-width: 100%;
        padding: 0 10px 0 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 8px 0 0;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 5px 0 0;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-left: 0;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .nav-logo {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.2rem;
    }
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.logo-img {
    height: 40px;
    width: 40px;
    margin-right: 0.5rem;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #2563eb;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .logo-img {
        height: 38px;
        width: 38px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 35px;
        width: 35px;
        margin-right: 0.4rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 32px;
        width: 32px;
        margin-right: 0.3rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    flex-wrap: wrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
}

@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.8rem;
    }
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .nav-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-link {
        font-size: 0.85rem;
    }
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Modern Professional Design */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Background Layers */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.02) 50%);
    background-size: 800px 800px, 600px 600px, 100px 100px;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(1deg); }
}

/* Main Container */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

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

@media (min-width: 1920px) {
    .hero-container {
        max-width: 1800px;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        max-width: 100%;
        padding: 0 1.5rem;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }
}

/* Content Section */
.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #fbbf24;
    font-size: 0.8rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #10b981, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    max-width: 580px;
}

@media (max-width: 1200px) {
    .hero-description {
        font-size: 1.2rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-description {
        text-align: left;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Feature List */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1200px) {
    .hero-features {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-features {
        justify-content: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .hero-actions {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
    .hero-stats {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        justify-content: flex-start;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }
}

.stat-item {
    text-align: center;
}

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

@media (max-width: 1200px) {
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.8rem;
    }
}

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

/* Visual Section */
.hero-visual {
    animation: slideInRight 1s ease-out;
    position: relative;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .visual-container {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .visual-container {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .visual-container {
        height: 400px;
    }
}

/* Tech Orbit Animation */
.tech-orbit {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

@media (max-width: 1200px) {
    .tech-orbit {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .tech-orbit {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 480px) {
    .tech-orbit {
        width: 280px;
        height: 280px;
    }
}

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

@media (max-width: 1200px) {
    .tech-icon {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .tech-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .tech-icon {
        width: 45px;
        height: 45px;
    }
}

.tech-icon:hover {
    transform: scale(1.2);
    background: rgba(59, 130, 246, 0.2);
}

.tech-icon i {
    font-size: 1.8rem;
    color: #3b82f6;
}

@media (max-width: 1200px) {
    .tech-icon i {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .tech-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tech-icon i {
        font-size: 1.3rem;
    }
}

.tech-icon:nth-child(1) { top: -30px; left: 50%; transform: translateX(-50%); }
.tech-icon:nth-child(2) { top: 25%; right: -30px; }
.tech-icon:nth-child(3) { bottom: 25%; right: -30px; }
.tech-icon:nth-child(4) { bottom: -30px; left: 50%; transform: translateX(-50%); }
.tech-icon:nth-child(5) { bottom: 25%; left: -30px; }
.tech-icon:nth-child(6) { top: 25%; left: -30px; }

/* Central Element */
.central-element {
    position: relative;
    z-index: 3;
}

.central-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .central-icon {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .central-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .central-icon {
        width: 80px;
        height: 80px;
    }
}

.central-icon i {
    font-size: 3rem;
    color: white;
}

@media (max-width: 1200px) {
    .central-icon i {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .central-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .central-icon i {
        font-size: 2rem;
    }
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 0.3s;
}

.pulse-ring.delay-2 {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Floating Cards */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 220px;
    animation: float 6s ease-in-out infinite;
    pointer-events: all;
}

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

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

.card-2 {
    bottom: 10%;
    left: -20%;
    animation-delay: 2s;
}

.card-3 {
    top: 50%;
    right: -15%;
    animation-delay: 4s;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 1.3rem;
    color: white;
}

.card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.card-content p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
	left: 2rem;
	transform: none;
	text-align: left;
	animation: bounceLeft 2s ease-in-out infinite;
    z-index: 3;
}

.scroll-text {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

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

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

.services::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="services-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(37,99,235,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23services-grid)"/></svg>');
    opacity: 0.8;
}

.services .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.section-header p {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Services Stats */
.services-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: serviceCardFadeIn 0.8s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(76, 29, 149, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 50px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

/* Service Badges */
.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge:not(.new) {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.service-badge.new {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.service-card:hover .service-icon::before {
    opacity: 1;
    animation: iconShine 0.6s ease;
}

@keyframes iconShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.service-icon i {
    font-size: 2rem;
    color: white;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: #2563eb;
    transform: translateY(-2px);
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Service Features */
.service-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(3px);
}

.feature-item i {
    color: #10b981;
    font-size: 0.8rem;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    padding: 6px;
}

.feature-item span {
    color: #475569;
    font-weight: 500;
    font-size: 0.85rem;
}



/* Individual service card colors */
.service-card[data-service="web"] .service-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.service-card[data-service="mobile"] .service-icon {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.service-card[data-service="testing"] .service-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.service-card[data-service="ai"] .service-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.service-card[data-service="devops"] .service-icon {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.service-card[data-service="support"] .service-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* About Introduction */
.about-intro {
    margin-bottom: 5rem;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
}

.intro-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text strong {
    color: #2563eb;
    font-weight: 600;
}

.intro-features {
    display: grid;
    gap: 1.5rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Stats Header */
.stats-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stats-header p {
    color: #64748b;
    font-size: 1rem;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1e293b;
    background: linear-gradient(135deg, #1e293b, #2563eb, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about .section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

/* About Cards */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Enhanced About Cards */
.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #8b5cf6);
    border-radius: 0 0 20px 20px;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.about-card:nth-child(1) .about-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.about-card:nth-child(2) .about-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.about-card:nth-child(3) .about-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

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

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

.about-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Stats Section */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    height: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-card p {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.stat-progress {
    height: 4px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 2px;
    width: 0%;
    transition: width 2s ease-in-out;
}

/* Tech Expertise */
.tech-expertise {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    flex: 1;
}

.tech-expertise h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1.5rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.tech-item i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.tech-item:hover i {
    transform: scale(1.1);
    color: #1d4ed8;
}

.tech-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}

/* Development Process */
.about-process {
    margin: 5rem 0;
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.process-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: translateX(0);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About CTA */
.about-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, #1e293b, #2563eb);
    padding: 4rem 3rem;
    border-radius: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 3s infinite;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(300%) rotate(45deg); }
}

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

.portfolio::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="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(37,99,235,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
    animation: backgroundFloat 20s ease-in-out infinite;
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: portfolioFadeIn 0.8s ease forwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }

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

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(76, 29, 149, 0.05));
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.portfolio-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 50px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

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

.portfolio-item:hover::after {
    opacity: 1;
    animation: shimmer 0.8s ease;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.portfolio-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.portfolio-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.portfolio-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    animation: iconRotate 3s linear infinite;
    transition: opacity 0.3s ease;
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.portfolio-item:hover .portfolio-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4), 0 0 30px rgba(37, 99, 235, 0.2);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.15) rotate(10deg); }
    50% { transform: scale(1.25) rotate(15deg); }
}

.portfolio-item:hover .portfolio-icon::before {
    opacity: 1;
    animation: iconShine 0.8s ease;
}

@keyframes iconShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.portfolio-item:hover .portfolio-icon::after {
    opacity: 1;
}

.portfolio-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.portfolio-item:hover .portfolio-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.portfolio-content {
    flex: 1;
    width: 100%;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
    line-height: 1.3;
    transition: all 0.4s ease;
    position: relative;
}

.portfolio-item:hover .portfolio-content h3 {
    color: #2563eb;
    transform: translateY(-2px);
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
}

.portfolio-content p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.portfolio-item:hover .portfolio-content p {
    opacity: 1;
    transform: translateY(-1px);
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
}

.portfolio-tags span {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    color: #64748b;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.portfolio-tags span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.portfolio-tags span:hover::before {
    opacity: 1;
}

.portfolio-tags span:hover {
    color: white;
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    transform: translateY(-1px);
}

/* Technology-specific styling */
.portfolio-tags span[data-tech="frontend"]::before {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.portfolio-tags span[data-tech="backend"]::before {
    background: linear-gradient(135deg, #059669, #047857);
}

.portfolio-tags span[data-tech="database"]::before {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.portfolio-tags span[data-tech="cloud"]::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.portfolio-tags span[data-tech="ai"]::before {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.portfolio-tags span[data-tech="testing"]::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.portfolio-tags span[data-tech="devops"]::before {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Enhanced visual indicators */
.portfolio-tags span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.portfolio-tags span:hover::after {
    opacity: 1;
    background: white;
}

/* Add subtle gradient borders */
.portfolio-tags span {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.portfolio-tags span::before {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 30px;
}

/* Improved spacing and typography */
.portfolio-tags {
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.portfolio-tags span {
    padding: 0.65rem 1.3rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Subtle shadow effects */
.portfolio-tags span {
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.portfolio-tags span:hover {
    box-shadow: 
        0 4px 15px rgba(37, 99, 235, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Individual portfolio item colors */
.portfolio-item:nth-child(1) .portfolio-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

.portfolio-item:nth-child(1):hover .portfolio-icon {
    background: linear-gradient(135deg, #047857, #059669);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.5), 0 0 30px rgba(5, 150, 105, 0.3);
}

.portfolio-item:nth-child(2) .portfolio-icon {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.portfolio-item:nth-child(2):hover .portfolio-icon {
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5), 0 0 30px rgba(124, 58, 237, 0.3);
}

.portfolio-item:nth-child(3) .portfolio-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.portfolio-item:nth-child(3):hover .portfolio-icon {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5), 0 0 30px rgba(220, 38, 38, 0.3);
}

.portfolio-item:nth-child(4) .portfolio-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.portfolio-item:nth-child(4):hover .portfolio-icon {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5), 0 0 30px rgba(245, 158, 11, 0.3);
}

.portfolio-item:nth-child(5) .portfolio-icon {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.portfolio-item:nth-child(5):hover .portfolio-icon {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5), 0 0 30px rgba(14, 165, 233, 0.3);
}

.portfolio-item:nth-child(6) .portfolio-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.portfolio-item:nth-child(6):hover .portfolio-icon {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5), 0 0 30px rgba(139, 92, 246, 0.3);
}

/* Contact Section - Enhanced Modern Design */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.contact .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
}

.contact .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

.contact .section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Contact Information */
.contact-info {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    height: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    animation: contactInfoGlow 8s ease-in-out infinite;
}

@keyframes contactInfoGlow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(59, 130, 246, 0.2);
}

.info-item i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 2px;
    width: 24px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.info-item p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.info-item a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.info-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    transition: width 0.3s ease;
}

.info-item a:hover {
    color: #1d4ed8;
    transform: translateX(3px);
}

.info-item a:hover::after {
    width: 100%;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    animation: contactFormGlow 10s ease-in-out infinite reverse;
}

@keyframes contactFormGlow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-180deg) scale(1.1); }
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: rgba(248, 250, 252, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 
        0 0 0 4px rgba(59, 130, 246, 0.1),
        0 4px 20px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: #3b82f6;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

.submit-btn:hover i {
    transform: translateX(2px);
}









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

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: #2563eb;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #334155;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #1e293b;
    color: white;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 120px;
}

.btn-subscribe {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Careers Page Styles */
.careers-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
}

.careers-hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.careers-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.careers-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.careers-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.careers-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.career-stat {
    text-align: center;
}

.career-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #4ecdc4;
}

.career-stat p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* Culture Section */
.culture {
    padding: 100px 0;
    background: #f8fafc;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.culture-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.culture-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.culture-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Culture Grid */
@media (max-width: 1024px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: white;
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.benefit-item i {
    color: #10b981;
    font-size: 1.2rem;
    min-width: 20px;
}

.benefit-item span {
    color: #1e293b;
    font-weight: 500;
}

/* Positions Section */
.positions {
    padding: 100px 0;
    background: #f8fafc;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.position-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.position-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.position-type {
    background: #10b981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.position-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.position-tags span {
    background: #e2e8f0;
    color: #475569;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.position-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.position-location i {
    color: #2563eb;
}

.apply-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s ease;
}

.close:hover {
    color: #1e293b;
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: #1e293b;
    font-size: 1.8rem;
}

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

.application-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.application-form label {
    font-weight: 500;
    color: #1e293b;
}

.application-form input[type="file"] {
    padding: 0.5rem;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
}

/* Active Navigation Link */
.nav-link.active {
    color: #2563eb;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-left: auto;
    }
    
    .logo-img {
        height: 32px;
        width: 32px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
		text-align: left;
    }

    .hero-description {
		text-align: left;
        font-size: 1.1rem;
    }

    .hero-features {
		justify-content: flex-start;
        gap: 1.5rem;
    }

    .hero-actions {
		justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero-stats {
		justify-content: flex-start;
        gap: 2rem;
    }

    .visual-container {
        height: 500px;
    }

    .tech-orbit {
        width: 320px;
        height: 320px;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
    }

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

    .central-icon {
        width: 100px;
        height: 100px;
    }

    .central-icon i {
        font-size: 2.5rem;
    }

    .floating-card {
        min-width: 200px;
        padding: 1.2rem;
    }

    .card-1, .card-2, .card-3 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        margin: 1rem auto;
    }

    .about .section-header h2 {
        font-size: 2.5rem;
    }

    .about .section-header p {
        font-size: 1.1rem;
    }

    .intro-text h3 {
        font-size: 1.8rem;
    }

    .intro-text p {
        font-size: 1.1rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-card {
        padding: 2rem;
    }

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

    .about-icon i {
        font-size: 1.8rem;
    }

    .about-card h3 {
        font-size: 1.3rem;
    }

    .tech-expertise {
        padding: 1.5rem;
    }

    .tech-expertise h3 {
        font-size: 1.3rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .tech-item {
        padding: 0.8rem;
    }

    .tech-item i {
        font-size: 1.3rem;
    }

    .tech-item span {
        font-size: 0.75rem;
    }

    .cta-content {
        padding: 3rem 2rem;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

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

    .contact {
        padding: 80px 0;
    }

    .contact .section-header {
        margin-bottom: 60px;
    }

    .contact .section-header h2 {
        font-size: 2.5rem;
    }

    .contact .section-header p {
        font-size: 1.1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 900px;
    }

    .contact-info {
        padding: 40px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .contact-form-wrapper h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .info-item {
        padding: 18px;
        margin-bottom: 25px;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
    }

    .info-item {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .info-item i {
        font-size: 1.2rem;
    }

    .services {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .services-stats {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
        min-width: 120px;
    }

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

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }

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

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

    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .feature-item span {
        font-size: 0.8rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item {
        border-radius: 16px;
        padding: 2rem;
    }

    .portfolio-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .portfolio-icon i {
        font-size: 2rem;
    }

    .portfolio-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .portfolio-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .portfolio-tags {
        gap: 0.5rem;
        margin-top: 1.2rem;
    }

    .portfolio-tags span {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .portfolio-tags span::after {
        left: 6px;
        width: 4px;
        height: 4px;
    }

    .about {
        padding: 80px 0;
    }

    .about .section-header h2 {
        font-size: 2rem;
    }

    .about .section-header p {
        font-size: 1rem;
    }

    .intro-content {
        gap: 2rem;
    }

    .intro-text h3 {
        font-size: 1.5rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .feature-highlight {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .about-process {
        padding: 2rem 0;
        margin: 3rem 0;
    }

    .process-header h3 {
        font-size: 1.7rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .about-content {
        gap: 2rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-icon {
        width: 50px;
        height: 50px;
    }

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

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

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

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

    .tech-expertise {
        padding: 1.2rem;
    }

    .tech-expertise h3 {
        font-size: 1.2rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .tech-item {
        padding: 0.6rem;
    }

    .tech-item i {
        font-size: 1.2rem;
    }

    .tech-item span {
        font-size: 0.7rem;
    }

    .cta-content {
        padding: 2.5rem 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    /* Careers Page Mobile Styles */
    .careers-hero-content h1 {
        font-size: 2.5rem;
    }

    .careers-stats {
        gap: 2rem;
    }

    .career-stat h3 {
        font-size: 2rem;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }

    .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

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

    .hero-features {
        flex-direction: column;
        gap: 1rem;
		align-items: flex-start;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
		align-items: flex-start;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

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

    .visual-container {
        height: 400px;
    }

    .tech-orbit {
        width: 280px;
        height: 280px;
    }

    .tech-icon {
        width: 45px;
        height: 45px;
    }

    .tech-icon i {
        font-size: 1.3rem;
    }

    .central-icon {
        width: 80px;
        height: 80px;
    }

    .central-icon i {
        font-size: 2rem;
    }

    .floating-elements {
        display: none;
    }

	.scroll-indicator {
		bottom: 1rem;
		left: 1rem;
		transform: none;
		text-align: left;
	}



    .services {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header h2::after {
        width: 50px;
        height: 3px;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .services-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat-item {
        padding: 0.8rem;
        min-width: 100px;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

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

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .feature-item {
        padding: 0.5rem 0;
    }

    .feature-item span {
        font-size: 0.75rem;
    }

    .feature-item i {
        width: 12px;
        height: 12px;
        padding: 4px;
    }

    .portfolio-item {
        border-radius: 16px;
        padding: 1.5rem;
    }

    .portfolio-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .portfolio-icon i {
        font-size: 1.8rem;
    }

    .portfolio-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .portfolio-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .portfolio-tags span {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.2px;
    }

    .portfolio-tags span::after {
        left: 5px;
        width: 3px;
        height: 3px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact .section-header {
        margin-bottom: 50px;
    }

    .contact .section-header h2 {
        font-size: 2rem;
    }

    .contact .section-header h2::after {
        width: 60px;
        height: 3px;
    }

    .contact .section-header p {
        font-size: 1rem;
    }

    .contact-wrapper {
        gap: 40px;
        max-width: 100%;
        padding: 0 1rem;
    }

    .contact-info {
        padding: 30px;
        border-radius: 16px;
    }

    .contact-form-wrapper {
        padding: 25px;
        border-radius: 16px;
    }

    .contact-info h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .contact-form-wrapper h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .info-item {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .info-item i {
        font-size: 1.3rem;
        width: 20px;
    }

    .info-item h4 {
        font-size: 1rem;
    }

    .info-item p,
    .info-item a {
        font-size: 0.95rem;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .form-group textarea {
        min-height: 90px;
    }

    .submit-btn {
        padding: 14px 20px;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .form-header h3 {
        font-size: 1.6rem;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }

    .form-icon {
        left: 0.8rem;
        top: 2rem;
        font-size: 0.9rem;
    }

    .form-group textarea + .form-icon {
        top: 2.3rem;
    }



    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: #f8fafc;
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #64748b;
}

.breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #2563eb;
}

.breadcrumb-item a[aria-current="page"] {
    color: #1e293b;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: #64748b;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
    .breadcrumb {
        margin-top: 70px;
        padding: 0.8rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .faq-grid {
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        margin-top: 60px;
        padding: 0.6rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.75rem;
    }
    
    .faq {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
    }
} 