*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0f172a;
    color:#ffffff;
    font-family:Arial, sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

.custom-navbar{
    background:rgba(2,6,23,0.85);
    backdrop-filter:blur(15px);
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo-mark{
    width:38px;
    height:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    color:white;
    font-weight:800;
}

.navbar .nav-link{
    color:#e5e7eb;
    margin:0 6px;
    font-weight:500;
}

.navbar .nav-link:hover{
    color:#06b6d4;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:130px 0 80px;
    background:
    radial-gradient(circle at top left, rgba(79,70,229,0.5), transparent 35%),
    radial-gradient(circle at bottom right, rgba(6,182,212,0.45), transparent 35%),
    #0f172a;
}

.hero-badge{
    background:rgba(255,255,255,0.12);
    color:#ffffff;
    padding:10px 18px;
    border-radius:50px;
}

.hero h1{
    font-size:58px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.hero p{
    color:#cbd5e1;
    font-size:19px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    border:none;
    border-radius:50px;
    padding:12px 28px;
    color:white;
    font-weight:600;
}

.btn-primary:hover{
    background:linear-gradient(135deg,#4338ca,#0891b2);
}

.btn-outline-light{
    border-radius:50px;
    padding:12px 28px;
    font-weight:600;
}

.hero-visual{
    position:relative;
    min-height:450px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.main-card{
    width:330px;
    min-height:260px;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter:blur(20px);
    border-radius:28px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    box-shadow:0 30px 80px rgba(0,0,0,0.3);
}

.orbit-logo{
    width:95px;
    height:95px;
    border-radius:50%;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:46px;
    font-weight:900;
    margin-bottom:20px;
    position:relative;
}

.orbit-logo::after{
    content:"";
    position:absolute;
    width:130px;
    height:55px;
    border:2px solid rgba(255,255,255,0.5);
    border-radius:50%;
    transform:rotate(-25deg);
}

.floating-card{
    position:absolute;
    background:#ffffff;
    color:#0f172a;
    padding:14px 18px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.floating-card i{
    color:#4f46e5;
}

.card-one{
    top:55px;
    left:40px;
}

.card-two{
    bottom:70px;
    left:20px;
}

.card-three{
    right:10px;
    bottom:125px;
}

.section-padding{
    padding:90px 0;
}

.section-title{
    text-align:center;
    max-width:650px;
    margin:0 auto 55px;
}

.section-title span,
.small-title{
    color:#06b6d4;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2,
.portfolio-preview h2,
.cta-section h2{
    font-size:42px;
    font-weight:800;
    margin-top:10px;
}

.section-title p{
    color:#cbd5e1;
    margin-top:15px;
}

.service-card{
    height:100%;
    padding:35px;
    border-radius:24px;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.1);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.1);
}

.service-card i{
    width:62px;
    height:62px;
    border-radius:18px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:25px;
}

.service-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:#cbd5e1;
    line-height:1.7;
}

.portfolio-preview{
    background:#111827;
}

.portfolio-card{
    height:100%;
    background:#1e293b;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.3s;
}

.portfolio-card:hover{
    transform:translateY(-10px);
}

.portfolio-img{
    width:100%;
    height:250px;
    object-fit:cover;
    background:#334155;
}

.portfolio-content{
    padding:25px;
}

.portfolio-content h4{
    font-weight:700;
}

.portfolio-content p{
    color:#cbd5e1;
    line-height:1.7;
}

.project-link{
    color:#06b6d4;
    font-weight:700;
}

.stats-section{
    padding:70px 0;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
}

.stats-section h3{
    font-size:46px;
    font-weight:800;
}

.stats-section p{
    margin-bottom:0;
    font-weight:600;
}

.cta-section{
    padding:90px 0;
    background:#0f172a;
}

.cta-section p{
    color:#cbd5e1;
    margin:20px 0 30px;
}

.page-hero{
    padding:150px 0 80px;
    background:
    radial-gradient(circle at top left, rgba(79,70,229,0.5), transparent 35%),
    #111827;
}

.page-hero h1{
    font-size:50px;
    font-weight:800;
}

.page-hero p{
    color:#cbd5e1;
    font-size:18px;
}

.empty-box{
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:24px;
    padding:50px;
}

.footer{
    background:#020617;
    padding:70px 0 25px;
    color:#cbd5e1;
}

.footer h3,
.footer h5{
    color:white;
    font-weight:700;
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#cbd5e1;
}

.footer-links a:hover{
    color:#06b6d4;
}

.socials a{
    color:white;
    font-size:22px;
    margin-right:15px;
}

.footer hr{
    border-color:rgba(255,255,255,0.1);
    margin:40px 0 20px;
}

.whatsapp-btn{
    position:fixed;
    width:55px;
    height:55px;
    right:22px;
    bottom:22px;
    background:#25d366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.whatsapp-btn:hover{
    color:white;
    transform:scale(1.05);
}

@media(max-width:991px){

    .hero h1{
        font-size:42px;
    }

    .hero-visual{
        min-height:380px;
    }

    .floating-card{
        display:none;
    }

}

@media(max-width:575px){

    .hero h1{
        font-size:34px;
    }

    .section-title h2,
    .portfolio-preview h2,
    .cta-section h2{
        font-size:32px;
    }

    .main-card{
        width:100%;
    }

}

.contact-info-card,
.contact-form-card{
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:24px;
    padding:35px;
    height:100%;
}

.contact-info-card h2{
    font-size:38px;
    font-weight:800;
    margin:15px 0;
}

.contact-info-card p{
    color:#cbd5e1;
    line-height:1.7;
}

.contact-info-item{
    display:flex;
    gap:18px;
    margin-top:28px;
}

.contact-info-item i{
    width:55px;
    height:55px;
    border-radius:16px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.contact-info-item h5{
    margin-bottom:5px;
    font-weight:700;
}

.contact-info-item p{
    margin-bottom:0;
}

.contact-form-card label{
    margin-bottom:8px;
    font-weight:600;
    color:#e5e7eb;
}

.contact-form-card .form-control,
.contact-form-card .form-select{
    background:#0f172a;
    border:1px solid #334155;
    color:white;
    border-radius:14px;
    padding:13px 15px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus{
    background:#0f172a;
    color:white;
    border-color:#06b6d4;
    box-shadow:none;
}

.contact-form-card .form-control::placeholder{
    color:#94a3b8;
}

/* ================================
   Reviews Page - Final Clean CSS
================================ */

.reviews-hero{
    padding:160px 0 90px;
    background:
    radial-gradient(circle at top left, rgba(79,70,229,0.55), transparent 35%),
    radial-gradient(circle at bottom right, rgba(6,182,212,0.4), transparent 35%),
    #0f172a;
}

.reviews-hero h1{
    font-size:54px;
    font-weight:800;
    margin-bottom:18px;
    color:#ffffff;
}

.reviews-hero p{
    max-width:720px;
    margin:0 auto;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
}

.reviews-bg-section{
    padding:90px 0;
    background:
    linear-gradient(rgba(15,23,42,0.92), rgba(15,23,42,0.95)),
    radial-gradient(circle at 20% 30%, rgba(79,70,229,0.35), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(6,182,212,0.28), transparent 30%),
    #111827;
}

.review-card{
    height:100%;
    background:
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
    border:1px solid rgba(255,255,255,0.12);
    border-radius:28px;
    padding:32px;
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.25);
}

.review-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right, rgba(6,182,212,0.18), transparent 35%),
    radial-gradient(circle at bottom left, rgba(79,70,229,0.18), transparent 35%);
    pointer-events:none;
    z-index:1;
}

.review-card::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    z-index:2;
}

.review-card:hover{
    transform:translateY(-10px);
    border-color:rgba(6,182,212,0.4);
    box-shadow:0 30px 80px rgba(0,0,0,0.35);
}

.quote-icon{
    position:absolute;
    right:25px;
    top:22px;
    font-size:42px;
    color:rgba(255,255,255,0.08);
    z-index:2;
}

.review-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    position:relative;
    z-index:3;
}

.review-avatar{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:20px;
    box-shadow:0 10px 30px rgba(6,182,212,0.25);
}

.review-top h4{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:white;
}

.review-top p{
    margin:4px 0 0;
    color:#94a3b8;
    font-size:14px;
}

.review-stars{
    display:flex;
    align-items:center;
    gap:6px;
    margin-bottom:18px;
    position:relative;
    z-index:3;
}

/* Important: keeps stars horizontal and prevents service-card icon CSS conflict */
.review-stars i{
    display:inline-block !important;
    width:auto !important;
    height:auto !important;
    min-width:auto !important;
    background:none !important;
    color:#facc15 !important;
    font-size:18px !important;
    margin:0 !important;
    padding:0 !important;
    line-height:1 !important;
    border-radius:0 !important;
}

.review-stars .empty-star{
    color:#64748b !important;
}

.review-text{
    color:#dbeafe;
    line-height:1.8;
    font-size:16px;
    margin-bottom:0;
    position:relative;
    z-index:3;
}

.review-cta{
    padding:90px 0;
    background:
    radial-gradient(circle at top left, rgba(79,70,229,0.45), transparent 35%),
    radial-gradient(circle at bottom right, rgba(6,182,212,0.35), transparent 35%),
    #020617;
}

.review-cta h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
    color:#ffffff;
}

.review-cta p{
    color:#cbd5e1;
    margin-bottom:30px;
    font-size:18px;
}

/* Mobile Reviews */
@media(max-width:575px){

    .reviews-hero{
        padding:135px 0 70px;
    }

    .reviews-hero h1{
        font-size:36px;
    }

    .reviews-hero p{
        font-size:16px;
    }

    .reviews-bg-section{
        padding:70px 0;
    }

    .review-card{
        padding:26px;
    }

    .review-cta h2{
        font-size:30px;
    }

    .review-cta p{
        font-size:16px;
    }

}

/* ================================
   About Page
================================ */

.about-hero,
.services-hero{
    padding:160px 0 90px;
    background:
    radial-gradient(circle at top left, rgba(79,70,229,0.55), transparent 35%),
    radial-gradient(circle at bottom right, rgba(6,182,212,0.4), transparent 35%),
    #0f172a;
}

.about-hero h1{
    font-size:54px;
    font-weight:800;
    line-height:1.15;
    margin:16px 0 22px;
}

.about-hero p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
}

.about-hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:30px;
}

.about-visual-card{
    background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
    border:1px solid rgba(255,255,255,0.12);
    border-radius:32px;
    padding:45px;
    text-align:center;
    box-shadow:0 30px 80px rgba(0,0,0,0.3);
    position:relative;
    overflow:hidden;
}

.about-visual-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right, rgba(6,182,212,0.20), transparent 35%),
    radial-gradient(circle at bottom left, rgba(79,70,229,0.22), transparent 35%);
    pointer-events:none;
}

.about-logo-orbit{
    width:110px;
    height:110px;
    border-radius:50%;
    margin:0 auto 25px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:52px;
    font-weight:900;
    position:relative;
    z-index:2;
}

.about-logo-orbit::after{
    content:"";
    position:absolute;
    width:150px;
    height:65px;
    border:2px solid rgba(255,255,255,0.45);
    border-radius:50%;
    transform:rotate(-25deg);
}

.about-visual-card h3,
.about-visual-card p,
.about-mini-grid{
    position:relative;
    z-index:2;
}

.about-visual-card h3{
    font-size:30px;
    font-weight:800;
}

.about-visual-card p{
    color:#cbd5e1;
}

.about-mini-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:30px;
}

.about-mini-grid div{
    background:rgba(255,255,255,0.08);
    border-radius:18px;
    padding:18px 10px;
}

.about-mini-grid h4{
    font-weight:800;
    margin-bottom:4px;
}

.about-mini-grid span{
    color:#cbd5e1;
    font-size:14px;
}

.about-story-section{
    padding:100px 0;
    background:#111827;
}

.about-story-section h2{
    font-size:42px;
    font-weight:800;
    margin:15px 0 20px;
}

.about-story-section p{
    color:#cbd5e1;
    line-height:1.8;
}

.about-image-box{
    min-height:420px;
    background:
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
    border:1px solid rgba(255,255,255,0.12);
    border-radius:32px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.about-image-box::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    filter:blur(35px);
    opacity:0.45;
}

.about-center-box{
    position:relative;
    z-index:2;
    width:280px;
    background:#020617;
    border-radius:26px;
    padding:35px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.1);
}

.about-center-box i{
    font-size:45px;
    color:#06b6d4;
    margin-bottom:20px;
}

.about-center-box h3{
    font-weight:800;
}

.about-floating-box{
    position:absolute;
    background:white;
    color:#0f172a;
    padding:14px 18px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    z-index:3;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.about-floating-box i{
    color:#4f46e5;
}

.top-box{
    top:45px;
    left:45px;
}

.bottom-box{
    right:45px;
    bottom:50px;
}

.about-check-list{
    margin-top:25px;
    display:grid;
    gap:14px;
}

.about-check-list div{
    display:flex;
    align-items:center;
    gap:12px;
    color:#e5e7eb;
    font-weight:600;
}

.about-check-list i{
    width:28px;
    height:28px;
    border-radius:50%;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
}

.mission-section{
    padding:90px 0;
    background:#0f172a;
}

.mission-card,
.process-card{
    height:100%;
    background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045));
    border:1px solid rgba(255,255,255,0.12);
    border-radius:26px;
    padding:35px;
    transition:0.3s;
}

.mission-card:hover,
.process-card:hover{
    transform:translateY(-10px);
    border-color:rgba(6,182,212,0.35);
}

.mission-card i{
    width:65px;
    height:65px;
    border-radius:18px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:27px;
    margin-bottom:25px;
}

.mission-card h4,
.process-card h4{
    font-weight:800;
    margin-bottom:12px;
}

.mission-card p,
.process-card p{
    color:#cbd5e1;
    line-height:1.7;
    margin-bottom:0;
}

.process-section,
.service-process-section{
    padding:90px 0;
    background:#111827;
}

.process-number{
    width:58px;
    height:58px;
    border-radius:50%;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    margin-bottom:25px;
}

.about-cta,
.services-cta{
    padding:90px 0;
    background:
    radial-gradient(circle at top left, rgba(79,70,229,0.45), transparent 35%),
    radial-gradient(circle at bottom right, rgba(6,182,212,0.35), transparent 35%),
    #020617;
}

.about-cta h2,
.services-cta h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.about-cta p,
.services-cta p{
    color:#cbd5e1;
    font-size:18px;
    margin-bottom:30px;
}

/* ================================
   Services Page
================================ */

.services-hero{
    text-align:center;
}

.services-hero h1{
    font-size:54px;
    font-weight:800;
    margin-bottom:18px;
}

.services-hero p{
    max-width:720px;
    margin:0 auto;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
}

.services-main-section{
    padding:90px 0;
    background:
    linear-gradient(rgba(15,23,42,0.94), rgba(15,23,42,0.96)),
    radial-gradient(circle at 20% 20%, rgba(79,70,229,0.35), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(6,182,212,0.25), transparent 30%),
    #0f172a;
}

.professional-service-card{
    height:100%;
    background:
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
    border:1px solid rgba(255,255,255,0.12);
    border-radius:28px;
    padding:35px;
    transition:0.3s;
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.22);
}

.professional-service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
}

.professional-service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(6,182,212,0.4);
    box-shadow:0 30px 80px rgba(0,0,0,0.35);
}

.service-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.professional-service-card h4{
    font-size:22px;
    font-weight:800;
    margin-bottom:14px;
}

.professional-service-card p{
    color:#cbd5e1;
    line-height:1.7;
}

.professional-service-card ul{
    list-style:none;
    padding:0;
    margin:22px 0;
}

.professional-service-card ul li{
    color:#e5e7eb;
    margin-bottom:10px;
    display:flex;
    align-items:center;
    gap:10px;
}

.professional-service-card ul li::before{
    content:"✓";
    width:22px;
    height:22px;
    min-width:22px;
    border-radius:50%;
    background:rgba(6,182,212,0.18);
    color:#06b6d4;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:800;
}

.service-link{
    color:#06b6d4;
    font-weight:800;
}

.service-link:hover{
    color:white;
}

.why-choose-section{
    padding:100px 0;
    background:#111827;
}

.why-choose-section h2{
    font-size:42px;
    font-weight:800;
    margin:15px 0 20px;
}

.why-choose-section p{
    color:#cbd5e1;
    line-height:1.8;
}

.why-list{
    margin-top:30px;
    display:grid;
    gap:22px;
}

.why-item{
    display:flex;
    gap:16px;
}

.why-item i{
    color:#06b6d4;
    font-size:24px;
    margin-top:4px;
}

.why-item h5{
    font-weight:800;
    margin-bottom:6px;
}

.why-item p{
    margin-bottom:0;
}

.why-visual{
    min-height:450px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-main-card{
    width:340px;
    background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
    border:1px solid rgba(255,255,255,0.12);
    border-radius:32px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 30px 80px rgba(0,0,0,0.3);
}

.why-main-card i{
    width:85px;
    height:85px;
    border-radius:24px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin:0 auto 25px;
}

.why-main-card h3{
    font-weight:800;
}

.why-floating-card{
    position:absolute;
    background:white;
    color:#0f172a;
    padding:14px 18px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.why-floating-card i{
    color:#4f46e5;
}

.why-floating-card.one{
    top:55px;
    left:45px;
}

.why-floating-card.two{
    right:40px;
    top:140px;
}

.why-floating-card.three{
    bottom:65px;
    left:70px;
}

/* Mobile About + Services */
@media(max-width:991px){

    .about-hero h1,
    .services-hero h1{
        font-size:42px;
    }

    .about-story-section h2,
    .why-choose-section h2{
        font-size:34px;
    }

    .about-visual-card,
    .why-main-card{
        margin-top:20px;
    }

    .why-floating-card,
    .about-floating-box{
        display:none;
    }

}

@media(max-width:575px){

    .about-hero,
    .services-hero{
        padding:135px 0 70px;
    }

    .about-hero h1,
    .services-hero h1{
        font-size:34px;
    }

    .about-mini-grid{
        grid-template-columns:1fr;
    }

    .about-visual-card,
    .professional-service-card,
    .mission-card,
    .process-card{
        padding:26px;
    }

    .about-cta h2,
    .services-cta h2{
        font-size:30px;
    }

}

/* ================================
   Professional Homepage
================================ */

.home-hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:150px 0 90px;
    background:
    radial-gradient(circle at top left, rgba(79,70,229,0.55), transparent 35%),
    radial-gradient(circle at bottom right, rgba(6,182,212,0.4), transparent 35%),
    #0f172a;
}

.home-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.12);
    color:#ffffff;
    padding:10px 18px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:22px;
}

.home-badge i{
    color:#06b6d4;
}

.home-hero h1{
    font-size:60px;
    line-height:1.08;
    font-weight:900;
    margin-bottom:25px;
}

.home-hero p{
    color:#cbd5e1;
    font-size:19px;
    line-height:1.8;
    max-width:620px;
}

.home-hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:30px;
}

.hero-trust-row{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:30px;
}

.hero-trust-row div{
    color:#e5e7eb;
    font-weight:600;
}

.hero-trust-row i{
    color:#06b6d4;
    margin-right:6px;
}

.home-hero-visual{
    min-height:500px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-main-glass-card{
    width:370px;
    background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
    border:1px solid rgba(255,255,255,0.12);
    border-radius:34px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 35px 90px rgba(0,0,0,0.35);
    position:relative;
    overflow:hidden;
}

.hero-main-glass-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right, rgba(6,182,212,0.20), transparent 35%),
    radial-gradient(circle at bottom left, rgba(79,70,229,0.22), transparent 35%);
    pointer-events:none;
}

.hero-logo-orbit{
    width:110px;
    height:110px;
    border-radius:50%;
    margin:0 auto 25px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:52px;
    font-weight:900;
    position:relative;
    z-index:2;
}

.hero-logo-orbit::after{
    content:"";
    position:absolute;
    width:150px;
    height:65px;
    border:2px solid rgba(255,255,255,0.45);
    border-radius:50%;
    transform:rotate(-25deg);
}

.hero-main-glass-card h3,
.hero-main-glass-card p,
.hero-mini-stats{
    position:relative;
    z-index:2;
}

.hero-main-glass-card h3{
    font-size:30px;
    font-weight:900;
}

.hero-main-glass-card p{
    color:#cbd5e1;
    margin-bottom:0;
}

.hero-mini-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:30px;
}

.hero-mini-stats div{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:16px 10px;
}

.hero-mini-stats h4{
    font-weight:900;
    margin-bottom:3px;
}

.hero-mini-stats span{
    color:#cbd5e1;
    font-size:13px;
}

.hero-floating-card{
    position:absolute;
    background:#ffffff;
    color:#0f172a;
    padding:14px 18px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    box-shadow:0 20px 55px rgba(0,0,0,0.28);
}

.hero-floating-card i{
    color:#4f46e5;
}

.floating-one{
    top:70px;
    left:30px;
}

.floating-two{
    bottom:80px;
    left:10px;
}

.floating-three{
    right:5px;
    bottom:150px;
}

.home-services-section{
    padding:100px 0;
    background:#0f172a;
}

.home-service-card{
    height:100%;
    background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045));
    border:1px solid rgba(255,255,255,0.12);
    border-radius:28px;
    padding:35px;
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
}

.home-service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
}

.home-service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(6,182,212,0.4);
    box-shadow:0 30px 80px rgba(0,0,0,0.35);
}

.home-service-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.home-service-card h4{
    font-size:22px;
    font-weight:800;
    margin-bottom:14px;
}

.home-service-card p{
    color:#cbd5e1;
    line-height:1.7;
}

.home-service-card a{
    color:#06b6d4;
    font-weight:800;
}

.home-service-card a:hover{
    color:white;
}

.home-why-section{
    padding:100px 0;
    background:#111827;
}

.home-why-section h2{
    font-size:44px;
    font-weight:900;
    margin:15px 0 20px;
}

.home-why-section p{
    color:#cbd5e1;
    line-height:1.8;
    font-size:17px;
}

.home-why-list{
    display:grid;
    gap:22px;
    margin-top:30px;
}

.home-why-item{
    display:flex;
    gap:16px;
}

.home-why-item i{
    color:#06b6d4;
    font-size:24px;
    margin-top:4px;
}

.home-why-item h5{
    font-weight:800;
    margin-bottom:6px;
}

.home-why-card{
    background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
    border:1px solid rgba(255,255,255,0.12);
    border-radius:34px;
    padding:50px 40px;
    text-align:center;
    box-shadow:0 30px 80px rgba(0,0,0,0.3);
}

.why-big-icon{
    width:90px;
    height:90px;
    border-radius:26px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin:0 auto 25px;
}

.home-why-card h3{
    font-weight:900;
}

.why-card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:30px;
}

.why-card-grid div{
    background:rgba(255,255,255,0.08);
    border-radius:18px;
    padding:18px 10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    font-weight:700;
}

.why-card-grid i{
    color:#06b6d4;
}

.home-portfolio-section{
    padding:100px 0;
    background:
    linear-gradient(rgba(15,23,42,0.94), rgba(15,23,42,0.96)),
    radial-gradient(circle at 20% 25%, rgba(79,70,229,0.35), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(6,182,212,0.25), transparent 30%),
    #0f172a;
}

.home-section-subtext{
    color:#cbd5e1;
    margin-top:8px;
    margin-bottom:0;
}

.home-portfolio-card{
    height:100%;
    background:#1e293b;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:28px;
    overflow:hidden;
    transition:0.3s ease;
    box-shadow:0 20px 60px rgba(0,0,0,0.22);
}

.home-portfolio-card:hover{
    transform:translateY(-10px);
    border-color:rgba(6,182,212,0.35);
    box-shadow:0 30px 80px rgba(0,0,0,0.35);
}

.home-portfolio-img{
    width:100%;
    height:255px;
    object-fit:cover;
    background:#334155;
}

.home-portfolio-content{
    padding:26px;
}

.home-portfolio-content h4{
    font-weight:800;
    margin-bottom:12px;
}

.home-portfolio-content p{
    color:#cbd5e1;
    line-height:1.7;
}

.home-process-section{
    padding:100px 0;
    background:#111827;
}

.home-process-card{
    height:100%;
    background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045));
    border:1px solid rgba(255,255,255,0.12);
    border-radius:28px;
    padding:35px;
    transition:0.3s ease;
}

.home-process-card:hover{
    transform:translateY(-10px);
    border-color:rgba(6,182,212,0.35);
}

.home-process-card h4{
    font-weight:800;
    margin-bottom:12px;
}

.home-process-card p{
    color:#cbd5e1;
    line-height:1.7;
    margin-bottom:0;
}

.home-reviews-section{
    padding:100px 0;
    background:#0f172a;
}

.home-review-card{
    height:100%;
    background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045));
    border:1px solid rgba(255,255,255,0.12);
    border-radius:28px;
    padding:32px;
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
}

.home-review-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
}

.home-review-card:hover{
    transform:translateY(-10px);
    border-color:rgba(6,182,212,0.35);
}

.home-review-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
}

.home-review-avatar{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:50%;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:20px;
}

.home-review-top h4{
    margin:0;
    font-weight:800;
}

.home-review-top p{
    margin:4px 0 0;
    color:#94a3b8;
    font-size:14px;
}

.home-review-stars{
    display:flex;
    gap:6px;
    margin-bottom:18px;
}

.home-review-stars i{
    color:#facc15;
    font-size:17px;
}

.home-review-stars .empty-star{
    color:#64748b;
}

.home-review-card p{
    color:#dbeafe;
    line-height:1.8;
    margin-bottom:0;
}

.home-stats-section{
    padding:80px 0;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
}

.home-stat-card{
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:24px;
    padding:30px 20px;
}

.home-stat-card h3{
    font-size:46px;
    font-weight:900;
    margin-bottom:8px;
}

.home-stat-card p{
    margin-bottom:0;
    font-weight:700;
}

.home-final-cta{
    padding:100px 0;
    background:
    radial-gradient(circle at top left, rgba(79,70,229,0.45), transparent 35%),
    radial-gradient(circle at bottom right, rgba(6,182,212,0.35), transparent 35%),
    #020617;
}

.home-final-cta h2{
    font-size:46px;
    font-weight:900;
    margin:14px 0 18px;
}

.home-final-cta p{
    max-width:720px;
    margin:0 auto 32px;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
}

/* Homepage Responsive */
@media(max-width:991px){

    .home-hero h1{
        font-size:44px;
    }

    .home-hero-visual{
        min-height:430px;
    }

    .hero-floating-card{
        display:none;
    }

    .home-why-section h2{
        font-size:36px;
    }

}

@media(max-width:575px){

    .home-hero{
        padding:135px 0 70px;
    }

    .home-hero h1{
        font-size:36px;
    }

    .home-hero p{
        font-size:16px;
    }

    .hero-main-glass-card{
        width:100%;
        padding:35px 25px;
    }

    .hero-mini-stats,
    .why-card-grid{
        grid-template-columns:1fr;
    }

    .home-services-section,
    .home-why-section,
    .home-portfolio-section,
    .home-process-section,
    .home-reviews-section,
    .home-final-cta{
        padding:75px 0;
    }

    .home-final-cta h2{
        font-size:32px;
    }

    .home-service-card,
    .home-process-card,
    .home-review-card,
    .home-why-card{
        padding:26px;
    }

}

/* ================================
   Demo Viewer
================================ */

.demo-viewer{
    width:100%;
    height:100vh;
    background:#020617;
    display:flex;
    flex-direction:column;
}

.demo-topbar{
    height:74px;
    background:rgba(2,6,23,0.96);
    border-bottom:1px solid rgba(255,255,255,0.1);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 24px;
    color:white;
    position:relative;
    z-index:10;
}

.demo-topbar h5{
    margin:0;
    font-weight:800;
}

.demo-topbar span{
    color:#94a3b8;
    font-size:14px;
}

.demo-actions{
    display:flex;
    gap:10px;
}

.demo-frame{
    width:100%;
    height:calc(100vh - 74px);
    border:none;
    background:white;
}

.demo-error-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
    radial-gradient(circle at top left, rgba(79,70,229,0.55), transparent 35%),
    radial-gradient(circle at bottom right, rgba(6,182,212,0.4), transparent 35%),
    #0f172a;
    color:white;
}

.demo-error-page h1{
    font-size:46px;
    font-weight:900;
}

.demo-error-page p{
    color:#cbd5e1;
    margin:15px 0 25px;
}

@media(max-width:575px){

    .demo-topbar{
        height:auto;
        padding:14px;
        flex-direction:column;
        gap:12px;
        text-align:center;
    }

    .demo-frame{
        height:calc(100vh - 120px);
    }

}