
html, body{
    width:100%;
    overflow-x:hidden;
}

.menu-toggle{
    display:none;
}


:root{
    --bg-dark: #0b1220;
    --navy: #111827;
    --orange: #ff7a18;
    --coral: #ff4e50;
    --pink: #ff416c;
    --purple: #7f00ff;
    --magenta: #e100ff;
    --teal: #00c9ff;

    --gradient-main: linear-gradient(90deg,#ff7a18,#ff416c,#7f00ff,#00c9ff);
    --gradient-soft: linear-gradient(135deg,#ff7a18,#ff416c,#7f00ff);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background: var(--bg-dark);
    color: #5cdff5;
    font-family: 'Segoe UI', sans-serif;
    user-select:none;
    -webkit-user-select:none;
}

input, textarea{
    user-select:text;
}
/* ===== NAVIGATION BAR FIXED ===== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:0px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:70px;
    background:rgba(11,18,32,0.35);
    backdrop-filter:blur(1px);
    z-index:30;
}

/* Logo */
.logo{
    display:flex;
    align-items:center;
    gap:0px;
    position:relative;
}

.particle-wrapper{
    position:relative;
    display:inline-block;
    overflow:visible;
    flex:0 0 auto;
}

.logo-img{
    height:clamp(24px,3vw,38px);
    width:auto;
}
.logo-left{
    display:flex;
    align-items:center;
}
.logo-right{
    display:flex;
    align-items:center;
    height:65px;
    margin-left:0px;
}

#logoParticleLogo{
    display:block;
    height:auto;
    flex:0 0 auto;
    width:auto;
    margin-left:0px;  /* pull canvas closer */
    max-height:none;   /* REMOVE LIMIT */
    position:relative;
    z-index:4;
}

.logo-text{
    background: var(--gradient-main);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    transition:opacity 0.6s ease;
    position:relative;
    z-index:4;
}

.logo-text-overlay{
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    white-space:nowrap;

    background:linear-gradient(90deg,#ff7a18,#ff416c,#7f00ff,#00c9ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    font-weight:700;
    opacity:0;
    transition:opacity 0.4s ease;
    pointer-events:none;
    z-index:4;
    
text-shadow:
        0 0 20px rgba(255,65,108,0.6),
        0 0 40px rgba(127,0,255,0.4);
}

#logoSparkForm{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:6;   /* ABOVE text */
}
.logo-solid-text{
    position:absolute;
    left:49.5%;
    top:41%;
    transform:translate(-50%, -50%);
    font-weight:700;
    white-space:nowrap;
    opacity:0;
    pointer-events:none;
    transition:opacity 0.4s ease;

    background:linear-gradient(90deg,#ff7a18,#ff416c,#7f00ff,#00c9ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    z-index:4;
}

/* ===== TOP CONTACT BAR ===== */
/* ===== PREMIUM RUNNING CONTACT BAR ===== */
.top-contact-bar{
    width:100%;
    background:linear-gradient(90deg,#ff7a181f,#ff416c4f,#7f00ff57);
    overflow:hidden;
    white-space:nowrap;
    color:#fff;
    font-size:14px;
    padding:0px 0px;
    text-align:right;
    position:relative;
    z-index:19;
}
/* Ticker container */
.ticker{
    width:100%;
    overflow:hidden;
}
/* Moving track */
.ticker-track{
    display:flex;
    width:max-content;
    padding:0px 0;
    font-weight:600;
    color:#fff;
    animation: tickerMove 18s linear infinite;
}
/* Pause on hover */
.top-contact-bar:hover .ticker-track{
    animation-play-state: paused;
}
/* Individual items */
.ticker-item{
    white-space:nowrap;
    padding:10px 60px;
    font-weight:600;
    color:#fff;
    position:relative;
}
/* Phone link */
.ticker-item a{
    color:#fff;
    text-decoration:none;
}
.ticker-item a:hover{
    text-decoration:underline;
}

/* Extreme right → extreme left */
@keyframes tickerMove{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}
.ticker-track a{
    color:#fff;
    text-decoration:none;
}

.ticker-track a:hover{
    text-decoration:underline;
}

/* Animation */
@keyframes scrollLeft{
    0%{ transform: translateX(100%); }
    100%{ transform: translateX(-100%); }
}

@media (max-width:768px){
    .logo-solid-text{
        font-size:22px;
    }
}

@media (min-width:768px){
    .logo-solid-text{
        font-size:22px;
    }
}

/* Sparkle Trail */
.ticker-item::after{
    content:"";
    position:absolute;
    top:50%;
    right:-40px;
    width:80px;
    height:2px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.9),
        rgba(255,255,255,0.4),
        transparent
    );
    transform:translateY(-50%);
    filter: blur(2px);
    animation: sparkle 1.2s linear infinite;
}

@keyframes sparkle{
    0%{ opacity:0.2; }
    50%{ opacity:1; }
    100%{ opacity:0.2; }
}

/* Nav container */
nav{
    margin-left:auto;
}
nav ul{
    display:flex;
    align-items:center;
    list-style:none;
    gap:clamp(12px,2vw,35px);
    z-index:19;
}

/* Nav links */
nav ul li a{
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    color:#ffffff;
    transition:0.3s ease;
    position:relative;
}

/* Hover underline animation */
nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:var(--gradient-main);
    transition:0.3s;
}

nav ul li a:hover::after{
    width:100%;
}

nav ul li a:hover{
    color:#ff7a18;
}


.hero{
    text-align:center;
    padding:120px 20px;
    background:linear-gradient(135deg,#00f2fe,#4facfe);
    color:#000;
}

.btn-primary{
    background:#000;
    color:#fff;
    padding:12px 25px;
    margin:10px;
    display:inline-block;
    text-decoration:none;
    border-radius:30px;
}

.services-grid .grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:50px;
}

.card{
    background:#1e293b;
    padding:40px;
    border-radius:10px;
    text-align:center;
    transition:0.4s;
    z-index:6;
}

.card:hover{
    transform:translateY(-10px);
    background:#00f2fe;
    color:#000;
}

footer{
    background: linear-gradient(90deg,#11182785,#0b1220a1);
    padding:60px 20px;
    text-align:center;
    border-top:2px solid #ff416c;
}

footer h3{
    font-size:22px;
    margin-bottom:15px;
    background: var(--gradient-main);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

footer p{
    color:#ccc;
}

footer a{
    color:#ff7a18;
    text-decoration:none;
    transition:0.3s;
}

footer a:hover{
    color:#ff416c;
}

@media (max-width: 992px){

    header{
        padding:12px 15px;
        top:0px;
        z-index:25;
        
    }

    nav ul{
        gap:20px;
        z-index:19;
    }
}

@media (max-width: 768px){

    header{
        padding:15px 20px;
        z-index:25;
    }
    
 #logoParticleLogo{
    }
    .menu-toggle{
    display:flex;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
    margin-left:auto;
}

    nav{
        width:100%;
    }

    nav ul{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background: rgba(11,18,32,0.9);
        backdrop-filter: blur(5px);
        align-items:center;
        gap:0px;
        padding:10px 0;
        display:none;
        flex-direction:column;
        z-index:21; /* Just above header */
    }

    nav ul.active{
        display:flex;
    }
}

    .hero-content p{
        font-size:16px;
    }

    .btn-gradient,
    .btn-outline{
        display:block;
        margin:10px auto;
        width:100%;
        align-items:center;
    }
}

.page-hero{
    padding:100px 20px;
    text-align:center;
    background: var(--gradient-soft);
    color:#000;
}

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

.service-box, .training-box, .laptop-card{
    background:#1e293b;
    padding:30px;
    margin:20px 0;
    border-radius:12px;
    transition:0.4s;
}

.service-box:hover,
.training-box:hover,
.laptop-card:hover{
    background:#00f2fe;
    color:#000;
    transform:translateY(-8px);
}

.contact form{
    display:flex;
    flex-direction:column;
    width:100%;
    max-width:600px;
    margin:auto;
}

.contact input, .contact textarea{
    margin:10px 0;
    padding:12px;
    border:none;
    border-radius:6px;
}

.btn-secondary{
    background:#00f2fe;
    padding:10px 20px;
    border-radius:30px;
    text-decoration:none;
    color:#000;
    display:inline-block;
}
/* ===== 3D SERVICES SECTION ===== */

.services-3d-section{
    padding:100px 20px;
    text-align:center;
    position:relative;
    z-index:14;
    background:
        radial-gradient(circle at 20% 30%, #ff7a18 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, #7f00ff 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, #ff416c 0%, transparent 50%),
        var(--bg-dark);
}

.section-title{
    font-size:40px;
    margin-bottom:60px;
    background: var(--gradient-main);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.services-3d-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
    perspective:1000px;
}

.service-3d-card{
    height:300px;
    background:transparent;
    position:relative;
    transform-style:preserve-3d;
    transition:0.6s;
}

.service-3d-card:hover{
    transform:rotateY(10deg) rotateX(10deg) scale(1.05);
}

.card-inner{
    height:100%;
    padding:40px;
    border-radius:20px;
    background:linear-gradient(145deg,#1a1f2f,#111827);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,122,24,0.3);
    box-shadow:0 20px 40px rgba(0,0,0,0.5);
    transition:0.5s;
}

.service-3d-card:hover .card-inner{
    box-shadow:0 0 40px rgba(255,65,108,0.6);
    transform: translateY(-10px);
}

.card-inner h2{
    font-size:22px;
    margin-bottom:20px;
    background: var(--gradient-soft);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.card-inner p{
    margin-bottom:20px;
    color:#ddd;
}

.card-inner a{
    text-decoration:none;
    color:#000;
    padding:10px 20px;
    border-radius:30px;
    background: var(--gradient-main);
    font-weight:bold;
}

/* ================= ULTRA PREMIUM SERVICES ================= */

.ultra-services{
    padding:75px 20px;
    text-align:center;
    overflow:hidden;
    position:relative;
    background: var(--bg-dark);
    z-index:10;
}

/* Soft lighting blobs behind cube */
.ultra-services::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, #ff416c 0%, transparent 70%);
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    opacity:0.4;
    filter:blur(140px);
    z-index:1;
}

.ultra-services::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, #7f00ff 0%, transparent 70%);
    top:30%;
    left:60%;
    opacity:0.35;
    filter:blur(120px);
    z-index:1;
}

.ultra-title{
    font-size:48px;
    margin-bottom:10px;
    background: var(--gradient-main);
    background-size:300% auto;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    animation:gradientMove 6s linear infinite;
}

@keyframes gradientMove{
    0%{background-position:0%}
    100%{background-position:200%}
}

.cube-container{
    perspective:1500px;
    perspective-origin: 50% 50%;
    display:flex;
    justify-content:center;
    margin-bottom:80px;
    position:relative;
    z-index:4;
    animation: floatContainer 6s ease-in-out infinite;
}

.cube-container:hover .cube{
    box-shadow:
        0 100px 200px rgba(0,0,0,0.9),
        0 0 80px rgba(255,65,108,0.9),
        0 0 160px rgba(127,0,255,0.8),
        0 0 240px rgba(255,122,24,0.7),
        0 0 320px rgba(255,255,255,0.4);
    filter: brightness(1.3) saturate(1.4);
    animation: rotateCube 18s infinite linear, glowPulse 1.5s ease-in-out infinite;
}

.cube-container:hover .face{
    background: linear-gradient(
        135deg,
        rgba(255,122,24,0.35),
        rgba(255,65,108,0.35),
        rgba(127,0,255,0.35)
    );

    border:1px solid rgba(255,255,255,0.6);
}

.cube{
    position:relative;
    width:260px;
    height:260px;
    transform-style:preserve-3d;

    animation: rotateCube 18s infinite linear;

    box-shadow:
        0 60px 120px rgba(0,0,0,0.6);

    transition: box-shadow 0.4s ease;
}

.cube::before{
    content:"";
    position:absolute;
    inset:-40px;
    background: radial-gradient(circle at center,
        rgba(255,122,24,0.5),
        rgba(255,65,108,0.4),
        rgba(127,0,255,0.3),
        transparent 70%);
    opacity:0;
    transition:0.4s;
    z-index:-1;
}

.cube-container:hover .cube::before{
    opacity:1;
}


.cube::after{
    content:"";
    position:absolute;
    bottom:-120px;
    left:50%;
    width:200px;
    height:60px;
    transform:translateX(-50%);
    background: radial-gradient(
        ellipse at center,
        rgba(255,65,108,0.3),
        transparent 70%
    );
    filter:blur(40px);
}

@keyframes rotateCube{
    0%{
        transform: rotateX(-25deg) rotateY(0deg);
    }
    100%{
        transform: rotateX(-25deg) rotateY(360deg);
    }
}

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

@keyframes floatContainer{
    0%,100%{ transform: translateY(0px); }
    50%{ transform: translateY(-20px); }
}
@keyframes glowPulse{
    0%,100%{
        box-shadow:
            0 100px 200px rgba(0,0,0,0.9),
            0 0 80px rgba(255,65,108,0.9),
            0 0 160px rgba(127,0,255,0.8),
            0 0 240px rgba(255,122,24,0.7);
    }
    50%{
        box-shadow:
            0 120px 220px rgba(0,0,0,1),
            0 0 120px rgba(255,65,108,1),
            0 0 220px rgba(127,0,255,1),
            0 0 320px rgba(255,122,24,0.9);
    }
}

.cube-container{
    animation: subtleFloat 6s ease-in-out infinite;
}
.face{
    position:absolute;
    width:260px;
    height:260px;
    background: linear-gradient(
    135deg,
    rgba(255,122,24,0.18),
    rgba(255,65,108,0.18),
    rgba(127,0,255,0.18)
    );

    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);

    border: 1px solid rgba(255,255,255,0.15);

    display:flex;
    justify-content:center;
    align-items:center;

    font-weight:600;
    font-size:18px;
    color:#ffffff;

    box-shadow:
        inset 0 0 40px rgba(255,255,255,0.05),
        0 20px 60px rgba(0,0,0,0.6);

    overflow:hidden;
}

.face::before{
    content:"";
    position:absolute;
    width:200%;
    height:200%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.15),
        transparent 70%
    );
    transform: rotate(25deg);
    animation: liquidShine 6s infinite linear;
}

@keyframes liquidShine{
    0%{ transform: translateX(-100%) rotate(25deg); }
    100%{ transform: translateX(100%) rotate(25deg); }
}


.front  { transform: rotateY(0deg) translateZ(130px); }
.back   { transform: rotateY(180deg) translateZ(130px); }
.right  { transform: rotateY(90deg) translateZ(130px); }
.left   { transform: rotateY(-90deg) translateZ(130px); }
.top    { transform: rotateX(90deg) translateZ(130px); }
.bottom { transform: rotateX(-90deg) translateZ(130px); }

.ultra-btn{
    padding:15px 40px;
    background: var(--gradient-main);
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    color:#000;
    transition:0.4s;
}

.ultra-btn:hover{
    box-shadow:0 0 25px #00f2fe;
    transform:scale(1.1);
}
#particles{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
    
}
#particles-js{
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:1;
}

/* ===== FLUID HERO SECTION ===== */

.hero-fluid{
    min-height:85vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:
        radial-gradient(circle at 90% 30%, #ff7a1800 0%, transparent 10%),
        radial-gradient(circle at 10% 90%, #7f00ff47 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, #ff416cd6 0%, transparent 50%),
        #0b122014;
    overflow:visible;
    position:relative;
    isolation: isolate;
    z-index:3;
}

.hero-fluid::before{
    content:"";
    position:absolute;
    width:200%;
    height:200%;
    background:var(--gradient-main);
    opacity:0.08;
    animation:fluidMove 15s infinite alternate ease-in-out;
    pointer-events:none;
}

@keyframes fluidMove{
    0%{transform:translate(-10%, -10%) rotate(0deg);}
    100%{transform:translate(-20%, -20%) rotate(180deg);}
}


.hero-sub{
    margin-top:30px;
    font-size:20px;
    letter-spacing:2px;
    opacity:0.9;
}

.text-soft{
    color:#ffffff;
    opacity:0.85;
}

.text-energy{
    background: linear-gradient(90deg,#ff7a18,#ff416c);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.text-creative{
    background: linear-gradient(90deg,#7f00ff,#00c9ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content{
    max-width:1000px;
    margin:auto;
}

.hero-main{
    font-weight:800;
    text-align:center;
    line-height:1.2;
    max-width:1100px;
    margin:auto;
}

.reveal{
    display:block;
    overflow:hidden;
}

.reveal span{
    display:inline-block;
    font-size:clamp(28px,4vw,50px);
    margin:0 6px;
    transform:translateY(120%);
    opacity:0;
    animation:wordReveal 0.8s ease forwards;
}

/* stagger first line */
.reveal:first-child span:nth-child(1){ animation-delay:0.1s; }
.reveal:first-child span:nth-child(2){ animation-delay:0.2s; }
.reveal:first-child span:nth-child(3){ animation-delay:0.3s; }
.reveal:first-child span:nth-child(4){ animation-delay:0.4s; }
.reveal:first-child span:nth-child(5){ animation-delay:0.5s; }

/* stagger second line */
.highlight-line span:nth-child(1){ animation-delay:0.7s; }
.highlight-line span:nth-child(2){ animation-delay:0.8s; }
.highlight-line span:nth-child(3){ animation-delay:0.9s; }
.highlight-line span:nth-child(4){ animation-delay:1s; }

@keyframes wordReveal{
    to{
        transform:translateY(0);
        opacity:1;
    }
}

.highlight-line span{
    background:linear-gradient(90deg,#ff7a18,#ff416c,#7f00ff,#00c9ff);
    background-size:300% 100%;
    animation:gradientMove 6s linear infinite, wordReveal 0.8s ease forwards;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

@keyframes gradientMove{
    0%{ background-position:0% 0%; }
    100%{ background-position:200% 0%; }
}

.hero-sub{
    margin-top:30px;
    font-size: clamp(14px, 2.5vw, 20px);
    line-height:1.6;
    opacity:0.9;
}
.hero-content p{
    font-size:20px;
    color:rgba(255,255,255,0.75);
    margin-top:20px;
    letter-spacing:0.5px;
}

/* BUTTONS */

.btn-gradient{
    padding:16px 38px;
    border-radius:40px;
    background: linear-gradient(90deg,#ff7a183d,#ff416c);
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:0.4s ease;
}

.btn-gradient:hover{
    transform:scale(1.1);
    box-shadow:0 0 30px rgba(255,122,24,0.6);
}

.btn-outline{
    padding:14px 35px;
    border-radius:40px;
    border:2px solid #ff7a18;
    color:#ff7a18;
    text-decoration:none;
    margin-left:15px;
    transition:0.4s;
}

.btn-outline:hover{
    background:#ff7a18;
    color:#000;
}
.btn-gradient,
.btn-outline{
    position:relative;
    z-index:8;
    cursor:pointer;
}

.visitor-count{
    font-weight:bold;
    color:#ff7a18;
    font-size:18px;
}
.service-3d-wrapper{
    perspective:2000px;
    height:500px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:visible;
     position:relative;
      z-index:10;
}

.service-carousel{
    position:relative;
    width:300px;
    height:300px;
    transform-style:preserve-3d;
    animation: spinCarousel 25s infinite linear;
}

@keyframes spinCarousel{
    from{ transform: rotateY(0deg); }
    to{ transform: rotateY(360deg); }
}
.service-panel{
    position:absolute;
    width:260px;
    height:320px;

    background: linear-gradient(
        135deg,
        rgba(255,122,24,0.2),
        rgba(255,65,108,0.2),
        rgba(127,0,255,0.2)
    );

    backdrop-filter: blur(25px);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:20px;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    font-weight:600;
    color:white;

    transition:0.5s;
}
.service-carousel:hover{
    animation-play-state:paused;
}
.service-panel:hover{
    transform: scale(1.1) translateZ(520px);
    box-shadow:
        0 0 80px rgba(255,65,108,0.8),
        0 0 140px rgba(127,0,255,0.7);
}

.service-panel:nth-child(1){ transform: rotateY(0deg) translateZ(500px); }
.service-panel:nth-child(2){ transform: rotateY(45deg) translateZ(500px); }
.service-panel:nth-child(3){ transform: rotateY(90deg) translateZ(500px); }
.service-panel:nth-child(4){ transform: rotateY(135deg) translateZ(500px); }
.service-panel:nth-child(5){ transform: rotateY(180deg) translateZ(500px); }
.service-panel:nth-child(6){ transform: rotateY(225deg) translateZ(500px); }
.service-panel:nth-child(7){ transform: rotateY(270deg) translateZ(500px); }
.service-panel:nth-child(8){ transform: rotateY(315deg) translateZ(500px); }

@media (max-width: 992px){

    .service-panel{
        width:220px;
        height:280px;
    }

    .service-panel:nth-child(1){ transform: rotateY(0deg) translateZ(350px); }
    .service-panel:nth-child(2){ transform: rotateY(45deg) translateZ(350px); }
    .service-panel:nth-child(3){ transform: rotateY(90deg) translateZ(350px); }
    .service-panel:nth-child(4){ transform: rotateY(135deg) translateZ(350px); }
    .service-panel:nth-child(5){ transform: rotateY(180deg) translateZ(350px); }
    .service-panel:nth-child(6){ transform: rotateY(225deg) translateZ(350px); }
    .service-panel:nth-child(7){ transform: rotateY(270deg) translateZ(350px); }
    .service-panel:nth-child(8){ transform: rotateY(315deg) translateZ(350px); }
}

@media (max-width: 600px){

    .service-3d-wrapper{
        height:400px;
    }

    .service-panel{
        width:180px;
        height:240px;
        font-size:14px;
    }

    .service-panel:nth-child(1){ transform: rotateY(0deg) translateZ(250px); }
    .service-panel:nth-child(2){ transform: rotateY(45deg) translateZ(250px); }
    .service-panel:nth-child(3){ transform: rotateY(90deg) translateZ(250px); }
    .service-panel:nth-child(4){ transform: rotateY(135deg) translateZ(250px); }
    .service-panel:nth-child(5){ transform: rotateY(180deg) translateZ(250px); }
    .service-panel:nth-child(6){ transform: rotateY(225deg) translateZ(250px); }
    .service-panel:nth-child(7){ transform: rotateY(270deg) translateZ(250px); }
    .service-panel:nth-child(8){ transform: rotateY(315deg) translateZ(250px); }

    .panel-content h3{
        font-size:16px;
    }

    .panel-content p{
        font-size:12px;
    }
}
img{
    max-width:100%;
    height:auto;
    display:block;
}
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:20px;
}
.video-wrapper{
    position:relative;
    width:100%;
    padding-bottom:56.25%;
    height:0;
}

.video-wrapper iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
@media (max-width:600px){
    .contact input,
    .contact textarea{
        font-size:14px;
    }
}
.text-energy{
    font-size:68px;
}
.section-light{
    background:#f6a87f6b;
    color:#111;
    padding:100px 20px;
    text-align:center;
}
.section-light .hero-title{
    font-size: clamp(26px, 4vw, 50px);
    line-height:1.3;
    margin-bottom:25px;
}

.section-light h3{
    font-size: clamp(16px, 2.5vw, 22px);
    max-width:700px;
    margin:20px auto 30px;
}

.section-light h2{
    font-size:42px;
    margin-bottom:20px;
    color:#ff416c;
}
.section-gradient{
    background: linear-gradient(135deg,#7f00ff00,#ff416c);
    color:#fff;
    padding:120px 20px;
    text-align:center;
}
.section-gradient h2{
    font-size:42px;
    margin-bottom:20px;
    background: linear-gradient(135deg,#7f00ff,#ff416c);
    color:#fff;
    padding:36px 0px;
    text-align:center;
}
.section-cta{
    background:#111;
    color:#fff;
    padding:100px 20px;
    text-align:center;
}

.section-cta h2{
    font-size:40px;
    margin-bottom:20px;
}

.section-cta a{
    display:inline-block;
    padding:15px 40px;
    background:#ff416c;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.section-cta a:hover{
    background:#ff7a18;
}

.menu-toggle span{
    width:26px;
    height:2px;
    background:#fff;
    border-radius:4px;
    transition:0.3s;
}
.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}

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

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}
.reveal span:nth-child(1){ animation-delay:0.1s; }
.reveal span:nth-child(2){ animation-delay:0.2s; }
.reveal span:nth-child(3){ animation-delay:0.3s; }
.reveal span:nth-child(4){ animation-delay:0.4s; }
.reveal span:nth-child(5){ animation-delay:0.5s; }

@keyframes wordReveal{
    to{
        transform:translateY(0);
        opacity:1;
    }
}
.glass{
    display:inline-block;
    padding:12px 28px;
    border-radius:16px;
     box-shadow:
        0 0 40px rgba(255,65,108,0.3),
        0 0 80px rgba(127,0,255,0.2);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.2);
}
.glass span{
    background:linear-gradient(90deg,#ff7a18,#ff416c,#7f00ff,#00c9ff);
    background-size:300% 100%;
    animation:gradientMove 6s linear infinite, wordReveal 0.8s ease forwards;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ===== PREMIUM EXPLORE SERVICES BUTTON ===== */

.btn-premium{
    position:relative;
    display:inline-block;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    letter-spacing:1px;
    color:#fff;
    overflow:hidden;

    background: linear-gradient(
        135deg,
        rgba(255,122,24,0.2),
        rgba(255,65,108,0.2),
        rgba(127,0,255,0.2)
    );

    backdrop-filter: blur(20px);
    border:1px solid rgba(255,255,255,0.2);

    transition: all 0.4s ease;
}

/* Gradient Border Glow */
.btn-premium::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50px;
    padding:2px;
    background: var(--gradient-main);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events:none;
}

/* Shine effect */
.btn-premium::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:200%;
    height:100%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.4),
        transparent 70%
    );
    transform:skewX(-25deg);
    transition:0.6s;
}

/* Hover effects */
.btn-premium:hover{
    transform:translateY(-5px) scale(1.05);
    box-shadow:
        0 0 40px rgba(255,65,108,0.8),
        0 0 80px rgba(127,0,255,0.6),
        0 0 120px rgba(255,122,24,0.5);
}

.btn-premium:hover::after{
    left:100%;
}
/* ===== PREMIUM WELCOME SECTION ===== */

.welcome-premium{
    position:relative;
    padding:160px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:
        radial-gradient(circle at 20% 40%, rgba(255,122,24,0.15), transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(127,0,255,0.15), transparent 50%),
        #0b122036;
    overflow:hidden;
}

/* Glass container */
.welcome-glass{
    max-width:900px;
    text-align:center;
    padding:80px 60px;
    border-radius:30px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(3px);
    border:1px solid rgba(255,255,255,0.1);

    box-shadow:
        0 50px 120px rgba(0,0,0,0.6),
        0 0 80px rgba(255,65,108,0.15);

    position:relative;
    z-index:4;
}

/* Title */
.welcome-title{
    font-size:48px;
    font-weight:700;
    margin-bottom:30px;
    line-height:1.3;
    color:#ffffff;
}

.welcome-title span{
    background: var(--gradient-main);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-size:300% auto;
    animation: gradientMove 6s linear infinite;
}

/* Paragraph */
.welcome-text{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,0.8);
    max-width:700px;
    margin:auto;
}
.welcome-glass{
    animation: floatGlass 6s ease-in-out infinite;
}

@keyframes floatGlass{
    0%,100%{ transform: translateY(0px); }
    50%{ transform: translateY(-15px); }
}
.welcome-premium::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle,
        rgba(255,65,108,0.4),
        transparent 70%);
    filter:blur(120px);
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index:3;
}
header,
.hero-fluid,
.welcome-premium,
.services-3d-section,
.ultra-services,
footer{
    position:relative;
    z-index:20;
}
.service-3d-wrapper,
.ultra-services,
.cube-container,
.cube{
    position:relative;
    z-index:4;
}

#tsparticles{
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:1;
    pointer-events:none;
}
#textParticles{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
    pointer-events:none;
}


#logoSpark{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:3;
    pointer-events:none;
}
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:55px;
    height:55px;
    background:#25D366;
    color:#fff;
    font-size:26px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.4);
    z-index:19;
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* ===== PREMIUM PROMO SECTION ===== */

.promo-section{
    padding:120px 20px;
    position: relative;
    z-index:10;
    background:
        radial-gradient(circle at 20% 40%, rgba(255,122,24,0.15), transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(127,0,255,0.15), transparent 50%),
        #0b12206b;
}

.promo-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

/* LEFT SIDE */
.promo-offer{
    flex:1;
    min-width:300px;
     z-index:12;
}

.offer-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;

    background:linear-gradient(90deg,#ff7a18,#ff416c);
    color:#fff;
}

.promo-offer h2{
    font-size:38px;
    margin-bottom:20px;
    line-height:1.3;
}

.promo-offer h2 span{
    background:linear-gradient(90deg,#ff7a18,#ff416c,#7f00ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.promo-offer p{
    color:rgba(255,255,255,0.75);
    font-size:16px;
    line-height:1.7;
   }

/* RIGHT SIDE */
.promo-cta{
    flex:1;
    min-width:300px;
    padding:60px;
    border-radius:25px;

    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.1);

    text-align:center;
}

.promo-cta h3{
    font-size:26px;
    margin-bottom:15px;
}

.promo-cta p{
    color:rgba(255,255,255,0.7);
    margin-bottom:25px;
}
.promo-cta{
    position: relative;
    z-index:12;
}

/* BUTTON */
.btn-promo{
    display:inline-block;
    padding:15px 35px;
    border-radius:40px;
    font-weight:600;
    text-decoration:none;
    color:#fff;

    background:linear-gradient(90deg,#ff7a18,#ff416c,#7f00ff);
    transition:0.4s ease;
}

.btn-promo:hover{
    transform:scale(1.08);
    box-shadow:
        0 0 40px rgba(255,65,108,0.7),
        0 0 80px rgba(127,0,255,0.5);
}

/* RESPONSIVE */
@media (max-width:768px){
    .promo-container{
        flex-direction:column;
        text-align:center;
    }

    .promo-cta{
        padding:40px 20px;
    }
}
/* ===== BRAND SECTION ===== */

.brand-section{
    position:relative;
    padding:0px 0px;
    text-align:center;
    overflow:visible;
}

/* ===== SIDE CTAs ===== */

.side-cta{
    position:absolute;
    top:20%;
    transform:translateY(-50%) rotate(-45deg);
    padding:40px 50px;
    border-radius:100px;
    font-weight:700;
    text-decoration:none;
    color:#fff;
    white-space:nowrap;

    background: linear-gradient(90deg,#ff7a1861,#ff416c9c,#7f00ff78);

    box-shadow:
        0 0 40px rgba(255,65,108,0.5),
        0 0 80px rgba(127,0,255,0.3);

    transition:0.4s ease;
    z-index:15;
}

/* RIGHT */
.right-cta{
    position:absolute;
    top:20%;
    right:2%;
    transform:translateY(-50%) rotate(25deg);
    z-index:21;
    transition:0.4s ease;
}
@media (max-width:1024px){

    .right-cta{
        transform:translateY(-50%) rotate(15deg);
        padding:14px 35px;
        z-index:21;
    }

}

@media (max-width:768px){

    .right-cta{
        top:auto;
        bottom:85%;
        right:10px;
        transform:translateY(-40%) rotate(15deg);
        padding:10px 30px;
        font-size:12px;
        z-index:21;
    }
    
}
/* Very small phones */
@media (max-width:480px){
    .right-cta{
        top:auto;
        bottom:90%;
        right:10px;
        transform:translateY(-20%) rotate(15deg);
        padding:5px 10px;
        font-size:12px;
    }

}
   
/* Hover effect */
.side-cta:hover{
    transform:translateY(-50%) rotate(0deg) scale(1.1);
    box-shadow:
        0 0 60px rgba(255,65,108,0.9),
        0 0 120px rgba(127,0,255,0.7);
}

/* RESPONSIVE */

/* ===== RESPONSIVE PARACHUTE ===== */

/* Tablet */
@media (max-width:1200px){
    .parachute-real-img{
        width:200px;
    }
    .parachute-real-link{
        transform: rotateZ(-18deg) rotateX(10deg);
    }

}

@keyframes floatSide{
    0%,100%{ transform:translateY(-50%) rotate(-45deg); }
    50%{ transform:translateY(-55%) rotate(-45deg); }
}

/* LEFT */
.left-cta{
    left:0;
    animation:floatSide 4s ease-in-out infinite;
}
/* ===== REALISTIC PARACHUTE CTA ===== */
.parachute-real-wrapper{
    position:absolute;
    top:30%;
    left:0;
    transform:translateY(-50%);
    z-index:21;
    pointer-events:auto;
    animation: floatParachute 6s ease-in-out infinite;
 }

.parachute-real-link{
    display:block;
    transform: rotateZ(-55deg) rotateX(2deg); /* TILT LEFT */
    transform-style: preserve-3d;
    transition:0.4s ease;
    position: relative;
}

/* Center text inside canopy */
.parachute-overlay{
    position: absolute;
    top: 27%;   /* adjust if needed */
    left: 59%;
    transform: translate(-50%, -34%) rotate(24deg);
    text-align: center;
    pointer-events: none;
    z-index: 4;
}
/* Sub text */
.offer-small{
    display:block;
    font-size:18px;
    font-weight:600;
    margin-top:4px;
    color:rgba(243,230,191,0.9);
    opacity:0.9;
}

.offer-big{
    display:block;
    font-size:25px;
    font-weight:800;
    color:#ffffff;
    letter-spacing:2px;
    text-shadow:
        0 2px 10px rgba(0,0,0,0.6);
    animation: pulseGlow 2s ease-in-out infinite;
}
@media (max-width:768px){
.offer-big{
    font-size:15px;
    font-weight:600;
    color:#ffffff;
    letter-spacing:0px;
    text-shadow:
        0 2px 10px rgba(0,0,0,0.6);
    animation: pulseGlow 2s ease-in-out infinite;
}
.offer-small{
    font-size:9px;
    font-weight:600;
    color:#ffffff;
    letter-spacing:0px;
    text-shadow:
        0 2px 10px rgba(0,0,0,0.6);
    animation: pulseGlow 2s ease-in-out infinite;
}
}

@keyframes pulseGlow{
    0%,100%{ text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
    50%{ text-shadow: 0 0 20px rgba(255,65,108,0.8); }
}
.parachute-real-link:hover{
    transform: rotateZ(-25deg) rotateX(15deg) scale(1.08);
}

.parachute-real-img{
    width:280px;
    height:auto;
    display:block;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.7));
}

/* Tablet */
@media (max-width:1024px){
    .parachute-real-img{
        width:180px;
    }
    .parachute-real-link{
        transform: rotateZ(-40deg) rotateX(8deg);
    }
}
/* Mobile */
@media (max-width:768px){
    .parachute-real-wrapper{
        top:auto;
        bottom:50%;
        left:10px;
        transform:none;
        z-index:21;
    }

    .parachute-real-link{
        transform: rotateZ(-40deg) rotateX(8deg);
    }

    .parachute-real-img{
        width:130px;
    }
}

/* Very small phones */
@media (max-width:480px){
    .parachute-real-img{
        width:110px;
    }
    .parachute-real-link{
        transform: rotateZ(-40deg) rotateX(8deg);
    }
    .parachute-real-wrapper{
        bottom:60%;
        left:0px;
        z-index:21;
    }

}

/* Floating motion */
@keyframes floatParachute{
    0%,100%{
        transform:translateY(-50%);
    }
    50%{
        transform:translateY(-60%);
    }
}
#particles,
#particles-js,
#tsparticles,
#textParticles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-fluid,
.brand-section,
.welcome-premium,
.services-3d-section,
.ultra-services,
footer {
    position: relative;
    z-index: 4;
}
