/* ====================== RESET & BASE ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050816;
    color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 0px;
}

/* ====================== TOP HEADER ====================== */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    z-index: 99999;
}

.top-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 46px;
    gap: 15px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-left a, .top-left span {
    color: #cbd5e1;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.top-left a:hover {
    color: var(--secondary, #00bfff);
}

/* ====================== MAIN HEADER ====================== */
.main-header {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.4s ease;
}

.main-header.scrolled {
    background: rgba(5, 8, 22, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    top: 0;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo img {
    width: 52px;
    transition: 0.4s;
}

.logo span {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.4s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #0066ff, #00bfff);
    transition: 0.4s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #00bfff;
}

/* Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quote-btn {
    background: #0066ff;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10000;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    transition: 0.4s;
    border-radius: 3px;
}

/* ====================== MOBILE MENU ====================== */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(5, 8, 22, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 25px;
        transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
        z-index: 9998;
        border-left: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        width: 100%;
        padding: 8px 0;
    }

    .quote-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-header-wrapper {
        flex-direction: column;
        padding: 8px 0;
        gap: 8px;
    }
    
    .main-header {
        top: 0;
    }
    
    .main-header.scrolled {
        top: 0;
    }
}









/* =========================================
   HERO SECTION
========================================= */

.hero-section{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding:
    180px 0 50px;

    background:#050816;
}

/* =========================================
   BACKGROUND GLOW
========================================= */

.hero-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:0.25;

    animation:
    glowMove 8s ease-in-out infinite;
}

.hero-glow-1{

    width:350px;
    height:350px;

    background:#0066ff;

    top:-100px;
    left:-100px;
}

.hero-glow-2{

    width:300px;
    height:300px;

    background:#00bfff;

    bottom:-100px;
    right:-100px;
}

/* =========================================
   HERO WRAPPER
========================================= */

.hero-wrapper{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    align-items:center;

    gap:60px;
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-content{

    position:relative;

    z-index:2;

    animation:
    fadeUp 1s ease;
}

/* BADGE */

.hero-badge{

    display:inline-block;

    padding:
    12px 22px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.06);

    border:
    1px solid rgba(255,255,255,0.08);

    color:#fff;

    font-size:19px;

    margin-bottom:25px;

    backdrop-filter:blur(10px);
}

/* TITLE */

.hero-content h1{

    font-size:48px;

    line-height:1.1;

    font-family:'Sora', sans-serif;

    font-weight:700;

    margin-bottom:25px;
}

/* GRADIENT TEXT */

.hero-content h1 span{

    background:
    linear-gradient(
        135deg,
        #0066ff,
        #00bfff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

/* PARAGRAPH */

.hero-content p{

    font-size:18px;

    line-height:1.8;

    color:#94a3b8;

    max-width:600px;

    margin-bottom:35px;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons{

    display:flex;

    align-items:center;

    gap:25px;

    margin-bottom:50px;
}

/* MAIN BUTTON */

.hero-btn{

    height:55px;

    padding:0 34px;

    border-radius:50px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#fff;

    font-weight:600;

    background: #0066ff;
   
    transition:0.4s ease;

   
}

/* HOVER */

.hero-btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 20px 50px rgba(0,102,255,0.45);
}

/* LINK */

.hero-link{

    color:#fff;

    text-decoration:none;

    font-weight:500;

    display:flex;

    align-items:center;

    gap:10px;

    transition:0.4s ease;
}

.hero-link:hover{

    color:#00bfff;
}

/* =========================================
   STATS
========================================= */

.hero-stats{

    display:flex;

    gap:40px;

    flex-wrap:wrap;
}

.stat-box h2{

    font-size:42px;

    margin-bottom:8px;

    font-family:'Sora', sans-serif;
}

.stat-box span{

    color:#94a3b8;

    font-size:15px;
}

/* =========================================
   HERO IMAGE
========================================= */

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    animation:
    floatImage 5s ease-in-out infinite;

}

/* IMAGE */

.hero-image img{

    width:100%;

    max-width:500px;

    position:relative;

    z-index:2;
        border-radius:50%;

}

/* CIRCLE */

.hero-circle{

    position:absolute;

    width:520px;
    height:520px;

    border-radius:50%;

    border:
    2px solid rgba(255,255,255,0.08);

    animation:
    rotateCircle 20s linear infinite;
}

/* =========================================
   FLOATING CARDS
========================================= */

.floating-card{

    position:absolute;

    width:70px;
    height:70px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    rgba(255,255,255,0.06);

    backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,0.08);

    color:#00bfff;

    font-size:24px;

    z-index:3;

    animation:
    floatCard 4s ease-in-out infinite;
}

/* CARD POSITIONS */

.card-1{
    top:15%;
    left:5%;
}

.card-2{
    top:60%;
    left:0;
}

.card-3{
    top:20%;
    right:5%;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes rotateCircle{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes glowMove{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.2);
    }

    100%{
        transform:scale(1);
    }
}





















/* =========================================
   ABOUT SECTION - Fully Responsive
========================================= */
.about-section {
    padding: 40px 0;
    background: #050816;
    position: relative;
    overflow: hidden;
}

/* ===================== HEADER ===================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header .badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.2);
    color: #00bfff;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 40px;
    line-height: 1.1;
    font-family: 'Sora', sans-serif;
    margin-bottom: 20px;
}

.section-header h2 span {
    background: linear-gradient(135deg, #0066ff, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtext {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
}

/* ===================== WRAPPER ===================== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ===================== CONTENT ===================== */
.about-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #fff;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 25px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.value-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.3);
}

.value-card i {
    font-size: 32px;
    color: #00bfff;
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* ===================== VISUAL SIDE ===================== */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-wrapper img {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(5, 8, 22, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 16px;
    padding: 14px 22px;
    color: #fff;
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: floatCard 5s ease-in-out infinite;
}

.badge-1 { top: 15%; left: -30px; }
.badge-2 { bottom: 20%; right: -20px; animation-delay: 1.5s; }

/* Button */
.about-btn {
    margin-top: 20px;
}














/* =========================================
   SERVICES SECTION
========================================= */
.services-section {
    padding: 40px 0;
    background: #050816;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 191, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: #00bfff;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(0, 102, 255, 0.2);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 15.5px;
}

/* Footer Button */
.services-footer {
    text-align: center;
    margin-top: 70px;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
    .services-section {
        padding: 100px 0;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .service-card {
        padding: 32px 25px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
}

















/* =========================================
   WORKING PROCESS SECTION
========================================= */
.process-section {
    padding: 40px 0;
    background: #050816;
    position: relative;
    overflow: hidden;
}

.process-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00bfff);
    opacity: 0.2;
    z-index: 1;
}

/* Steps Container */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    position: relative;
    padding-top: 90px;
    transition: all 0.5s ease;
}

.process-step:hover {
    transform: translateY(-15px);
}

/* Step Number */
.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 65px;
    background: #0a1428;
    border: 3px solid #00bfff;
    color: #00bfff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 8px rgba(0, 191, 255, 0.15);
}

.process-step:hover .step-number {
    background: #00bfff;
    color: #050816;
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
}

/* Icon */
.step-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #00bfff;
    transition: all 0.5s ease;
}

.process-step:hover .step-icon {
    transform: rotate(12deg) scale(1.15);
    background: rgba(0, 102, 255, 0.2);
}

/* Content */
.process-step h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #fff;
}

.process-step p {
    color: #94a3b8;
    line-height: 1.75;
    font-size: 16px;
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes fadeUpProcess {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step {
    animation: fadeUpProcess 0.8s ease forwards;
    opacity: 0;
}

/* Staggered animation */
.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.3s; }
.process-step:nth-child(3) { animation-delay: 0.5s; }
.process-step:nth-child(4) { animation-delay: 0.7s; }

/* Responsive */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    
    .process-line {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    
    .process-step {
        padding-top: 70px;
    }
}





















/* =========================================
   FOOTER
========================================= */
.footer {
    background: #050816;
    border-top: 1px solid rgba(0, 191, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 50px 0 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-col h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00bfff);
}

/* Logo */
.footer-logo {
    height: 55px;
    margin-bottom: 20px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00bfff;
    padding-left: 8px;
}

/* Contact Info */
.contact-info li {
    color: #94a3b8;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Social Icons */
.social-links {
    margin-top: 25px;
}

.social-icon {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: #94a3b8;
    font-size: 18px;
    margin-right: 10px;
    transition: all 0.4s ease;
}

.social-icon:hover {
    background: #00bfff;
    color: #050816;
    transform: translateY(-5px) scale(1.1);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px 0 0 50px;
    color: #fff;
    outline: none;
}

.newsletter-form button {
    padding: 0 22px;
    background: linear-gradient(135deg, #0066ff, #00bfff);
    border: none;
    border-radius: 0 50px 50px 0;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

/* Bottom Bar */
.footer-bottom {
    background: #03060f;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #64748b;
    font-size: 14px;
}

.footer-legal a {
    color: #64748b;
    margin-left: 20px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #00bfff;
}

/* Back to Top */
.back-to-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00bfff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
}

.back-to-top:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* =========================================
   ANIMATIONS
========================================= */
.footer-col {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.3s; }
.footer-col:nth-child(3) { animation-delay: 0.5s; }
.footer-col:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-bottom-content {
        justify-content: center;
        text-align: center;
    }
    
    .partners-section {
    padding: 10px 0;
    background: #031220;
}
}
































/* ==================== PARTNERS SLIDER ==================== */
.partners-section {
    padding: 50px 0;
    background: #031220;
}

.partners-slider {
    overflow: hidden;
    padding: 30px 0;
}

.slide-track {
    display: flex;
    animation: slide 25s linear infinite;
    gap: 20px;
}

.slide {
    min-width: 160px;
    text-align: center;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.slide:hover {
    opacity: 1;
    transform: scale(1.1);
}

.slide img {
    height: 55px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.slide:hover img {
    filter: grayscale(0%);
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover */
.partners-slider:hover .slide-track {
    animation-play-state: paused;
}