/* 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: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: 2px solid #667eea;
    text-shadow: none;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: translateY(-1px);
}

.logo {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e50 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.brand-name:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #667eea;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #667eea;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

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

.bar {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-background {
    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 1000 1000"><defs><pattern id="hero-pattern" width="120" height="120" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="120" height="120" fill="none"/><circle cx="60" cy="60" r="4" fill="rgba(255,255,255,0.15)" stroke="rgba(102,126,234,0.3)" stroke-width="1"/><circle cx="30" cy="30" r="3" fill="rgba(118,75,162,0.2)" stroke="rgba(255,255,255,0.1)" stroke-width="0.8"/><circle cx="90" cy="30" r="3" fill="rgba(102,126,234,0.2)" stroke="rgba(255,255,255,0.1)" stroke-width="0.8"/><circle cx="30" cy="90" r="3" fill="rgba(102,126,234,0.2)" stroke="rgba(255,255,255,0.1)" stroke-width="0.8"/><circle cx="90" cy="90" r="3" fill="rgba(118,75,162,0.2)" stroke="rgba(255,255,255,0.1)" stroke-width="0.8"/><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="105" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="105" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="105" cy="105" r="2" fill="rgba(255,255,255,0.1)"/><line x1="0" y1="0" x2="120" y2="120" stroke="rgba(102,126,234,0.08)" stroke-width="0.5"/><line x1="120" y1="0" x2="0" y2="120" stroke="rgba(118,75,162,0.08)" stroke-width="0.5"/><line x1="60" y1="0" x2="60" y2="120" stroke="rgba(255,255,255,0.05)" stroke-width="0.3"/><line x1="0" y1="60" x2="120" y2="60" stroke="rgba(255,255,255,0.05)" stroke-width="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hero-pattern)"/></svg>');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.tech-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 500px;
    width: 100%;
}

.tech-box {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

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

.tech-box:hover::before {
    left: 100%;
}

.tech-box:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tech-box i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.75rem;
    z-index: 1;
    position: relative;
}

.tech-box span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Individual box animations */
.web-box {
    animation-delay: 0s;
}

.mobile-box {
    animation-delay: 1s;
}

.design-box {
    animation-delay: 2s;
}

.cloud-box {
    animation-delay: 3s;
}

.api-box {
    animation-delay: 4s;
}

.seo-box {
    animation-delay: 5s;
}

/* Special hover effects for each box */
.web-box:hover i {
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.mobile-box:hover i {
    color: #00d4aa;
    filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.5));
}

.design-box:hover i {
    color: #ff6b6b;
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
}

.cloud-box:hover i {
    color: #4ecdc4;
    filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.5));
}

.api-box:hover i {
    color: #a8e6cf;
    filter: drop-shadow(0 0 10px rgba(168, 230, 207, 0.5));
}

.seo-box:hover i {
    color: #ffb347;
    filter: drop-shadow(0 0 10px rgba(255, 179, 71, 0.5));
}

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

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 14px;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb span {
    color: #999;
}

/* Services Banner */
.services-banner {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.services-banner .page-header-background {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    opacity: 1;
}

.services-banner .page-header-overlay {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    opacity: 1;
}

.banner-pattern {
    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 1000 1000"><defs><pattern id="dots" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="3" fill="rgba(102,126,234,0.3)"/><circle cx="10" cy="10" r="2" fill="rgba(118,75,162,0.25)"/><circle cx="40" cy="10" r="2" fill="rgba(102,126,234,0.2)"/><circle cx="10" cy="40" r="2" fill="rgba(118,75,162,0.2)"/><circle cx="40" cy="40" r="2" fill="rgba(102,126,234,0.25)"/><circle cx="25" cy="5" r="1.5" fill="rgba(118,75,162,0.3)"/><circle cx="5" cy="25" r="1.5" fill="rgba(102,126,234,0.2)"/><circle cx="45" cy="25" r="1.5" fill="rgba(118,75,162,0.2)"/><circle cx="25" cy="45" r="1.5" fill="rgba(102,126,234,0.3)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.8;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner-text {
    color: white;
}

.services-banner .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-banner .page-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-badge i {
    font-size: 1rem;
    color: white;
}

.feature-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

.banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.service-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 300px;
}

.icon-item {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.icon-item:nth-child(2) {
    animation-delay: 1s;
}

.icon-item:nth-child(3) {
    animation-delay: 2s;
}

.icon-item:nth-child(4) {
    animation-delay: 3s;
}

.icon-item:nth-child(5) {
    animation-delay: 4s;
}

.icon-item:nth-child(6) {
    animation-delay: 5s;
}

.icon-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.05);
}

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

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

.services-banner .breadcrumb {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.services-banner .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.services-banner .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Portfolio Banner */
.portfolio-banner {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.portfolio-banner .page-header-background {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    opacity: 1;
}

.portfolio-banner .page-header-overlay {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    opacity: 1;
}

.portfolio-banner .banner-pattern {
    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 1000 1000"><defs><pattern id="hexagons" width="80" height="80" patternUnits="userSpaceOnUse"><polygon points="40,10 60,30 60,50 40,70 20,50 20,30" fill="rgba(102,126,234,0.2)" stroke="rgba(118,75,162,0.3)" stroke-width="1.5"/><polygon points="20,20 30,30 30,40 20,50 10,40 10,30" fill="rgba(118,75,162,0.15)" stroke="rgba(102,126,234,0.25)" stroke-width="1"/><polygon points="50,20 60,30 60,40 50,50 40,40 40,30" fill="rgba(102,126,234,0.15)" stroke="rgba(118,75,162,0.25)" stroke-width="1"/><polygon points="20,50 30,60 30,70 20,80 10,70 10,60" fill="rgba(118,75,162,0.1)" stroke="rgba(102,126,234,0.2)" stroke-width="0.8"/><polygon points="50,50 60,60 60,70 50,80 40,70 40,60" fill="rgba(102,126,234,0.1)" stroke="rgba(118,75,162,0.2)" stroke-width="0.8"/><circle cx="40" cy="40" r="2" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons)"/></svg>');
    opacity: 0.7;
}

.portfolio-banner .banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.portfolio-banner .banner-text {
    color: white;
}

.portfolio-banner .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.portfolio-banner .page-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.portfolio-banner .banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.portfolio-banner .feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.portfolio-banner .feature-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.portfolio-banner .feature-badge i {
    font-size: 1rem;
    color: white;
}

.portfolio-banner .feature-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.portfolio-banner .banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.portfolio-banner .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.portfolio-banner .banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.portfolio-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 350px;
}

.preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.preview-item:nth-child(2) {
    animation-delay: 1s;
}

.preview-item:nth-child(3) {
    animation-delay: 2s;
}

.preview-item:nth-child(4) {
    animation-delay: 3s;
}

.preview-item:nth-child(5) {
    animation-delay: 4s;
}

.preview-item:nth-child(6) {
    animation-delay: 5s;
}

.preview-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.preview-screen {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.preview-screen::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 ease;
}

.preview-item:hover .preview-screen::before {
    left: 100%;
}

.preview-screen i {
    font-size: 1.8rem;
    color: white;
    z-index: 1;
}

.preview-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.portfolio-banner .breadcrumb {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.portfolio-banner .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-banner .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Reviews Banner */
.reviews-banner {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.reviews-banner .page-header-background {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.reviews-banner .page-header-overlay {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.reviews-banner .banner-pattern {
    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 1000 1000"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><polygon points="50,10 60,30 80,30 65,45 70,65 50,55 30,65 35,45 20,30 40,30" fill="rgba(102,126,234,0.25)" stroke="rgba(118,75,162,0.3)" stroke-width="1.5"/><polygon points="25,15 30,25 40,25 35,35 37,45 25,40 15,45 17,35 12,25 22,25" fill="rgba(118,75,162,0.2)" stroke="rgba(102,126,234,0.25)" stroke-width="1"/><polygon points="75,15 80,25 90,25 85,35 87,45 75,40 65,45 67,35 62,25 72,25" fill="rgba(102,126,234,0.2)" stroke="rgba(118,75,162,0.25)" stroke-width="1"/><polygon points="25,65 30,75 40,75 35,85 37,95 25,90 15,95 17,85 12,75 22,75" fill="rgba(118,75,162,0.15)" stroke="rgba(102,126,234,0.2)" stroke-width="0.8"/><polygon points="75,65 80,75 90,75 85,85 87,95 75,90 65,95 67,85 62,75 72,75" fill="rgba(102,126,234,0.15)" stroke="rgba(118,75,162,0.2)" stroke-width="0.8"/><circle cx="50" cy="50" r="2.5" fill="rgba(255,255,255,0.25)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stars)"/></svg>');
    opacity: 0.7;
}

.reviews-banner .banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.reviews-banner .banner-text {
    color: white;
}

.reviews-banner .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.reviews-banner .page-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.reviews-banner .banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.reviews-banner .feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.reviews-banner .feature-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.reviews-banner .feature-badge i {
    font-size: 1rem;
    color: white;
}

.reviews-banner .feature-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.reviews-banner .banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.reviews-banner .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.reviews-banner .banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.reviews-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
}

.review-preview-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.review-preview-item:nth-child(2) {
    animation-delay: 1.5s;
}

.review-preview-item:nth-child(3) {
    animation-delay: 3s;
}

.review-preview-item:nth-child(4) {
    animation-delay: 4.5s;
}

.review-preview-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.02);
}

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

.review-preview-item:hover::before {
    left: 100%;
}

.preview-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
}

.preview-content {
    z-index: 1;
    position: relative;
}

.preview-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.preview-stars i {
    font-size: 0.8rem;
    color: #ffd700;
}

.preview-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.preview-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.reviews-banner .breadcrumb {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.reviews-banner .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.reviews-banner .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 500;
}

.feature i {
    color: #28a745;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.about-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.about-placeholder p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    object-fit: contain;
}

.footer-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.footer-brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-description {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

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

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

.social-link:hover {
    background: #667eea;
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer .contact-item {
    display: inline-block;
    align-items: flex-start;
    gap: 0.75rem;
    color: #bdc3c7;
    line-height: 1.5;
}

.footer .contact-item i {
    margin-top: 0.1rem;
    color: #667eea;
    font-size: 1rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer .contact-item span {
    flex: 1;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: #bdc3c7;
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .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;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .tech-boxes {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        gap: 1rem;
    }
    
    .tech-box {
        padding: 1rem 0.75rem;
    }
    
    .tech-box i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .tech-box span {
        font-size: 0.8rem;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer .contact-item {
        gap: 0.5rem;
    }
    
    .footer .contact-item i {
        width: 14px;
        font-size: 0.9rem;
    }
}

/* Additional Page Styles */
.services-detailed {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 500;
}

.feature-item i {
    color: #28a745;
    font-size: 1.2rem;
}

.process {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    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;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Service Placeholders */
.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-placeholder {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    /* border: 2px solid #e1e5e9; */
    border-radius: 12px;
    /* padding: .5rem; */
    text-align: center;
    color: #667eea;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-placeholder img {
    border-radius: 6px;
}

.service-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-placeholder h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Portfolio Styles */
.portfolio-filter {
    padding: 40px 0;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

.portfolio-grid {
    padding: 60px 0;
}

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

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.portfolio-image {
    position: relative;
    overflow: hidden;
}

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

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

.portfolio-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;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-category {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.portfolio-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.portfolio-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Contact Form Styles */
.contact-section {
    padding: 80px 0;
    scroll-margin-top: 100px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-description {
    color: #666;
    font-size: 1.1rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact-info-container {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

.info-content a {
    color: #667eea;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.social-contact h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.map-section {
    padding: 60px 0;
    background: #f8f9fa;
    scroll-margin-top: 100px;
}

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

.map-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.map-description {
    font-size: 1.2rem;
    color: #666;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 80px 0;
    scroll-margin-top: 100px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

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

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #667eea;
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 1.5rem;
    background: #f8f9fa;
}

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

/* Reviews Styles */
.reviews-stats {
    padding: 60px 0;
    background: #f8f9fa;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: #ffd700;
    font-size: 1.5rem;
}

.rating-text {
    color: #666;
    font-size: 1.1rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-row {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    gap: 1rem;
    align-items: center;
}

.rating-label {
    font-weight: 500;
    color: #333;
}

.rating-bar {
    height: 8px;
    background: #e1e5e9;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.rating-count {
    font-weight: 500;
    color: #666;
    text-align: right;
}

.featured-reviews {
    padding: 80px 0;
}

.reviews-slider-container {
    position: relative;
    margin-top: 3rem;
    width: 100%;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 400%; /* 4 pages */
}

.slider-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 2rem;
    padding: 1rem 0;
    width: 25%; /* Each page takes 1/4 of the width (4 pages total) */
    flex-shrink: 0;
}

.reviews-slider .review-card {
    margin: 0;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .slider-page {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .slider-page {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }
}

.slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 1rem;
}

.slider-btn {
    background: #667eea;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.slider-btn:hover {
    background: #5a6fd8;
    transform: scale(1.1);
}

.slider-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: scale(1);
    opacity: 0.5;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #667eea;
    transform: scale(1.2);
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card.featured {
    border: 2px solid #667eea;
}

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

.client-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.2rem 0;
}

.client-position {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.review-rating {
    display: flex;
    gap: 0.2rem;
}

.review-rating i {
    color: #ffd700;
    font-size: 1rem;
}

.review-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
}

.review-date,
.review-project {
    font-weight: 500;
}

.video-testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-testimonial {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-testimonial:hover {
    transform: translateY(-5px);
}

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

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.video-info {
    padding: 1.5rem;
    text-align: center;
}

.video-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.video-info p {
    color: #666;
    margin: 0;
}

.case-studies {
    padding: 80px 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.case-study {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
}

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

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

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

.case-study-content {
    padding: 2rem;
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.case-study-client {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.case-study-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.case-study-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.2rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.review-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.review-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Career Styles */
.why-join-us {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

.open-positions {
    padding: 80px 0;
    scroll-margin-top: 100px;
}

.job-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

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

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

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

.job-title-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-type,
.job-location,
.job-experience {
    font-size: 0.9rem;
    color: #666;
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.job-salary {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
}

.job-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hiring-process {
    padding: 80px 0;
    background: #f8f9fa;
    scroll-margin-top: 100px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .rating-row {
        grid-template-columns: 60px 1fr 40px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-metrics {
        justify-content: center;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding-bottom: 1.5rem;
    }
    
    .footer-logo {
        width: 45px;
        height: 45px;
    }
    
    .footer-brand-name {
        font-size: 1.4rem;
    }
    
    .nav-brand {
        gap: 8px;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-banner .page-title {
        font-size: 2.5rem;
    }
    
    .banner-features {
        justify-content: center;
    }
    
    .banner-actions {
        justify-content: center;
    }
    
    .service-icons {
        max-width: 250px;
        gap: 1.5rem;
    }
    
    .icon-item {
        width: 60px;
        height: 60px;
    }
    
    .icon-item i {
        font-size: 1.5rem;
    }
    
    .portfolio-banner .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .portfolio-banner .page-title {
        font-size: 2.5rem;
    }
    
    .portfolio-banner .banner-features {
        justify-content: center;
    }
    
    .portfolio-banner .banner-actions {
        justify-content: center;
    }
    
    .portfolio-preview {
        max-width: 280px;
        gap: 1rem;
    }
    
    .preview-screen {
        width: 60px;
        height: 60px;
    }
    
    .preview-screen i {
        font-size: 1.5rem;
    }
    
    .preview-item span {
        font-size: 0.75rem;
    }
    
    .reviews-banner .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .reviews-banner .page-title {
        font-size: 2.5rem;
    }
    
    .reviews-banner .banner-features {
        justify-content: center;
    }
    
    .reviews-banner .banner-actions {
        justify-content: center;
    }
    
    .reviews-preview {
        max-width: 320px;
        gap: 1rem;
    }
    
    .review-preview-item {
        padding: 1rem;
    }
    
    .preview-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .preview-text {
        font-size: 0.85rem;
    }
    
    .preview-name {
        font-size: 0.75rem;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .job-meta {
        justify-content: center;
    }
}

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

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-boxes {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 0.75rem;
    }
    
    .tech-box {
        padding: 0.75rem 0.5rem;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .tech-box i {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 0.75rem;
    }
    
    .tech-box span {
        font-size: 0.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio-buttons {
        flex-direction: column;
    }
    
.job-actions {
    flex-direction: column;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.last-updated {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
}

.last-updated p {
    margin: 0;
    color: #1976d2;
    font-weight: 500;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e1e5e9;
}

.legal-section h3 {
    color: #555;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
}

.legal-section p {
    color: #666;
    margin-bottom: 1rem;
}

.legal-section ul, .legal-section ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section li {
    color: #666;
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #333;
    font-weight: 600;
}

.legal-document .contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.legal-document .contact-info p {
    margin-bottom: 0.5rem;
    color: #333;
}

.legal-document .contact-info p:last-child {
    margin-bottom: 0;
}

/* Client Avatar Placeholders */
.client-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Enhanced Legal Pages Design */
.legal-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    position: relative;
    overflow: hidden;
}

.legal-document::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.last-updated {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 5px solid #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.last-updated p {
    margin: 0;
    color: #1976d2;
    font-weight: 600;
    font-size: 1.1rem;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e5e9;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #667eea;
    position: relative;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #764ba2;
}

.legal-section h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin: 2rem 0 1.2rem 0;
    font-weight: 600;
}

.legal-section p {
    color: #555;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.legal-section ul, .legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
}

.legal-section li {
    color: #555;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.legal-section strong {
    color: #2c3e50;
    font-weight: 700;
}

.legal-content .contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border: 1px solid #dee2e6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-content .contact-info p {
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 500;
}

.legal-content .contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 60px 0;
    }
    
    .legal-document {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
}

/* Career Banner */
.page-header.career-banner {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.page-header.career-banner .page-header-background {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-header.career-banner .page-header-overlay {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.career-banner .banner-pattern {
    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 1000 1000"><defs><pattern id="career-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="100" height="100" fill="none"/><line x1="0" y1="0" x2="100" y2="100" stroke="rgba(102,126,234,0.3)" stroke-width="1.5"/><line x1="100" y1="0" x2="0" y2="100" stroke="rgba(118,75,162,0.3)" stroke-width="1.5"/><line x1="50" y1="0" x2="50" y2="100" stroke="rgba(102,126,234,0.2)" stroke-width="1"/><line x1="0" y1="50" x2="100" y2="50" stroke="rgba(118,75,162,0.2)" stroke-width="1"/><circle cx="25" cy="25" r="3" fill="rgba(102,126,234,0.4)"/><circle cx="75" cy="25" r="3" fill="rgba(118,75,162,0.4)"/><circle cx="25" cy="75" r="3" fill="rgba(118,75,162,0.4)"/><circle cx="75" cy="75" r="3" fill="rgba(102,126,234,0.4)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.3)"/><rect x="20" y="20" width="60" height="60" fill="none" stroke="rgba(102,126,234,0.2)" stroke-width="1.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23career-pattern)"/></svg>');
    opacity: 0.8;
    z-index: 1;
}

.career-banner .banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.career-banner .banner-text {
    color: white;
    text-align: left;
}

.career-banner .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.career-banner .page-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.career-banner .banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    justify-content: flex-start;
}

.career-banner .feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.career-banner .feature-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.career-banner .feature-badge i {
    font-size: 1rem;
    color: white;
}

.career-banner .feature-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.career-banner .banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.career-banner .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.career-banner .banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.service-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 300px;
}

.icon-item {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.icon-item::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 ease;
}

.icon-item:hover::before {
    left: 100%;
}

.icon-item i {
    font-size: 2rem;
    color: white;
    z-index: 1;
}

.icon-item:nth-child(2) {
    animation-delay: 1s;
}

.icon-item:nth-child(3) {
    animation-delay: 2s;
}

.icon-item:nth-child(4) {
    animation-delay: 3s;
}

.icon-item:nth-child(5) {
    animation-delay: 4s;
}

.icon-item:nth-child(6) {
    animation-delay: 5s;
}

.icon-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.career-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 350px;
}

.career-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.career-item .preview-screen {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.career-item .preview-screen::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 ease;
}

.career-item:hover .preview-screen::before {
    left: 100%;
}

.career-item .preview-screen i {
    font-size: 1.8rem;
    color: white;
    z-index: 1;
}

.career-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.career-item:nth-child(2) {
    animation-delay: 1s;
}

.career-item:nth-child(3) {
    animation-delay: 2s;
}

.career-item:nth-child(4) {
    animation-delay: 3s;
}

.career-item:nth-child(5) {
    animation-delay: 4s;
}

.career-item:nth-child(6) {
    animation-delay: 5s;
}

.career-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.career-banner .breadcrumb {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.career-banner .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.career-banner .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Banner */
.contact-banner {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.contact-banner .page-header-background {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-banner .page-header-overlay {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-banner .banner-pattern {
    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 1000 1000"><defs><pattern id="contact-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="4" fill="rgba(102,126,234,0.4)"/><circle cx="15" cy="15" r="3" fill="rgba(118,75,162,0.35)"/><circle cx="65" cy="15" r="3" fill="rgba(102,126,234,0.3)"/><circle cx="15" cy="65" r="3" fill="rgba(118,75,162,0.3)"/><circle cx="65" cy="65" r="3" fill="rgba(102,126,234,0.35)"/><circle cx="40" cy="8" r="2.5" fill="rgba(118,75,162,0.4)"/><circle cx="8" cy="40" r="2.5" fill="rgba(102,126,234,0.3)"/><circle cx="72" cy="40" r="2.5" fill="rgba(118,75,162,0.3)"/><circle cx="40" cy="72" r="2.5" fill="rgba(102,126,234,0.4)"/><circle cx="25" cy="25" r="1.5" fill="rgba(255,255,255,0.2)"/><circle cx="55" cy="25" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="25" cy="55" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="55" cy="55" r="1.5" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.8;
    z-index: 1;
}

.contact-banner .banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-banner .banner-text {
    color: white;
    text-align: left;
}

.contact-banner .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-banner .page-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-banner .banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    justify-content: flex-start;
}

.contact-banner .feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-banner .feature-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.contact-banner .feature-badge i {
    font-size: 1rem;
    color: white;
}

.contact-banner .feature-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.contact-banner .banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.contact-banner .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.contact-banner .banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contact-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 350px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.contact-item .preview-screen {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item .preview-screen::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 ease;
}

.contact-item:hover .preview-screen::before {
    left: 100%;
}

.contact-item .preview-screen i {
    font-size: 1.8rem;
    color: white;
    z-index: 1;
}

.contact-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-item:nth-child(2) {
    animation-delay: 1s;
}

.contact-item:nth-child(3) {
    animation-delay: 2s;
}

.contact-item:nth-child(4) {
    animation-delay: 3s;
}

.contact-item:nth-child(5) {
    animation-delay: 4s;
}

.contact-item:nth-child(6) {
    animation-delay: 5s;
}

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

.contact-item:hover .preview-screen {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-item:hover .preview-screen i {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
    transform: scale(1.1);
}

.contact-banner .breadcrumb {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.contact-banner .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-banner .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Career and Contact Banners */
@media (max-width: 768px) {
    .career-banner .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .contact-banner .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .career-banner .page-title,
    .contact-banner .page-title {
        font-size: 2.5rem;
    }
    
    .career-banner .banner-features {
        justify-content: flex-start;
    }
    
    .career-banner .banner-actions {
        justify-content: flex-start;
    }
    
    .contact-banner .banner-features {
        justify-content: flex-start;
    }
    
    .contact-banner .banner-actions {
        justify-content: flex-start;
    }
    
    .service-icons {
        grid-template-columns: repeat(2, 1fr);
        max-width: 250px;
        gap: 1.5rem;
    }
    
    .icon-item {
        width: 70px;
        height: 70px;
    }
    
    .icon-item i {
        font-size: 1.8rem;
    }
    
    .career-preview,
    .contact-preview {
        grid-template-columns: repeat(2, 1fr);
        max-width: 250px;
        gap: 1.5rem;
    }
    
    .career-item .preview-screen,
    .contact-item .preview-screen {
        width: 60px;
        height: 60px;
    }
    
    .career-item .preview-screen i,
    .contact-item .preview-screen i {
        font-size: 1.5rem;
    }
}


@media (max-width: 480px) {
    .service-icons {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
    
    .icon-item {
        width: 60px;
        height: 60px;
    }
    
    .icon-item i {
        font-size: 1.5rem;
    }
    
    .career-preview,
    .contact-preview {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
    
    .career-item .preview-screen,
    .contact-item .preview-screen {
        width: 50px;
        height: 50px;
    }
    
    .career-item .preview-screen i,
    .contact-item .preview-screen i {
        font-size: 1.2rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    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: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-content.large {
    max-width: 800px;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e1e5e9;
}

.modal-header h2 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.8rem;
}

.modal-category {
    color: #667eea;
    font-weight: 500;
    margin: 0;
}

.modal-body {
    padding: 2rem;
}

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

.close:hover {
    color: #333;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Responsive Slider Navigation */
@media (max-width: 768px) {
    .slider-navigation {
        display: none;
    }
    
    .slider-dots {
        margin-top: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
}
