/* Sagetemple Technology - Main Stylesheet */
/* Dark theme with neon accents and animations */

:root {
    --primary-color: #00ffc3;
    --secondary-color: #00a3ff;
    --accent-color: #ff6b6b;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-light: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    --border-color: #333333;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 255, 195, 0.3);
    --shadow-glow-blue: 0 0 20px rgba(0, 163, 255, 0.3);
    --animation-duration: 0.6s;
    --animation-delay: 0.1s;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--animation-duration) ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-up {
    animation: fadeInUp var(--animation-duration) ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft var(--animation-duration) ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight var(--animation-duration) ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn var(--animation-duration) ease-out forwards;
}

.animate-slide-in-top {
    animation: slideInFromTop var(--animation-duration) ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.animate-rotate {
    animation: rotate 20s linear infinite;
}

.animate-bounce {
    animation: bounce 1s ease-in-out;
}

/* Staggered Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 195, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    animation: slideInFromTop 0.8s ease-out;
    z-index: 1000;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
}

.logo {
    height: 70px; /* or whatever size you want */
    margin-right: 0px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.nav-social .social-link {
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-social .social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 195, 0.3);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/hero-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    width: 100%;
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: none;
}

.hero-slide:first-child {
    display: block;
}

.hero-slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 195, 0.2);
    border: 2px solid rgba(0, 255, 195, 0.5);
    color: #00ffc3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 255, 195, 0.3);
    border-color: #00ffc3;
    transform: translateY(-50%) scale(1.1);
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(0, 255, 195, 0.5);
    border-color: #00ffc3;
}

.carousel-dot.active {
    background: #00ffc3;
    border-color: #00ffc3;
    transform: scale(1.2);
}

/* Slide transitions */
.hero-slide {
    transition: opacity 0.5s ease-in-out;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 255, 195, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 255, 195, 0.8);
    }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .btn {
    margin-top: 1.5rem;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

.section-header .btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 195, 0.3);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

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

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

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Why Sagetemple */
.why-sagetemple {
    background: var(--bg-darker);
}

.why-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

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

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

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.project-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.stat {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.project-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--secondary-color);
}

/* Testimonials */
.testimonials {
    background: var(--bg-darker);
}

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

.testimonial-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(20px);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-logo img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Newsletter */
.newsletter-signup {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

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

.newsletter-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: var(--glass-bg);
    color: var(--text-primary);
    backdrop-filter: blur(20px);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 255, 195, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

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

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

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

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

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

    .service-card,
    .project-card,
    .testimonial-item {
        padding: 20px;
    }
}

/* Enhanced Animation Styles */
.hero-content {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-description {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 1.1s both;
}

/* Service Cards Animation */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.2);
}

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    animation: pulse 1s ease-in-out;
}

/* Project Cards Animation */
.project-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 163, 255, 0.2);
}

.project-image {
    transition: all 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

/* Stats Animation */
.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    animation: pulse 1s ease-in-out;
}

.stat-number {
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 195, 0.5);
}

/* Testimonial Animation */
.testimonial-item {
    transition: all 0.4s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
}

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

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

/* Navigation Link Animation */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: left 0.3s ease;
    opacity: 0.1;
}

.nav-link:hover::before {
    left: 100%;
}

/* Logo Animation */
.logo-text {
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-text {
    animation: pulse 1s ease-in-out;
}

/* Footer Animation */
.footer-section {
    transition: all 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-2px);
}

.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    animation: bounce 0.6s ease-in-out;
}

/* Newsletter Animation */
.newsletter-form input {
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 195, 0.3);
}

/* Loading Animation */
.loading {
    animation: shimmer 1.5s infinite;
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}


/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Particle Effects */
.particle {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Mobile Navigation Toggle Animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Loading State */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--glass-border);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

/* Enhanced Button Effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.btn:active {
    transform: translateY(0);
}

/* Text Selection */
::selection {
    background: var(--primary-color);
    color: var(--bg-dark);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Focus States */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading Animation for Images */
.image-loading {
    position: relative;
    overflow: hidden;
}

.image-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 1.5s infinite;
}

/* Enhanced Card Hover Effects */
.service-card,
.project-card {
    position: relative;
    overflow: hidden;
}

.service-card::after,
.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::after,
.project-card:hover::after {
    left: 100%;
}

/* Glow Effects */
.glow-on-hover {
    transition: all 0.3s ease;
}

.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(0, 255, 195, 0.4);
}

/* Magnetic Effect */
.magnetic {
    transition: transform 0.3s ease;
}

/* Cursor Effects */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.custom-cursor.hover {
    transform: scale(2);
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 255, 195, 0.1);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 195, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.about-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Company Story Section */
.company-story {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.company-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-text {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 20px;
    border-left: 3px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
}

.story-text p:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.story-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.story-image:hover::before {
    opacity: 0.5;
    transform: scale(1.05);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

/* CEO Profile Section */
.ceo-profile {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
}

.ceo-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,195,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.ceo-image {
    position: relative;
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.ceo-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.ceo-image:hover::before {
    opacity: 0.6;
    transform: rotate(5deg);
}

.ceo-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ceo-image:hover img {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.ceo-info {
    animation: fadeInRight 1s ease-out 0.5s both;
}

.ceo-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
}

.ceo-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.ceo-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
}

.ceo-info p:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

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

.ceo-stats .stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
}

.ceo-stats .stat:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 195, 0.1);
}

.ceo-stats .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.ceo-stats .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.1);
}

.team-member:hover::before {
    left: 100%;
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover .member-image {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-align: center;
}

.member-info .position {
    font-size: 1rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-info .bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: rgba(0, 255, 195, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links .social-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid transparent;
}

.social-links .social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 195, 0.05) 0%, transparent 50%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.value-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 195, 0.05), rgba(138, 43, 226, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.1);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 255, 195, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-item:hover .value-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.value-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon img {
    filter: brightness(0) invert(1);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 255, 195, 0.1);
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 255, 195, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.services-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.services-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.services-hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Services Detailed Section */
.services-detailed {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.services-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.services-grid-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    align-items: start;
}

.service-detailed {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    padding: 50px;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-detailed:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.1);
}

.service-detailed:hover::before {
    left: 100%;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 195, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
}

.service-detailed:hover .service-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.service-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.service-detailed:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin: 0;
    position: relative;
}

.service-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border-left: 4px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
    flex: 1;
}

.service-content p:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    position: relative;
}

.service-content h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive design for services grid */
@media (max-width: 768px) {
    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .service-detailed {
        padding: 30px 20px;
    }
    
    .service-header h2 {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .services-grid-detailed {
        padding: 0 10px;
    }
    
    .service-detailed {
        padding: 25px 15px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-header h2 {
        font-size: 1.8rem;
    }
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.process-step {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 195, 0.05), rgba(138, 43, 226, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.1);
}

.process-step:hover::before {
    opacity: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bg-dark);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* ===== PORTFOLIO PAGE STYLES ===== */

/* Portfolio Hero Section */
.portfolio-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 255, 195, 0.1);
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 255, 195, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    animation: float 7s ease-in-out infinite;
}

.portfolio-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.portfolio-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.portfolio-hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Portfolio Filter Section */
.portfolio-filter {
    padding: 60px 0 40px;
    background: var(--bg-dark);
    position: relative;
}

.portfolio-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 255, 195, 0.1);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

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

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 5px 15px rgba(0, 255, 195, 0.3);
}

.search-box {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-box input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 255, 195, 0.1);
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 195, 0.1);
    transform: scale(1.02);
}

/* Portfolio Grid Section */
.portfolio-grid-section {
    padding: 60px 0 100px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
}

.portfolio-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(138, 43, 226, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 255, 195, 0.03) 0%, transparent 50%);
}

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

.portfolio-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 195, 0.05), rgba(138, 43, 226, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.1);
}

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

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

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: auto;
}

.portfolio-card:hover .portfolio-overlay {
    background: rgba(0, 0, 0, 0.9);
}

.portfolio-actions {
    display: flex;
    gap: 15px;
    flex-direction: column;
    position: relative;
    z-index: 1001;
    pointer-events: auto;
}

.view-project-btn,
.live-site-btn {
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
}

.view-project-btn:hover,
.live-site-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.portfolio-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.portfolio-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.portfolio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category,
.technologies {
    background: rgba(0, 255, 195, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
}

.category:hover,
.technologies:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: scale(1.05);
}

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

.modal-content {
    background: var(--bg-dark);
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid rgba(0, 255, 195, 0.2);
    position: relative;
}

.close {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .story-content,
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-content h1,
    .services-hero-content h1,
    .portfolio-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-text h2,
    .ceo-info h2,
    .service-header h2 {
        font-size: 2rem;
    }
    
    .ceo-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid,
    .values-grid,
    .process-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-detailed {
        padding: 30px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .services-hero,
    .portfolio-hero {
        padding: 80px 0 60px;
    }
    
    .about-hero-content h1,
    .services-hero-content h1,
    .portfolio-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-content,
    .ceo-content {
        padding: 0 15px;
    }
    
    .service-detailed {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .team-member,
    .value-item,
    .process-step {
        padding: 25px 20px;
    }
    
    .portfolio-card {
        margin-bottom: 30px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
}

/* ===== BLOG PAGE STYLES ===== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 255, 195, 0.1);
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 60%, rgba(0, 255, 195, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 60% 40%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    animation: float 9s ease-in-out infinite;
}

.blog-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.blog-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.blog-hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Blog Content Section */
.blog-content {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.blog-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

/* Blog Main Content */
.blog-main {
    animation: fadeInLeft 1s ease-out 0.3s both;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-post {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 195, 0.05), rgba(138, 43, 226, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.blog-post:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.1);
}

.blog-post:hover::before {
    opacity: 1;
}

.post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.post-date,
.post-author,
.post-category {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 5px 12px;
    background: rgba(0, 255, 195, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
}

.post-category {
    color: var(--primary-color);
}

.post-date:hover,
.post-author:hover,
.post-category:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.post-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    line-height: 1.3;
}

.post-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 255, 195, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-link:hover::before {
    left: 100%;
}

.page-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 5px 15px rgba(0, 255, 195, 0.3);
}

/* Blog Sidebar */
.blog-sidebar {
    animation: fadeInRight 1s ease-out 0.5s both;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 195, 0.1);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 255, 195, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-form input::placeholder {
    color: var(--text-muted);
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 195, 0.1);
}

.search-form button {
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Recent Posts */
.recent-posts {
    list-style: none;
    padding: 0;
}

.recent-posts li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 195, 0.1);
}

.recent-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.recent-posts h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
    line-height: 1.4;
}

.recent-posts .post-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.recent-posts a:hover h4 {
    color: var(--primary-color);
}

/* Categories */
.categories {
    list-style: none;
    padding: 0;
}

.categories li {
    margin-bottom: 10px;
}

.categories a {
    display: block;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 195, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.categories a:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 255, 195, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 195, 0.1);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* ===== CAREERS PAGE STYLES ===== */

/* Careers Hero Section */
.careers-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 255, 195, 0.1);
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(0, 255, 195, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 25%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
}

.careers-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.careers-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.careers-hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Company Culture Section */
.company-culture {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.company-culture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.culture-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.culture-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 195, 0.05), rgba(138, 43, 226, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.1);
}

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

.culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 255, 195, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.culture-item:hover .culture-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.culture-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.culture-item:hover .culture-icon img {
    filter: brightness(0) invert(1);
}

.culture-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.culture-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* Job Listings Section */
.job-listings {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
}

.job-listings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(0,255,195,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

/* Department Filter */
.department-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.department-filter .filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 255, 195, 0.1);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

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

.department-filter .filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.department-filter .filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 5px 15px rgba(0, 255, 195, 0.3);
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.job-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.job-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.1);
}

.job-card:hover::before {
    left: 100%;
}

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

.job-header h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.job-type {
    background: rgba(0, 255, 195, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 195, 0.2);
    white-space: nowrap;
}

.job-meta {
    margin-bottom: 15px;
}

.department {
    background: rgba(138, 43, 226, 0.1);
    color: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.job-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.job-requirements {
    margin-bottom: 25px;
}

.job-requirements h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
}

.job-requirements li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.job-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.job-actions {
    display: flex;
    gap: 15px;
}

.view-job-btn,
.apply-job-btn {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
}

.view-job-btn {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    border: 2px solid rgba(0, 255, 195, 0.1);
}

.view-job-btn:hover {
    background: rgba(0, 255, 195, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.apply-job-btn {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.apply-job-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 195, 0.3);
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 255, 195, 0.1);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(0, 255, 195, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    animation: float 11s ease-in-out infinite;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.contact-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.7s both;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Info */
.contact-info {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 255, 195, 0.1);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.social-links h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 255, 195, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-container {
    animation: fadeInRight 1s ease-out 0.5s both;
}

.form-success,
.form-error {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-success {
    background: rgba(0, 255, 195, 0.1);
    color: var(--primary-color);
    border: 2px solid rgba(0, 255, 195, 0.2);
}

.form-error {
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    border: 2px solid rgba(255, 0, 0, 0.2);
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 255, 195, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 195, 0.1);
    transform: scale(1.02);
}

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

.form-group button {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-group button::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;
}

.form-group button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 195, 0.3);
}

.form-group button:hover::before {
    left: 100%;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
}

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

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

.map-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.map-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 195, 0.05), rgba(138, 43, 226, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.1);
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* Responsive Design for Blog, Careers, and Contact Pages */
@media (max-width: 768px) {
    .blog-layout,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .blog-main {
        gap: 30px;
    }
    
    .blog-hero-content h1,
    .careers-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-info h2,
    .map-content h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .culture-grid,
    .jobs-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .department-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .department-filter .filter-btn {
        width: 200px;
    }
    
    .job-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-hero,
    .careers-hero,
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .blog-hero-content h1,
    .careers-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-content,
    .company-culture,
    .job-listings,
    .contact-form-section,
    .map-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .blog-post,
    .culture-item,
    .job-card,
    .contact-form,
    .faq-item {
        margin-bottom: 20px;
    }
    
    .blog-post .post-content {
        padding: 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .map-container {
        border-radius: 15px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .page-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Ripple Effect for Buttons */
.filter-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* FAQ Accordion Styles */
.faq-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(0, 255, 195, 0.05);
    border-color: var(--primary-color);
}

.faq-item.active h3 {
    color: var(--primary-color);
}

.faq-item.active p {
    color: var(--text-primary);
}

/* Enhanced Form Styles */
.form-group {
    transition: all 0.3s ease;
}

.form-group:focus-within {
    transform: scale(1.02);
}

/* Enhanced Search Button */
.search-form button {
    transition: all 0.3s ease;
}

.search-form button:hover {
    transform: scale(1.05);
}

/* Enhanced Department Filter */
.department-filter .filter-btn {
    transition: all 0.3s ease;
}

.department-filter .filter-btn:hover {
    transform: translateY(-2px) scale(1.05);
}

/* Enhanced Contact Form */
.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 25px rgba(0, 255, 195, 0.2);
}

/* Enhanced Blog Post Hover */
.blog-post:hover .post-meta {
    transform: translateY(-2px);
}

.blog-post:hover .read-more {
    transform: translateX(10px);
}

/* Enhanced Job Card Hover */
.job-card:hover .job-header h3 {
    color: var(--primary-color);
}

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

/* Enhanced Culture Item Hover */
.culture-item:hover .culture-icon {
    animation: bounce 0.6s ease-in-out;
}

/* Enhanced Sidebar Widget Hover */
.sidebar-widget:hover h3::after {
    width: 60px;
}

/* Enhanced Map Container */
.map-container {
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 25px 50px rgba(0, 255, 195, 0.15);
}

/* Enhanced Contact Item Hover */
.contact-item:hover h3 {
    color: var(--secondary-color);
}

/* Enhanced Social Icon Hover */
.social-icon:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Enhanced Pagination */
.page-link:hover {
    box-shadow: 0 8px 20px rgba(0, 255, 195, 0.2);
}

/* Enhanced Category Links */
.categories a:hover {
    animation: slideInRight 0.3s ease-out;
}

/* Enhanced Recent Posts */
.recent-posts a:hover {
    transform: translateX(5px);
}

/* Enhanced Newsletter Form */
.newsletter-form button:hover {
    animation: pulse 0.6s ease-in-out;
}



/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-list li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.result-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(0, 255, 195, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.result-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 195, 0.1);
}

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

.result-metric {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.result-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.result-before {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.result-arrow {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.result-after {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.result-improvement {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(0, 255, 195, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 195, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Project Detail Actions */
.project-detail-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 2px solid rgba(0, 255, 195, 0.1);
    position: relative;
    z-index: 2;
}

.project-detail-actions .btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.project-detail-actions .btn:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(0, 255, 195, 0.3);
}

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

/* Enhanced Modal Close Button */
.project-modal-content .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 195, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.project-modal-content .close:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(90deg);
}

/* Responsive Design for Project Modal */
@media (max-width: 768px) {
    .project-modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 95vh;
    }
    
    .project-detail-header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .project-detail-info h2 {
        font-size: 2rem;
    }
    
    .project-detail-content {
        padding: 20px;
    }
    
    .project-section h3 {
        font-size: 1.5rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .project-detail-actions {
        flex-direction: column;
        padding: 20px;
    }
    
    .project-detail-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .project-modal-content {
        margin: 2% auto;
        width: 98%;
    }
    
    .project-detail-header {
        padding: 15px;
    }
    
    .project-detail-info h2 {
        font-size: 1.8rem;
    }
    
    .project-detail-content {
        padding: 15px;
    }
    
    .project-section {
        margin-bottom: 30px;
    }
    
    .tech-stack {
        gap: 8px;
    }
    
    .tech-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Project Detail Page Styles */
.project-detail-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    border-bottom: 3px solid rgba(0, 255, 195, 0.2);
}

.project-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 195, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.project-detail-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.project-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: scaleIn 0.6s ease-out 0.2s both;
}

.project-detail-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.project-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.project-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.project-meta-grid .meta-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.project-meta-grid .meta-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 195, 0.2);
}

.meta-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Project Detail Content */
.project-detail-content {
    padding: 80px 0;
    background: var(--bg-dark);
}

.project-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.project-main-content {
    animation: fadeInLeft 1s ease-out;
}

.project-hero-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    border: 3px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
}

.project-hero-image:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.project-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.project-hero-image:hover img {
    transform: scale(1.05);
}

.project-section {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.project-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-left: 20px;
}

.project-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.project-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Project Sidebar */
.project-sidebar {
    animation: fadeInRight 1s ease-out;
}

.project-sidebar .sidebar-widget {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.project-sidebar .sidebar-widget:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 195, 0.2);
}

.project-sidebar .sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.project-sidebar .sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-stats .stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(0, 255, 195, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
}

.project-stats .stat-item:hover {
    background: rgba(0, 255, 195, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.project-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.project-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-actions .btn {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

/* Related Projects */
.related-projects {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-project {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 255, 195, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
}

.related-project:hover {
    background: rgba(0, 255, 195, 0.1);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.related-project img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(0, 255, 195, 0.2);
}

.related-project-info {
    flex: 1;
}

.related-project-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.related-project-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.related-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.related-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-detail-hero h1 {
        font-size: 2.5rem;
    }
    
    .project-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-meta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
    }
    
    .project-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .project-detail-hero {
        padding: 100px 0 60px;
    }
    
    .project-detail-hero h1 {
        font-size: 2rem;
    }
    
    .project-subtitle {
        font-size: 1.1rem;
    }
    
    .project-detail-content {
        padding: 60px 0;
    }
    
    .project-sidebar .sidebar-widget {
        padding: 20px;
    }
}

/* ===== BLOG POST DETAIL PAGE STYLES ===== */
.blog-post-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,195,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.blog-post-hero .post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.blog-post-hero .post-date,
.blog-post-hero .post-author,
.blog-post-hero .post-category {
    background: rgba(0, 255, 195, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
}

.blog-post-hero .post-date:hover,
.blog-post-hero .post-author:hover,
.blog-post-hero .post-category:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.blog-post-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.2;
}

.post-featured-image {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.post-featured-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    padding: 80px 0;
    background: var(--bg-dark);
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.blog-post-main {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
}

.blog-post-main:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.1);
}

.blog-post-article {
    line-height: 1.8;
}

.blog-post-article h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 40px 0 20px;
    position: relative;
}

.blog-post-article h2::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.blog-post-article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 30px 0 15px;
}

.blog-post-article p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.blog-post-article ul {
    margin: 20px 0;
    padding-left: 20px;
}

.blog-post-article li {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    position: relative;
}

.blog-post-article li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--primary-color);
    font-weight: bold;
}

.post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 255, 195, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.tag {
    background: rgba(0, 255, 195, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.share-link {
    background: rgba(0, 255, 195, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 255, 195, 0.2);
    transition: all 0.3s ease;
}

.share-link:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.blog-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post-sidebar .sidebar-widget {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(0, 255, 195, 0.1);
    transition: all 0.3s ease;
}

.blog-post-sidebar .sidebar-widget:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 195, 0.1);
}

.blog-post-sidebar .sidebar-widget h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
}

.blog-post-sidebar .sidebar-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 195, 0.1);
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.recent-post:hover img {
    transform: scale(1.1);
}

.recent-post-info h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
}

.recent-post-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.recent-post-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-post-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-post-main {
        padding: 30px;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-post-sidebar .sidebar-widget {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .blog-post-hero {
        padding: 100px 0 60px;
    }
    
    .blog-post-hero h1 {
        font-size: 2rem;
    }
    
    .blog-post-hero .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-post-content {
        padding: 60px 0;
    }
    
    .blog-post-main {
        padding: 25px;
    }
    
    .blog-post-article h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-article h3 {
        font-size: 1.25rem;
    }
    
    .blog-post-article p {
        font-size: 1rem;
    }
}


/* Animation Performance */
/* Apply will-change only to animated elements */
.animate-fade-in-up,
.animate-float,
.animate-pulse,
.animate-fade-in-left,
.animate-fade-in-right,
.animate-scale-in,
.animate-slide-in-top,
.animate-rotate,
.animate-bounce {
    will-change: transform, opacity;
}
