:root {
    --primary-color: #39FF14;
    --secondary-color: #008F11;
    --accent-color: #7B2FFF;
    --success-color: #39FF14;
    --dark-bg: #000000;
    --dark-surface: #0a0a0a;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --gradient-primary: linear-gradient(135deg, #39FF14 0%, #00CC00 100%);
    
    --ims-black: var(--dark-bg);
    --ims-deep-black: #000000;
    --ims-night: var(--dark-surface);
    --ims-panel: #111111;
    --ims-neon-green: var(--primary-color);
    --ims-bright-green: var(--primary-color);
    --ims-soft-green: #80ecff;
    --ims-electric-blue: var(--accent-color);
    --ims-sky-blue: var(--primary-color);
    --ims-white: var(--text-primary);
    --ims-silver: var(--text-secondary);
    --ims-muted: var(--text-secondary);
    
    --ims-heading-font: "Orbitron", sans-serif;
    --ims-body-font: "Inter", sans-serif;
    
    --ims-radius-lg: 32px;
    --ims-radius-md: 24px;
    --ims-radius-sm: 18px;
    --ims-transition: all 0.3s ease;
    
    --ims-shadow-neon: 0 0 15px rgba(57, 255, 20, 0.6);
    --ims-shadow-card: 0 26px 60px rgba(0, 0, 0, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

/* SPACE BACKGROUND - PROFESSIONAL */
body.ims-body {
    background-color: #000000;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    color: var(--text-primary);
    font-family: var(--ims-body-font);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Deep Space Gradient */
body.ims-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, #1a1a4e 0%, #000000 50%, #000000 100%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -5;
    animation: deepSpacePulse 30s ease-in-out infinite;
}

@keyframes deepSpacePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Starfield Layer 1 - Distant Stars */
body.ims-body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 15% 65%, white, transparent),
        radial-gradient(2px 2px at 45% 25%, white, transparent),
        radial-gradient(1px 1px at 70% 90%, white, transparent);
    background-size: 
        550px 550px,
        650px 650px,
        450px 450px,
        750px 750px,
        350px 350px,
        500px 500px,
        600px 600px,
        400px 400px,
        700px 700px;
    animation: starsRotate 400s linear infinite;
    z-index: -4;
    opacity: 0.5;
}

@keyframes starsRotate {
    from { transform: translate(0, 0); }
    to { transform: translate(-300px, -300px); }
}

/* Twinkling Stars Layer */
.space-stars-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    pointer-events: none;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.7) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 
        400px 400px,
        300px 300px,
        500px 500px;
    background-position: 
        0 0,
        50px 60px,
        130px 270px;
    animation: twinkleAnimation 8s ease-in-out infinite, driftStars 200s linear infinite;
}

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

@keyframes driftStars {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

/* Cosmic Nebula */
.cosmic-nebula {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -3;
    opacity: 0.25;
    pointer-events: none;
    animation: nebulaFlow 60s ease-in-out infinite;
}

.nebula-layer {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.nebula-layer:nth-child(1) {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.6) 0%, transparent 70%);
    top: -300px;
    left: -200px;
    animation: nebulaDrift1 50s ease-in-out infinite;
}

.nebula-layer:nth-child(2) {
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.5) 0%, transparent 70%);
    bottom: -400px;
    right: -300px;
    animation: nebulaDrift2 60s ease-in-out infinite;
}

.nebula-layer:nth-child(3) {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.4) 0%, transparent 70%);
    top: 30%;
    right: 20%;
    animation: nebulaDrift3 70s ease-in-out infinite;
}

.nebula-layer:nth-child(4) {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.35) 0%, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation: nebulaDrift1 55s ease-in-out infinite reverse;
}

@keyframes nebulaDrift1 {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% { 
        transform: translate(150px, -100px) scale(1.3) rotate(120deg);
    }
    66% { 
        transform: translate(-100px, 150px) scale(0.8) rotate(240deg);
    }
}

@keyframes nebulaDrift2 {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% { 
        transform: translate(-150px, 100px) scale(1.2) rotate(-120deg);
    }
    66% { 
        transform: translate(100px, -150px) scale(0.9) rotate(-240deg);
    }
}

@keyframes nebulaDrift3 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    50% { 
        transform: translate(80px, 80px) scale(1.15);
    }
}

@keyframes nebulaFlow {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

/* Alien Planets */
.alien-planet {
    position: fixed;
    border-radius: 50%;
    z-index: -2;
    box-shadow: inset -30px -30px 60px rgba(0, 0, 0, 0.7);
    animation: planetOrbit 80s ease-in-out infinite;
}

.alien-planet:nth-child(1) {
    width: 180px;
    height: 180px;
    background: 
        radial-gradient(circle at 35% 35%, #667eea 0%, #764ba2 100%);
    top: 8%;
    right: 12%;
    opacity: 0.7;
    filter: blur(1px);
}

.alien-planet:nth-child(2) {
    width: 120px;
    height: 120px;
    background: 
        radial-gradient(circle at 30% 30%, #f093fb 0%, #f5576c 100%);
    bottom: 15%;
    left: 10%;
    opacity: 0.6;
    animation-delay: -30s;
    filter: blur(0.5px);
}

.alien-planet:nth-child(3) {
    width: 90px;
    height: 90px;
    background: 
        radial-gradient(circle at 40% 40%, #4facfe 0%, #00f2fe 100%);
    top: 50%;
    left: 5%;
    opacity: 0.5;
    animation-delay: -50s;
}

@keyframes planetOrbit {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% { 
        transform: translateY(-80px) translateX(40px) rotate(90deg);
    }
    50% { 
        transform: translateY(-40px) translateX(-60px) rotate(180deg);
    }
    75% { 
        transform: translateY(60px) translateX(-40px) rotate(270deg);
    }
}

/* Shooting Stars */
.shooting-stars {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    pointer-events: none;
}

.shooting-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.9);
}

.shooting-star:nth-child(1) {
    top: 20%;
    right: 20%;
    animation: shoot 4s linear infinite;
}

.shooting-star:nth-child(2) {
    top: 60%;
    right: 60%;
    animation: shoot 5s linear infinite;
    animation-delay: 2s;
}

.shooting-star:nth-child(3) {
    top: 40%;
    right: 80%;
    animation: shoot 6s linear infinite;
    animation-delay: 4s;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateX(-600px) translateY(400px);
        opacity: 0;
    }
}

/* Glowing Particles */
.space-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(57, 255, 20, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.8);
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; left: 70%; animation-delay: 2s; }
.particle:nth-child(3) { top: 70%; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { top: 50%; left: 90%; animation-delay: 6s; }
.particle:nth-child(5) { top: 90%; left: 50%; animation-delay: 8s; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-100px) translateX(50px);
        opacity: 1;
    }
}

/* Aurora Effect */
.space-aurora {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -3;
    opacity: 0.2;
    pointer-events: none;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(57, 255, 20, 0.1) 25%,
        transparent 50%,
        rgba(123, 47, 255, 0.1) 75%,
        transparent 100%
    );
    animation: auroraWave 20s ease-in-out infinite;
}

@keyframes auroraWave {
    0%, 100% { transform: translateX(0) skewY(0deg); }
    50% { transform: translateX(100px) skewY(5deg); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ims-heading-font);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.ims-view-btn:hover,
.ims-link-btn:hover {
    transform: scale(1.1);
    color: white;
}

.ims-portfolio-content {
    padding: 2rem;
}

.ims-portfolio-content h3 a {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ims-portfolio-content h3 a:hover {
    color: var(--primary-color);
}

.ims-portfolio-content p {
    color: var(--text-secondary);
    margin: 1rem 0 0;
}

/* Blog Cards */
.ims-blog-card {
    background: rgba(21, 25, 50, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.ims-blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 20px 60px rgba(57, 255, 20, 0.2);
}

.ims-blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ims-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.ims-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.ims-blog-content {
    padding: 2rem;
}

.ims-post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ims-blog-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.ims-blog-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ims-blog-content a {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ims-blog-content a:hover {
    transform: translateX(5px);
}

/* Team Cards */
.ims-team-card {
    background: rgba(21, 25, 50, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
}

.ims-team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 20px 60px rgba(57, 255, 20, 0.2);
}

.ims-team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.ims-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.ims-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ims-team-card:hover .ims-team-overlay {
    opacity: 1;
}

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

.ims-team-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ims-team-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.ims-team-info {
    padding: 1.5rem;
}

.ims-team-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ims-team-info p {
    color: var(--text-secondary);
    margin: 0;
}

/* Career Cards */
.ims-career-card {
    padding: 2rem;
    background: rgba(21, 25, 50, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.ims-career-card:hover {
    transform: translateY(-10px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 20px 60px rgba(57, 255, 20, 0.2);
}

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

.ims-job-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ims-job-badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ims-job-badge.type {
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.ims-job-badge.salary {
    background: rgba(0, 245, 160, 0.1);
    color: #00F5A0;
    border: 1px solid rgba(0, 245, 160, 0.3);
}

.ims-job-icon {
    width: 50px;
    height: 50px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.ims-career-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.ims-career-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.ims-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ims-job-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ims-job-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.ims-job-footer a:hover {
    gap: 0.5rem;
}

/* Quick Links Grid */
.ims-quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ims-quick-link-card {
    display: block;
    padding: 2.5rem 1.5rem;
    background: rgba(21, 25, 50, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
}

.ims-quick-link-card:hover {
    transform: translateY(-10px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 20px 60px rgba(57, 255, 20, 0.2);
    text-decoration: none;
}

.ims-quick-link-icon {
    width: 80px;
    height: 80px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.ims-quick-link-card:hover .ims-quick-link-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.ims-quick-link-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ims-quick-link-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* CTA Video */
.ims-cta-video {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ims-cta-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ims-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.ims-cta-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.ims-cta-eyebrow {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.ims-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
}

/* Final CTA Section */
.ims-final-cta {
    position: relative;
    padding: 5rem 3rem;
    background: var(--gradient-primary);
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
}

.ims-final-cta-content {
    position: relative;
    z-index: 2;
}

.ims-final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

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

.ims-cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.decoration-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(60px);
}

.decoration-orb.orb-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.decoration-orb.orb-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
}

/* Social Media Section */
.ims-social-media-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ims-social-media-copy h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.ims-feature-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.ims-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ims-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ims-feature-icon img {
    width: 20px;
}

.ims-social-media-image img {
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Partnerships */
.ims-partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ims-partnership-card {
    background: rgba(21, 25, 50, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
}

.ims-partnership-card img {
    height: 60px;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

.ims-partnership-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.ims-partnership-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.ims-partnership-link {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Story Section */
.ims-story-section {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.ims-story-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ims-story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
}

.ims-story-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.ims-story-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.ims-story-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Testimonials */
.ims-testimonials {
    background: rgba(21, 25, 50, 0.6);
    border-radius: 32px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

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

.ims-testimonial-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ims-testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-color);
}

.ims-testimonial-quote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.ims-testimonial-name {
    font-weight: 700;
    color: var(--primary-color);
}

/* Footer */
.ims-footer {
    background: #020305;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Rest of the styles continue... */

.ims-service-features {
    list-style: none;
    padding: 0;
    color: var(--text-secondary);
    text-align: left;
    margin-bottom: 1.5rem;
}

.ims-service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.ims-service-features i {
    color: var(--primary-color);
    margin-right: 0.8rem;
}

.ims-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: black;
    z-index: 2;
}

.ims-btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

/* Page Hero */
.ims-page-hero {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
    text-align: center;
}

.ims-page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ims-page-hero .hero-content {
    position: relative;
    z-index: 1;
}

.ims-page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.5rem;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.ims-page-hero .hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.ims-page-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.ims-page-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Forms */
.ims-form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    transition: all 0.3s ease;
    width: 100%;
}

.ims-form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.15);
    color: var(--text-primary);
    outline: none;
}

.ims-form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.ims-form-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    display: block;
}

.modal-content {
    background: rgba(21, 25, 50, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    color: var(--text-primary);
    backdrop-filter: blur(20px);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.form-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.form-label span {
    color: var(--accent-color);
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.3rem rgba(57, 255, 20, 0.15);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Footer Video and Forms */
.ims-footer-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.ims-footer-video {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.ims-footer-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ims-footer-form {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: 24px;
    color: black;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.ims-footer-form h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: black;
}

.ims-footer-form p {
    color: rgba(0,0,0,0.8);
    margin-bottom: 2rem;
    max-width: 800px;
}

.ims-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.ims-footer-form .ims-form-input {
    background: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
    color: black;
}

.ims-footer-form .ims-form-input::placeholder {
    color: #666;
}

.ims-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ims-footer-links h3 {
    color: var(--primary-color);
    font-family: var(--ims-heading-font);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.ims-footer-links a {
    color: var(--text-primary);
    text-decoration: none;
}

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

.ims-footer-contact span {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.ims-footer-contact i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

.ims-footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ims-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.ims-footer-social a:hover {
    background: var(--primary-color);
    color: black;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .ims-social-media-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ims-hero h1 {
        font-size: 2.5rem;
    }
    
    .ims-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .ims-hero h1 {
        font-size: 2rem;
    }
    
    .ims-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .ims-form-grid {
        grid-template-columns: 1fr;
    }
    
    .ims-footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}: var(--ims-transition);
}

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

img,
video {
    display: block;
    max-width: 100%;
}

/* Utility Classes */
.ims-container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Announcement Bar */
.ims-announcement {
    display: flex;
    align-items: stretch;
    justify-content: center;
    background-color: var(--ims-deep-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 100;
}

.ims-announcement-strip {
    position: relative;
    padding: 10px clamp(18px, 2vw, 36px);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ims-deep-black);
    display: flex;
    align-items: center;
    gap: 12px;
}

.ims-announcement-strip:is(.ims-announcement-green) {
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-right: 2px solid rgba(0,0,0,0.2);
}

.ims-announcement-strip.ims-announcement-green::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 20px;
    height: 100%;
    background: inherit;
    transform: skewX(-24deg);
    transform-origin: left;
    z-index: 1;
}

.ims-announcement-strip.ims-announcement-blue {
    background: transparent;
    color: var(--text-secondary);
    padding-right: clamp(18px, 3vw, 48px);
    margin-left: 12px;
}

.ims-announcement-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ims-announcement-social a {
    color: var(--text-secondary);
}

.ims-announcement-social a:hover {
    color: var(--primary-color);
}

/* Header */
.ims-site-header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.ims-header-inner {
    width: min(1200px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.ims-brand img {
    height: 50px;
}

.ims-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ims-nav a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.ims-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ims-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.ims-btn-outline {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ims-btn-outline:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

/* Hero Section Styles (Global) */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--secondary-color);
    bottom: -300px;
    right: -300px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* IMS Hero (Legacy Support / Index) */
.ims-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.ims-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.ims-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 0%, var(--dark-bg) 90%);
}

.ims-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.ims-eyebrow {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ims-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.ims-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ims-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: black;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    border: none;
}

.ims-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.6);
    color: black;
}

/* Sections */
.ims-section {
    padding: 100px 0;
    position: relative;
}

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

.ims-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ims-section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Trusted Logos */
.ims-trusted-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    opacity: 0.7;
}

.ims-trusted-logos img {
    max-height: 60px;
    filter: grayscale(100%) brightness(2);
    transition: all 0.3s ease;
}

.ims-trusted-logos img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* Cards Grid */
.ims-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Service Cards */
.ims-service-card {
    background: rgba(21, 25, 50, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
}

.ims-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 20px 60px rgba(57, 255, 20, 0.2);
}

.ims-service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.ims-service-card .service-icon {
    width: 80px;
    height: 80px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.ims-service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.ims-service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.ims-service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Portfolio Cards */
.ims-portfolio-card {
    background: rgba(21, 25, 50, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.ims-portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 20px 60px rgba(57, 255, 20, 0.2);
}

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

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

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

.ims-portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ims-portfolio-card:hover .ims-portfolio-overlay {
    opacity: 1;
}

.ims-view-btn,
.ims-link-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}


