/*==================================================
    SINGLE COURSE HERO
==================================================*/

.orbit-service-hero{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:
    radial-gradient(circle at top left,#dbeafe 0%,transparent 45%),
    radial-gradient(circle at bottom right,#ede9fe 0%,transparent 40%),
    linear-gradient(135deg,#f8fbff,#eef5ff);
}

/* Decorative Blobs */

.orbit-service-hero::before,
.orbit-service-hero::after{

    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    z-index:0;

}

.orbit-service-hero::before{

    width:260px;
    height:260px;
    background:#60a5fa40;
    top:-80px;
    left:-80px;

}

.orbit-service-hero::after{

    width:300px;
    height:300px;
    background:#8b5cf640;
    right:-100px;
    bottom:-100px;

}

.orbit-container{

    position:relative;
    z-index:2;

}

/*============================
GRID
=============================*/

.orbit-hero-grid{

    display:grid;
    grid-template-columns:1.15fr .85fr;
    align-items:center;
    gap:70px;

}

/*============================
BADGE
=============================*/

.orbit-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:8px 18px;

    border-radius:50px;

    background:#ffffff;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.orbit-badge-dot{

    width:8px;
    height:8px;

    border-radius:50%;

    background:#2563eb;

}

/*============================
TITLE
=============================*/

.orbit-service-title{

    font-size:58px;
    line-height:1.15;

    font-weight:800;

    margin:22px 0;

    color:#0f172a;

}

.orbit-service-desc{

    font-size:19px;

    line-height:1.9;

    color:#64748b;

    max-width:650px;

}

/*============================
COURSE META
=============================*/

.orbit-course-meta{

    display:flex;
    flex-wrap:wrap;
    gap:16px;

    margin:35px 0;

}

.orbit-meta-item{

    display:flex;
    align-items:center;
    gap:8px;

    padding:12px 18px;

    border-radius:14px;

    background:#ffffff;

    box-shadow:0 10px 25px rgba(15,23,42,.05);

    font-size:15px;

    font-weight:600;

}

/*============================
RATING
=============================*/

.orbit-rating{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:30px;

}

.orbit-rating .stars{

    color:#f59e0b;

    font-size:20px;

}

/*============================
BUTTONS
=============================*/

.orbit-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.orbit-btn{

    padding:15px 34px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.orbit-btn-primary{

    color:#fff;

    background:linear-gradient(90deg,#2563eb,#7c3aed);

}

.orbit-btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(37,99,235,.25);

}

.orbit-btn-outline{

    background:#fff;

    color:#2563eb;

    border:2px solid #2563eb;

}

.orbit-btn-outline:hover{

    background:#2563eb;

    color:#fff;

}

/*============================
RIGHT CARD
=============================*/

.orbit-glass-card{

    position:flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center;

    padding:55px;

    border-radius:30px;

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(22px);

    box-shadow:

    0 25px 60px rgba(15,23,42,.10);

    text-align:center;
    

          max-width: 80%;
  max-height: 80%;



}

.orbit-main-icon{

    width: 240px;
    position: center;

    max-width:100%;

    transition:.5s;
    
  
}

.orbit-glass-card:hover .orbit-main-icon{

    transform:scale(1.06);

}

/* Floating Circles */

.orbit-floating{

    position:absolute;

    border-radius:50%;

    animation:orbitFloat 5s ease-in-out infinite;

}

.orbit-blue{

    width:18px;
    height:18px;

    background:#2563eb;

    top:30px;
    left:30px;

}

.orbit-orange{

    width:22px;
    height:22px;

    background:#f97316;

    right:35px;
    top:45px;

}

.orbit-cyan{

    width:14px;
    height:14px;

    background:#06b6d4;

    bottom:40px;
    left:50px;

}

@keyframes orbitFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}













/*==================================================
    OVERVIEW SECTION
==================================================*/

.orbit-overview{

    padding:100px 0;

    background:#ffffff;

}

.orbit-section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

}

.orbit-section-title{

    font-size:42px;

    font-weight:800;

    line-height:1.2;

    color:#0f172a;

    margin:20px 0;

}

.orbit-section-title span{

    background:linear-gradient(90deg,#2563eb,#7c3aed);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.orbit-section-subtitle{

    color:#64748b;

    font-size:18px;

    line-height:1.8;

}

.orbit-overview-card{

    max-width:950px;

    margin:auto;

    padding:45px;

    background:#fff;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(15,23,42,.07);

    border:1px solid #eef2f7;

}

.orbit-overview-card p{

    color:#475569;

    font-size:17px;

    line-height:2;

    margin-bottom:20px;

}

.orbit-overview-card h2,
.orbit-overview-card h3{

    color:#0f172a;

    margin:30px 0 15px;

}

.orbit-overview-card ul{

    margin-left:20px;

}

.orbit-overview-card li{

    margin-bottom:12px;

}










/*==================================================
    FEATURES
==================================================*/

.orbit-features{

    padding:100px 0;

    background:#f8fbff;

}

.orbit-feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.orbit-feature-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    text-align:center;

    transition:.35s;

    border:1px solid #eef2f7;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

}

.orbit-feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(37,99,235,.12);

}

.orbit-feature-icon{

    width:70px;

    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    background:linear-gradient(135deg,#2563eb,#7c3aed);

    color:#fff;

}

.orbit-feature-card h3{

    font-size:20px;

    color:#0f172a;

}
















/*==================================================
    PRICING
==================================================*/

.orbit-pricing{

    padding:110px 0;

    background:#fff;

}

.orbit-pricing-card{

    max-width:650px;

    margin:auto;

    text-align:center;

    padding:60px;

    border-radius:30px;

    background:linear-gradient(135deg,#ffffff,#f8fbff);

    box-shadow:0 30px 70px rgba(15,23,42,.08);

    position:relative;

}

.orbit-pricing-badge{

    display:inline-block;

    margin-bottom:20px;

    background:#2563eb;

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

}

.orbit-price{

    font-size:52px;

    font-weight:800;

    color:#2563eb;

    margin:25px 0;

}

.orbit-price-list{

    list-style:none;

    padding:0;

    margin:35px 0;

}

.orbit-price-list li{

    padding:12px 0;

    color:#475569;

    border-bottom:1px solid #eef2f7;

}

.orbit-price-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}










/*==================================================
    WHY CHOOSE
==================================================*/

.orbit-why{

    padding:100px 0;

    background:#f8fbff;

}

.orbit-why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.orbit-why-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

}

.orbit-why-card:hover{

    transform:translateY(-10px);

}

.orbit-why-icon{

    font-size:42px;

    margin-bottom:20px;

}

.orbit-why-card h3{

    margin-bottom:15px;

    color:#0f172a;

}

.orbit-why-card p{

    color:#64748b;

    line-height:1.8;

}





















/*==================================================
    FAQ SECTION
==================================================*/

.orbit-faq{

    padding:100px 0;

    background:#ffffff;

}

.orbit-faq-card{

    max-width:900px;

    margin:auto;

    background:#fff;

    border-radius:24px;

    padding:40px;

    box-shadow:0 20px 60px rgba(15,23,42,.06);

}

/* If using Gutenberg headings */

.orbit-faq-card h3{

    cursor:pointer;

    padding:18px 20px;

    margin:0;

    border-radius:14px;

    background:#f8fbff;

    transition:.3s;

    font-size:18px;

}

.orbit-faq-card h3:hover{

    background:#2563eb;

    color:#fff;

}

.orbit-faq-card p{

    padding:18px 20px;

    margin:0 0 18px;

    color:#64748b;

    line-height:1.9;

}













/*==================================================
    FINAL CTA
==================================================*/

.orbit-final-cta{

    padding:110px 0;

    background:linear-gradient(135deg,#2563eb,#7c3aed);

}

.orbit-final-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#fff;

}

.orbit-final-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    margin-bottom:20px;

}

.orbit-final-card h2{

    font-size:46px;

    line-height:1.2;

    margin-bottom:20px;

}

.orbit-final-card p{

    font-size:18px;

    line-height:1.9;

    opacity:.95;

}

.orbit-final-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;

}

.orbit-final-cta .orbit-btn-outline{

    color:#fff;

    border:2px solid #fff;

    background:transparent;

}

.orbit-final-cta .orbit-btn-outline:hover{

    background:#fff;

    color:#2563eb;

}













/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px){

.orbit-hero-grid{

grid-template-columns:1fr;

gap:50px;

}

.orbit-service-title{

font-size:42px;

}

.orbit-section-title{

font-size:34px;

}

.orbit-final-card h2{

font-size:34px;

}

}

@media(max-width:767px){

.orbit-service-hero{

padding:70px 0;

}

.orbit-service-title{

font-size:34px;

}

.orbit-service-desc{

font-size:16px;

}

.orbit-course-meta{

justify-content:center;

}

.orbit-buttons{

justify-content:center;

}

.orbit-price{

font-size:40px;

}

.orbit-pricing-card{

padding:35px 25px;

}

.orbit-overview-card{

padding:30px;

}

.orbit-feature-card{

padding:28px;

}

.orbit-why-card{

padding:28px;

}

.orbit-final-card h2{

font-size:30px;

}

.orbit-final-buttons{

flex-direction:column;

}

.orbit-btn{

width:100%;

text-align:center;

}

}












/*==================================================
    ANIMATIONS
==================================================*/

.orbit-feature-card,
.orbit-why-card,
.orbit-pricing-card,
.orbit-overview-card{

opacity:0;

transform:translateY(40px);

transition:all .8s ease;

}

.orbit-visible{

opacity:1;

transform:translateY(0);

}