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

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #19382C 0%, #1F4034 50%, #19382C 100%);
    background-attachment: fixed;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(2deg); }
}

/* Floating Geometric Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    max-width: 100vw;
    max-height: 100vh;
}

.floating-shape {
    position: absolute;
    opacity: 0.06;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.shape-circle {
    border-radius: 50%;
    animation: floatCircle var(--duration, 25s) linear infinite;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid rgba(255, 215, 0, 0.08);
    border-radius: 0;
    animation: floatTriangle var(--duration, 30s) linear infinite;
}

.shape-diamond {
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    animation: floatDiamond var(--duration, 35s) linear infinite;
}

.shape-hexagon {
    width: 20px;
    height: 20px;
    background: rgba(255, 215, 0, 0.04);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatHexagon var(--duration, 28s) linear infinite;
}

@keyframes floatCircle {
    0% { 
        transform: translateY(100vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% { opacity: 0.06; }
    90% { opacity: 0.06; }
    100% { 
        transform: translateY(-100px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

@keyframes floatTriangle {
    0% { 
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.08; }
    90% { opacity: 0.08; }
    100% { 
        transform: translateY(-100px) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes floatDiamond {
    0% { 
        transform: translateY(100vh) rotate(45deg) scale(0.5);
        opacity: 0;
    }
    10% { opacity: 0.06; }
    90% { opacity: 0.06; }
    100% { 
        transform: translateY(-100px) rotate(405deg) scale(1.5);
        opacity: 0;
    }
}

@keyframes floatHexagon {
    0% { 
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.04; }
    90% { opacity: 0.04; }
    100% { 
        transform: translateY(-100px) rotate(180deg);
        opacity: 0;
    }
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #19382C 0%, #1F4034 50%, #2A5A47 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.8s ease-out;
    overflow: hidden;
    max-width: 100vw;
    max-height: 100vh;
}

/* Animated grid pattern */
.splash-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.6;
}

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

/* Subtle corner accents */
.splash-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 10%, rgba(255, 215, 0, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 90% 90%, rgba(255, 215, 0, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: accentPulse 8s ease-in-out infinite;
}

@keyframes accentPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.splash-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.spinner-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

/* Add orbiting particles around spinner */
.spinner-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 0 1px rgba(255, 215, 0, 0.1),
        inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.spinner-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbitRing 8s linear infinite;
    border-top-color: rgba(255, 215, 0, 0.4);
    border-right-color: rgba(255, 215, 0, 0.3);
}

@keyframes orbitRing {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.puzzle-piece {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.35);
    border: 2px solid rgba(255, 215, 0, 0.7);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.3),
        inset 0 0 10px rgba(255, 215, 0, 0.2);
}

.puzzle-piece::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: rgba(255, 215, 0, 0.25);
    border-radius: 4px;
    transition: all 0.8s ease;
}

.puzzle-piece.solved::before {
    background: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.puzzle-piece.solved {
    box-shadow: 
        0 0 25px rgba(255, 215, 0, 0.6),
        inset 0 0 15px rgba(255, 215, 0, 0.4);
}

/* Top-left piece */
.puzzle-piece:nth-child(1) {
    top: 0;
    left: 0;
    border-radius: 12px 0 0 0;
    animation: piece1Float 2s linear infinite;
}

.puzzle-piece:nth-child(1).solved {
    animation: piece1Solve 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.puzzle-piece:nth-child(1)::before {
    border-radius: 8px 0 0 0;
}

/* Top-right piece */
.puzzle-piece:nth-child(2) {
    top: 0;
    right: 0;
    border-radius: 0 12px 0 0;
    animation: piece2Float 1.8s linear infinite;
}

.puzzle-piece:nth-child(2).solved {
    animation: piece2Solve 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.puzzle-piece:nth-child(2)::before {
    border-radius: 0 8px 0 0;
}

/* Bottom-left piece */
.puzzle-piece:nth-child(3) {
    bottom: 0;
    left: 0;
    border-radius: 0 0 0 12px;
    animation: piece3Float 2.2s linear infinite;
}

.puzzle-piece:nth-child(3).solved {
    animation: piece3Solve 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.puzzle-piece:nth-child(3)::before {
    border-radius: 0 0 0 8px;
}

/* Bottom-right piece */
.puzzle-piece:nth-child(4) {
    bottom: 0;
    right: 0;
    border-radius: 0 0 12px 0;
    animation: piece4Float 1.6s linear infinite;
}

.puzzle-piece:nth-child(4).solved {
    animation: piece4Solve 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.puzzle-piece:nth-child(4)::before {
    border-radius: 0 0 8px 0;
}

/* Center connector - appears when solved */
.puzzle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.5s ease;
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.6);
}

.puzzle-center.visible {
    transform: translate(-50%, -50%) scale(1);
    animation: centerPulse 2s ease-in-out infinite;
}

/* Spinning animations for each piece */
@keyframes piece1Float {
    0% { transform: rotate(0deg) translateX(20px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}

@keyframes piece2Float {
    0% { transform: rotate(0deg) translateX(-20px) rotate(0deg); }
    100% { transform: rotate(-360deg) translateX(-20px) rotate(360deg); }
}

@keyframes piece3Float {
    0% { transform: rotate(0deg) translateY(-20px) rotate(0deg); }
    100% { transform: rotate(360deg) translateY(-20px) rotate(-360deg); }
}

@keyframes piece4Float {
    0% { transform: rotate(0deg) translate(-20px, -20px) rotate(0deg); }
    100% { transform: rotate(-360deg) translate(-20px, -20px) rotate(360deg); }
}

/* Solving animations - pieces snap into place with rotation */
@keyframes piece1Solve {
    0% { transform: rotate(720deg) translateX(20px) rotate(-720deg); }
    100% { 
        transform: rotate(0deg) translateX(0px) rotate(0deg);
        background: rgba(255, 215, 0, 0.5);
        border-color: rgba(255, 215, 0, 0.8);
    }
}

@keyframes piece2Solve {
    0% { transform: rotate(-720deg) translateX(-20px) rotate(720deg); }
    100% { 
        transform: rotate(0deg) translateX(0px) rotate(0deg);
        background: rgba(255, 215, 0, 0.5);
        border-color: rgba(255, 215, 0, 0.8);
    }
}

@keyframes piece3Solve {
    0% { transform: rotate(720deg) translateY(-20px) rotate(-720deg); }
    100% { 
        transform: rotate(0deg) translateY(0px) rotate(0deg);
        background: rgba(255, 215, 0, 0.5);
        border-color: rgba(255, 215, 0, 0.8);
    }
}

@keyframes piece4Solve {
    0% { transform: rotate(-720deg) translate(-20px, -20px) rotate(720deg); }
    100% { 
        transform: rotate(0deg) translate(0px, 0px) rotate(0deg);
        background: rgba(255, 215, 0, 0.5);
        border-color: rgba(255, 215, 0, 0.8);
    }
}

@keyframes centerPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.progress-dots {
    display: flex;
    gap: 12px;
    position: relative;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0.3;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.progress-dot.active {
    background: #FFD700;
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transform: scale(1.3);
}

.loading-text {
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    min-height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
}

.loading-text.visible {
    opacity: 1;
}

.discrete-footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    color: rgba(255, 215, 0, 0.6);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content */
.main-content {
    opacity: 0;
    transition: opacity 1s ease-in;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.main-content.visible {
    opacity: 1;
}

/* ENHANCED HEADER - More enterprise styling */
.header {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(25, 56, 44, 0.95) 0%, rgba(42, 90, 71, 0.95) 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.05), transparent, rgba(255, 215, 0, 0.03), transparent);
    animation: rayRotate 60s linear infinite;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: 
        radial-gradient(circle at 30% 30%, transparent 20%, rgba(255, 215, 0, 0.04) 21%, rgba(255, 215, 0, 0.04) 22%, transparent 23%),
        radial-gradient(circle at 70% 70%, transparent 20%, rgba(255, 215, 0, 0.04) 21%, rgba(255, 215, 0, 0.04) 22%, transparent 23%),
        conic-gradient(from 90deg, transparent 30%, rgba(255, 215, 0, 0.05) 40%, transparent 50%, rgba(255, 215, 0, 0.05) 60%, transparent 70%);
    animation: techRotate 45s linear infinite;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Burger Menu Button - Hidden on desktop */
.burger-menu {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1002;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.burger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 56, 44, 0.98) 0%, rgba(31, 64, 52, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

/* Backdrop overlay */
.mobile-menu-overlay::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.mobile-menu-overlay.active::before {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 6rem 1.5rem 2rem 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.mobile-nav-btn {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 1.2rem 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.mobile-nav-btn:active {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
    color: #FFD700;
    transform: scale(0.98);
}

/* Navigation Bar - More polished enterprise look */
.nav-bar {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    width: 100%;
    flex-wrap: wrap;
}

.nav-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.7rem 1.4rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    text-align: center;
    white-space: nowrap;
    border-radius: 4px;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-btn:hover {
    color: #FFD700;
}

.nav-btn:hover::before {
    opacity: 1;
}

.nav-btn:hover::after {
    width: 90%;
}

.nav-btn:active {
    transform: scale(0.98);
}

.nav-btn.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.08);
}

.nav-btn.active::after {
    width: 90%;
}

@keyframes rayRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes techRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

.logo-section {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.logo {
    max-height: 280px;
    width: auto;
    margin-bottom: 0.5rem;
    max-width: 90%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.catchline {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ENHANCED HERO SECTION - More visible web_back.png with glitch effect */
.hero-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(45deg, #19382C, #1F4034);
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 400px;
}

/* Enhanced background image layer with better visibility */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('web_back.png') center/cover no-repeat;
    opacity: 0.25;
    filter: 
        hue-rotate(80deg)
        saturate(0.8)
        brightness(0.9)
        contrast(1.15);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
}

/* TV Signal Glitch Effect Overlay */
.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('web_back.png') center/cover no-repeat;
    opacity: 0;
    filter: 
        hue-rotate(80deg)
        saturate(0.8)
        brightness(0.9)
        contrast(1.15);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 2;
    animation: glitchAnimation 8s infinite;
}

@keyframes glitchAnimation {
    0%, 94%, 100% {
        opacity: 0;
        transform: translate(0, 0);
    }
    94.5% {
        opacity: 0.4;
        transform: translate(-2px, 2px);
        filter: 
            hue-rotate(80deg)
            saturate(1.2)
            brightness(1.1)
            contrast(1.3);
    }
    95% {
        opacity: 0.6;
        transform: translate(2px, -2px);
        filter: 
            hue-rotate(85deg)
            saturate(0.6)
            brightness(0.7)
            contrast(1.5);
    }
    95.5% {
        opacity: 0.3;
        transform: translate(-1px, -1px);
        filter: 
            hue-rotate(75deg)
            saturate(1.0)
            brightness(1.0)
            contrast(1.2);
    }
    96% {
        opacity: 0;
        transform: translate(0, 0);
    }
}

/* Scanning light effect from side to side */
.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
    animation: headerShine 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

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

.header-tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.tech-circle {
    position: absolute;
    border: 2px solid rgba(255, 215, 0, 0.12);
    border-radius: 50%;
    animation: circuitRotate 30s linear infinite;
}

.tech-circle::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 215, 0, 0.7);
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.tech-circle::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.tech-hexagon {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexagonFloat 40s linear infinite;
    opacity: 0.5;
}

.tech-hexagon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
}

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

@keyframes hexagonFloat {
    0% { 
        transform: rotate(0deg) translateX(150px) rotate(0deg);
        opacity: 0.12;
    }
    50% {
        opacity: 0.2;
    }
    100% { 
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
        opacity: 0.12;
    }
}

.hero-section > * {
    position: relative;
    z-index: 4;
}

.hero-title {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.morphing-text {
    font-size: 2.2rem;
    height: 2.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.morph-word {
    opacity: 0;
    position: absolute;
    transition: opacity 0.8s ease-in-out;
    color: #FFD700;
    font-weight: 600;
    text-align: center;
    padding: 0 1rem;
    letter-spacing: 0.5px;
}

.morph-word.active {
    opacity: 1;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.7;
}

/* ENHANCED MISSION SECTION */
.mission-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.mission-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 50px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

.mission-section::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 50px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 215, 0, 0.06);
    border-radius: 30%;
    animation: rotate 20s linear infinite reverse;
    pointer-events: none;
}

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

.mission-title {
    color: #FFD700;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.mission-text {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Certifications title - match other section titles */
#certifications h3 {
    color: #FFD700 !important;
    font-size: 2.2rem !important;
    margin-bottom: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    text-align: center;
}

/* ENHANCED SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
    
    .service-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

.services-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.015) 0%, transparent 70%);
    animation: servicePulse 12s ease-in-out infinite;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes servicePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* ENHANCED SERVICE CARDS - More enterprise styling */
.service-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2), 0 0 0 1px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.service-icon img {
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    user-select: none;
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.service-icon.pulsing img {
    transform: scale(1.25);
}

@media (max-width: 768px) {
    .desktop-only { display: none; }
}

@media (hover: hover) {
    .service-icon:hover img {
        transform: scale(1.05);
        transition: transform 0.2s ease;
    }
    
    .service-icon:hover.pulsing img {
        transform: scale(1.25);
    }
}

@media (hover: none) and (pointer: coarse) {
    .service-icon:active img {
        transform: scale(1.2);
    }
    
    .service-icon.pulsing img {
        transform: scale(1.2);
    }
}

.service-icon img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.service-title {
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-title-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    backface-visibility: hidden;
}

.service-title-original {
    opacity: 1;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.service-title-morph {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 10px));
    z-index: 3;
}

.service-card:hover .service-title-original {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 10px));
    z-index: 1;
}

.service-card:hover .service-title-morph {
    opacity: 1;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.service-description {
    font-size: 0.98rem;
    opacity: 0.9;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

/* ENHANCED CONTACT SECTION */
.contact-section {
    background: linear-gradient(135deg, rgba(42, 90, 71, 0.95) 0%, rgba(25, 56, 44, 0.95) 100%);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridShift 40s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.contact-section > * {
    position: relative;
    z-index: 1;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    gap: 0.75rem;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.vacancies-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 700px;
}

.vacancy-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.vacancy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.35);
}

.vacancy-item h4 {
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.vacancy-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-title {
    color: #FFD700;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.contact-location {
    max-width: 650px;
    margin: 0 auto 2rem;
}

.contact-location .contact-item {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('office.png') center/cover;
    background-attachment: fixed;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    flex: 1;
    min-width: 200px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

/* ENHANCED CONTACT FORM */
.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: #FFD700;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
    font-size: 0.98rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #19382C;
    color: #FFFFFF;
}

.submit-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: #19382C;
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFC700 0%, #FFD700 100%);
}

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

.footer {
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(25, 56, 44, 0.95);
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

/* ENHANCED CERTIFICATION STYLES */
.certifications-rotator {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.cert-display {
    position: relative;
    height: 160px;
    margin-bottom: 0.8rem;
}

.cert-rotating {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-height: 160px;
    max-width: 280px;
    width: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.cert-rotating.active {
    opacity: 1;
}

.cert-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.indicator.active {
    background: #FFD700;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 215, 0, 0.7);
    transform: scale(1.1);
}

/* Mobile touch optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card {
        cursor: pointer;
    }
    
    .service-card:active .service-title-original {
        opacity: 0;
        transform: translate(-50%, calc(-50% - 10px));
        z-index: 1;
    }
    
    .service-card:active .service-title-morph {
        opacity: 1;
        transform: translate(-50%, -50%);
        z-index: 3;
    }
    
    .service-card.touched .service-title-original {
        opacity: 0 !important;
        transform: translate(-50%, calc(-50% - 10px));
        z-index: 1;
    }
    
    .service-card.touched .service-title-morph {
        opacity: 1 !important;
        transform: translate(-50%, -50%);
        z-index: 3;
    }
    
    .service-card:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    
    .service-card:hover .service-title-original {
        opacity: 1;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
    
    .service-card:hover .service-title-morph {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 10px));
        z-index: 3;
    }
    
    .nav-btn:hover {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .nav-btn:hover::after {
        width: 0;
    }
    
    .submit-btn:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
}

/* Responsive Design - Mobile Optimization */
@media (max-width: 768px) {
    html, body {
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .floating-elements,
    .splash-screen {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        max-height: 100vh;
    }
    
    .hero-section,
    .mission-section,
    .contact-section {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    .mission-section::after {
        right: 20px;
        width: 80px;
        height: 80px;
        top: 15%;
    }
    
    .mission-section::before {
        left: 20px;
        width: 60px;
        height: 60px;
        bottom: 15%;
    }

    .header {
        padding: 1rem 0.5rem;
    }

    /* Show burger menu on mobile */
    .burger-menu {
        display: flex;
    }

    /* Show mobile menu overlay when active */
    .mobile-menu-overlay {
        display: block;
    }

    /* Hide desktop navigation on mobile */
    .nav-bar {
        display: none;
    }

    .logo {
        max-height: 200px;
        max-width: 95%;
    }

    .catchline {
        font-size: 1rem;
    }

    .hero-section {
        padding: 2rem 1rem;
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .morphing-text {
        font-size: 1.8rem;
        height: 2rem;
        margin: 1.5rem 0;
    }

    .hero-section p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .mission-section {
        padding: 2rem 1rem;
    }

    .mission-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .mission-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    #certifications h3 {
        font-size: 1.8rem !important;
    }

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

    .service-card {
        padding: 1.5rem 1.2rem;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .service-icon.pulsing img {
        transform: scale(1.08);
    }

	.service-title {
		font-size: 1.25rem;
		height: 2.5rem;
		margin-bottom: 1.5rem;
	}

	.service-title-text {
		white-space: normal;
		line-height: 1.3;
	}

    .service-description {
        font-size: 1.05rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-title {
        font-size: 1.7rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-item {
        min-width: auto;
        width: 100%;
        max-width: 320px;
    }

    .contact-location {
        max-width: none;
        margin: 0 auto 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-location .contact-item {
        width: 100%;
        max-width: 320px;
        background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('office.png') center/cover;
        background-attachment: scroll;
    }

    .contact-form {
        margin: 0 auto;
        padding: 1.5rem;
    }
    
    .tab-navigation {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .tab-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .vacancies-info {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .vacancy-item {
        padding: 1.2rem;
    }

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

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

    .spinner-container {
        width: 80px;
        height: 80px;
    }

    .puzzle-piece {
        width: 40px;
        height: 40px;
    }

    .cert-display {
        height: 140px;
    }

    .cert-rotating {
        max-height: 120px;
        max-width: 200px;
    }

    .expertise-tab-navigation {
        gap: 0.5rem;
    }

    .expertise-tab-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .floating-shape,
    .tech-circle,
    .tech-hexagon {
        display: none;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .header {
        padding: 0.8rem 0.25rem;
    }

    .burger-menu {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .burger-menu span {
        width: 25px;
        height: 2.5px;
    }

    .mobile-nav {
        padding: 4rem 1rem 2rem 1rem;
        gap: 0.8rem;
    }

    .mobile-nav-btn {
        font-size: 1rem;
        padding: 1rem 0.8rem;
        min-height: 70px;
    }

    .logo {
        max-height: 160px;
    }

    .catchline {
        font-size: 0.95rem;
    }

    .hero-section {
        padding: 1.5rem 0.8rem;
        min-height: 320px;
    }

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

    .morphing-text {
        font-size: 1.6rem;
        height: 1.8rem;
        padding: 0 0.5rem;
    }

    .morph-word {
        padding: 0 0.5rem;
        font-size: 1.15rem;
    }

    .hero-section p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .mission-section {
        padding: 1.5rem 0.8rem;
    }
    
    .mission-section::after {
        right: 10px;
        width: 60px;
        height: 60px;
    }
    
    .mission-section::before {
        left: 10px;
        width: 40px;
        height: 40px;
    }

    .mission-title {
        font-size: 1.6rem;
    }

    .mission-text {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .services-grid {
        margin: 1.5rem 0.5rem;
        gap: 1.2rem;
    }

    .service-card {
        padding: 1.2rem 1rem;
    }

    .contact-section {
        padding: 1.5rem 0.8rem;
    }

    .contact-form {
        margin: 0 auto;
        padding: 1.2rem;
    }

    .expertise-tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

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

    .submit-btn {
        font-size: 0.98rem;
        padding: 0.95rem 1.8rem;
    }
}

/* Animation for floating elements */
.floating {
    animation: float 3s ease-in-out infinite;
}

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

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #FFD700, #FFF8DC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Partner Section Styling */
.expertise-tab-navigation {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.expertise-tab-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expertise-tab-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

.expertise-tab-btn.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.expertise-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-tab-content.active {
    display: block;
    opacity: 1;
}

/* Reduce spacing for partners carousel only */
#partners-tab .cert-display {
    height: 120px;
    margin-bottom: 0.5rem;
}