/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scrolling globally */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    direction: ltr;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

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

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

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

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed, #5855eb);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    direction: ltr;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    direction: ltr;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #8b5cf6;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    direction: ltr;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    overflow: hidden;
    direction: ltr;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.glow-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.3) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 20%, rgba(99, 102, 241, 0.2) 40%, transparent 60%),
        linear-gradient(90deg, transparent 10%, rgba(139, 92, 246, 0.15) 30%, transparent 50%);
    animation: float 8s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-30px) rotate(2deg); 
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    direction: ltr;
}

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

.hero-title {
    margin-bottom: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #8b5cf6;
}

.highlight {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    padding: 8px 20px;
    border-radius: 8px;
    display: inline-block;
    color: white;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Services Categories */
.services-categories {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    padding: 3rem 0;
    border: none;
    position: relative;
    overflow: hidden;
}

.services-categories::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 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.categories-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.category {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.category:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.separator {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    animation: twinkle 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Mobile layout - stack vertically and center */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .about-graphic {
        order: -1; /* Move graphic to top */
        height: 200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        position: relative;
    }
    
    .harmonograph-image {
        width: 60%;
        height: 60%;
        max-width: 200px;
        max-height: 200px;
        margin: 0 auto;
        display: block;
        object-fit: contain;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .play-pause-btn {
        width: 60px;
        height: 60px;
    }
    
    .play-pause-btn svg {
        width: 24px;
        height: 24px;
    }
}

.about-badge {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: badgeGlow 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        transform: translateY(0);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
        transform: translateY(-2px);
    }
}

.about-text h2 {
    margin-bottom: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

.highlight-text {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 4s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
    }
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.video-player {
    margin-top: 2rem;
    text-align: center;
    opacity: 1;
    background: transparent;
    filter: none;
    overflow: hidden;
    position: relative;
}

.video-element {
    width: 100%;
    max-width: 600px;
    height: 350px;
    border-radius: 20px;
    background: transparent;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    border: 2px solid rgba(139, 92, 246, 0.2);
    object-fit: cover !important;
    object-position: center !important;
    display: block;
    overflow: hidden;
    opacity: 1 !important;
    filter: none !important;
    z-index: 1;
}

/* Video Overlay and Play Button */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-pause-btn {
    background: rgba(139, 92, 246, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.play-pause-btn:hover {
    background: rgba(139, 92, 246, 1);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}

.play-pause-btn svg {
    width: 32px;
    height: 32px;
    color: white;
    fill: currentColor;
}

.play-pause-btn:active {
    transform: scale(0.95);
}

/* Ensure video fills container completely */
.video-element::-webkit-media-controls {
    background: transparent;
}

.video-element::-webkit-media-controls-panel {
    background: transparent;
}

/* Force video to fill container */
.video-element video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 1 !important;
    filter: none !important;
    background: transparent !important;
}

/* Remove any default video margins/padding */
.video-element {
    margin: 0;
    padding: 0;
    line-height: 0;
    opacity: 1 !important;
    filter: none !important;
    background: transparent !important;
}

/* Fullscreen video styling */
.video-element:fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    filter: none !important;
    background: transparent !important;
}

.video-element:-webkit-full-screen {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    filter: none !important;
    background: transparent !important;
}

.video-element:-moz-full-screen {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    filter: none !important;
    background: transparent !important;
}

/* Ensure video is always clear and visible */
.video-element,
.video-element *,
.video-element::before,
.video-element::after {
    opacity: 1 !important;
    filter: none !important;
    background: transparent !important;
}

/* Remove any video overlays or dark layers */
.video-element::-webkit-media-controls-overlay-play-button,
.video-element::-webkit-media-controls-play-button,
.video-element::-webkit-media-controls-timeline,
.video-element::-webkit-media-controls-current-time-display,
.video-element::-webkit-media-controls-time-remaining-display,
.video-element::-webkit-media-controls-fullscreen-button,
.video-element::-webkit-media-controls-volume-slider,
.video-element::-webkit-media-controls-mute-button {
    background: transparent !important;
    opacity: 1 !important;
    filter: none !important;
}

/* Ensure video content is visible within bounds */
.video-element video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 1 !important;
    filter: none !important;
    background: transparent !important;
    display: block !important;
}

/* Remove any potential dark overlays */
.video-element::before,
.video-element::after {
    display: none !important;
    content: none !important;
    background: none !important;
    opacity: 0 !important;
}











/* Responsive video scaling */
@media (max-width: 768px) {
    .video-element {
        max-width: 500px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .video-element {
        max-width: 400px;
        height: 250px;
    }
}

.about-graphic {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatGraphic 6s ease-in-out infinite;
    margin-top: 0;
    overflow: visible;
    width: 100%;
    text-align: center;
}

@keyframes floatGraphic {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(1deg); 
    }
}

.harmonograph-image {
    width: 50%;
    height: 50%;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 15px 40px rgba(139, 92, 246, 0.4));
    transition: all 0.3s ease;
    animation: imageGlow 5s ease-in-out infinite;
    max-width: 180px;
    max-height: 180px;
    margin: 0 auto;
    display: block;
}

@keyframes imageGlow {
    0%, 100% { 
        filter: drop-shadow(0 15px 40px rgba(139, 92, 246, 0.4));
    }
    50% { 
        filter: drop-shadow(0 25px 60px rgba(139, 92, 246, 0.6));
    }
}

.harmonograph-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 30px 80px rgba(139, 92, 246, 0.7));
}

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

/* Disciplines Section */
.disciplines-section {
    padding: 6rem 0;
    background: #111111;
}

.disciplines-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.header-graphic {
    flex-shrink: 0;
    position: relative;
}

.abstract-spiral {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.3));
    animation: floatSpiral 8s ease-in-out infinite;
}

@keyframes floatSpiral {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) rotate(2deg); 
        opacity: 1;
    }
}

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

.header-content h2 {
    margin-bottom: 0.5rem;
    color: #8b5cf6;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

.header-content .highlight {
    background: #8b5cf6;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    margin-left: 8px;
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.discipline-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.discipline-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-l-shape {
    width: 40px;
    height: 40px;
    position: relative;
}

.icon-l-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #8b5cf6;
    border-radius: 2px;
}

.icon-l-shape::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #8b5cf6;
    border-radius: 2px;
    box-shadow: 
        0 16px 0 #8b5cf6,
        0 32px 0 #8b5cf6,
        16px 0 0 #8b5cf6,
        16px 16px 0 #8b5cf6,
        16px 32px 0 #8b5cf6,
        32px 0 0 #8b5cf6,
        32px 16px 0 #8b5cf6,
        32px 32px 0 #8b5cf6;
}

.icon-plus-shape {
    width: 40px;
    height: 40px;
    position: relative;
}

.icon-plus-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #8b5cf6;
    border-radius: 2px;
    transform: translate(-50%, -50%);
}

.icon-plus-shape::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #8b5cf6;
    border-radius: 2px;
    box-shadow: 
        0 16px 0 #8b5cf6,
        0 32px 0 #8b5cf6,
        16px 0 0 #8b5cf6,
        16px 32px 0 #8b5cf6,
        32px 0 0 #8b5cf6,
        32px 16px 0 #8b5cf6,
        32px 32px 0 #8b5cf6;
}

.icon-path-shape {
    width: 40px;
    height: 40px;
    position: relative;
}

.icon-path-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #8b5cf6;
    border-radius: 2px;
    box-shadow: 
        0 16px 0 #8b5cf6,
        0 32px 0 #8b5cf6,
        16px 16px 0 #8b5cf6,
        32px 16px 0 #8b5cf6;
}

.icon-grid-shape {
    width: 40px;
    height: 40px;
    position: relative;
}

.icon-grid-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #8b5cf6;
    border-radius: 2px;
    box-shadow: 
        0 16px 0 #8b5cf6,
        0 32px 0 #8b5cf6,
        16px 0 0 #8b5cf6,
        16px 16px 0 #8b5cf6,
        16px 32px 0 #8b5cf6,
        32px 0 0 #8b5cf6,
        32px 16px 0 #8b5cf6,
        32px 32px 0 #8b5cf6;
}

.discipline-card h4 {
    margin-bottom: 1rem;
    color: #8b5cf6;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.discipline-card p {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: #5C48F5;
    position: relative;
    overflow: hidden;
}

.testimonials-content {
    position: relative;
    z-index: 2;
}

.testimonials-header {
    margin-bottom: 3rem;
}

.title-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonials-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    margin: 0;
}

.testimonials-header h2 .highlight {
    background: white;
    color: #4A2E9C;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    margin: 8px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transform: translateY(2px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9em;
    min-width: 120px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    text-decoration: none;
    cursor: default;
}

.testimonials-header .highlight {
    background: white;
    color: #4A2E9C;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    margin: 8px 0;
}

.header-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    align-self: flex-start;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #4A2E9C;
    border-radius: 6px;
    color: #4A2E9C;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #4A2E9C;
    color: white;
    border-color: white;
}

.testimonial-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    color: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.testimonial-box:hover {
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.testimonial-box::before,
.testimonial-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: -1;
    transition: all 0.3s ease;
}

.testimonial-box::before {
    transform: rotate(-2deg) translateY(12px);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-box::after {
    transform: rotate(-4deg) translateY(28px);
    background: rgba(255, 255, 255, 0.05);
}

.quote-icon {
    font-size: 5rem;
    color: white;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-weight: 700;
    opacity: 0.9;
    font-family: Georgia, serif;
}

.testimonial-box blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 2rem 0 2rem 0;
    font-style: italic;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gemini-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.company-name {
    display: block;
    font-size: 1rem;
    color: white;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.25rem;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.25rem;
}

.author-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.testimonial-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 18px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

.testimonials-graphic {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 180px;
    height: 180px;
    z-index: 1;
}

.harmonograph-2-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.2));
    animation: floatGraphic 8s ease-in-out infinite;
}

@keyframes floatGraphic {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) rotate(2deg); 
        opacity: 1;
    }
}

/* Future Solutions Section */
.future-solutions {
    padding: 6rem 0;
    background: #000000;
}

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

.solutions-text {
    position: relative;
}

.title-with-graphic {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.text-graphic {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    position: relative;
}

.vector-graphic {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(139, 92, 246, 0.4));
    animation: floatSpiral 8s ease-in-out infinite;
}

.solutions-text h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.solutions-text h2 .highlight {
    background: #8b5cf6;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.solutions-text h2 .digital-solutions {
    color: #8b5cf6;
    font-weight: 700;
}

.solutions-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
}

.solutions-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.stat-box {
    background: #8b5cf6;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 700;
}

.stat-box p {
    color: white;
    font-size: 0.7rem;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: #000000;
    padding: 4rem 0 0 0;
    text-align: center;
}

/* Logo Section */
.footer-logo-section {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo .logo-image {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

/* CTA Section */
.footer-cta {
    margin-bottom: 2rem;
}

.cta-box {
    background: #8b5cf6;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    transform: rotate(2deg);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.cta-box span {
    display: block;
}

/* Contact Info */
.footer-contact {
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1rem;
}

.contact-info .separator {
    color: white;
    font-weight: 400;
}

.contact-info .phone,
.contact-info .email {
    color: white;
    font-weight: 400;
}

/* Navigation */
.footer-navigation {
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

/* Social Links */
.footer-social-section {
    margin-bottom: 2rem;
}

.footer-social-section h3 {
    color: #8b5cf6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

 .social-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 45px;
     height: 45px;
     background: #8b5cf6;
     border-radius: 8px;
     text-decoration: none;
     transition: transform 0.3s ease;
     overflow: hidden;
     position: relative;
 }

 .social-icon:hover {
     transform: translateY(-3px);
 }

 /* Facebook Icon */
 .facebook-icon .icon-text {
     font-size: 1.2rem;
     font-weight: 700;
     color: white;
     font-family: 'Inter', sans-serif;
 }

 /* Instagram Icon */
 .instagram-camera {
     width: 20px;
     height: 20px;
     position: relative;
     border: 2px solid white;
     border-radius: 4px;
 }

 .instagram-camera::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 8px;
     height: 8px;
     border: 2px solid white;
     border-radius: 50%;
     transform: translate(-50%, -50%);
 }

 .instagram-camera::after {
     content: '';
     position: absolute;
     top: 2px;
     right: 2px;
     width: 3px;
     height: 3px;
     background: white;
     border-radius: 50%;
 }

 /* X (Twitter) Icon */
 .x-icon .icon-text {
     font-size: 1.1rem;
     font-weight: 700;
     color: white;
     font-family: 'Inter', sans-serif;
     transform: scaleX(1.2);
 }

 /* LinkedIn Icon */
 .linkedin-icon {
     position: relative;
 }

 .linkedin-icon .icon-text {
     font-size: 1rem;
     font-weight: 700;
     color: white;
     font-family: 'Inter', sans-serif;
     position: relative;
     z-index: 2;
 }

 .linkedin-icon::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 16px;
     height: 16px;
     background: white;
     border-radius: 2px;
     transform: translate(-50%, -50%);
     z-index: 1;
 }

 .linkedin-icon .icon-text {
     color: #8b5cf6;
     font-weight: 800;
 }

/* Footer Bottom */
.footer-bottom {
    background: #8b5cf6;
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    color: white;
    font-size: 1rem;
    font-weight: 400;
}

/* Page Specific Styles */
.page-header {
    text-align: center;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.3) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 20%, rgba(99, 102, 241, 0.2) 40%, transparent 60%);
    animation: float 8s ease-in-out infinite;
    filter: blur(1px);
    pointer-events: none;
    z-index: 1;
    margin-left: calc(-50vw + 50%);
}

.page-header h1 {
    margin-bottom: 2rem;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #e0e0e0;
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 .highlight {
    background: #8b5cf6;
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 800;
    margin-top: 0.5rem;
}

.page-header h1 .purple-text {
    color: #8b5cf6;
    font-weight: 800;
}

.page-header p {
    font-size: 1.4rem;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Contact Page */
.contact-page {
    background: #0a0a0a;
    min-height: 100vh;
    color: #ffffff;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.3) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 20%, rgba(99, 102, 241, 0.2) 40%, transparent 60%);
    animation: float 8s ease-in-out infinite;
    filter: blur(1px);
    pointer-events: none;
}

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

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.contact-hero .highlight {
    background: #8b5cf6;
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 800;
    margin-top: 0.5rem;
}

.contact-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

/* Main Contact Section */
.contact-main {
    padding: 80px 0;
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

/* Left Column - Form Section */
.contact-form-section {
    background: #8b5cf6;
    padding: 4rem 3rem;
    position: relative;
}

.form-container h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.interest-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.interest-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interest-btn.active,
.interest-btn:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

.contact-form {
    background: transparent;
    padding: 0;
    border: none;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: white;
}

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

.submit-btn {
    background: #000000;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2rem;
}

.submit-btn:hover {
    background: #333333;
    transform: translateY(-2px);
}

.send-icon {
    font-size: 1.1rem;
}

/* Right Column - Info Section */
.contact-info-section {
    background: #000000;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.info-container h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.info-container .highlight {
    background: #8b5cf6;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text:hover {
    color: #5C48F5;
}

.spiral-graphic {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 4s ease-in-out infinite;
}

.spiral-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.3));
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* About Page */
.about-page {
    background: #0a0a0a;
    min-height: 100vh;
}

/* About Hero Section */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.3) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 20%, rgba(99, 102, 241, 0.2) 40%, transparent 60%);
    animation: float 8s ease-in-out infinite;
    filter: blur(1px);
    pointer-events: none;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.about-hero h1 {
    margin-bottom: 2rem;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #e0e0e0;
}

.about-hero h1 .highlight {
    background: #8b5cf6;
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 800;
    margin-top: 0.5rem;
}

.about-hero h1 .purple-text {
    color: #8b5cf6;
    font-weight: 800;
}

.about-hero p {
    font-size: 1.4rem;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section - WE ARE Next Link */
.about-section {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.harmonograph-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(139, 92, 246, 0.4));
    animation: floatGraphic 8s ease-in-out infinite;
}

.about-text {
    text-align: left;
    padding-left: 3rem;
}

.we-are {
    color: #8b5cf6;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.next-link-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.next-link-title .highlight {
    background: #8b5cf6;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 800;
}

.about-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1rem;
    max-width: 450px;
}

/* Principles Section */
.principles-section {
    padding: 6rem 0;
    background: #111111;
    position: relative;
    overflow: hidden;
}

.principles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.principles-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.principles-title {
    flex: 1;
}

.principles-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin: 0;
}

.principles-title .highlight {
    background: #8b5cf6;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
}

.principles-graphic {
    flex-shrink: 0;
    position: relative;
}

.harmonograph-principles {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.4));
    animation: floatSpiral 8s ease-in-out infinite;
}

.principles-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.principle-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.principle-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.principle-card .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-card h3 {
    color: #8b5cf6;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.principle-card p {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.principles-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.harmonograph-principles {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(139, 92, 246, 0.4));
    animation: floatSpiral 8s ease-in-out infinite;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.mission-vision-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-align: left;
}

.mission-vision-text .highlight {
    background: #8b5cf6;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
}

.mission-vision-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-item,
.vision-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-item h3,
.vision-item h3 {
    color: #8b5cf6;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mission-item p,
.vision-item p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.mission-vision-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vector-graphic-mission {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(139, 92, 246, 0.4));
    animation: floatSpiral 8s ease-in-out infinite;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: #5C48F5;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.cta-content h2 .highlight {
    background: white;
    color: #5C48F5;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn-primary {
    background: white;
    color: #5C48F5;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-content .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Our Work Page */
.our-work-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    color: #ffffff;
}

/* Work Hero Section */
.work-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.work-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(92, 72, 245, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(131, 117, 248, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.work-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.work-hero .highlight {
    background: linear-gradient(135deg, #5C48F5 0%, #8375F8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.work-hero .highlight::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: linear-gradient(135deg, #5C48F5 0%, #8375F8 100%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.1;
}

.work-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

/* Work Sections */
.work-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(92, 72, 245, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(131, 117, 248, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #ffffff;
}

.section-text .highlight {
    background: linear-gradient(135deg, #5C48F5 0%, #8375F8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-text .highlight::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -10px;
    right: -10px;
    bottom: -5px;
    background: linear-gradient(135deg, #5C48F5 0%, #8375F8 100%);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.1;
}

.section-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: #5C48F5;
    font-size: 0.9rem;
}

/* Image Carousel */
.section-images {
    position: relative;
}

.image-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-images {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.1rem;
    position: relative;
}

.carousel-image .image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(92, 72, 245, 0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffffff;
    transform: scaleX(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Header Scroll Effect */
.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Styles */
.nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

/* Responsive Design for Our Work Page */
@media (max-width: 1024px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .section-text h2 {
        font-size: 2.2rem;
    }
    
    .carousel-images {
        height: 350px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    html {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .logo-image {
        height: 35px;
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .category {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .solutions-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .about-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .about-text h2 {
        font-size: 3rem;
    }
    

    
    .video-container {
        max-width: 500px;
    }
    
    .video-element {
        height: 300px;
    }
    
    .disciplines-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .header-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .disciplines-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .discipline-card {
        min-height: 250px;
        padding: 1.25rem;
    }
    
    .discipline-card h4 {
        font-size: 1.2rem;
    }
    
    .abstract-spiral {
        width: 150px;
        height: 150px;
    }
    
    .testimonial-box {
        padding: 2rem;
        margin: 0 1rem;
        transform: rotate(0deg);
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-graphic {
        width: 120px;
        height: 120px;
        top: 1rem;
        right: 1rem;
    }
    
    .solutions-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info .separator {
        display: none;
    }
    
    .footer-bottom {
        margin-top: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .categories-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }

    /* About Hero Responsive */
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }

    /* About Section Responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
        padding-left: 0;
    }
    
    .harmonograph-image {
        max-width: 180px;
    }
    
    .next-link-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        max-width: 100%;
    }

    /* Principles Section Responsive */
    .principles-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .principles-title h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .harmonograph-principles {
        width: 150px;
        height: 150px;
    }
    
    .principles-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .principle-card {
        padding: 1.5rem;
    }

    /* Mission Vision Section Responsive */
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mission-vision-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .vector-graphic-mission {
        max-width: 250px;
    }

    /* CTA Section Responsive */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }

    /* Our Work Page Responsive */
    .work-hero h1 {
        font-size: 2.5rem;
    }
    
    .work-hero p {
        font-size: 1rem;
    }
    
    .work-section {
        padding: 80px 0;
    }
    
    .section-text h2 {
        font-size: 2rem;
    }
    
    .section-text p {
        font-size: 1rem;
    }
    
    .carousel-images {
        height: 300px;
    }
    
    .service-features li {
        font-size: 0.95rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .work-hero {
        padding: 100px 0 60px;
    }
    
    .work-hero h1 {
        font-size: 2rem;
    }
    
    .work-section {
        padding: 60px 0;
    }
    
    .section-content {
        gap: 40px;
    }
    
    .section-text h2 {
        font-size: 1.8rem;
    }
    
    .carousel-images {
        height: 250px;
    }
    
    .dot {
        width: 30px;
        height: 3px;
    }
    
    .footer-logo .logo-image {
        height: 30px;
        max-width: 120px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .category {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .about-content,
    .solutions-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .about-text h2 {
        font-size: 3rem;
    }
    
    .harmonograph-image {
        width: 70%;
        height: 70%;
        max-height: 250px;
    }
    
    .about-graphic {
        height: 250px;
        margin-top: -30px;
    }
    
    .video-container {
        max-width: 500px;
    }
    
    .video-element {
        height: 300px;
    }
    
    .disciplines-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .header-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .disciplines-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .discipline-card {
        min-height: 250px;
        padding: 1.25rem;
    }
    
    .discipline-card h4 {
        font-size: 1.2rem;
    }
    
    .abstract-spiral {
        width: 150px;
        height: 150px;
    }
    
    .testimonial-box {
        padding: 2rem;
        margin: 0 1rem;
        transform: rotate(0deg);
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-graphic {
        width: 120px;
        height: 120px;
        top: 1rem;
        right: 1rem;
    }
    
    .solutions-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info .separator {
        display: none;
    }
    
    .footer-bottom {
        margin-top: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .categories-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }

        /* About Hero Responsive */
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }

    /* About Section Responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
        padding-left: 0;
    }
    
    .harmonograph-image {
        max-width: 180px;
    }
    
    .next-link-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        max-width: 100%;
    }

    /* Principles Section Responsive */
    .principles-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .principles-title h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .harmonograph-principles {
        width: 150px;
        height: 150px;
    }
    
    .principles-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .principle-card {
        padding: 1.5rem;
    }

    /* Mission Vision Section Responsive */
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mission-vision-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .vector-graphic-mission {
        max-width: 250px;
    }

    /* CTA Section Responsive */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }

    /* Our Work Page Responsive */
    .work-hero h1 {
        font-size: 2.5rem;
    }
    
    .work-hero p {
        font-size: 1.1rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 30px;
        max-width: 120px;
    }
    
    .footer-logo .logo-image {
        height: 25px;
        max-width: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .category {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .categories-bar {
        gap: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .about-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .harmonograph-image {
        width: 75%;
        height: 75%;
        max-height: 200px;
    }
    
    .about-graphic {
        height: 200px;
        margin-top: -20px;
    }
    
    .video-container {
        max-width: 400px;
    }
    
    .video-element {
        height: 250px;
    }
    
    .testimonial-box {
        padding: 1.5rem;
        transform: rotate(0deg);
    }
    
    .testimonial-box blockquote {
        font-size: 1.1rem;
        margin: 1.5rem 0 1.5rem 2rem;
    }
    
    .testimonials-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-graphic {
        width: 100px;
        height: 100px;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
    
    .disciplines-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .discipline-card {
        min-height: 220px;
        padding: 1rem;
    }
    
    .discipline-card h4 {
        font-size: 1.1rem;
    }
    
    .header-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    /* Testimonials Mobile Styles */
    .testimonial-box {
        padding: 28px;
        margin: 0 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .testimonial-box::before {
        transform: rotate(-2deg) translateY(8px);
    }
    
    .testimonial-box::after {
        transform: rotate(-4deg) translateY(16px);
    }
    
    .quote-icon {
        font-size: 4rem;
        top: -0.5rem;
        left: 0.5rem;
    }
    
    .testimonial-box blockquote {
        font-size: 1rem;
        margin: 1.5rem 0 1.5rem 0;
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-graphic {
        width: 120px;
        height: 120px;
        top: 1rem;
        right: 1rem;
    }

    /* About Hero Mobile */
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }

    /* About Section Mobile */
    .harmonograph-image {
        max-width: 160px;
    }
    
    .next-link-title {
        font-size: 1.6rem;
    }
    
    .we-are {
        font-size: 0.8rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }

    /* Principles Section Mobile */
    .principles-title h2 {
        font-size: 1.8rem;
    }
    
    .harmonograph-principles {
        width: 120px;
        height: 120px;
    }
    
    .principle-card {
        padding: 1.25rem;
    }
    
    .principle-card h3 {
        font-size: 1.2rem;
    }
    
    .principle-card p {
        font-size: 0.9rem;
    }

    /* Mission Vision Section Mobile */
    .mission-vision-text h2 {
        font-size: 1.8rem;
    }
    
    .vector-graphic-mission {
        max-width: 200px;
    }
    
    .mission-item,
    .vision-item {
        padding: 1.25rem;
    }
    
    .mission-item h3,
    .vision-item h3 {
        font-size: 1.1rem;
    }
    
    .mission-item p,
    .vision-item p {
        font-size: 0.9rem;
    }

    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-content .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }

         /* Our Work Page Mobile */
     .work-hero h1 {
         font-size: 2rem;
     }
     
     .work-hero p {
         font-size: 1rem;
     }
     
     .work-section {
         padding: 60px 0;
     }
     
     .section-content {
         grid-template-columns: 1fr;
         gap: 40px;
     }
     
     .section-text h2 {
         font-size: 1.8rem;
     }
     
     .carousel-images {
         height: 250px;
     }
     
     .dot {
         width: 30px;
         height: 3px;
     }

     /* Contact Page Mobile */
     .contact-hero h1 {
         font-size: 2.5rem;
     }
     
     .contact-hero p {
         font-size: 1rem;
     }
     
     .contact-content {
         grid-template-columns: 1fr;
     }
     
     .contact-form-section,
     .contact-info-section {
         padding: 3rem 2rem;
     }
     
     .info-container h2 {
         font-size: 2rem;
     }
     
     .interest-categories {
         flex-direction: column;
     }
     
     .interest-btn {
         width: 100%;
         text-align: center;
     }
     
           .spiral-graphic {
          width: 120px;
          height: 120px;
          bottom: 1rem;
          right: 1rem;
      }
 }

@media (max-width: 480px) {
    .testimonial-box {
        padding: 24px;
        margin: 0 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .quote-icon {
        font-size: 3rem;
        top: -0.5rem;
        left: 0.5rem;
    }
    
    .testimonial-box blockquote {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 1.5rem 0 1rem 0;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-info strong {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    .testimonials-graphic {
        width: 100px;
        height: 100px;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    /* Our Work Page Mobile */
    .work-hero {
        padding: 100px 0 60px;
    }
    
    .work-hero h1 {
        font-size: 2rem;
    }
    
    .work-section {
        padding: 60px 0;
    }
    
    .section-content {
        gap: 40px;
    }
    
    .section-text h2 {
        font-size: 1.8rem;
    }
    
    .carousel-images {
        height: 250px;
    }
    
    .dot {
        width: 30px;
        height: 3px;
    }
}

/* Global fix for horizontal scrolling on mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    * {
        box-sizing: border-box;
    }
    
    .container,
    .hero-section,
    .about-section,
    .disciplines-section,
    .testimonials-section,
    .solutions-section,
    .contact-section,
    .hero-content,
    .about-content,
    .disciplines-content,
    .testimonials-content,
    .solutions-content,
    .contact-content {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    /* Fix for any absolute positioned elements */
    .hero-graphic,
    .about-graphic,
    .testimonials-graphic,
    .solutions-graphic {
        max-width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    

}

/* 404 Page Styles */
.error-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.error-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.error-container {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem;
}

.error-number {
    font-size: 12rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 0 50px rgba(139, 92, 246, 0.3);
    animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.6));
    }
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.error-description {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.error-btn.primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.error-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.error-btn.secondary {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.error-btn.secondary:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-3px);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

/* 404 Page Responsive */
@media (max-width: 768px) {
    .error-number {
        font-size: 8rem;
    }

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

    .error-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .error-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 6rem;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .error-description {
        font-size: 0.9rem;
    }

    .error-container {
        padding: 1rem;
    }
}
