* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0f1419;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ANIMATED CLOUD BACKGROUND
======================================== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #6dd5ed 100%);
    opacity: 0.1;
}

.floating-clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    opacity: 0.3;
    animation: float-cloud linear infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cloud-1 {
    width: 80px;
    height: 40px;
    top: 20%;
    animation-duration: 25s;
}

.cloud-1::before {
    width: 50px;
    height: 30px;
    top: -15px;
    left: 10px;
}

.cloud-1::after {
    width: 60px;
    height: 35px;
    top: -10px;
    right: 10px;
}

.cloud-2 {
    width: 60px;
    height: 30px;
    top: 60%;
    animation-duration: 20s;
    animation-delay: -10s;
}

.cloud-2::before {
    width: 40px;
    height: 25px;
    top: -12px;
    left: 8px;
}

.cloud-2::after {
    width: 45px;
    height: 28px;
    top: -8px;
    right: 8px;
}

@keyframes float-cloud {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

/* ========================================
   NAVIGATION
======================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(109, 213, 237, 0.2);
}

nav.scrolled {
    padding: 15px 0;
    background: rgba(15, 20, 25, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo::before {
    content: '☁️';
    font-size: 24px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-links a:hover, .nav-links a.active {
    color: #6dd5ed;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* ========================================
   PAGE CONTAINERS
======================================== */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
}

.page.active {
    display: block;
}

/* ========================================
   HOME PAGE STYLES
======================================== */
.hero {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(15, 20, 25, 0.7), rgba(15, 20, 25, 0.8)), 
                url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-content .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 30px;
    color: #cccccc;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content .tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 40px;
    color: #999999;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(109, 213, 237, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(109, 213, 237, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #0f1419;
}

/* ========================================
   SHARED STYLES
======================================== */
.page-header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 0;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Override for page headers with background */
.page-header .page-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Override for page headers with background */
.page-header .page-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   HOMEPAGE SECTIONS
======================================== */

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(109, 213, 237, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(109, 213, 237, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(109, 213, 237, 0.8), rgba(33, 147, 176, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-icon {
    position: absolute;
    top: -25px;
    left: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #6dd5ed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(109, 213, 237, 0.3);
}

.service-content h3 {
    margin: 20px 0 15px 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
}

.service-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    color: #cccccc;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6dd5ed;
    font-weight: bold;
}

.service-link {
    color: #6dd5ed;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #ffffff;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(109, 213, 237, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(109, 213, 237, 0.2);
}

.benefit-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    transition: opacity 0.3s ease;
}

.benefit-item:hover .benefit-image {
    opacity: 0.1;
}

.benefit-icon {
    position: relative;
    z-index: 2;
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    color: #6dd5ed;
}

.benefit-item h3 {
    position: relative;
    z-index: 2;
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit-item p {
    position: relative;
    z-index: 2;
    color: #cccccc;
    line-height: 1.6;
}

/* Portfolio Showcase Section */
.portfolio-showcase {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(109, 213, 237, 0.2);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(109, 213, 237, 0.2);
}

.portfolio-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(109, 213, 237, 0.8), rgba(33, 147, 176, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-image::after {
    opacity: 1;
}

.portfolio-content {
    padding: 30px;
}

.project-type {
    color: #6dd5ed;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.portfolio-content h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.portfolio-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat {
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-cta {
    text-align: center;
    margin-top: 50px;
}

/* Technologies Section */
.technologies {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(109, 213, 237, 0.2);
    backdrop-filter: blur(10px);
}

.tech-category h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.tech-item {
    background: rgba(109, 213, 237, 0.1);
    color: #6dd5ed;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(109, 213, 237, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(109, 213, 237, 0.2);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 20px;
    border: 3px solid rgba(109, 213, 237, 0.3);
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc;
}

.author-info strong {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.author-info span {
    color: #6dd5ed;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 0;
    position: relative;
}

.cta-background {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   SERVICES PAGE STYLES
======================================== */
.services-page {
    padding: 60px 0 120px;
}

.service-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
    border-radius: 2px;
}

/* Service Card Images for Services Page */
.service-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(109, 213, 237, 0.8), rgba(33, 147, 176, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-card-image::after {
    opacity: 1;
}

.service-card-content {
    padding: 30px;
    position: relative;
}

.service-card-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 30px;
    right: 30px;
    height: 4px;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-content::before {
    transform: scaleX(1);
}

/* Service Card Images */
.service-card.cloud-migration .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.cloud-security .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.cloud-analytics .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.serverless .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1518186285589-2f7649de83e0?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.infrastructure .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.web-dev .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.mobile-apps .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.api-dev .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.ecommerce .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.cicd .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1606868306217-dbf5046868d2?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.containers .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1605745341112-85968b19335b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.monitoring .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.ai-ml .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1485827404703-89b55fcc595e?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.chatbot .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1531746790731-6c087fecd65a?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.blockchain .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.iot .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.digital-marketing .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.crm-erp .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1553484771-cc0ed013d3ac?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.automation .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1518186285589-2f7649de83e0?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card.transformation .service-card-image {
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tech-tag {
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   ABOUT PAGE STYLES
======================================== */
.about-page {
    padding: 60px 0 120px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Company Story Section */
.company-story {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-text > p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Timeline */
.story-timeline {
    position: relative;
    padding-left: 30px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.timeline-year {
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-year::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #6dd5ed;
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(109, 213, 237, 0.2);
}

.timeline-content h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Mission & Values Section */
.mission-values {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.mission-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(109, 213, 237, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon {
    font-size: 80px;
    color: white;
}

.mission-content h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-content > p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.mission-points {
    list-style: none;
    padding: 0;
}

.mission-points li {
    padding: 12px 0;
    color: #cccccc;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

.mission-points li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6dd5ed;
    font-weight: bold;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(109, 213, 237, 0.2);
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(109, 213, 237, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    color: #6dd5ed;
}

.value-card h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    margin-top: 80px;
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(109, 213, 237, 0.2);
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(109, 213, 237, 0.4);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 20px;
    border: 4px solid rgba(109, 213, 237, 0.3);
    transition: transform 0.3s ease;
}

.team-member:hover .member-image {
    transform: scale(1.05);
}

.member-info {
    color: #ffffff;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.member-role {
    color: #6dd5ed;
    margin-bottom: 10px;
}

.member-bio {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill-tag {
    background: rgba(109, 213, 237, 0.2);
    color: #6dd5ed;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(109, 213, 237, 0.3);
}

/* Company Statistics */
.company-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(109, 213, 237, 0.2);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(109, 213, 237, 0.15);
    border-color: #6dd5ed;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-description {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
}

/* Certifications & Partnerships */
.certifications {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.cert-category h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cert-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(109, 213, 237, 0.2);
}

.cert-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(109, 213, 237, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.cert-icon {
    font-size: 40px;
    margin-right: 20px;
    flex-shrink: 0;
    color: #6dd5ed;
}

.cert-info h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.cert-info p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Company Culture */
.company-culture {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.culture-text h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.culture-text > p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.culture-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.culture-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(109, 213, 237, 0.2);
}

.culture-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(109, 213, 237, 0.12);
}

.culture-icon {
    font-size: 32px;
    flex-shrink: 0;
    color: #6dd5ed;
}

.culture-item h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.culture-item p {
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

.culture-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */
.contact-page {
    padding: 60px 0 120px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

.contact-details {
    list-style: none;
    text-align: center;
}

.contact-details li {
    margin-bottom: 15px;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    text-align: left;
}

.contact-details .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(109, 213, 237, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(109, 213, 237, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6dd5ed;
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.submit-btn {
    width: 100%;
    padding: 15px 40px;
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(109, 213, 237, 0.3);
}

/* ========================================
   PORTFOLIO PAGE STYLES
======================================== */
.portfolio-page {
    padding: 60px 0 120px;
}

/* ========================================
   FOOTER
======================================== */
footer {
    padding: 60px 0 20px;
    border-top: 1px solid rgba(109, 213, 237, 0.2);
    background: rgba(15, 20, 25, 0.95);
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #cccccc;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item div:last-child {
    color: #cccccc;
}

.contact-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: #6dd5ed;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: #6dd5ed;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(109, 213, 237, 0.1);
    color: #999999;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-content,
    .mission-section,
    .culture-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .timeline-year::before {
        display: none;
    }
    
    .story-timeline::before {
        display: none;
    }
    
    .culture-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .section-title,
    .story-text h2,
    .mission-content h3,
    .culture-text h3 {
        font-size: 24px;
    }
}
/* ========================================
   ENHANCED CONTACT PAGE STYLES
======================================== */

/* Contact Features */
.contact-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(109, 213, 237, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 24px;
    color: #6dd5ed;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-text p {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Form Enhancements */
.contact-form h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(109, 213, 237, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    border-color: #6dd5ed;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Enhanced Submit Button */
.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(109, 213, 237, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    font-weight: 600;
}

.btn-icon {
    font-size: 18px;
}

/* Success Message */
.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.success-message h4 {
    color: #28a745;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.success-message p {
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
}

/* Contact CTA Section */
.contact-cta {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 80px;
    border: 1px solid rgba(109, 213, 237, 0.2);
}

.contact-cta .cta-content h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-cta .cta-content p {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    color: white;
    box-shadow: 0 10px 25px rgba(109, 213, 237, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(109, 213, 237, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #6dd5ed;
    border: 2px solid rgba(109, 213, 237, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(109, 213, 237, 0.1);
    border-color: #6dd5ed;
    transform: translateY(-2px);
}

.cta-btn .btn-icon {
    font-size: 18px;
}

/* Form Validation States */
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.submit-btn.loading .btn-icon {
    animation: spin 1s linear infinite;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-features {
        margin-top: 30px;
    }
    
    .feature-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .contact-cta {
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    .contact-cta .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .checkbox-label {
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 16px 25px;
        font-size: 15px;
    }
    
    .contact-cta .cta-content h3 {
        font-size: 22px;
    }
    
    .contact-cta .cta-content p {
        font-size: 15px;
    }
}