/* =========================================
   CUSTOM THEME VARIABLES
   ========================================= */
   :root {
    --dark-blue: #16325c;
    --light-blue: #48aee3;
    --pale-blue: #e8f5fb;
    --color-main: #46C0FF;
    --yellow: #fcc827;
    --green: #5cb85c;
    --dark-green: #4cae4c;
    --gray-bg: #f4f6f8;
    --color-main-text: #123462;
}

/* =========================================
   BASE
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html{
    overflow-x: hidden;
}

body {
    color: var(--dark-blue);
    overflow-x: hidden;
    font-family: 'Nunito',sans-serif;
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
}

.speech-text {
    font-size: 25px;
    font-weight: 900;
    color: var(--dark-blue);
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

.fs-36 {font-size: 36px;}
.fs-32 {font-size: 32px;}
.fs-30 {font-size: 30px;}
.fs-20 {font-size: 20px;}
.fs-22 {font-size: 22px;}
.fs-24 {font-size: 24px;}
.fs-28 {font-size: 28px;}
.fs-18 {font-size: 18px;}
.fs-16 {font-size: 16px;}
.fs-14 {font-size: 14px;}
.fs-17 {font-size: 17px;}
.fs-40 {font-size: 40px;}
.fs-50 {font-size: 50px;}
.fs-35 {font-size: 35px;}
.fs-60 {font-size: 60px;}
.fs-55 {font-size: 55px;}
.fs-80 {font-size: 80px;}
.fs-12 {font-size: 12px;}
.fw-bold {font-weight: bold;}
.fw-900,.fw-900:hover {font-weight: 900;}
.fw-700 {font-weight: 700;}
.fw-800,.fw-800:hover {font-weight: 800;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-400 {font-weight: 400;}

.text-cl-main {color: var(--color-main-text);}
.text-cl-white {color: #fff;}
.text-under {text-decoration: none;}
.maxImgHeight{max-height: 75px;}

/* =========================================
   COLOR UTILITIES
   ========================================= */
.text-dark-blue  { color: var(--dark-blue); }
.text-yellow     { color: var(--yellow); }
.bg-light-blue   { background-color: var(--light-blue); }
.bg-dark-blue    { background-color: var(--dark-blue); }
.bg-pale-blue    { background-color: var(--pale-blue); }
.bg-yellow       { background-color: var(--yellow); }
.bg-red        { background-color: #eb393b; }

/* =========================================
   SECTION WRAPPERS
   ========================================= */
.section-white     { padding: 2rem 0; background-color: #fff; }
.section-pale-blue { padding: 1.5rem 0 3rem; }

/* =========================================
   TYPOGRAPHY HELPERS
   ========================================= */
.section-heading { font-size: 40px; }
.section-title   { font-size: 32px; }

.sound-icon {background: var(--color-main-text); border-radius: 4px; padding: 5px; display: inline-block; margin-bottom: 5px;}
.sound-icon i{color: #fff;font-size: 35px;}

/* =========================================
   UNDERLINE IMAGE EFFECT
   ========================================= */
.img-underline {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.img-underline::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 15px;
    background-image: url('../img/bord.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    bottom: -5px;
    left: -10%;
    z-index: -1;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    background-color: transparent;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
body.scrolled #header {
  background: var(--light-blue);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header-brand {
    font-size: 20px;
    font-weight: bold;
    color: var(--yellow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    -webkit-text-stroke: 1px #1a1a1a;
}

.header-logo {
    height: 40px;
    width: auto;
}

 .dblocktext{display: block;}
/* =========================================
   SEARCH BAR
   ========================================= */
.search-container {
    background: white;
    border-radius: 20px;
    padding: 5px 15px;
    min-width: 180px;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
    font-size: 14px;
}

.search-btn {
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
    font-size: 14px;
}

/* =========================================
   CTA BUTTON
   ========================================= */
.cta-btn {
    background: linear-gradient(to bottom, #60cc68, #3dae49);
    border: none;
    color: var(--color-main-text);
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 30px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 0 var(--dark-green);
    transition: transform 0.1s, box-shadow 0.1s;
}
.cta-btn:hover  { color: var(--dark-blue); }
.cta-btn:active { transform: translateY(4px); box-shadow: none; }
.cta-sub        { font-size: 22px; font-weight: 600; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    /* background: linear-gradient(to bottom, var(--light-blue) 0%, #a2dcf5 60%, #ffffff 100%); */
    background: linear-gradient(to bottom, var(--color-main) 0%, #FFFFFF 100%);
    padding: 10rem 0 3rem;
}

.hero-container {
    position: relative;
}

/* Hero top row — angel + speech bubble */
.hero-top-row {
    position: absolute;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    top: 0;
}

.hero-angel-img {
    position: relative;
    /* height: 150px; */
    width: auto;
    flex-shrink: 0;
    z-index: 2;
    top: 110px;
  right: 25px
}

/* Speech bubble wrapper — positioned next to angel */
.speech-bubble-wrap {
    flex: 1;
    position: relative;
    z-index: 1;
    top: -50px;
  right: 30px;
}

/* Speech bubble — image background */
.speech-bubble {
    background-image: url('../img/angel-total-sc.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: 1.5rem 2rem 2.4rem 1.8rem;
    display: inline-block;
    min-width: 200px;
    min-height: 150px;
    width: 100%;
    max-width: 320px;
}

/* Text inside bubble */


/* Medal badge — top-right of bubble */
.medal-img {
    position: absolute;
    right: -18px;
    top: -18px;
    height: 70px;
    width: auto;
}

/* Hero blue banner */
.hero-banner {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-banner h1 {
    font-size: 40px;
}

.house-img {
    position: absolute;
    right: -11px;
    bottom: -124px;
    width: auto;
    z-index: 10;
}
.chair-img {
    position: absolute;
    right: 50px;
    top: 245px;
    width: auto;
    z-index: 10;
}

/* Hero content area */
.hero-content {
    margin: 3rem auto 0;
}

.hero-text-lg  { font-size: 26px; }
.hero-text-xl  { font-size: 28px; }
.fw-600 {font-weight: 600;}
.bottomBr {border-bottom: 5px solid var(--yellow);}
.psBack {background: var(--yellow); color: #000;padding-left: 6px; padding-right: 3px;border-radius: 5px;}
/* Side badge */
.side-badge {
    position: absolute;
    left: -30px;
    top: 180px;
    background-color: var(--yellow);
    border-radius: 50%;
    width: 240px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    transform: rotate(-8deg);
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* =========================================
   WAVE DIVIDERS
   ========================================= */
.wave-divider {
    width: 100%;
    height: 100px;
    background-image: url('../img/wave-1.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.wave-flip {
    transform: scaleY(-1);
}

/* =========================================
   STAT CIRCLES
   ========================================= */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.stat-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
}

.stat-circle.yellow { background-color: var(--yellow); color: var(--dark-blue); }
.stat-circle.blue   { background-color: var(--dark-blue); color: white; }


/* =========================================
   BULLET LIST
   ========================================= */
.bullet-list          { list-style: none; }
.bullet-list li       { position: relative; padding-left: 30px; margin-bottom: 15px; }
.bullet-list li::before {
    content: '•';
    color: var(--yellow);
    position: absolute;
    left: 0;
    top: -16px;
    font-size: 40px;
}

/* =========================================
   FEATURES ROW
   ========================================= */
.features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    margin-bottom: 3rem;
}

.feature-item { flex: 0 0 auto; }

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    padding: 5px;
}


/* Inline angel icon */
.angel-inline { height: 55px; width: auto; }

/* =========================================
   HOW IT WORKS - STEPS
   ========================================= */
.how-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.blueback {
    background: #e4f4fe;
}

.step-icon-box {
    flex-shrink: 0;
    width: 100px;
    margin-right: 20px;
}

.br-15 {border-radius: 15px;}
.bx-sh {box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 2px;}

/* =========================================
   SOLUTION CARDS
   ========================================= */
.solution-card-header {
    background-color: var(--dark-blue);
    color:var(--yellow);
    text-align: center;
    padding: 10px 22px;
    font-size: 28px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.audio-icon { height: 50px; width: auto; display: block; }

/* =========================================
   COMPARISON CARDS (Old Way vs Angels Way)
   ========================================= */
.comparison-card {
    padding: 1.5rem;
    border-radius: 1rem;
    position: relative;
    /* height: 100%; */
    margin-top: 80px;
}

.comparison-card--gray { border: 5px solid var(--pale-blue); }
.comparison-card--blue { background-color: var(--pale-blue); }

.comparison-icon-wrap {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparison-icon    { height: 70px; width: auto; }
.comparison-icon-lg { height: 80px; width: auto; }

.comparison-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.bullet-yellow     { color: var(--yellow);     font-size: 28px; line-height: 1; margin-right: 0.75rem; flex-shrink: 0; }
.bullet-light-blue { color: var(--light-blue); font-size: 28px; line-height: 1; margin-right: 0.75rem; flex-shrink: 0; }

/* =========================================
   EXTRAS / BUBBLES SECTION
   ========================================= */
.extras-section {
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.extras-subheading {
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-main-text);
}

/* Removed old special/showcase/alt variants */

/* =========================================
   EXTRAS DESIGN (FINAL)
   ========================================= */
.extras-section--design-8 {
    background:
        radial-gradient(circle at 50% 35%, rgba(72, 174, 227, 0.20) 0%, rgba(72, 174, 227, 0) 38%),
        radial-gradient(circle at 25% 78%, rgba(252, 200, 39, 0.18) 0%, rgba(252, 200, 39, 0) 35%),
        radial-gradient(circle at 78% 82%, rgba(252, 200, 39, 0.16) 0%, rgba(252, 200, 39, 0) 32%),
        #ffffff;
}

/* Removed old design variants; kept only final design-8 below */

/* =========================================
   EXTRAS SECTION - DESIGN 8 (ORBIT)
   ========================================= */
.extras-section--orbit .extras-subheading {
    max-width: 840px;
}

@media not all {

/* =========================================
   EXTRAS SECTION - DESIGN 9 (RIBBON STEPS)
   ========================================= */
.extras-section--ribbon .extras-subheading {
    max-width: 860px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 10 (MAGAZINE)
   ========================================= */
.extras-section--magazine .extras-subheading {
    max-width: 860px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 11 (MINIMAL)
   ========================================= */
.extras-section--minimal .extras-subheading {
    max-width: 760px;
    color: #305c8c;
}

/* =========================================
   EXTRAS SECTION - DESIGN 12 (DARK SPOTLIGHT)
   ========================================= */
.extras-section--dark-spotlight .extras-subheading {
    max-width: 820px;
    color: #d9eeff;
}

.extras-section--dark-spotlight .img-underline {
    color: #fff;
}

/* =========================================
   EXTRAS SECTION - DESIGN 13 (MILESTONE RAIL)
   ========================================= */
.extras-section--milestone-rail .extras-subheading {
    max-width: 840px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 15 (PANEL RAIL)
   ========================================= */
.extras-section--panel-rail .extras-subheading {
    max-width: 840px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 17 (BENTO ASYM)
   ========================================= */
.extras-section--bento-asym .extras-subheading {
    max-width: 850px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 18 (SPOTLIGHT STRIPS)
   ========================================= */
.extras-section--spotlight-strips .extras-subheading {
    max-width: 860px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 19 (CAROUSEL LANE)
   ========================================= */
.extras-section--carousel-lane .extras-subheading {
    max-width: 860px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 20 (PINBOARD)
   ========================================= */
.extras-section--pinboard .extras-subheading {
    max-width: 860px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 21 (TAB STRIPS)
   ========================================= */
.extras-section--tab-strips .extras-subheading {
    max-width: 860px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 22 (ZIG SPLIT)
   ========================================= */
.extras-section--zig-split .extras-subheading {
    max-width: 850px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 23 (FRAMED TIMELINE)
   ========================================= */
.extras-section--framed-timeline .extras-subheading {
    max-width: 860px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 24 (RADIAL HUB)
   ========================================= */
.extras-section--radial-hub .extras-subheading {
    max-width: 860px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 25 (HONEYCOMB)
   ========================================= */
.extras-section--honeycomb .extras-subheading {
    max-width: 850px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 26 (FOLDED MAP)
   ========================================= */
.extras-section--folded-map .extras-subheading {
    max-width: 860px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 27 (METRO ROUTE)
   ========================================= */
.extras-section--metro-route .extras-subheading {
    max-width: 860px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 28 (ORBITAL QUADRANT)
   ========================================= */
.extras-section--orbital-quadrant .extras-subheading {
    max-width: 860px;
}

/* =========================================
   EXTRAS SECTION - DESIGN 29 (EXECUTIVE BOARD)
   ========================================= */
.extras-section--executive-board .extras-subheading {
    max-width: 860px;
    color: #2c587f;
}

/* =========================================
   EXTRAS SECTION - DESIGN 30 (COMMAND CENTER)
   ========================================= */
.extras-section--command-center .extras-subheading {
    max-width: 860px;
    color: #2e5a83;
}

/* =========================================
   EXTRAS SECTION - DESIGN 31 (BLUEPRINT BOARD)
   ========================================= */
.extras-section--blueprint-board .extras-subheading {
    max-width: 860px;
    color: #2e5a83;
}

/* =========================================
   EXTRAS SECTION - DESIGN 32 (STRATEGY CANVAS)
   ========================================= */
.extras-section--strategy-canvas .extras-subheading {
    max-width: 860px;
    color: #2e5a83;
}

/* =========================================
   EXTRAS SECTION - DESIGN 33 (DOSSIER LAYOUT)
   ========================================= */
.extras-section--dossier-layout .extras-subheading {
    max-width: 860px;
    color: #2d597f;
}

/* =========================================
   EXTRAS SECTION - DESIGN 34 (PORTFOLIO MATRIX)
   ========================================= */
.extras-section--portfolio-matrix .extras-subheading {
    max-width: 900px;
    color: #4a5f78;
}

/* Removed extra design-35 to design-37 blocks */
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer { background-color: #fff; text-align: center; padding-bottom: 3rem; }

.footer-quote {
    background-color: var(--pale-blue);
    padding: 1.5rem;
    font-weight: bold;
    font-style: italic;
    font-size: 18px;
    margin-bottom: 3rem;
}

.footer-cta { padding-top: 0; }


/* =========================================
   RESPONSIVE — TABLET (max 768px)
   ========================================= */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    /* .search-container { width: 100%; } */

/*
    .hero-top-row {
        height: 150px;
    }

    .hero-top-row {
        flex-direction: column;
        align-items: center;
        min-height: auto;
    } */

    .hero-angel-img {
        /* height: 160px; */
        margin-right: 0;
        margin-bottom: -20px;
    }

    /* .speech-bubble {
        max-width: 100%;
        padding: 2rem 2rem 3rem;
        min-height: 180px;
    } */

    /* .speech-text { font-size: 21px; } */

    .medal-img { height: 75px; right: -10px; top: -10px; }

    .house-img {
        height: 80px;
        right: 0;
        bottom: -30px;
    }

    /* .hero-content {
        margin-top: 2rem;
    } */

    /* .side-badge { display: none !important; } */



    /* Steps */
    .how-step { flex-direction: column; gap: 0.75rem; }
    /* .step-icon-box { width: 60px; } */

    /* Comparison cards */
    .comparison-card { margin-top: 50px; }
}

/* =========================================
   RESPONSIVE — MOBILE (max 576px)
   ========================================= */
@media (max-width: 576px) {
    /* .hero-top-row {
        flex-direction: column;
        padding: 0 1rem;
    } */

    .hero-angel-img {
        /* height: 120px; */
        margin-bottom: -15px;
    }

    .speech-bubble {
        padding: 1.5rem 1.5rem 2.5rem;
        min-height: 160px;
    }

    /* .speech-text { font-size: 18px; } */

    /* .medal-img { height: 60px; right: -5px; top: -5px; } */

    .hero-banner h1 { font-size: 21px; }

    /* .house-img { display: none; } */

    /* .medal-img { height: 35px; } */



    .cta-btn { font-size: 16px; padding: 10px 20px; }

    .footer-quote { font-size: 15px; }

    .wave-divider { height: 60px; }

    .section-white,
    .section-pale-blue { padding: 2rem 0; }
}

/* =========================================
   RESPONSIVE — LARGE SCREENS (min 992px)
   ========================================= */
@media (min-width: 992px) {
    /* .hero-top-row { min-height: 180px; } */

    /* .hero-angel-img { height: 170px; } */

    .speech-bubble {
       max-width: 270px;
    min-height: 188px;
        padding: 1.6rem 2.2rem 2.6rem 2rem;
    }

    /* .speech-text { font-size: 27px; } */

    .medal-img { height: 100px; right: -20px; top: -20px; }
    .hero-banner-main {padding-top: 30px;}

    /* .stat-circle { width: 130px; height: 130px; } */

    .wave-divider { height: 150px; }
}

@media(max-width: 1400px){
    .side-badge { left: -100px; }
    .house-img { right: -50px;}
}
@media(max-width: 1399px){
    .chair-img{right: -122px;}
    .hero-angel-img {
        right: 116px;
        height: 210px;
        top: 160px;
      }
}
@media(max-width: 1199px){
    .side-badge { left: -30px;bottom: 10px;top: inherit; }
    .house-img { right: -100px;}
    .stat-circle {width: 190px;height: 190px;}
}
@media(max-width: 991px){
   .hero-top-row {position: relative;}
   .house-img{right: -70px;top:20px;height: 180px;}
   .hero-angel-img{top: 20px;right: 0;}
   .imageParentSec{position: relative;}
   .side-badge {left: auto;bottom: auto;top: inherit;margin: 0 auto;position: relative;}
   .chair-img{top: 25px;right: 0px;}
}
@media(max-width: 768px){
    .mobileFullCont{ width: 100%; max-width: 100%; padding-left: 20px;padding-right: 20px; }
    .house-img{right: 0;top: 20px;height: 180px;}
    .hero-content{margin-top: 80px !important;}
    .hero-angel-img {right: 0;}
    .search-container {display: none !important;}
    .dblocktext{display: contents;}
    .stat-circle {width: 220px; height: 220px;margin: 0 auto;}
    .fs-35 {font-size: 28px;}
    .cta-btn {font-size: 24px;}
    .fs-28{font-size: 24px;}
    .fs-24 {font-size: 22px;}
    .hero-banner h1 {font-size: 30px;}
    .hero-banner .fs-40 {font-size: 30px;}
    .hero-text-lg,.hero-text-xl{font-size: 24px;}
}
@media(max-width: 576px){
    /* .hero-top-row {padding-top: 50px;} */
    /* .house-img {position: inherit;} */
    .schoolBuildingMain {text-align: end;}
    .hero-content {margin-top: 30px !important;}
    .chair-img{height: 150px;margin-bottom: 20px;}
    .hero-angel-img{margin-bottom: 20px;}
    .extras-subheading {font-size: 20px;}
}
@media(max-width: 450px){
    .hero-angel-img {height: 150px;margin-bottom: 20px;}
    /* .speech-text{font-size: 20px;} */
    .speech-bubble{min-width: 170px;}
}

/* =========================================
   EXTRAS GRID - DESIGN 8 (ORBIT)
   ========================================= */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
}

.extras-grid--design-8 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 0;
}

.extras-grid--orbit {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 0;
}

.extras-grid--orbit::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 420px;
    height: 420px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px dashed rgba(22, 50, 92, 0.18);
    pointer-events: none;
}

.extras-grid--orbit::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 420px;
    height: 420px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.35) 0%, rgba(232, 245, 251, 0.35) 100%),
        url("../img/angel-400.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 12px 30px rgba(20, 72, 118, 0.12);
    z-index: 0;
}

.extras-grid--orbit .extra-card {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    border: 2px solid var(--yellow);
    /* background: #fff;? */
    background: rgba(255,255,255,0.95);
    min-height: 165px;
    padding: 1.1rem 1rem 0.95rem;
    box-shadow: 0 10px 24px rgba(20, 72, 118, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* .extras-grid--orbit .extra-card::before {
    content: "";
    position: absolute;
    top: 16px;
    right: 14px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 3px rgba(252, 200, 39, 0.28);
} */

.extras-grid--orbit .extra-card:nth-child(1) { grid-column: 1 / span 4; grid-row: 1; }
.extras-grid--orbit .extra-card:nth-child(2) { grid-column: 9 / span 4; grid-row: 1; }
.extras-grid--orbit .extra-card:nth-child(3) {
    grid-column: 5 / span 4;
    grid-row: 2;
    min-height: 165px;
    border: 2px solid var(--yellow);
    box-shadow: 0 16px 34px rgba(20, 72, 118, 0.16);
}
.extras-grid--orbit .extra-card:nth-child(4) { grid-column: 1 / span 4; grid-row: 3; }
.extras-grid--orbit .extra-card:nth-child(5) { grid-column: 9 / span 4; grid-row: 3; }

.extras-grid--orbit .extra-card-number {
    width: 44px;
    height: 44px;
    margin-bottom: 0.6rem;
    font-size: 16px;
    background: var(--dark-blue);
    color: var(--yellow);
    display: block;
  border-radius: 50%;
  padding-left: 12px;
  padding-top: 10px;
  font-weight: 800;
}

.extras-grid--orbit .extra-card-text {
    font-size: 20px;
    line-height: 1.42;
}

.extras-grid--orbit .extra-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 18px 30px rgba(20, 72, 118, 0.16);
}
