.hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }


/* On mobile, adjust for smaller nav */
@media (max-width: 991px) {
    .hero-content {
        margin-top: 200px;
    }
}
        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
            overflow: hidden;
        }

        .slide-bg.active {
            opacity: 1;
        }

        .slide-bg-1 {
            background-image: url('../images/resource/hero-1.jpg');
        }

        .slide-bg-2 {
            background-image: url('../images/resource/hero-2.jpg');
        }

        .slide-bg-3 {
            background-image: url('../images/resource/hero-5.jpg');
        }

        .hero-content {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            z-index: 2;
            padding: 0 5%;
        }

        .content-left {
            flex: 1;
            max-width: 600px;
            color: white;
            animation: slideInLeft 1.2s ease-out;
            position: relative;
        }

        .text-slider {
            position: relative;
            overflow: hidden;
        }

        .slide {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.8s ease;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
        }

        .slide.active {
            opacity: 1;
            transform: translateX(0);
            position: relative;
        }

        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
            transform: translateY(-50%);
            z-index: 10;
            pointer-events: none;
        }

        .nav-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            pointer-events: all;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .content-right {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: slideInRight 1.2s ease-out;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            color: white;
        }

        .hero-title .highlight {
            -webkit-background-clip: text;
            color: black;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.8;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            background-color: #000;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background-color: #ffee62;
        }

        .device-mockup {
            position: relative;
            width: 400px;
            height: 280px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
                padding: 5% 5%;
            }

            .content-left {
                margin-bottom: 3rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .device-mockup {
                width: 300px;
                height: 210px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .device-mockup {
                width: 280px;
                height: 200px;
            }
        }

.project-section {
            background: #0F110F;
            padding: 110px 0 90px;
        }

        .filter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .single-project-box {
            margin-bottom: 30px;
        }

        .project-thumb {
            position: relative;
            z-index: 1;
            cursor: pointer;
        }

        .project-thumb img {
            width: 100%;
            border-radius: 10px;
            height: 250px;
            object-fit: cover;
        }

        .project-thumb:before {
            position: absolute;
            content: "";
            left: 0;
            bottom: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(0deg, #ffef6a 0%, #bef741 100%);
            opacity: .95;
            transition: .5s;
            border-radius: 10px;
        }

        .project-content {
            position: absolute;
            z-index: 1;
            top: 36%;
            left: 0;
            right: 0;
            text-align: center;
            opacity: 0;
            transition: .5s;
            color: #0F110F;
        }

        .project-content h5 {
            font-size: 18px;
            font-weight: 400;
        }

        .project-content h2 {
            font-size: 26px;
            font-weight: 500;
            padding: 3px 0 4px;
        }

        .project-content i {
            font-size: 44px;
            display: inline-block;
            transform: rotate(45deg);
        }

        .project-thumb:hover:before {
            height: 100%;
            top: 0;
        }

        .project-thumb:hover .project-content {
            opacity: 1;
        }

        .style-two .project-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 0;
            left: 0;
        }

        .project-button .icon {
            text-align: center;
            margin-bottom: 20px;
        }

        .project-button .icon img {
            width: 60px;
            height: 60px;
        }

        .dexon-button2 a {
            padding: 12px 40px 15px;
            background: linear-gradient(90deg, #bbf737 0%, #ffee62 100%);
            display: inline-block;
            border-radius: 5px;
            margin-top: 30px;
            font-weight: 500;
            position: relative;
            z-index: 1;
            border: 1px solid #bbf737;
            color: #0F110F;
            text-decoration: none;
        }

        .dexon-button2 a:before {
            position: absolute;
            content: "";
            z-index: -1;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            background: #050505;
            transform: scale(0.0, 1);
            transition: .5s;
            border-radius: 5px;
            border: 1px solid #bbf737;
        }

        .dexon-button2 a i {
            font-size: 26px;
            position: relative;
            top: 5px;
            left: 2px;
            transform: rotate(-52deg);
            transition: .5s;
            display: inline-block;
        }

        .dexon-button2 a:hover {
            color: #fff;
        }

        .dexon-button2 a:hover:before {
            transform: scale(1);
        }

        @media (max-width: 768px) {
            .filter-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .filter-item {
                padding: 20px 15px;
                min-height: 120px;
            }
            
            .filter-item i {
                font-size: 2rem;
                margin-bottom: 10px;
            }
            
            .popup-content {
                margin: 10px;
            }
            
            .popup-header,
            .popup-body {
                padding: 20px;
            }
            
            .hero-section h1 {
                font-size: 2rem;
            }
        }
        .process-section {
            background: linear-gradient(135deg, #0a0b0a 0%, #151715 25%, #0f110f 50%, #1a1c1a 75%, #0a0b0a 100%);
            padding: 120px 0 100px;
            position: relative;
            min-height: 100vh;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-title {
            font-size: 4.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 0%, #bbf737 50%, #ffee62 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: -2px;
            position: relative;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            0% { filter: drop-shadow(0 0 20px rgba(187, 247, 55, 0.3)); }
            100% { filter: drop-shadow(0 0 40px rgba(255, 238, 98, 0.5)); }
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #c0c0c0;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 300;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 60px;
        }

        .process-card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(187, 247, 55, 0.2);
            border-radius: 25px;
            padding: 50px 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            min-height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .process-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #bbf737, #ffee62, #bbf737, #ffee62);
            background-size: 400% 400%;
            border-radius: 25px;
            z-index: -2;
            animation: gradientShift 4s ease infinite;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .process-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(15, 17, 15, 0.95) 0%, rgba(26, 28, 26, 0.95) 100%);
            border-radius: 25px;
            z-index: -1;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .process-card:hover::before {
            opacity: 1;
        }

        .process-card:hover {
            transform: translateY(-20px) scale(1.05);
            box-shadow: 0 40px 80px rgba(187, 247, 55, 0.25);
        }

        .card-number {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #bbf737 0%, #ffee62 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            color: #0a0b0a;
            box-shadow: 0 10px 30px rgba(187, 247, 55, 0.4);
            transition: all 0.6s ease;
        }

        .process-card:hover .card-number {
            transform: rotate(360deg) scale(1.2);
            box-shadow: 0 20px 50px rgba(187, 247, 55, 0.6);
        }

        .card-icon {
            font-size: 3.5rem;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #bbf737 0%, #ffee62 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.6s ease;
        }

        .process-card:hover .card-icon {
            transform: scale(1.2) rotateY(360deg);
            filter: drop-shadow(0 0 20px rgba(187, 247, 55, 0.5));
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        .process-card:hover .card-title {
            color: #bbf737;
            transform: translateX(10px);
        }

        .card-description {
            color: #a8a8b3;
            line-height: 1.6;
            font-size: 1rem;
            transition: all 0.4s ease;
            font-weight: 300;
        }

        .process-card:hover .card-description {
            color: #e0e0e0;
            transform: translateX(10px);
        }

        /* Unique hover effects for each card */
        .process-card:nth-child(1):hover {
            transform: translateY(-20px) scale(1.05) rotateZ(2deg);
        }

        .process-card:nth-child(2):hover {
            transform: translateY(-20px) scale(1.05) rotateZ(-2deg);
        }

        .process-card:nth-child(3):hover {
            transform: translateY(-20px) scale(1.05) rotateZ(1deg);
        }

        .process-card:nth-child(4):hover {
            transform: translateY(-20px) scale(1.05) rotateZ(-1deg);
        }

        .process-indicators {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 50px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(168, 168, 179, 0.3);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .indicator.active {
            background: linear-gradient(135deg, #bbf737 0%, #ffee62 100%);
            width: 40px;
            border-radius: 20px;
            box-shadow: 0 0 20px rgba(187, 247, 55, 0.5);
        }

        .indicator.active::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid rgba(187, 247, 55, 0.3);
            border-radius: 25px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        /* Entrance animations */
        .process-card {
            opacity: 0;
            transform: translateY(100px) rotateX(45deg);
            animation: cardEntrance 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        .process-card:nth-child(1) { animation-delay: 0.1s; }
        .process-card:nth-child(2) { animation-delay: 0.2s; }
        .process-card:nth-child(3) { animation-delay: 0.3s; }
        .process-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes cardEntrance {
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        .section-header {
            opacity: 0;
            transform: translateY(-50px);
            animation: headerEntrance 1s ease forwards;
        }

        @keyframes headerEntrance {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .section-title {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 768px) {
            .process-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .section-title {
                font-size: 2.8rem;
                letter-spacing: -1px;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .process-card {
                padding: 40px 25px;
                min-height: 300px;
            }
            
            .card-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                top: -10px;
                right: -10px;
            }
            
            .card-icon {
                font-size: 2.5rem;
            }
            
            .card-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .process-section {
                padding: 80px 0 60px;
            }
            
            .container {
                padding: 0 15px;
            }
        }

        /* HOW */
        .process-section {
            background: url(../images/resource/about-bg3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 110px 0 90px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            opacity: 0;
            transform: translateY(-50px);
            animation: headerEntrance 1s ease forwards;
        }

        .section-title {
            font-size: 4.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 0%, #bbf737 50%, #ffee62 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: -2px;
            position: relative;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            0% { filter: drop-shadow(0 0 20px rgba(187, 247, 55, 0.3)); }
            100% { filter: drop-shadow(0 0 40px rgba(255, 238, 98, 0.5)); }
        }

        @keyframes headerEntrance {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #c0c0c0;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 300;
        }

        .process-grid-container {
            width: 100%;
            overflow: hidden;
            margin-bottom: 60px;
        }

        .process-grid {
            display: flex;
            gap: 25px;
            padding: 10px 20px;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            width: calc(300px * 6 + 25px * 5 + 40px); /* 6 cards + gaps + padding */
        }

        .process-card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(187, 247, 55, 0.2);
            border-radius: 25px;
            padding: 50px 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            min-height: 150px;
            width: 300px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            opacity: 0;
            transform: translateY(100px) rotateX(45deg);
            animation: cardEntrance 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        .process-card:nth-child(1) { animation-delay: 0.1s; }
        .process-card:nth-child(2) { animation-delay: 0.2s; }
        .process-card:nth-child(3) { animation-delay: 0.3s; }
        .process-card:nth-child(4) { animation-delay: 0.4s; }
        .process-card:nth-child(5) { animation-delay: 0.5s; }
        .process-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes cardEntrance {
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        .process-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #bbf737, #ffee62, #bbf737, #ffee62);
            background-size: 400% 400%;
            border-radius: 25px;
            z-index: -2;
            animation: gradientShift 4s ease infinite;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .process-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(15, 17, 15, 0.95) 0%, rgba(26, 28, 26, 0.95) 100%);
            border-radius: 25px;
            z-index: -1;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .process-card:hover::before {
            opacity: 1;
        }

        .process-card:hover {
            transform: translateY(-20px) scale(1.05);
            box-shadow: 0 40px 80px rgba(187, 247, 55, 0.25);
        }

        .card-number {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #bbf737 0%, #ffee62 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            color: #0a0b0a;
            box-shadow: 0 10px 30px rgba(187, 247, 55, 0.4);
            transition: all 0.6s ease;
        }

        .process-card:hover .card-number {
            transform: rotate(360deg) scale(1.2);
            box-shadow: 0 20px 50px rgba(187, 247, 55, 0.6);
        }

        .card-icon {
            font-size: 3.5rem;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #bbf737 0%, #ffee62 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.6s ease;
        }

        .process-card:hover .card-icon {
            transform: scale(1.2) rotateY(360deg);
            filter: drop-shadow(0 0 20px rgba(187, 247, 55, 0.5));
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        .process-card:hover .card-title {
            color: #bbf737;
            transform: translateX(10px);
        }

        .card-description {
            color: #a8a8b3;
            line-height: 1.6;
            font-size: 1rem;
            transition: all 0.4s ease;
            font-weight: 300;
        }

        .process-card:hover .card-description {
            color: #e0e0e0;
            transform: translateX(10px);
        }

        /* Unique hover effects for each card */
        .process-card:nth-child(1):hover {
            transform: translateY(-20px) scale(1.05) rotateZ(2deg);
        }

        .process-card:nth-child(2):hover {
            transform: translateY(-20px) scale(1.05) rotateZ(-2deg);
        }

        .process-card:nth-child(3):hover {
            transform: translateY(-20px) scale(1.05) rotateZ(1deg);
        }

        .process-card:nth-child(4):hover {
            transform: translateY(-20px) scale(1.05) rotateZ(-1deg);
        }

        .process-card:nth-child(5):hover {
            transform: translateY(-20px) scale(1.05) rotateZ(2deg);
        }

        .process-card:nth-child(6):hover {
            transform: translateY(-20px) scale(1.05) rotateZ(-2deg);
        }

        .process-indicators {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 50px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(168, 168, 179, 0.3);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .indicator.active {
            background: linear-gradient(135deg, #bbf737 0%, #ffee62 100%);
            width: 40px;
            border-radius: 20px;
            box-shadow: 0 0 20px rgba(187, 247, 55, 0.5);
        }

        .indicator.active::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid rgba(187, 247, 55, 0.3);
            border-radius: 25px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .section-title {
                font-size: 3.5rem;
            }
            
            .process-card {
                width: 280px;
            }
            
            .process-grid {
                width: calc(280px * 6 + 25px * 5 + 40px);
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.8rem;
                letter-spacing: -1px;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .process-card {
                padding: 40px 25px;
                min-height: 300px;
                width: 250px;
            }
            
            .process-grid {
                width: calc(250px * 6 + 25px * 5 + 40px);
            }
            
            .card-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                top: -10px;
                right: -10px;
            }
            
            .card-icon {
                font-size: 2.5rem;
            }
            
            .card-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .process-section {
                padding: 80px 0 60px;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .process-card {
                width: 220px;
                padding: 30px 20px;
            }
            
            .process-grid {
                width: calc(220px * 6 + 25px * 5 + 40px);
            }
        }

        /* Services */
        
        .service-section {
            padding: 80px 0;
            background: #0F110F;
        }

        .single-project-box {
            margin-bottom: 30px;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .single-project-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 239, 106, 0.2);
        }

        .project-thumb {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            height: 350px;
            background: #1a1c1a;
            border-radius: 15px;
        }

        .project-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .project-thumb:hover img {
            transform: scale(1.1);
        }

        .project-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            padding: 40px 25px 25px;
            color: white;
            transition: all 0.4s ease;
        }

        .project-content h5 {
            color: #ffef6a;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .project-content h2 {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .project-content i {
            color: #ffef6a;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .project-thumb:hover .project-content i {
            transform: translateX(10px);
            color: #bef741;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        @media (max-width: 1200px) {
            .service-grid {
                grid-template-columns: repeat(3, 1fr);
                max-width: 1000px;
            }
        }

        @media (max-width: 768px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .service-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .popup-content {
                margin: 10px;
            }
            
            .popup-header,
            .popup-body {
                padding: 20px;
            }
            
            .hero-section h1 {
                font-size: 2rem;
            }

            .project-content h2 {
                font-size: 16px;
            }
        }
        /* Scroll arrows */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(187, 247, 55, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #bbf737;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    border: 1px solid rgba(187, 247, 55, 0.3);
}

.scroll-arrow:hover {
    background: rgba(187, 247, 55, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

.process-grid-container {
    position: relative;
}

/* Remove indicators */
.process-indicators {
    display: none;
}


/* PROJECTS */
 .feature-section {
            background: linear-gradient(135deg, #000 0%, #111 100%);
            padding: 110px 0 90px;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #ffee62, #7dd956);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fff;
        }

        .section-description {
            font-size: 1.1rem;
            color: #bbb;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Filter Buttons */
        .filter-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: rgba(187, 247, 55, 0.1);
            border: 2px solid rgba(187, 247, 55, 0.3);
            color: #fff;
            padding: 12px 24px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .filter-btn:hover {
            background: rgba(187, 247, 55, 0.2);
            border-color: rgba(187, 247, 55, 0.6);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(187, 247, 55, 0.3);
        }

        .filter-btn.active {
            background: #ffee62;
            border-color: #ffee62;
            color: #000;
            font-weight: 600;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .filter-btn:hover::before {
            left: 100%;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(187,247,55,0.05) 0%, rgba(187,247,55,0.15) 100%);
            border-radius: 15px;
            padding: 40px 30px;
            position: relative;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(187,247,55,0.2);
            overflow: hidden;
            transform: translateY(0);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(187,247,55,0.1), rgba(187,247,55,0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 15px;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ffee62, #7dd956, #ffee62);
            z-index: -1;
            border-radius: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(187,247,55,0.2);
        }

        .feature-card:hover::after {
            opacity: 1;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #fff;
            position: relative;
            z-index: 2;
        }

        .feature-card .category {
            font-size: 1rem;
            color: #ffee62;
            font-weight: 500;
            background: rgba(187,247,55,0.1);
            padding: 5px 15px;
            border-radius: 20px;
            display: inline-block;
            position: relative;
            z-index: 2;
        }

        .feature-card.hidden {
            display: none;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(10px);
        }

        .modal-content {
            background: linear-gradient(135deg, #111 0%, #000 100%);
            margin: 5% auto;
            padding: 40px;
            border: 2px solid #ffee62;
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(187,247,55,0.3);
        }

        .modal-title {
            font-size: 2rem;
            font-weight: 600;
            color: #ffee62;
        }

        .close {
            color: #fff;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color:#ffee62;
        }

        .modal-body {
            color: #ddd;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .modal-category {
            background: #ffee62;
            color: #000;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1.8rem;
            }
            
            .cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .filter-container {
                gap: 10px;
            }
            
            .filter-btn {
                padding: 10px 18px;
                font-size: 0.9rem;
            }
            
            .modal-content {
                margin: 10% auto;
                padding: 30px 20px;
            }
        }

        /* Animation for filtered cards */
        .feature-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
/* WHO WE ARE */
.style-two.about-section {
    background: url(../images/resource/about-shp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0 100px;
}

.row.about-bg3 {
    padding: 0 0 115px;
    border-bottom: 1px solid rgba(16,18,16,0.10196078431372549);
    margin-bottom: 116px;
}

.about-left-thumb {
    margin: 0 0 0 -35px;
}

.references-content {
    padding-left: 30px;
    color: #333; /* Adjust color as needed */
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.sub-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .about-left-thumb {
        margin: 0 0 30px 0;
        text-align: center;
    }
    .references-content {
        padding-left: 15px;
        text-align: center;
    }
    .main-heading {
        font-size: 2rem;
    }
    .sub-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .main-heading {
        font-size: 1.8rem;
    }
    .sub-heading {
        font-size: 1.3rem;
    }
    .description {
        font-size: 1rem;
    }
}

/* SOCIALS */
.social-icons-container {
  text-align: center;
  padding: 20px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #000;
  color: white;
  font-size: 30px;
  text-decoration: none;
}

.copyright {
  font-size: 12px;
  color: #666;
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.about-left-thumb img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.about-left-thumb img {
    opacity: 0;
    transform: translateX(-30px); /* Start slightly left */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition: all 0.3s ease-in-out;

}

.about-left-thumb img.scrolled-in {
    opacity: 1;
    transform: translateX(0);
}

.row align-items-center about-bg2{
    
}