   /* ===== CUSTOM PLATFORMS PAGE STYLES ===== */
   .custom-hero {
    position: relative;
    padding: 120px 0 180px;
    background: var(--gradient-dark);
    color: var(--lighter);
    overflow: hidden;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(28, 77, 143, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(237, 90, 47, 0.3) 0%, transparent 30%),
        var(--gradient-dark);
}

@media (min-width: 992px) {
    .custom-hero {
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
        min-width: 100vw;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.custom-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

   .custom-hero .container {
       position: relative;
       z-index: 2;
       display: flex;
       align-items: center;
       justify-content: center;
       flex-direction: column;
       text-align: center;
   }

   .parent-container {
       display: flex;
       justify-content: center;
       align-items: center;
       flex-direction: column;
   }
   .hero-content {
       max-width: 700px;
       margin: 0 auto;
   }


.hero-title-solution .gradient-text {
    background: var(--gradient-secondary);
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
}

.hero-cta {
    display: flex;
    justify-content: center;
}

   .hero-projects {
       padding: 120px 0;
       background: var(--gradient-dark);
       color: var(--lighter);
       text-align: center;
   }

   .hero-projects .hero-title-solution {
       font-size: 3rem;
       font-weight: 700;
       margin-bottom: 20px;
   }

   .hero-projects .hero-subtitle {
       font-size: 1.25rem;
       margin-bottom: 30px;
       max-width: 700px;
       margin-left: auto;
       margin-right: auto;
       line-height: 1.6;
   }

   .hero-projects .hero-cta .btn {
       padding: 12px 30px;
       font-size: 1rem;
   }
/* Space-themed Button Styles */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13rem;
    overflow: hidden;
    height: 3rem;
    background-size: 300% 300%;
    cursor: pointer;
    backdrop-filter: blur(1rem);
    border-radius: 10px;
    transition: 0.5s;
    animation: gradient_301 5s ease infinite;
    border: double 4px transparent;
    background-color: #ff6c38;
    background-origin: border-box;
    background-clip: border-box;
    white-space: nowrap;
    padding: 0 1.5rem;
    position: relative;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ff6c38;
    border-radius: 10px;
    z-index: -1;
}

.btn:hover {
    transform: scale(1.1);
}

#container-stars {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
}

.btn strong {
    z-index: 2;
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    color: #ffffff;
    text-shadow: 0 0 4px white;
    white-space: nowrap;
    text-align: center;
}

#glow {
    position: absolute;
    display: flex;
    width: 12rem;
}

.circle {
    width: 100%;
    height: 30px;
    filter: blur(2rem);
    animation: pulse_3011 4s infinite;
    z-index: -1;
}

.circle:nth-of-type(1) {
    background: rgba(254, 83, 186, 0.636);
}

.circle:nth-of-type(2) {
    background: rgba(142, 81, 234, 0.704);
}

.btn:hover #container-stars {
    z-index: 1;
    background-color: var(--bg-color);
}

.btn:active {
    border: double 4px #fe53bb;
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: none;
}

.btn:active .circle {
    background: #fe53bb;
}

#stars {
    position: relative;
    background: transparent;
    width: 200rem;
    height: 200rem;
}

#stars::after {
    content: "";
    position: absolute;
    top: -10rem;
    left: -100rem;
    width: 100%;
    height: 100%;
    animation: animStarRotate 90s linear infinite;
}

#stars::after {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
}

#stars::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 170%;
    height: 500%;
    animation: animStar 60s linear infinite;
}

#stars::before {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes animStar {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-135rem);
    }
}

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

    to {
        transform: rotate(0);
    }
}

@keyframes pulse_3011 {
    0% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes gradient_301 {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-image {
    position: relative;
    width: 50%;
}

.floating-cards {
    position: relative;
    height: 500px;
}

.floating-cards .card {
    position: absolute;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xxl);
    transition: var(--transition);
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-1 {
    width: 300px;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    width: 250px;
    height: 350px;
    top: 50px;
    left: 250px;
    z-index: 2;
    animation: float 8s ease-in-out 1s infinite;
}

.card-3 {
    width: 280px;
    height: 380px;
    top: 100px;
    left: 100px;
    z-index: 1;
    animation: float 7s ease-in-out 0.5s infinite;
}

.floating-cards img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
    }

    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
}

/* Features Section */
.custom-features {
    padding: 100px 0;
    background: var(--bg-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    margin-bottom: 20px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Section */
.custom-process {
    padding: 100px 0;
    background: var(--section-bg);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--card-bg);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.process-content {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.process-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Portfolio Section */
.custom-portfolio {
    padding: 100px 0;
    background: var(--bg-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.portfolio-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.portfolio-category {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Section */
.custom-cta {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--lighter);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content {
    max-width: 600px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title-solution {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .custom-hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .hero-title-solution {
        font-size: 2.8rem;
    }

    .section-title-solution {

            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-family: "Space Grotesk", sans-serif;
            position: relative;
            display: flex;
            justify-content: center;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
    }

    .process-timeline::before {
        left: 40px;
    }

    .process-item {
        padding-left: 80px;
    }

    .process-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title-solution {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-item {
        padding-left: 60px;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .process-content {
        padding: 20px;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}
.custom-hero-scroll-indicator {
position: absolute;
left: 50%;
bottom: 32px;
transform: translateX(-50%);
z-index: 10;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
animation: fadeInUp 1s;
}

.mouse-shape {
display: inline-block;
animation: bounceDown 1.8s infinite;
}

@keyframes bounceDown {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(16px);
}
}

@keyframes fadeInUp {
0% {
opacity: 0;
transform: translate(-50%, 40px);
}
100% {
opacity: 1;
transform: translate(-50%, 0);
}
}

.mouse-wheel {
animation: mouseWheelMove 1.2s infinite;
}

@keyframes mouseWheelMove {
0%, 100% {
cy: 14;
opacity: 1;
}
50% {
cy: 22;
opacity: 0.4;
}
}

   /* Portfolio Category Buttons */
   .portfolio-categories {
       display: flex;
       justify-content: center;
       flex-wrap: wrap;
       gap: 12px;
       margin-bottom: 40px;
   }

   .portfolio-btn {
       padding: 8px 20px;
       border: 2px solid #ff6c38;
       border-radius: 10px;
       background: transparent;
       color: #ff6c38;
       font-weight: 600;
       cursor: pointer;
       transition: 0.3s;
       font-size: 0.95rem;
   }

   .portfolio-btn:hover,
   .portfolio-btn.active {
       background: #ff6c38;
       color: white;
       transform: scale(1.05);
   }

   /* Portfolio Grid & Items */
   .portfolio-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 30px;
   }


   .portfolio-title {
       font-size: 1.2rem;
       font-weight: 600;
       margin-bottom: 5px;
   }

   .portfolio-category {
       font-size: 0.9rem;
       opacity: 0.8;
   }

   /* Hover Blur & Dark Effect */
   .portfolio-item {
       position: relative;
       overflow: hidden;
   }

   .portfolio-item:hover .portfolio-image {
       filter: blur(3px) brightness(0.6);
       transform: scale(1.05);
       transition: 0.4s ease;
   }

   /* Overlay Content */
   .portfolio-overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0,0,0,0.55);
       color: #fff;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       text-align: center;
       padding: 20px;
       opacity: 0;
       transition: opacity 0.4s ease;
   }

   /* Show overlay on hover */
   .portfolio-item:hover .portfolio-overlay {
       opacity: 1;
   }

   /* Description */
   .portfolio-description {
       font-size: 0.95rem;
       margin: 10px 0 15px;
       opacity: 0.9;
   }

   /* Link Button */
   .portfolio-link {
       padding: 8px 18px;
       border: 2px solid #ff6c38;
       border-radius: 6px;
       color: #ff6c38;
       font-weight: 600;
       text-decoration: none;
       transition: 0.3s;
   }

   .portfolio-link:hover {
       background: #ff6c38;
       color: #fff;
   }


   /* ===== Stats Section ===== */
   .stats {
       padding: 80px 0;
       background: var(--bg-color);
       color: var(--dark);
   }

   .stats .section-title {
       font-size: 2.5rem;
       font-weight: 700;
       margin-bottom: 1rem;
   }

   .stats .stats-grid {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       gap: 40px;
       margin-top: 40px;
   }

   .stats .stat-item {
       background: var(--lighter); /* light card background */
       padding: 30px 20px;
       border-radius: 15px;
       flex: 1 1 200px;
       max-width: 220px;
       box-shadow: 0 8px 20px rgba(0,0,0,0.1);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
   }

   .stats .stat-item:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 25px rgba(0,0,0,0.2);
   }

   .stats .stat-item h3 {
       font-size: 2.2rem;
       font-weight: 700;
       color: var(--primary);
       margin-bottom: 0.5rem;
   }

   .stats .stat-item p {
       font-size: 1rem;
       font-weight: 500;
       color: var(--dark-secondary);
   }

   /* Responsive */
   @media (max-width: 768px) {
       .stats .stats-grid {
           gap: 20px;
       }
       .stats .stat-item {
           flex: 1 1 45%;
       }
   }

   @media (max-width: 480px) {
       .stats .stat-item {
           flex: 1 1 100%;
       }
   }
