.elementor-39 .elementor-element.elementor-element-2c614ae{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-39 .elementor-element.elementor-element-2c614ae > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}/* Start custom CSS for section, class: .elementor-element-2c614ae */.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    color:#777;
}

/* WHY US */

.why-us{
    padding:100px 0;
    background:#fff;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.feature-card:hover{
    transform:translateY(-15px);
}

.icon{
    font-size:50px;
    margin-bottom:20px;
}

/* SERVICES */

.services-section{
    padding:100px 0;
    background:#f8f9fb;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.service-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.service-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:#ffcc00;
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

/* COUNTERS */

.counter-section{
    padding:90px 0;
    background:#111;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.counter-box{
    text-align:center;
    color:#fff;
}

.counter-box h2{
    font-size:55px;
    color:#ffcc00;
}

/* CTA */

.cta-section{
    padding:120px 0;
    text-align:center;
    background:linear-gradient(135deg,#111,#1e1e1e);
    color:#fff;
    position:relative;
    overflow:hidden;
}

.cta-section::before{
    content:'';
    width:300px;
    height:300px;
    background:#ffcc00;
    position:absolute;
    top:-120px;
    right:-120px;
    border-radius:50%;
    opacity:.1;
}

.cta-section h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-section p{
    margin-bottom:35px;
    color:#ccc;
}

.cta-btn{
    display:inline-block;
    padding:16px 40px;
    background:#ffcc00;
    color:#000;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.cta-btn:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:768px){

.section-title h2{
    font-size:30px;
}

.counter-grid{
    grid-template-columns:repeat(2,1fr);
}

.cta-section h2{
    font-size:32px;
}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5fdd371 */<style>

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    width:100%;
    overflow-x:hidden;
    font-family:'Poppins',sans-serif;
}

/* Universe Section */

.services-orbit{
    position:relative;
    width:100%;
    min-height:100vh;   /* allows page scrolling */
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;

    background:
    radial-gradient(circle at 20% 20%, #2b1055 0%, transparent 30%),
    radial-gradient(circle at 80% 30%, #1b2735 0%, transparent 35%),
    radial-gradient(circle at 50% 80%, #090a0f 0%, transparent 40%),
    linear-gradient(to bottom, #000000, #050816, #0b1026);
}

/* Stars */

.services-orbit::before{
    content:'';
    position:absolute;
    inset:0;

    background-image:
    radial-gradient(2px 2px at 40px 60px,#fff,transparent),
    radial-gradient(2px 2px at 200px 150px,#fff,transparent),
    radial-gradient(2px 2px at 500px 100px,#fff,transparent),
    radial-gradient(2px 2px at 800px 300px,#fff,transparent),
    radial-gradient(2px 2px at 1200px 150px,#fff,transparent);

    animation:starsMove 80s linear infinite;
}

@keyframes starsMove{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(-500px);
    }
}

.orbit-wrapper{
    position:relative;
    width:700px;
    height:700px;
}

.orbit-ring{
    position:absolute;
    inset:0;
    border-radius:50%;
    border:1px dashed rgba(0,255,255,.3);

    box-shadow:
    0 0 25px rgba(0,255,255,.3),
    inset 0 0 25px rgba(0,255,255,.15);
}

/* Logo */

.center-logo{
    position:absolute;
    top:50%;
    left:50%;
    width:260px;
    height:260px;
    transform:translate(-50%,-50%);
    z-index:10;
}

.center-logo img{
    width:100%;
    height:100%;
    object-fit:contain;

    filter:
    drop-shadow(0 0 20px #00d4ff)
    drop-shadow(0 0 60px #00d4ff);

    animation:logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

/* Orbit Items */

.service{
    position:absolute;
    top:50%;
    left:50%;

    width:180px;
    height:60px;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    font-weight:600;
    font-size:14px;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);

    border-radius:50px;
    border:1px solid rgba(255,255,255,.15);

    white-space:nowrap;
}

/* Planet Orbit Animation */

.service1{
    animation:orbit1 20s linear infinite;
}
.service2{
    animation:orbit2 20s linear infinite;
}
.service3{
    animation:orbit3 20s linear infinite;
}
.service4{
    animation:orbit4 20s linear infinite;
}
.service5{
    animation:orbit5 20s linear infinite;
}
.service6{
    animation:orbit6 20s linear infinite;
}

@keyframes orbit1{
from{transform:rotate(0deg) translateY(-320px) rotate(0deg);}
to{transform:rotate(360deg) translateY(-320px) rotate(-360deg);}
}
@keyframes orbit2{
from{transform:rotate(60deg) translateY(-320px) rotate(-60deg);}
to{transform:rotate(420deg) translateY(-320px) rotate(-420deg);}
}
@keyframes orbit3{
from{transform:rotate(120deg) translateY(-320px) rotate(-120deg);}
to{transform:rotate(480deg) translateY(-320px) rotate(-480deg);}
}
@keyframes orbit4{
from{transform:rotate(180deg) translateY(-320px) rotate(-180deg);}
to{transform:rotate(540deg) translateY(-320px) rotate(-540deg);}
}
@keyframes orbit5{
from{transform:rotate(240deg) translateY(-320px) rotate(-240deg);}
to{transform:rotate(600deg) translateY(-320px) rotate(-600deg);}
}
@keyframes orbit6{
from{transform:rotate(300deg) translateY(-320px) rotate(-300deg);}
to{transform:rotate(660deg) translateY(-320px) rotate(-660deg);}
}

/* Mobile */

@media(max-width:768px){

.orbit-wrapper{
    width:450px;
    height:450px;
}

.center-logo{
    width:160px;
    height:160px;
}

.service{
    width:120px;
    height:45px;
    font-size:11px;
}

}

</style>/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-cd5bb10 */.clients-section{
    padding:100px 0;
    background:#ffffff;
}

.clients-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.client-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    border:1px solid #eee;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.client-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#ffcc00;
    transform:scaleX(0);
    transition:.4s;
}

.client-card:hover::before{
    transform:scaleX(1);
}

.client-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.client-card h3{
    font-size:20px;
    color:#222;
    margin-bottom:10px;
    line-height:1.4;
}

.client-card span{
    color:#777;
    font-size:14px;
    letter-spacing:.5px;
}

@media(max-width:768px){

.clients-section{
    padding:70px 0;
}

.client-card h3{
    font-size:18px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7c0f976 */.photo-scroll-section{
    padding:80px 0;
    background:#f8f9fb;
    overflow:hidden;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
}

.slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.slide-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:scroll 30s linear infinite;
}

.slide-track img{
    width:400px;
    height:400px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    transition:.4s;
}

.slide-track img:hover{
    transform:scale(1.05);
}

/* Pause on hover */

.slider:hover .slide-track{
    animation-play-state:paused;
}

@keyframes scroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* Mobile */

@media(max-width:768px){

.slide-track img{
    width:220px;
    height:150px;
}

.section-title h2{
    font-size:30px;
}

}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-8dd85ae */.testimonials-section{
    padding:100px 0;
    background:#f8f9fc;
    position:relative;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.testimonial-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:#ffcc00;
}

.testimonial-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.quote-icon{
    font-size:50px;
    color:#ffcc00;
    margin-bottom:15px;
    line-height:1;
}

.testimonial-card p{
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
    font-size:15px;
}

.client-info h4{
    color:#222;
    margin-bottom:5px;
    font-size:18px;
}

.client-info span{
    color:#888;
    font-size:14px;
}

/* Optional floating animation */

.testimonial-card{
    animation:floatCard 5s ease-in-out infinite;
}

.testimonial-card:nth-child(2){
    animation-delay:1s;
}

.testimonial-card:nth-child(3){
    animation-delay:2s;
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

@media(max-width:768px){

.testimonials-section{
    padding:70px 0;
}

.testimonial-card{
    padding:30px 25px;
}

}/* End custom CSS */