/*

TemplateMo 595 3d coverflow

https://templatemo.com/tm-595-3d-coverflow

*/

@charset "utf-8";
/* CSS Document */

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

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            overflow-x: hidden;
            position: relative;
            background: #000;
            max-width: 100vw;
            margin: 0;
            padding: 0;
        }

        body.is-preloading {
            overflow: hidden;
        }

        body.is-preloading .header,
        body.is-preloading .main-content,
        body.is-preloading .footer,
        body.is-preloading .scroll-to-top {
            opacity: 0;
            visibility: hidden;
        }

        .header,
        .main-content,
        .footer,
        .scroll-to-top {
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .page-preloader {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background:
                radial-gradient(circle at top, rgba(70, 98, 141, 0.38) 0%, rgba(8, 13, 20, 0) 42%),
                linear-gradient(180deg, #05070a 0%, #0a1018 100%);
            z-index: 5000;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        body.is-loaded .page-preloader {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .page-preloader-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            text-align: center;
        }

        .preloader-orbit {
            position: relative;
            width: 84px;
            height: 84px;
            display: grid;
            place-items: center;
        }

        .preloader-ring {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.12);
            border-top-color: rgba(255, 255, 255, 0.92);
            border-right-color: rgba(130, 162, 214, 0.72);
            animation: preloaderSpin 1.15s linear infinite;
        }

        .preloader-core {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffffff 0%, #9fb8df 100%);
            box-shadow: 0 0 22px rgba(159, 184, 223, 0.55);
            animation: preloaderPulse 1.5s ease-in-out infinite;
        }

        .preloader-brand {
            color: #ffffff;
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .preloader-copy {
            color: rgba(255, 255, 255, 0.68);
            font-size: 14px;
            letter-spacing: 0.04em;
        }

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

        @keyframes preloaderPulse {
            0%,
            100% {
                transform: scale(0.9);
                opacity: 0.72;
            }
            50% {
                transform: scale(1.12);
                opacity: 1;
            }
        }

        /* Sections */
        .section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 100vw;
            overflow-x: hidden;
        }

        #home {
            background: #0a0a0a;
            padding: 0;
            overflow: hidden;
        }

        /* ── STATIC HERO ── */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            transform: scale(1.04);
            transition: transform 8s ease;
        }

        .hero-section:hover .hero-bg {
            transform: scale(1.00);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.72) 0%,
                rgba(0, 0, 0, 0.45) 60%,
                rgba(0, 0, 0, 0.65) 100%
            );
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 820px;
            padding: 0 40px;
            text-align: center;
            color: #fff;
        }

        .hero-eyebrow {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.65);
            /* margin-bottom: 10px; */
            display: block;
        }

        .hero-title {
            font-size: clamp(42px, 6vw, 76px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
            color: #fff;
        }

        .hero-subtitle {
            font-size: clamp(16px, 2vw, 19px);
            font-weight: 400;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 48px;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            color: #0a0a0a;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 18px 40px;
            border-radius: 4px;
            transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 8px 40px rgba(0,0,0,0.35);
        }

        .hero-cta-btn svg {
            width: 20px;
            height: 20px;
            transition: transform 0.25s ease;
        }

        .hero-cta-btn:hover {
            background: #1a1a1a;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 16px 50px rgba(0,0,0,0.5);
        }

        .hero-cta-btn:hover svg {
            transform: translateX(4px);
        }

        /* Scroll indicator */
        .hero-scroll-indicator {
            position: absolute;
            bottom: 36px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            justify-content: center;
        }

        .hero-scroll-indicator span {
            display: block;
            width: 24px;
            height: 40px;
            border: 2px solid rgba(255,255,255,0.4);
            border-radius: 12px;
            position: relative;
        }

        .hero-scroll-indicator span::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: rgba(255,255,255,0.7);
            border-radius: 2px;
            animation: scrollDot 2s ease infinite;
        }

        @keyframes scrollDot {
            0%   { top: 6px; opacity: 1; }
            80%  { top: 20px; opacity: 0; }
            100% { top: 6px; opacity: 0; }
        }

        /* CTA menu item (Запитване) */
        .cta-menu-item {
            background: rgba(255,255,255,0.12) !important;
            border: 1px solid rgba(255,255,255,0.35) !important;
            border-radius: 4px !important;
            padding: 8px 20px !important;
            color: #fff !important;
            transition: background 0.25s, border-color 0.25s !important;
        }

        .cta-menu-item:hover {
            background: rgba(255,255,255,0.22) !important;
            border-color: rgba(255,255,255,0.6) !important;
            transform: none !important;
        }

        .cta-menu-item::after {
            display: none !important;
        }
        /* ── END STATIC HERO ── */

        #about {
            background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
        }

        #contact {
            background: radial-gradient(ellipse at center, #1a1a2e 0%, #0f0f0f 100%);
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(0, 0, 0, 0.95);
            height: 70px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            flex-direction: row !important;
            gap: 20px;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo-container:hover {
            transform: translateY(-2px);
        }

        .logo {
            width: 50px;
            height: 50px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            margin-top: 30px;
            max-width: 100%;
        }

        .logo img,
        .logo-image {
            max-width: 180px !important;
            width: auto;
            height: auto;
        }

        .logo svg {
            width: 100%;
            height: 100%;
        }

        .logo-text {
            color: white;
            font-size: 24px;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        .main-menu {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .menu-item {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }

        .menu-item:hover {
            color: white;
            transform: translateY(-2px);
        }

        .menu-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: width 0.3s ease;
        }

        .menu-item:hover::after {
            width: 100%;
        }

        .menu-item.active {
            color: white;
        }

        .menu-item.active::after {
            width: 100%;
        }

        .menu-item.external::before {
            content: '↗';
            margin-right: 5px;
            font-size: 12px;
            opacity: 0.7;
        }

        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 4px;
        }

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

        /* Home Section with Coverflow */
        .coverflow-wrapper {
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 80px;
            overflow: hidden;
            position: relative;
        }

        .coverflow-container {
            width: 100%;
            max-width: 100vw;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1200px;
            position: relative;
            overflow: hidden;
        }

        .coverflow {
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            position: relative;
            width: 100%;
            height: 400px;
        }

        .coverflow-item {
            position: absolute;
            width: 300px;
            height: 300px;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            cursor: pointer;
            user-select: none;
        }

        .coverflow-item .cover {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            background: #333;
        }

        .coverflow-item .cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Reflection */
        .coverflow-item .reflection {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 10px;
            transform: scaleY(-1);
            opacity: 0.2;
            filter: blur(2px);
            background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 0%, 
                rgba(0, 0, 0, 0.8) 50%, 
                rgba(0, 0, 0, 1) 100%);
            overflow: hidden;
        }

        /* Active item (center) */
        .coverflow-item.active {
            z-index: 100;
            transform: translateX(0) translateZ(0) rotateY(0deg);
        }

        .coverflow-item.active .cover {
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
        }

        /* Navigation */
        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 200;
        }

        .nav-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-button.prev {
            left: 50px;
        }

        .nav-button.next {
            right: 50px;
        }

        /* Dots indicator */
        .dots-container {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 200;
        }

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

        .dot.active {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.3);
        }

        /* Info display */
        .info {
            position: absolute;
            top: 120px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            z-index: 200;
        }

        .info h2 {
            font-size: 32px;
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeIn 0.6s forwards;
        }

        .info p {
            font-size: 16px;
            opacity: 0.7;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Play/Pause Button */
        .play-pause-button {
            position: absolute;
            bottom: 120px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 200;
        }

        .play-pause-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(-50%) scale(1.1);
        }

        .play-pause-button .pause-icon {
            font-size: 16px;
            letter-spacing: 2px;
        }

        /* About Section */
        .about-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px;
            color: white;
            overflow-x: hidden;
        }

        .about-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .about-header h2 {
            font-size: 48px;
			margin-top: 60px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-header p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .about-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 80px;
        }

        .about-visual {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showcase-display {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showcase-main {
            position: relative;
            width: 350px;
            height: 450px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(20px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .showcase-main:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
        }

        .showcase-logo {
            width: 250px !important;
            display: flex;
            align-items: center;
            justify-content: center;
            /* margin-bottom: 30px; */
            margin-bottom: -50px;
            position: relative;
        }

        .showcase-logo::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
            z-index: -1;
            opacity: 0.6;
            filter: blur(20px);
        }

        .showcase-logo-img {
            width: 100%;
            object-fit: contain;
            filter: 
                contrast(1.2)
                brightness(1.08)
                saturate(1.15)
                drop-shadow(0 8px 12px rgba(189, 188, 188, 0.795));

            transition: filter 0.3s ease;
        }
/* 
        .showcase-main:hover .showcase-logo-img {
            transform: scale(1.1) rotate(5deg);
        } */

        .showcase-logo svg {
            width: 70%;
            height: 70%;
        }

        .showcase-title {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            text-align: center;
        }

        .showcase-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .showcase-badges {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 50px;
        }

        .badge {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        .badge:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: transparent;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .badge:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        }

        /* Decorative corner elements */
        .corner-decoration {
            position: absolute;
            width: 80px;
            height: 80px;
            border: 2px solid rgba(102, 126, 234, 0.3);
        }

        .corner-decoration.top-left {
            top: -20px;
            left: -20px;
            border-right: none;
            border-bottom: none;
            border-radius: 20px 0 0 0;
        }

        .corner-decoration.bottom-right {
            bottom: -20px;
            right: -20px;
            border-left: none;
            border-top: none;
            border-radius: 0 0 20px 0;
        }

        .about-info {
            padding-left: 40px;
        }

        .about-info h3 {
            font-size: 36px;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .about-info p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
        }

        .feature-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        .cta-button svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(5px);
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding: 60px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: #141414;
            min-height: 220px;
            cursor: pointer;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }

        .stat-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.22);
            border-color: rgba(102, 126, 234, 0.45);
        }

        .stat-item-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(5, 5, 20, 0.92) 0%,
                rgba(5, 5, 20, 0.45) 45%,
                transparent 100%
            );
            display: flex;
            align-items: flex-end;
            padding: 22px;
            z-index: 2;
            transition: background 0.35s ease;
        }

        .stat-item:hover .stat-item-overlay {
            background: linear-gradient(
                to top,
                rgba(5, 5, 20, 0.96) 0%,
                rgba(102, 126, 234, 0.18) 60%,
                transparent 100%
            );
        }

        .stat-item h3 {
            font-size: 17px;
            font-weight: 700;
            margin: 0;
            letter-spacing: 0.4px;
            line-height: 1.3;
            background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: opacity 0.3s ease;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Contact Section */
        .contact-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px;
            color: white;
            overflow-x: hidden;
        }

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

        .contact-header h2 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-header p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info-section {
            padding-right: 40px;
        }

        .contact-info-section h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: white;
        }

        .contact-info-section p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text h4 {
            font-size: 16px;
            color: white;
            margin-bottom: 5px;
        }

        .contact-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        .social-links {
            margin-top: 40px;
        }

        .social-links h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
        }

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

        .social-btn {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-btn:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
        }

        .social-btn svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .contact-form-section {
            padding-left: 40px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: white;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
            line-height: 1.5;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        .form-success-msg {
            background: rgba(102, 234, 130, 0.15);
            border: 1px solid rgba(102, 234, 130, 0.4);
            color: #7effa0;
            padding: 14px 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-size: 15px;
            text-align: center;
        }

        /* Smooth image loading */
        .image-loading {
            background: linear-gradient(45deg, #333, #555);
            position: relative;
        }

        .image-loading::after {
            content: '📷';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 48px;
            opacity: 0.5;
        }

        /* Footer Styles */
        .footer {
            background: rgba(0, 0, 0, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 20px;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-copyright a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-copyright a:hover {
            color: #764ba2;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

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

        /* ...existing code... */

/* ── Featured Projects Section ───────────────────────────────────────── */
#featured-projects {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0f0f0f 100%);
    min-height: unset;
    display: block;
}

.featured-projects-wrap {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-projects-header {
    text-align: center;
    margin-bottom: 48px;
}

.featured-projects-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #b79245;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.featured-projects-header h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 42px);
}

.featured-projects-header p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-size: 16px;
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.featured-project-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 20px;
    background: #0f172a;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.featured-project-card::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(183, 146, 69, 0.45);
    border-radius: 14px;
    pointer-events: none;
    z-index: 2;
}

.featured-project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.featured-project-card:hover img {
    transform: scale(1.06);
}

.featured-project-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 20, 0.05) 25%,
        rgba(10, 10, 20, 0.88) 100%
    );
}

.featured-project-overlay span {
    display: block;
    margin-bottom: 6px;
    color: #e7c56c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.featured-project-overlay h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 600;
}

@media (max-width: 900px) {
    .featured-projects-grid {
        grid-template-columns: 1fr;
    }

    .featured-project-card {
        height: 300px;
    }
}

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 999;
        }

        .scroll-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        .second-section {
            text-align: center;
            margin-bottom: 80px;
            margin-inline: 50px;
        }

        .second-section > h3{
            font-size: 48px;
            margin-top: 30px;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .second-section > p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 90%;
            margin: 0 auto;
            line-height: 1.8;
        }

        .second-section-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            justify-content: center;
        }

        /* ── PRODUCT CARDS ── */
        .prod-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            background: #364866;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            contain: layout paint;
            transform: translateZ(0);
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
            transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
        }

        .prod-card:hover {
            transform: translateY(-7px);
            border-color: rgba(255, 255, 255, 0.16);
            box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
        }

        .prod-card-img {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 224px;
            margin: 18px 18px 0;
            padding: 40px 28px 22px;
            background: #eef3f8;
            border: 1px solid rgba(255, 255, 255, 0.55);
            border-radius: 16px;
            overflow: hidden;
        }

        .prod-card-img::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                110deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.38) 24%,
                rgba(255, 255, 255, 0) 46%
            );
            transform: translateX(-140%);
            opacity: 0;
            pointer-events: none;
        }

        .prod-card.is-icon-loading .prod-card-img::before {
            opacity: 1;
            animation: prodCardShimmer 1.35s ease-in-out infinite;
        }

        .prod-card-img img {
            position: relative;
            z-index: 1;
            width: clamp(132px, 11vw, 164px);
            height: clamp(132px, 11vw, 164px);
            object-fit: contain;
            filter: brightness(0) opacity(0.88);
            backface-visibility: hidden;
            opacity: 1;
            transform: scale(1);
            transition: transform 0.4s ease, opacity 0.55s ease, filter 0.55s ease;
        }

        .prod-card.is-icon-loading .prod-card-img img {
            opacity: 0;
            transform: scale(0.92);
            filter: brightness(0) opacity(0.2) blur(8px);
        }

        .prod-card.is-icon-loaded .prod-card-img img {
            opacity: 1;
            transform: scale(1);
            filter: brightness(0) opacity(0.88) blur(0);
        }

        .prod-card:hover .prod-card-img img {
            transform: scale(1.12);
        }

        .prod-card.is-icon-loading:hover .prod-card-img img {
            transform: scale(0.92);
        }

        .prod-card-body {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 24px 24px 28px;
            flex: 1;
        }

        .prod-card-body h2 {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: #ffffff;
            margin: 0;
            line-height: 1.25;
        }

        .prod-card-body p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.68);
            line-height: 1.6;
            margin: 0;
            flex: 1;
        }

        .prod-card-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.82);
            transition: color 0.2s, gap 0.2s;
        }

        .prod-card-btn svg {
            width: 13px;
            height: 13px;
            transition: transform 0.2s;
        }

        .prod-card:hover .prod-card-btn {
            color: #ffffff;
            gap: 10px;
        }

        .prod-card:hover .prod-card-btn svg {
            transform: translateX(3px);
        }

        @keyframes prodCardShimmer {
            from {
                transform: translateX(-140%);
            }
            to {
                transform: translateX(140%);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .page-preloader,
            body.is-loaded .page-preloader {
                transition: none;
            }

            .prod-card.is-icon-loading .prod-card-img::before {
                animation: none;
            }

            .prod-card {
                transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
            }

            .prod-card-img img {
                transition: none;
            }
        }

        .stat-item > img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.45s ease;
            filter: brightness(0.75) saturate(0.9);
        }

        .stat-item:hover > img {
            transform: scale(1.07);
            filter: brightness(0.85) saturate(1.1);
        }

@media (max-width: 900px) {
    .second-section-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-card-body h2 {
        font-size: 19px;
    }
}

@media (max-width: 620px) {
    .second-section-content {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .second-section > h3 {
        font-size: 36px;
    }

    .second-section > p {
        font-size: 18px;
    }

    .prod-card-img {
        min-height: 210px;
        margin: 16px 16px 0;
        padding: 30px 22px 18px;
        border-radius: 14px;
    }

    .prod-card-body {
        padding: 20px 22px 24px;
    }

    .prod-card-body h2 {
        font-size: 18px;
    }

    .prod-card-body p {
        font-size: 13px;
    }

    #about > div > div.about-header > h2 {
        font-size: 28px;
    }

    #about > div > div.about-header > p {
        font-size: 16px;
    }

    #about > div > div.about-main > div.about-info > h3 {
        font-size: 24px;
    }

    #about > div > div.about-main > div.about-info > p {
        font-size: 14px;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        height: 400px;
    }

    .about-info {
        padding-left: 0;
        text-align: center;
    }

    .feature-list {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px;
    }

    /* Contact section responsive */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-section {
        padding-right: 0;
    }

    .contact-form-section {
        padding-left: 0;
    }
}


@media (max-width: 768px) {
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    * {
        max-width: 100%;
    }

    img,
    .logo-image {
        max-width: 100%;
        height: auto;
    }

    .logo img,
    .logo-image {
        max-width: 150px !important;
    }

    .header {
        padding: 0 15px !important;
        width: 100%;
        max-width: 100vw;
    }

    .coverflow-wrapper,
    .coverflow-container {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .coverflow {
        height: 300px;
    }

    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex !important;
    }

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

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

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

    .coverflow-item {
        width: 220px;
        height: 220px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .nav-button.prev {
        left: 10px;
    }

    .nav-button.next {
        right: 10px;
    }

    .info h2 {
        font-size: 22px;
        padding: 0 15px;
        text-align: center;
    }

    .info p {
        font-size: 14px;
        padding: 0 15px;
    }

    .dots-container {
        bottom: 40px;
        padding: 0 10px;
    }

    .play-pause-button {
        bottom: 80px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .logo-text {
        font-size: 20px;
    }

    .about-header h2 {
        font-size: 36px;
    }

    .about-info h3 {
        font-size: 28px;
    }

    .about-visual {
        height: 500px !important;
    }

    .showcase-display {
        max-width: 350px;
        height: 400px;
        width: 90%;
    }

    .showcase-main {
        width: 100%;
        max-width: 100%;
        height: 400px;
        padding-inline: 30px;
        padding-block: 50px;
    }

    .showcase-logo {
        width: 250px;
    }

    .showcase-title {
        font-size: 28px;
    }

    .showcase-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .corner-decoration {
        display: none;
    }

    .stat-number {
        font-size: 36px;
    }

    .stats-section {
        padding: 40px 20px;
        max-width: 100%;
    }

    .contact-content h2 {
        font-size: 36px;
    }

    .contact-form,
    .contact-item,
    .contact-details {
        max-width: 100%;
        box-sizing: border-box;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

@media (max-width: 480px) {
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .header {
        height: 70px;
        padding: 0 10px;
        max-width: 100vw;
    }

    .header.scrolled {
        height: 60px;
    }

    .coverflow {
        height: 280px;
    }

    .logo {
        width: 35px;
        height: 35px;
        margin-top: 20px;
    }

    .logo img,
    .logo-image {
        max-width: 120px !important;
    }

    .logo-text {
        font-size: 16px;
    }

    .coverflow-item {
        width: 180px;
        height: 180px;
    }

    .nav-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .nav-button.prev {
        left: 5px;
    }

    .nav-button.next {
        right: 5px;
    }

    .dots-container {
        bottom: 30px;
        padding: 0 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .play-pause-button {
        bottom: 70px;
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .info {
        top: 90px;
        width: 100%;
        padding: 0 10px;
    }

    .info h2 {
        font-size: 20px;
        padding: 0 10px;
    }

    .info p {
        font-size: 13px;
        padding: 0 10px;
    }

    .about-content,
    .contact-content {
        padding: 20px 15px;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    /* Additional contact section mobile optimization for small screens */
    .contact-container {
        gap: 30px;
        max-width: 100%;
    }

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

    .contact-header h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .contact-header p {
        font-size: 16px;
        padding: 0 10px;
    }

    .contact-info-section {
        margin-bottom: 20px;
    }

    .contact-info-section h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .contact-info-section > p {
        font-size: 14px;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .contact-details {
        gap: 15px;
    }

    .contact-item {
        padding: 15px;
        gap: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-text h4 {
        font-size: 14px;
    }

    .contact-text p {
        font-size: 12px;
        word-break: break-word;
    }

    .social-links {
        margin-top: 30px;
    }

    .social-links h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .social-buttons {
        gap: 10px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
    }

    .social-btn svg {
        width: 18px;
        height: 18px;
    }

    .contact-form {
        padding: 20px 15px;
        border-radius: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

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

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

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

    .submit-btn {
        padding: 12px 30px;
        font-size: 16px;
        border-radius: 25px;
        width: 100%;
        max-width: 100%;
    }
}