:root {
    --primary-color: #14c321;
    --primary-hover: #0bc31e;
    --dark-green: #064E3B;
    --black: #000000;
    --white: #ffffff;
    --light-grey: #f8fafc;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --font-main: "Plus Jakarta Sans", "Plus Jakarta Sans Placeholder", sans-serif;
    --font-heading: "Plus Jakarta Sans", "Plus Jakarta Sans Placeholder", sans-serif;
    --font-serif: "Playfair Display", "Playfair Display Placeholder", serif;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --h1font-size: 64px;
    --h2font-size: 44px;
    --h3font-size: 32px;
    --h4font-size: 24px;
    --h2wight: 600;
}
main [data-aos=zoom-in]{
        transform: scale(.9);
}
main [data-aos=fade-up]{
transform: translate3d(0, 40px, 0);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    width: 100%;
    display: block;
}

h1,
h2,
h3,
h4 {
    color: var(--text-dark);
    font-weight: 600;
}

h1 {
    font-size: var(--h1font-size);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h2 {
    font-size: var(--h2font-size);
    font-weight: var(--h2wight);
    line-height: 1.25;
    margin-bottom: 20px;
}

.sub-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.badge {
    background: var(--primary-color);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 32px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-main);
    gap: 12px;
    background-color: var(--primary-color);
    color: var(--black);
    font-size: 0.9rem;
    text-transform: none;
    min-width: 180px;
}

.btn:hover {
    box-shadow: none;
}

.arrow {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.arrow i {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.6, 0.01, 0, 1);
}

.arrow i::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -32px;

}

.btn:hover .arrow i {
    transform: translateX(33px);
}

.btn-primary,
.btn-secondary,
.btn-outline-white {
    background-color: var(--primary-color) !important;
    color: var(--black) !important;
    border: none !important;
    padding: 8px 10px 8px 28px !important;
}

.btn-outline-dark {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #212121 !important;
    padding: 8px 8px 8px 28px !important;
}

.header-actions .btn,
.mobile-actions .btn {
    padding: 6px 10px 6px 20px !important;
    min-width: auto;
    background-color: #ffffff !important;
    border: 1px solid #acacac !important;
    font-weight: 500;
}

.white {
    color: #ffff !important;
}

.header-actions .btn:hover,
.mobile-actions .btn:hover {
    box-shadow: none;
}

.header-actions .arrow,
.mobile-actions .arrow {
    width: 32px;
    height: 32px;
    font-size: 1rem;
}

.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: -15px 0;
    position: relative;
    z-index: 10;
}

.divider-plus {
    font-size: 24px;
    color: #cbd5e1;
    font-weight: 300;
    line-height: 1;
    background: transparent;
}



.header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.logo img {
    height: 35px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 40px;
}


.mobile-actions {
    display: none;
}

.nav a {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--black);
    font-size: 16px;
}

/* Container and Reset */
.nav-links a {
    text-decoration: none;
    display: inline-block;
    color: #333;
}

.nav-in-link {
    overflow: hidden;
    position: relative;
    display: block;
}


.def-txt, .hvr-txt {
    display: block;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transition-duration: .5s;
}

.hvr-txt {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(105%);
    color: var(--primary-hover);             
}


.nav-links a:hover .def-txt {
    transform: translateY(-105%);
}


.nav-links a:hover .hvr-txt {
    transform: translateY(0%);
}

.nav-links a.active .def-txt {
    font-weight: 600;
    color: var(--primary-hover);
}
.hamburger {
    display: none;
    cursor: pointer;
    width: 25px;
    height: 18px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    position: absolute;
    transition: var(--transition);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

section {
    padding: 120px 0;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 1px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 17px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eaeaea7a;
}

.divider-plus {
    color: #1E1E1E;
    font-size: 14px;
    font-weight: 400;
    padding: 0 10px;
    z-index: 1;
    line-height: 1;
    margin-top: 31px;
}

.section-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.section-header.text-right {
    margin-left: auto;
    text-align: right;
}

.strtMr {
    margin: unset !important;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.dark-bg {
    background-color: var(--black);
    color: var(--white);
}

.dark-bg h1,
.dark-bg h2,
.dark-bg h3 {
    color: var(--white);
}

.hero {
    padding-top: 80px;
    padding-bottom: 120px;
    background-color: #F8F8F6;
    height: auto;
}


.hero .container {
    height: 100%;
}

.hero .row {
    align-items: flex-end !important;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 5px 15px 5px 5px;
    border-radius: 50px;
    width: fit-content;
    border: 1px solid #d6d6d6;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.badge-num {
        box-shadow: 0 12px 15px #0bc32226, inset 0 0.301813px 0.663989px #ffffff0a, inset 0 2.5px 5.5px #ffffff4d;
    background-color: #0bc322;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: var(--h1font-size);
    line-height: 1.05;
    margin-bottom: 2rem;
    font-weight: 500;
    padding-top: 20px;
}

.hero-content h1 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.hero-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-image-container {
    position: relative;
    padding-left: 40px;
    display: flex;
    justify-content: end;
}



.hero-main-img {
    position: relative;
    z-index: 2;
    width: 435px;
    max-height: 100%;
    object-fit: contain;
    margin-bottom: -120px;
}

/* About Section */

.about-section {
    background-color: #fff;
    background: radial-gradient(circle, rgb(255 255 255 / 36%) 0%, rgba(255, 255, 255, 0.72) 100%), 
              url('../assets/bgpattrn.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.about-layout {
    margin-top: 40px;
}

.about-subtitle {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #444;
    margin-bottom: 10px;
}

.about-subtitle .dot,
.help-subtitle .dot,
.vision-content .dot,
.featured-badge .green-dot {
    width: 8px;
    height: 8px;
    background-color: #22C55E;
    border-radius: 50%;
    display: inline-block;
}

.about-title {
    font-size: var(--h2font-size);
    font-weight: var(--h2wight);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-title i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.about-main-text {
    font-size: 33px;
    line-height: 1.3;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 4rem;
}

.tag {
    color: #000000;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    cursor: default;
}

.about-section .btn-primary {
    margin-top: 1rem;
}

.card-box {
    padding: 80px 85px 30px 60px;
    background-color: #0A3033;
    border-radius: 20px;
    min-height: 618px;
    position: relative;
    overflow: hidden;
}

.card-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 55px;
    width: 120px;
    height: 220px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 99999999999;
    transform: skewY(319deg);
}

.card-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, #3A6B53 5%, #27544B 30%, #1A4546 55%, #0D3438 80%, #082C30 100%);
    z-index: 0;
}

.clr {
    background: #F0F3F8 !important;
}

.clr::before {
    content: "";
    position: absolute;
    left: 0;
    top: 55px;
    width: 120px;
    height: 220px;
    border-right: 1px solid #C7C7C7;
    border-bottom: 1px solid #C7C7C7;
    z-index: 99999999999;
    transform: skewY(319deg);
}

.clr::after {
    background: #F0F3F8 !important;
}

.card2Clr h3 {
    color: #000 !important;
}

.card2Clr p {
    color: #000 !important;
}



.help-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #444;
    margin-bottom: 10px;
}

.card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;

}

.card-content h3 {
    color: #fff;
    font-size: 30px;
    max-width: 400px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-content p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    padding-left: 100px;
    z-index: 2;
}

.card-content p::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 80px;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background-color: #ccff00;
}







.professionals {
    background: #ffffff;
    padding: 120px 0;
}

.professionals .section-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prof-title {
    font-size: var(--h2font-size);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    color: #111;
}

.prof-title i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    margin-top: 5px;
    font-size: 1.1em;
}

.prof-desc {
    font-size: 18px;
    color: #757575;
    margin-bottom: 0;
    font-weight: 500;
}

.prof-flex-grid {
    margin-top: 40px;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    margin: auto;
}

.prof-card-alt {

    background: #F7F8F5;
    padding: 35px 30px;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.prof-card-alt:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.prof-icon-box {
    width: 38px;
    height: 38px;
    background: #14c321;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(0, 204, 68, 0.35);
}

.prof-icon-box img {
    width: 26px;
}

.prof-card-alt p {
    font-size: 20px;
    font-weight: 600;
    color: #2b2b2b;
    line-height: 1.5;
    text-align: left;
    margin: 0;
}


.learning-program {
    background: #ffffff;
    padding: 120px 0;
}

.course-grid {
    margin-top: 60px;
}

.course-card-alt {
    background: #F7F8F5;
    min-height: 527px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.course-card-alt:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.course-thumb {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.course-thumb img,
.course-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 44%;
    z-index: 222;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #0BC31E;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 8px 15px rgba(0, 204, 68, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-overlay:hover {
    transform: scale(1.1);
}

.course-body {
    padding: 25px 15px;
    flex-grow: 1;
}

.course-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.course-body p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.course-footer {
    padding: 0 15px 20px;
}

.btn-eco {
    width: 100%;
    height: 64px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 30px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-eco-lime {
    background: linear-gradient(158deg, rgba(217, 243, 115, 0.69) -40%, rgba(217, 243, 115, 1) 130%);
    color: #000;
}

.btn-eco-lime:hover {
    transform: none;
}

.btn-eco-grey {
    background: #E5E7EB;
    color: #6B7280;
    justify-content: start;
    padding: 0 25px;
    cursor: not-allowed;
}

.eco-arrow {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.eco-arrow i {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.6, 0.01, 0, 1);
}

.eco-arrow i::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -30px;
}

.btn-eco:hover .eco-arrow i {
    transform: translateX(30px);
}



/* --- THE MILLIONDOTS WAY REDESIGN --- */
.high-method {
    background: #020402;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

/* Background Glowing Orbs */
.high-method::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 228, 42, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.high-method .prof-title {
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.high-method .prof-title i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.high-method .method-desc-v2 {
    color: #888;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.method-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 50px;
}

.method-badge-v2 .badge-text-v2 {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
}

.method-title-v2 {
    font-size: 54px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
}

.method-title-v2 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.method-timeline-container {
    padding-top: 80px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.method-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mt-20 {
    margin-top: 20px;
}

.timeline-line-v2 {
    position: absolute;
    top: 100px;
    bottom: 100px;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 10px;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #0BC31E;
    box-shadow: 0 0 20px rgba(214, 245, 106, 0.6);
    transition: height 0.1s linear;
    border-radius: 10px;
}

.method-row-v2 {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.method-media-v2 {
    flex: 1;
    padding-right: 80px;
}

.method-media-v2 img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.method-row-v2:hover .method-media-v2 img {
    transform: translateY(-10px);
}

.method-marker-v2 {
    width: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marker-dot-v2 {
    width: 44px;
    height: 44px;
    background: #000;
    border: 2px solid #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #14c321;
    z-index: 5;
    transition: all 0.4s ease;
}

.method-row-v2.active .marker-dot-v2 {
    background: #14c321;
    color: #000;
    border-color: #14c321;
}

.method-marker-v2 {
    width: 120px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.method-info-v2 {
    flex: 1;
    padding-left: 80px;
    text-align: left;
}

.method-info-v2 h3 {
    font-size: 42px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.method-info-v2 p {
    font-size: 17px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 35px;
}

.choose-intro {
    position: sticky;
    top: 120px;
}

.method-list-v2 {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.method-list-v2 li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 16px;
    margin-bottom: 12px;
}

.method-list-v2 li i {
    color: #0de42a;
    font-size: 13px;
}

.link-discover-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.link-discover-v2:hover {
    color: #14c321;
}

.arrow-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 20px;
    height: 20px;
}

.arrow-text i {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.6, 0.01, 0, 1);
}

.arrow-text i::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -20px;
}

.link-discover-v2:hover .arrow-text i {
    transform: translateX(20px);
}

/* Reverse Variant */
.method-row-v2.reverse-v2 {
    flex-direction: row-reverse;
}

.method-row-v2.reverse-v2 .method-media-v2 {
    padding-right: 0;
    padding-left: 80px;
}

.method-row-v2.reverse-v2 .method-info-v2 {
    padding-left: 0;
    padding-right: 80px;
    text-align: left;
}

/* .method-row-v2.reverse-v2 .method-list-v2 li {
    flex-direction: row-reverse;
} */

@media (max-width: 991px) {
    .timeline-line-v2 {
        display: none;
    }

    .method-row-v2,
    .method-row-v2.reverse-v2 {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 100px;
    }

    .method-media-v2,
    .method-info-v2,
    .method-row-v2.reverse-v2 .method-media-v2,
    .method-row-v2.reverse-v2 .method-info-v2 {
        padding: 0;
        text-align: center;
    }

    .method-marker-v2 {
        display: none;
    }

    .method-list-v2 li,
    .method-row-v2.reverse-v2 .method-list-v2 li {
        justify-content: center;
        flex-direction: row;
    }
}

.discover-link:hover i {
    transform: translateX(8px);
}


.why-choose {
    padding: 130px 0 120px;
    background-color: #F7F8F5;
}

.choose-layout {
    margin-top: 40px;
}

.choose-title {
    font-size: var(--h2font-size);
    font-weight: var(--h2wight);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.choose-title i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.choose-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.highlight-green {
    color: #22C55E;
    font-weight: 600;
}

.btn-explore {
    margin-top: 20px;
    background: linear-gradient(158deg, rgba(217, 243, 115, 0.69) -40%, rgba(217, 243, 115, 1) 130%);
    color: #000;
    padding: 10px 10px 10px 30px;
    border-radius: 100px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-explore:hover {
    transform: none;
}

.arrow-pill {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-explore:hover .arrow-pill {
    transform: none;
}

.choose-grid {
    margin-top: 0;
}

.choose-card-new {
    min-height: 260px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
}

.choose-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border-color: #22C55E;
}

.choose-icon-box {
    width: 48px;
    height: 48px;
    background: #14c321;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.choose-icon-box img {
    width: 26px;
}

.choose-card-new h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.choose-card-new p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.4;
}

.choose-card-new.full-width {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.choose-card-new.full-width .choose-icon-box {
    margin-bottom: 15px;
}

.millionaire-hub {
    padding: 10px 0;
}

.vision-banner {
    background: radial-gradient(circle at 5% 5%, rgba(6, 78, 59, 1) 0%, rgba(0, 0, 0, 1) 50%);
    background-color: #000;
    border-radius: 40px;
    margin: 40px 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.vision-logo-side {
    padding: 80px;
    display: flex;
    justify-content: center;
}

.vision-logo-side img {
    width: 100%;
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
    transform: scale(1.1);
}

.vision-content {
    color: var(--white);
    text-align: left;
    padding: 80px 40px 80px 80px;
}

.vision-content .about-subtitle {
    color: rgba(255, 255, 255, 0.8);
    justify-content: flex-start;
    margin-bottom: 20px;
}

.vision-content .dot {
    background-color: #22C55E;
}

.vision-title {
    font-size: var(--h2font-size);
    font-weight: var(--h2wight);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.vision-title i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.vision-desc p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-weight: 400;
}

.vision-desc p:last-child {
    margin-bottom: 0;
}

.testimonials-new {
    padding: 100px 0 !important;
    background-color: #fff;
    overflow: hidden;
}

.testi-title {
    font-size: var(--h2font-size);
    font-weight: var(--h2wight);
    line-height: 1.2;
    margin-bottom: 20px;
}

.testi-title i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.testi-subtitle-text {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.testi-scroller-container {
    position: relative;
    width: 100%;
}

.testi-scroller-container::before,
.testi-scroller-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testi-scroller-container::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.testi-scroller-container::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.testi-row {
    display: flex;
    overflow: hidden;
    margin-bottom: 30px;
    user-select: none;
}

.testi-track {
    display: flex;
    gap: 30px;
    animation: scroll-right 40s linear infinite;
    padding: 10px 0;
}

.testi-track.scroll-reverse {
    animation: scroll-left 40s linear infinite;
}

.testi-card-new {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 40px;
    width: 400px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}


.testi-stars {
    color: #22C55E;
    font-size: 0.9rem;
    margin-bottom: 25px;
    display: flex;
    gap: 5px;
}

.testi-card-new p {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 400;
    white-space: normal;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.user-meta h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}

.user-meta span {
    font-size: 0.85rem;
    color: #64748b;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 2));
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-100% / 2));
    }

    100% {
        transform: translateX(0);
    }
}


.trusted-by {
    padding: 120px 0;
    background-color: #fff;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

.trusted-title {
    font-size: var(--h2font-size);
    font-weight: var(--h2wight);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.trusted-title i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.trusted-desc {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 70px;
    line-height: 1.6;
}

.media-grid {
    border-top: 1px solid #f1f1f1;
    border-left: 1px solid #f1f1f1;
    margin: 0;
}

.media-item {
    padding: 30px 25px;
    border-right: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.3s ease;
}



.media-item img {
    max-width: 140px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.download-app {
    padding: 0px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.dotted-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    z-index: 1;
    pointer-events: none;
}



.vision-banner {
    background: radial-gradient(circle at 0% 0%, #104132 0%, #03140f 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.millionaire-hub {
    margin: 0 10px;
}

.vision-banner::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.35) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.vision-logo-side {
    position: relative;
    z-index: 2;
}

.vision-logo-side img {
    max-width: 320px;
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
}

.vision-logo-side img:hover {
    transform: translateY(-10px) scale(1.05);
}

.vision-content {
    padding-left: 60px;
    position: relative;
    z-index: 2;
}

.vision-content .about-subtitle {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.vision-title {
    font-size: var(--h2font-size);
    font-weight: var(--h2wight);
    line-height: 1.05;
    margin-bottom: 40px;
    color: #fff;
    letter-spacing: -2px;
}

.vision-title i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.vision-desc p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-weight: 400;
}

.download-app .container {
    position: relative;
    z-index: 2;
}

.app-mockup-wrapper {
    position: relative;
    display: inline-block;
}

.download-mockup {
    max-width: 950px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
}



.app-title {
    font-size: var(--h2font-size);
    font-weight: var(--h2wight);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: -1.8px;
    position: relative;
    z-index: 5;
}

.app-title i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F8FAFC;
    padding: 10px 30px;
    border-radius: 100px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E2E8F0;
    width: fit-content;
}

.store-btn:hover {
    background: #F8FAFC;
    transform: none;
    box-shadow: none;
    border-color: #E2E8F0;
}

.store-icon {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa-google-play {
    color: #4CAF50;
}

.fa-apple {
    color: #000;
}

.store-text {
    text-align: left;
}

.store-subtext {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1;
    margin-bottom: 1px;
    font-weight: 500;
}

.store-maintext {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
}



.final-cta {
    padding: 120px 0;
}

.cta-banner {
    background-color: #0d0d0d;
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ctagrd{
    position: absolute;
    top: 0;
    right: 0;
}
.cta-glow {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 60% 40%, rgba(34, 197, 94, 0.6) 0%, rgba(34, 197, 94, 0.2) 50%, transparent 80%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #22C55E 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: var(--h2font-size);
    font-weight: var(--h2wight);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1.5px;
}

.cta-title i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 750px;
    margin: 0 auto 100px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 6px 7px 6px 13px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: none;
}

.cta-btn:hover .cta-icon i {
    transform: translateX(33px);
}

.cta-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.6, 0.01, 0, 1);
}

.cta-icon i::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -32px;
}

.cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    overflow: hidden;
    position: relative;
    background: #fff;
    color: #000;
}

.cta-btn-white .cta-icon {
    background: #000;
    color: #fff;
}

.cta-btn-lime {
    background: linear-gradient(
184deg, rgb(217 243 115 / 18%) 0%, rgba(217, 243, 115, 1) 0%);
    color: #000;
}



.cta-btn-lime .cta-icon {
    background: #fff;
    color: #000;
}

.cta-btn-white {
    background: #fff;
    color: #000;
}

.cta-btn-white .cta-icon {
    background: #000;
    color: #fff;
}

.faq {
    padding: 10px 0 125px 0;
}

.faq-layout {
    margin-top: 40px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 25px;
}

.faq-main-title {
    font-size: var(--h2font-size);
    font-weight: var(--h2wight);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
    letter-spacing: -1.5px;
}

.faq-main-title i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 20px 30px;
    transition: all 0.3s ease;
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0;
}

.faq-question h3 {
    font-size: 19px;
    font-weight: 600;
    color: #111;
    margin: 0;
}
.faq-left{
    position: sticky;
    top: 100px;
}
.faq-toggle-btn {
    width: 30px;
    height: 30px;
    background-color: #00CC44;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: none;
}

.faq-toggle-btn i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    padding: 0;
}

.faq-answer p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 15px;
    padding-bottom: 20px;
    padding-right: 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-item.active .faq-toggle-btn i {
    transform: rotate(180deg);
}

.reveal-init {
    opacity: 0;
    will-change: transform, opacity, filter;
}

h1.reveal-init,
h2.reveal-init,
h3.reveal-init {
    transform: translateY(40px);
    -webkit-mask-image: linear-gradient(90deg, #000 50%, transparent 60%);
    mask-image: linear-gradient(90deg, #000 50%, transparent 60%);
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

h1.reveal-init.reveal,
h2.reveal-init.reveal,
h3.reveal-init.reveal {
    animation: heroRevealStaggered 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

/* Paragraphs, Buttons & Spans: Soft Fade-Rise Reveal (WITHOUT Blur) */
p.reveal-init,
span.reveal-init,
a.reveal-init,
div.reveal-init:not(h1, h2, h3, img),
i.reveal-init {
    transform: translateY(25px);
    filter: none;
    /* Removed blur as requested */
}

p.reveal-init.reveal,
span.reveal-init.reveal,
a.reveal-init.reveal,
div.reveal-init.reveal:not(h1, h2, h3, img),
i.reveal-init.reveal {
    animation: textRevealSimple 1s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

/* Images: Zoom-Fade Reveal (WITHOUT Blur) */
img.reveal-init {
    transform: scale(0.95) translateY(20px);
    filter: none;
}

img.reveal-init.reveal {
    animation: imageRevealZoom 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@keyframes imageRevealZoom {
    0% {
        opacity: 0;
        filter: none;
        transform: scale(0.95) translateY(20px);
    }

    100% {
        opacity: 1;
        filter: none;
        transform: scale(1) translateY(0);
    }
}

@keyframes textRevealSimple {
    0% {
        opacity: 0;
        filter: none;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        filter: none;
        transform: translateY(0);
    }
}

/* Special staggering for hero section if multiple items are reveal-init */
.hero h1.reveal-init.reveal,
.about-hero-v3 h1.reveal-init.reveal,
.forex-hero h1.reveal-init.reveal,
.contact-hero h1.reveal-init.reveal {
    animation-delay: 0.2s;
}

.hero p.reveal-init.reveal,
.about-hero-v3 p.reveal-init.reveal,
.forex-hero p.reveal-init.reveal,
.contact-hero p.reveal-init.reveal {
    animation-delay: 0.5s;
}

.method-item {
    transition: transform 0.5s ease;
}

.method-item:hover {
    transform: scale(1.02);
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(158deg, rgb(217 243 115 / 69%) -40%, rgba(217, 243, 115, 1) 130%);
    border-radius: 60px;
    color: #000;
    padding: 8px 8px 8px 24px;
    font-weight: 500;
    width: fit-content;
    text-align: center;
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.btn-primary:hover::after {
    opacity: 0;
}

.footer {
    background-color: #000;
    color: var(--white);
    padding: 100px 0 60px;
    position: relative;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo img {
    height: 44px;
    width: auto;
    filter: brightness(1);
    margin-bottom: 40px;
}

.footer-brand-title {
    font-size: 23px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 35px;
    font-size: 1.1rem;
    max-width: 320px;
}

.footer-cta-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding-bottom: 5px;
    transition: var(--transition);
}

.footer-cta-link i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-cta-link:hover {
    color: #00CC44;
    border-color: #00CC44;
}

.footer-cta-link:hover i {
    transform: translateX(8px);
}


.links-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 35px;
}

.links-col a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 1.0rem;
    transition: var(--transition);
}

.links-col a:hover {
    color: #fff;
}

.social-intro {
    color: #888;
    margin-bottom: 25px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 74px;
    height: 40px;
    background: #121212;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: #14c321;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    position: relative;
}
.footer-bottom p{
    font-size: 14px;
    font-weight: 500;
    color: #979797;
}
.footer-bottom .copylink{
    color: #00CC44;
}

.footer-big-svg {
    user-select: none;
    pointer-events: none;
    max-width: 1030px;
    margin: auto;
    margin-top: 20px;
}

.footer-big-svg img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.4;
}

.copyright {
    color: #555;
    font-size: 1rem;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   PAGE SPECIFIC STYLES
   ========================================================================== */

/* --- COMMON INNER PAGE UTILS --- */
.section-divider-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 1px;
    background: #eee;
    margin: 0 auto;
    width: calc(100% - 160px);
}

.divider-plus-v2 {
    position: absolute;
    background: #fff;
    padding: 0 15px;
    color: #ddd;
    font-size: 24px;
    font-weight: 300;
}

/* --- ABOUT PAGE (WHO WE ARE) --- */
.about-section-v2 {
    padding: 120px 0;
    background: #fff;
}

.about-title-v2 {
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-top: 15px;
}

.about-title-v2 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--green-accent);
}

.about-subtitle-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
}

.about-subtitle-v2 .dot {
    width: 8px;
    height: 8px;
    background: var(--green-accent);
    border-radius: 50%;
}

.about-main-text-v2 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
    color: #111;
    margin-bottom: 35px;
}

.about-tags-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-v2 {
    padding: 10px 22px;
    background: #f8f8f8;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.v-card-v3 {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.4s ease;
}

.v-card-v3:hover {
    border-color: var(--green-accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.v-card-v3 h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}

.v-card-v3 p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.team-v3 {
    padding: 140px 0;
    background: #fff;
}

.m-card-v3 {
    position: relative;
    background: #f0f0f0;
    border-radius: 35px;
    aspect-ratio: 4 / 5.2;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.m-card-v3:hover {
    transform: translateY(-10px);
}

.m-img-v3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.m-card-v3:hover .m-img-v3 {
    transform: scale(1.05);
}

.m-notch-v3 {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 25px 40px 25px 25px;
    min-width: 200px;
    border-top-left-radius: 40px;
    z-index: 10;
    transition: all 0.3s ease;
}

.m-notch-v3::before {
    content: "";
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-right-radius: 40px;
    box-shadow: 20px 20px 0 20px #fff;
    pointer-events: none;
}

.m-notch-v3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-right-radius: 40px;
    box-shadow: 20px 20px 0 20px #fff;
    pointer-events: none;
}

.m-notch-v3 h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111;
}

.m-notch-v3 span {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.m-socials-v3 {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 20;
    opacity: 0;
    transform: translate(15px, -15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.m-card-v3:hover .m-socials-v3 {
    opacity: 1;
    transform: translate(0, 0);
}

.s-link-v3 {
    width: 44px;
    height: 44px;
    background: #fff;
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.s-link-v3:hover {
    background: var(--green-accent);
    color: #fff;
    transform: scale(1.1);
}

/* --- CONTACT PAGE --- */
.contact-hero {
    padding: 160px 0 120px;
    background-color: #ffffff;
    background: radial-gradient(circle, rgb(255 255 255 / 36%) 0%, rgba(255, 255, 255, 0.72) 100%), 
              url('../assets/bgpattrn.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.contact-hero h1 {
    font-size: var(--h1font-size);
    font-weight: 500;
    color: #111;
    letter-spacing: -3.5px;
    line-height: 1.05;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero h1 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: #050505;
    display: block;
}

.contact-hero p {
    font-size: 18px;
    color: #555;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-main-section {
    padding: 0 0 100px;
}

.contact-card-wrap {
    background: #f7f8f5;
    border-radius: 30px;
    overflow: hidden;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-info-panel {
    background: #0d0d0d;
    padding: 60px 50px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #22C55E 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.contact-info-panel h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.contact-info-panel>p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.info-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
}

.info-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #ffffff12;
    border: 1px solid #ffffffb3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.info-item-v2 .info-text span {
    display: block;
    font-size: 16px;
    color: rgb(255 255 255);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-item-v2 .info-text p,
.info-item-v2 .info-text a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s;
}

.info-item-v2 .info-text a:hover {
    color: #00CC44;
}

.info-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 40px 0;
}

.follow-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.social-icons-dark {
    display: flex;
    gap: 12px;
}

.social-icon-pill {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-pill:hover {
    background: #91ff00;
    color: #000;
    border-color: #91ff00;
}

.contact-form-panel {
    padding: 60px 50px;
}

.contact-form-panel h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: #111;
}

.contact-form-panel>p {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
}

.form-field {
    position: relative;
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(11, 195, 34, 0.07);
}

.form-field textarea {
    resize: none;
    min-height: 163px;
}

.btn-submit-v2 {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 16px 16px 16px 30px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-submit-v2:hover {
    background: var(--green);
    transform: none;
}

.btn-submit-v2 .arrow-circle-submit {
    width: 44px;
    height: 44px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-submit-v2:hover .arrow-circle-submit {
    transform: none;
}

.support-section {
    padding: 120px 0;
}

.support-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.support-section-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #111;
}

.support-section-header h2 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.support-card-v2 {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}



.support-icon-v2 {
    width: 60px;
    height: 60px;
    background: #0de42a;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}



.support-card-v2 h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.support-card-v2 p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.support-email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.support-email-link:hover .arrow-text i {
    transform: translateX(20px);
}

.support-email-link i {
    font-size: 12px;
}

.support-card-v2:hover .support-email-link {
    color: #0de42a;
}

.support-card-v2:hover .support-email-link i {
    transform: translateX(5px);
}



/* --- BLOG PAGE --- */
.hero-v2 {
    padding: 180px 0 120px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.hero-content-v2 h1 {
    font-size: clamp(42px, 7vw, 84px);
    font-weight: 700;
    line-height: .95;
    margin-bottom: 30px;
    letter-spacing: -3px;
    color: #111;
}

.hero-content-v2 h1 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: #ccc;
}

.hero-content-v2 p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 45px;
    max-width: 580px;
}

.hero-float-img {
    max-width: 100%;
    height: auto;
    animation: float-v2 6s ease-in-out infinite;
}

@keyframes float-v2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.blog-section-v2 {
    padding: 120px 0;
    background: #fff;
}

.blog-card-v2 {
    background: #fff;
    border-radius: 30px;
    padding: 45px;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card-v2:hover {
    border-color: var(--green-accent);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.blog-card-v2 h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0 15px;
    color: #111;
}

.blog-card-v2 h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-v2 h3 a:hover {
    color: var(--green-accent);
}

.blog-card-v2 p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.blog-read-more-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.blog-read-more-v2 i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-read-more-v2:hover {
    color: var(--green-accent);
}

.blog-read-more-v2:hover i {
    transform: translateX(5px);
}

.cta-banner-sync {
    background: #0a0a10;
    border-radius: 40px;
    padding: 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: 100px;
}

.cta-banner-sync h2 {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
}

.cta-banner-sync h2 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--primary-color);
}

.cta-banner-sync p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-sync {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primary-color);
    color: #111;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-sync:hover {
    background: var(--primary-color);
    color: #111;
    transform: none;
}

.featured-news-v2 {
    margin-bottom: 80px;
}

.featured-card-v2 {
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.featured-card-v2:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.news-meta-v2 {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.news-meta-v2 .badge-v2 {
    background: var(--primary-color);
    color: #111;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
}

.featured-card-v2 h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #111;
}

.featured-card-v2 h2 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--green-accent);
}

.news-sidebar-v2 {
    background: #fcfcfc;
    border-radius: 35px;
    padding: 40px;
    border: 1px solid #f2f2f2;
    height: 100%;
}

.news-sidebar-v2 h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green-accent);
    border-radius: 50%;
    animation: pulse-v2 2s infinite;
}

@keyframes pulse-v2 {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(13, 228, 42, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(13, 228, 42, 0);
    }

    100% {
        transform: translateY(0.95);
        box-shadow: 0 0 0 0 rgba(13, 228, 42, 0);
    }
}

.trending-item-v2 {
    padding: 20px 0;
    border-bottom: 1px solid #efefef;
}

.trending-item-v2:last-child {
    border: none;
}

.trending-item-v2 span {
    font-size: 11px;
    font-weight: 700;
    color: var(--green-accent);
    text-transform: uppercase;
}

.trending-item-v2 h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0 0;
    line-height: 1.4;
}

.trending-item-v2 h5 a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.trending-item-v2 h5 a:hover {
    color: var(--green-accent);
}

/* --- CORE COURSE PAGE (FOREX-TRADING) --- */
.forex-hero {
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    background-color: #fff;
    background: radial-gradient(circle, rgb(255 255 255 / 36%) 0%, rgba(255, 255, 255, 0.72) 100%), 
              url('../assets/bgpattrn.svg');
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.intro-video-section {
    padding-top: 0;
}

.forex-hero h1 {
    font-size: var(--h1font-size);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -3px;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.hero-sub {
    font-size: 20px;
    color: #555;
    max-width: 560px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.btn-become-trader {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(158deg, rgb(217 243 115 / 69%) -40%, rgba(217, 243, 115, 1) 130%);
    color: #1a1a1a;
    padding: 12px 12px 12px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(217, 243, 115, 0.3);
}

.btn-become-trader:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(217, 243, 115, 0.3);
}

.decoration-metal {
    position: absolute;
    transform: translateY(-50%);
    z-index: 10;
    width: 350px;
    pointer-events: none;
}

.decoration-metal.left {
    top: 45%;
    left: -195px;
}

.decoration-metal.right {
    top: 415px;
    right: -199px;
}

.video-wrapper-v3 {
    border: 2px solid #fff;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 16 / 9;
}

.video-wrapper-v3 img,
.video-wrapper-v3 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-wrapper-v3 video {
    display: none;
    /* Hide video initially */
    position: absolute;
    top: 0;
    left: 0;
}

.play-overlay-v3 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #fff;
    border-top-left-radius: 35px;
    padding: 20px 30px 20px 25px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.play-overlay-v3::before {
    content: '';
    position: absolute;
    top: -34px;
    right: 0;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at top left, transparent 35px, #fff 35.5px);
}

.play-overlay-v3::after {
    content: '';
    position: absolute;
    bottom: 0;
    transform: rotate(91deg);
    left: -34px;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at bottom left, transparent 35px, #fff 35.5px);
}

.play-btn-v3 {
    width: 48px;
    height: 48px;
    background: #0de42a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.partners-marquee-section {
    padding: 10px 0;
    background: #fff;
    overflow: hidden;
}

.partners-title-v3 {
    font-size: 24px;
    font-weight: 500;
    color: #111;
    text-align: center;
    margin-bottom: 40px;
}

.partners-title-v3 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: #124c3a;
}

.marquee-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 80px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 25%, black 75%, transparent);
    mask-image: linear-gradient(to right, transparent, black 25%, black 75%, transparent);
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: 60px;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-content img {
    object-fit: contain;
    transition: all 0.3s ease;
}

.marquee-content img:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

@keyframes scrollMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 80px));
    }
}

.reveal-text-section {
    padding: 70px 20px 100px;
    background: #fff;
    text-align: center;
}

.reveal-text {
    font-size: 28px;
    line-height: 1.6;
    color: #d0d0d0;
}

.features-title-v4 {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 70px;
    color: #111;
}



.feature-visual {
    margin-top: auto;
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatars-orbit .orbit-img {
    width: 100%;
    animation: rotateOrbit 20s linear infinite;
}

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.play-notif-v4 {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 120%;
    background: #0de42a;
    color: #fff;
    padding: 12px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.coin-visual-v4 img {
    width: 450px;
    transform: translate(81px, 44px);
    height: auto;
}

.time-complete b {
    font-size: 46px;
    font-weight: 700;
    line-height: 45px;
}

.chat-bubbles-v4 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.bubble {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.bubble.green {
    background: #0de42a;
    color: #fff;
}

.bubble.dark {
    background: #0a3134;
    color: #fff;
}

.plus-btn-chat {
    width: 44px;
    height: 44px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.plus-btn-chat:hover {
    transform: none;
    background: #111;
}

.slider-fill {
    height: 100%;
    width: 75%;
    background: #0de42a;
    border-radius: 10px;
}

.cert-badge-v4 {
    position: absolute;
    background: #0de42a;
    color: #fff;
    padding: 22px 50px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 26px;
    z-index: 5;
    min-width: 280px;
    border-bottom: 6px solid #0bb922;
}



.steps-title-v4 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 75px;
}





.step-pill-v4 {
    background: #0de42a;
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 35px;
}

.strategy-card-v5 {
    background: #f9faf7;
    border-radius: 32px;
    padding: 50px 70px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    transition: transform 0.3s ease;
    transform-origin: center top;
}

.strategy-num-v5 {
    font-size: 84px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1;
}

.video-testi-v7 {
    padding: 100px 0 150px;
    background: #fff;
    overflow: hidden;
}

.video-scroller-v7 {
    position: relative;
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
}

.video-track-v7 {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll-left-v7 40s linear infinite;
}

@keyframes scroll-left-v7 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-915px);
    }
}

.video-card-v7 {
    width: 320px;
    height: 420px;
    background: #f0f0f0;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .forex-hero h1 {
        font-size: 48px;
    }

    .video-card-v7 {
        width: 260px;
        height: 400px;
    }
}

/* --- INFO BADGES SECTION (FROM IMAGE 1) --- */
.info-badges-section {
    padding: 100px 0;
    background: #050505;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.info-badges-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.info-badges-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
}

.info-badge-item {
    padding: 40px 60px;
    text-align: left;
}

.badge-icon-wrap {
    margin-bottom: 30px;
}

.khda-badge-img {
    height: 60px;
    width: auto;
}

.sparkle-icon-v4 {
    font-size: 32px;
    color: #fff;
}

.info-badge-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-badge-item p {
    font-size: 15px;
    color: #888;
    margin-bottom: 30px;
}

.info-badge-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.info-badge-item a:hover {
    color: #0de42a;
}

/* --- COURSE FEATURES VISUALS (FROM IMAGE 4) --- */
.features-grid-section {
    padding: 120px 0;
    background: #fcfcfc;
}

.features-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 25px;
    justify-content: center;
    width: 100%;
}

.dot-green {
    width: 8px;
    height: 8px;
    background: #0de42a;
    border-radius: 50%;
}

.phone-mockup-v4 {
    position: relative;
    max-width: 240px;
    margin: 0 auto;
}

.phone-mockup-v4 img {
    width: 100%;
    height: auto;
}

.play-notif-v4 {
    position: absolute;
    top: 25%;
    left: -15%;
    background: #0de42a;
    color: #fff;
    padding: 12px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 130%;
    box-shadow: 0 15px 30px rgba(13, 228, 42, 0.2);
}

.play-notif-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.play-notif-text b {
    font-size: 14px;
    display: block;
}

.play-notif-text span {
    font-size: 10px;
    opacity: 0.8;
}

.session-num {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
}

.time-complete {
    text-align: left;
    margin-bottom: 20px;
}

.time-complete span {
    font-size: 13px;
    color: #888;
    display: block;
}

.time-complete b {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.time-complete b i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: #0de42a;
}

.support-visual-v4 {
    width: 100%;
}

.support-info {
    text-align: left;
    margin-bottom: 15px;
}

.support-info span {
    font-size: 12px;
    color: #888;
}

.support-info b {
    font-size: 32px;
    font-weight: 700;
    display: block;
}

.chat-row-1,
.chat-row-2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.bubble-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}


.price-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    font-weight: 700;
}

.price-val {
    font-size: 38px;
    font-weight: 700;
    margin: 5px 0 15px;
}

.price-val span {
    font-size: 20px;
    opacity: 0.5;
}

.slider-track {
    height: 6px;
    background: #eef1ee;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
}

.slider-thumb {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #0de42a;
    border-radius: 50%;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #888;
}

.cert-visual-v4 {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cert-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(13, 228, 42, 0.2) 0%, transparent 70%);
}

.cert-badge-v4 {
    background: #0de42a;
    color: #fff;
    padding: 20px 40px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 24px;
    box-shadow: 0 15px 35px rgba(13, 228, 42, 0.3);
    border-bottom: 6px solid #0bb922;
}

/* --- STRATEGIES SECTION REFINEMENTS (IMAGE 2) --- */
.strategies-section-v5 {
    padding: 120px 0;
    background: #fff;
}

.strategy-container-v5 {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.strategies-tag-v5 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
}

.strategies-title-v5 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
}

.strategies-title-v5 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.strategy-content-v5 {
    text-align: left;
}

.strategy-content-v5 h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.strategy-content-v5 ul {
    list-style: none;
    padding: 0;
}

.strategy-content-v5 ul li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.strategy-content-v5 ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #d0d0d0;
    border-radius: 50%;
}

/* --- STEPS SECTION REFINEMENTS (IMAGE 5) --- */


.steps-tag-v4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* --- TEAM SECTION (IMAGE 6) --- */
.team-section-v6 {
    padding: 120px 0;
    background: #fff;
}

.team-tag-v6 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-title-v6 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
}

.team-title-v6 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.team-member-card-v6 {
    text-align: center;
    margin-bottom: 40px;
}

.team-img-wrapper-v6 {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 25px;
    aspect-ratio: 1;
}

.team-img-v6 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card-v6:hover .team-img-v6 {
    transform: scale(1.05);
}

.team-social-pill-v6 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.team-img-wrapper-v6:hover .team-social-pill-v6 {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.team-social-pill-v6 a {
    color: #111;
    font-size: 14px;
    transition: color 0.3s;
}

.team-social-pill-v6 a:hover {
    color: #0de42a;
}

.team-member-card-v6 h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-member-card-v6 p {
    font-size: 14px;
    color: #888;
}

.team-info-wrapper-v6 {
    height: 100%;
}

.team-info-card-v6 {
    background: #f7f9f7;
    border-radius: 30px;
    padding: 60px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-img img {
    width: 350px;
    padding-top: 50px;
}

.mesh-bg-v6 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 100% 0%, rgba(13, 228, 42, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.team-info-card-v6 h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.card-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
    max-width: 400px;
}

.team-stats-v6 {
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
}

.stat-num-v6 {
    font-size: 48px;
    font-weight: 700;
    display: block;
}

.stat-label-v6 {
    font-size: 14px;
    color: #888;
}

.btn-meet-team {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    background: #d0ff71;
    padding: 10px 25px;
    border-radius: 100px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    transition: all 0.3s;
    z-index: 2;
    position: relative;
    font-size: 14px;
}

.btn-meet-team:hover {
    background: #111;
    color: #fff;
}

@media (max-width: 991px) {
    .info-badges-divider {
        display: none;
    }

    .info-badge-item {
        padding: 40px 20px;
        text-align: center;
    }

    .info-badge-item a {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .strategies-title-v5,
    .team-title-v6 {
        font-size: 36px;
    }

    .strategy-card-v5 {
        flex-direction: column;
        gap: 30px;
        padding: 40px;
    }

    .strategy-num-v5 {
        font-size: 64px;
    }

    .team-info-card-v6 {
        padding: 40px;
    }
}

/* --- COURSE PAGE PREMIUM STYLES RESTORATION --- */

/* Hero Section Refinements */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 5px 15px 5px 5px;
    border-radius: 50px;
    border: 1px solid #d6d6d6;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    width: fit-content;
    margin: auto;
    margin-bottom: 25px;
}

.strt {
    justify-content: start !important;
}

.badge-text {
    font-weight: 600;
    color: #555;
}

.btn-become-trader {
    padding: 6px 8px 6px 20px !important;
}

.btn-arrow-icon {
    width: 44px !important;
    height: 44px !important;
    background: #ffffff !important;
    color: #000000 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px;
    overflow: hidden !important;
    position: relative !important;
}

.btn-arrow-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.6, 0.01, 0, 1) !important;
}

.btn-arrow-icon i::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -30px;
}

.btn-become-trader:hover .btn-arrow-icon i {
    transform: translateX(30px) !important;
}


.partners-title-v3 {
    text-align: center;
}


/* --- COURSE FEATURES (IMAGE 4) PRECISE ALIGNMENT --- */
.features-grid-section {
    padding: 120px 0;
    background: #f7f8f5;
    text-align: center;
}

.features-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 25px;
    background: #f7f9f7;
    padding: 6px 16px;
    border-radius: 50px;
}

.dot-green {
    width: 6px;
    height: 6px;
    background: #0de42a;
    border-radius: 50%;
}

.features-title-v4 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 80px;
    color: #111;
}

.features-title-v4 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.feature-card-v4 {
    background: #fff;
    border-radius: 35px;
    padding: 45px;
    height: 590px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.feature-card-v4 h3 {
    font-size: clamp(1.5rem, 6vw, 1.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #111;
    max-width: 90%;
}

.feature-card-v4 p {
    font-size: 15px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 0;
}

.feature-visual {
    margin-top: auto;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100%;
}

/* Card 1: Avatars Orbit (Design Refinement) */
.avatars-orbit {
    position: absolute;
    bottom: -230px;
    /* Centered on the bottom edge (half of 460px) */
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    animation: mainOrbit 100s linear infinite;
    transform-origin: center center;
}

.center-logo-v4 {
    position: absolute;
    z-index: 10;
    bottom: -26px;
    /* Positioned at the very peak center */
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.center-logo-v4 img {
    width: 28px;
    height: auto;
}

.orbit-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-circles .circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Darkened slightly */
}

.circle:nth-child(1) {
    width: 100%;
    height: 100%;
}

.circle:nth-child(2) {
    width: 68%;
    height: 68%;
    border-style: dashed;
    /* Mixed styles for premium look */
    opacity: 0.6;
}

.circle:nth-child(3) {
    width: 38%;
    height: 38%;
}

.avatar-slot {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-item {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Reverse rotation to stay upright during the 100s loop */
    animation: mainOrbitReverse 100s linear infinite;
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Explicit item positions around the circle - exactly as per Step 1177 */
/* Spread avatars across the 3 rings as per Framer reference */
.item-1 {
    transform: rotate(0deg) translate(220px);
}

.item-2 {
    transform: rotate(72deg) translate(150px);
}

.item-3 {
    transform: rotate(144deg) translate(220px);
}

.item-4 {
    transform: rotate(216deg) translate(150px);
}

.item-5 {
    transform: rotate(288deg) translate(220px);
}

@keyframes mainOrbit {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes mainOrbitReverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.phone-mockup-v4 {
    width: 100%;
    max-width: 295px;
    position: relative;
    margin-top: 20px;
    bottom: -50px;
}

.phone-mockup-v4 img {
    width: 100%;
    height: auto;
    display: block;
}

.play-notif-v4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    background: #0de42a;
    color: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(13, 228, 42, 0.25);
    z-index: 5;
}

.play-notif-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.play-notif-text b {
    font-size: 16px;
    display: block;
    line-height: 1.2;
}

.play-notif-text span {
    font-size: 11px;
    opacity: 0.9;
}

.session-num {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
}

/* Card 3: Coin & Time */
.time-complete {
    position: absolute;
    bottom: -20px;
    left: 0;
    text-align: left;
    z-index: 2;
}

.time-complete b span {
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    color: #d5d5d5;
    display: block;
}

.time-complete span {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 6px;
}

.time-complete b {
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    color: #111;
    display: flex;
}

.time-complete b i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: #111;
}

.coin-visual-v4 {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
}



/* Card 4: Support Chat */
.support-visual-v4 {
    width: 100%;
    display: flex;
    flex-direction: column;
}


.support-info span {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.support-info b {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.chat-img-v4 {
    width: 100%;
}

.support-chat-img {
    width: 100%;
}

.bubble {
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.bubble.green {
    background: #0de42a;
    color: #fff;
}

.bubble.dark {
    background: #0a3134;
    color: #fff;
}

.chat-row-2 {
    justify-content: flex-start;
}

.plus-btn-chat {
    width: 42px;
    height: 42px;
    background: #eef1ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-left: 5px;
}

.plus-btn-chat:hover {
    background: #111;
    color: #fff;
}

/* Card 5: Pricing Slider */

.price-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.price-val {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
}

.price-val span {
    font-size: 26px;
    opacity: 0.3;
}

.graph-img-v4 {
    width: 100%;
}

.pricing-graph-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 5px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #999;
    font-weight: 600;
}

/* Card 6: Certification */
.cert-img-v4 {
    width: 100%;
}

.featured-cert-img {
    width: 100%;
}



/* Strategies Section (Image 2) - GSAP STACK READY */
.strategies-section-v5 {
    padding: 120px 0 60px;
    /* Reduced padding for tighter section flow */
    background: #fff;
    position: relative;
    overflow: visible;
}

.strategies-title-v5 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 80px;
    text-align: center;
}

.strategies-title-v5 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.cards-wrapper-v5 {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.strategy-card-v5 {
    background: #fcfdf9;
    border-radius: 40px;
    padding: 60px 80px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    border: 1px solid #f0f2ed;
    position: sticky;
    top: 120px;
    /* Stacks as user scrolls */
    transition: box-shadow 0.4s ease;
    will-change: transform, opacity;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.strategy-card-v5:nth-child(2) {
    top: 140px;
}

.strategy-card-v5:nth-child(3) {
    top: 160px;
}

.strategy-card-v5:nth-child(4) {
    top: 180px;
}

.strategy-card-v5:last-child {
    margin-bottom: 0;
}

.strategy-card-v5:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.strategy-num-v5 {
    font-size: 96px;
    font-weight: 400;
    color: #111;
    opacity: 0.15;
    line-height: 1;
    min-width: 120px;
}

.strategy-content-v5 h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

.strategy-content-v5 ul li {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.strategy-content-v5 ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #0de42a;
    border-radius: 50%;
}

/* Steps Section (Image 5) */
.steps-section-v4 {
    padding: 120px 0;
    text-align: center;
    background: #ffff;
}

.steps-title-v4 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
}

.steps-title-v4 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.step-card-v4 {
    background: #f7f9f7;
    border-radius: 30px;
    padding: 50px 40px;
    height: 100%;
    transition: all 0.4s ease;
    text-align: left;
}



.step-pill-v4 {
    background: #14c321;
    color: #fff;
    padding: 5px 15px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 30px;
}

.step-card-v4 h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: #111;
}

/* Team Section (Image 6) */
.team-section-v6 {
    padding: 120px 0;
    background: #fff;
}

.team-title-v6 {
    text-align: center;
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 80px;
}

.team-member-card-v6 {
    text-align: center;
    margin-bottom: 40px;
}

.team-img-wrapper-v6 {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    margin-bottom: 25px;
    aspect-ratio: 1;
}

.team-img-v6 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social-pill-v6 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.team-img-wrapper-v6:hover .team-social-pill-v6 {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.team-member-card-v6 h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-member-card-v6 p {
    font-size: 16px;
    color: #888;
}

.team-info-card-v6 {
    background: #f7f9f7;
    border-radius: 40px;
    padding: 80px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-info-card-v6 h3 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.team-stats-v6 {
    margin: 40px 0;
}

.stat-num-v6 {
    font-size: 64px;
    font-weight: 700;
    display: block;
    color: #111;
}

.btn-meet-team {
    margin-top: auto;
    background: #d0ff71;
    padding: 15px 35px;
    border-radius: 100px;
    font-weight: 800;
    color: #111;
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(217, 243, 115, 0.3);
}



.testi-title {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 25px;
}

.testi-title i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.testi-subtitle-text {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 80px;
}

.testi-scroller-container {
    position: relative;
    width: 100%;
    /* Constrained to .container */
    overflow: hidden;
    padding: 20px 0;
    /* High-end side fade within container */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.testi-row {
    display: flex;
    /* overflow: hidden; */
    /* Handled by container now */
    margin-bottom: 30px;
}

.testi-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollTesti 60s linear infinite;
}

.testi-track.scroll-reverse {
    animation-direction: reverse;
}

@keyframes scrollTesti {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 15px));
    }
}

.testi-card-new {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 40px;
    width: 400px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testi-stars {
    color: #0de42a;
    font-size: 12px;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.testi-card-new p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-meta h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.user-meta span {
    font-size: 13px;
    color: #888;
}

/* Scroll Reveal Text */
.reveal-text-container {
    max-width: 1000px;
    margin: 0 auto;
}

.reveal-word {
    transition: color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .strategy-card-v5 {
        padding: 50px;
        gap: 50px;
    }

    .team-info-card-v6 {
        padding: 50px;
    }
}

@media (max-width: 991px) {
    .info-badges-divider {
        display: none;
    }

    .info-badge-item {
        padding: 40px 20px;
        text-align: center;
    }

    .info-badge-item a {
        justify-content: center;
    }

    .strategy-card-v5 {
        flex-direction: column;
        text-align: center;
    }

    .strategy-content-v5 {
        text-align: center;
    }

    .strategy-content-v5 ul li {
        display: inline-block;
        margin: 10px 15px;
    }
}

@media (max-width: 768px) {

    .testi-title,
    .strategies-title-v5,
    .team-title-v6 {
        font-size: 38px;
    }

    .testi-card-new {
        width: 320px;
        padding: 30px;
    }

    .team-info-card-v6 {
        padding: 40px;
    }

    .stat-num-v6 {
        font-size: 48px;
    }

    .hero-badge {
        margin: 0 auto 30px;
    }
}

/* --- INFO BADGES SECTION V6 (BLACK SECTION) --- */
.info-badges-section-v6 {
    background: #000;
    padding: 100px 0;
    color: #fff;
}

.info-badges-row-v6 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.info-badge-col-v6 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Initial alignment, can be left-aligned in desktop too */
    text-align: center;
    padding: 0 60px;
}

/* Specific alignments like in design (image shows centered/left-ish) */
.left-col-v6 {
    align-items: flex-start;
    text-align: left;
}

.right-col-v6 {
    align-items: flex-start;
    text-align: left;
}

.badge-logo-v6 {
    margin-bottom: 30px;
}

.badge-logo-v6 img {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
}

.badge-icon-v6 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 30px;
}

.badge-title-v6 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.badge-text-v6 {
    font-size: 16px;
    color: #8c8c8c;
    margin-bottom: 30px;
    line-height: 1.6;
}

.badge-link-v6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.badge-link-v6:hover {
    color: #d0ff71;
    gap: 12px;
}

.badge-arrow-v6 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 20px;
    height: 18px;
    vertical-align: middle;
}

.badge-arrow-v6 i {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.6, 0.01, 0, 1);
}

.badge-arrow-v6 i::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -20px;
}

.badge-link-v6:hover .badge-arrow-v6 i {
    transform: translateX(20px);
}

/* Vertical Divider */
.badge-divider-v6 {
    width: 1px;
    height: 160px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 40px;
}

/* Responsive Badges */
@media (max-width: 991px) {
    .info-badges-row-v6 {
        flex-direction: column;
        gap: 80px;
    }

    .badge-divider-v6 {
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }

    .info-badge-col-v6 {
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }
}


/* --- ABOUT V3 REDESIGN --- */
.about-hero-v3 {
    padding: 100px 0 160px;
    background: #fff;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, rgb(255 255 255 / 36%) 0%, rgba(255, 255, 255, 0.72) 100%), 
              url('../assets/bgpattrn.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-v3 h1 {
    font-size: var(--h1font-size);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 25px;
    margin-top: 45px;
    letter-spacing: -2px;
    text-align: center;
}

.about-hero-v3 h1 i {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.about-hero-v3 p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* .hero-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 1;
} */

.about-hero-v3 .container {
    position: relative;
    z-index: 2;
}

/* About Foundation V3 */
.about-foundation-v3 {
    padding: 140px 0;
}

.about-main-text-v3 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    color: #111;
    margin-bottom: 40px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: #F7F8F5;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

/* Pillars Section V3 */
.pillars-section-v3 {
    padding: 140px 0;
}

.pillar-card-v3 {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 50px 40px;
    border-radius: 24px;
    height: 100%;
}



.pillar-icon-v3 {
    width: 60px;
    height: 60px;
    background: #14c321;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 30px;
}

.pillar-card-v3 h3 {
    font-size: 24px;
    color: #111;
    margin-bottom: 20px;
}

.pillar-card-v3 p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* Founders Section V3 */
.founders-section-v3 {
    padding: 140px 0;
}

.founder-card-v3 {
    position: relative;
    overflow: hidden;
}

.founder-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
    aspect-ratio: 4/5;
}

.founder-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}



.founder-socials {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.founder-card-v3:hover .founder-socials {
    opacity: 1;
    transform: translateY(0);
}

.founder-socials a {
    width: 44px;
    height: 44px;
    background: #fff;
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.founder-socials a:hover {
    background: #0de42a;
    color: #000;
}

.founder-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.founder-info span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0de42a;
    margin-bottom: 15px;
}

.founder-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .about-hero-v3 h1 {
        font-size: 54px;
    }

    .about-main-text-v3 {
        font-size: 22px;
    }

    .founder-info h3 {
        font-size: 26px;
    }
}

/* About Solution-V3 Design Enhancement */
.about-solution-card-v3 {
    background: #0d0d0d;
    ;
    padding: 60px 45px;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 40px 80px rgba(0, 48, 51, 0.15);
}

.about-solution-card-v3::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #22C55E 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0de42a;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-solution-card-v3 h3 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 25px;
    color: #fff;
}

.about-solution-card-v3 p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.solution-footer {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-stat {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-stat strong {
    color: #0de42a;
    font-size: 50px;
    display: block;
    margin-bottom: 2px;
}

.metric-icon-small {
    width: 44px;
    height: 44px;
    background: #f8faf8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0bc322;
    ;
    font-size: 18px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.context-metric-v3:hover .metric-icon-small {
    background: #0bc322;
    color: #fff;
}


/* Vision & Mission V3 */
.vision-card-v3 {
    background: #f1f1f1;
    padding: 60px 40px;
    border-radius: 30px;
    height: 100%;
}

/* .mission-card-v3 {
    background: #0A3033;
    padding: 60px 40px;
    border-radius: 30px;
    height: 100%;
    color: #fff;
    position: relative;
    overflow: hidden;
} */
.card-v3-new {
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
    /* Deep Forest Green */
    padding: 60px 40px;
    border-radius: 30px;
    height: 100%;
    color: #fff;
}

.card-v3-new::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #22C55E 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.vision-mission-v3 h3 {
    font-size: 23px;
    margin: 20px 0;
    line-height: 1.3;
    position: relative;
    z-index: 222;
    font-weight: 500;
}

/* Featured & Video */
.featured-v3 {
    background: #fff;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* App & CTA Additions */
.app-downloads {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.app-btn-placeholder {
    background: #124c3a;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-btn-placeholder:hover {
    background: #111;
    border-color: #0de42a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 228, 42, 0.1);
}

.disclaimer-v3 {
    max-width: 900px;
    margin: 40px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* Utility Helpers */
.text-grey-600 {
    color: #666;
}

.text-18 {
    font-size: 18px;
}

.lh-1-6 {
    line-height: 1.6;
}

.font-semibold {
    font-weight: 600;
}

/* Section Specific Typography */
.section-title-large {
    font-size: 42px;
}

.problem-text {
    color: #444;
    font-size: 17px;
}

.solution-text {
    color: #eee;
    line-height: 1.7;
}

.secondary-text {
    color: #666;
}

.text-white {
    color: #fff !important;
    position: relative;
    z-index: 222;
}

/* Redesigned Context Section Metrics */
.context-metrics-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}

.context-metric-v3 {
    flex: 1;
}

.metric-num {
    font-size: 33px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.metric-num.global {
    color: #0bc322;
}

.metric-num.india {
    color: #0bc322;
}

.metric-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
}

.metric-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f1f1;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    margin-bottom: 12px;
}

.india-badge {
    background: #eff6ef;
    color: #124c3a;
}

.context-divider {
    width: 1px;
    background: #eee;
    height: 60px;
    align-self: center;
}

.context-metrics-wrapper {
    transition: all 0.3s ease;
}

.context-metrics-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.light-sage-bg {
    background-color: #f4f8f4;
}




/* About CTA specific override */
.about-footer-cta .cta-banner {
    background: #124c3a;
    border: none;
}

/* --- VIDEO TESTIMONIALS V7 (IMAGE INSPIRED) --- */
.video-testi-v7 {
    padding: 0 0 100px 0;
    background: #fff;
    overflow: hidden;
}

.video-testi-v7 .help-subtitle {
    margin-bottom: 25px;
}

.testi-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin-bottom: 25px;
}

.testi-subtitle-text {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
}

.video-scroller-v7 {
    position: relative;
    width: 100%;
    margin-top: 50px;
}

/* Side Blur Effects */
.video-scroller-v7::before,
.video-scroller-v7::after {
    content: '';
    position: absolute;
    top: 0;
    width: 30%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.video-scroller-v7::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.video-scroller-v7::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.video-track-v7 {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollVideoV7 40s linear infinite;
    padding-bottom: 15px;
    /* for shadow space if needed */
}

@keyframes scrollVideoV7 {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

.video-card-v7 {
    width: 339px;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    flex-shrink: 0;
}

.video-card-v7 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card-v7:hover video {
    transform: scale(1.05);
}

.video-overlay-v7 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

:root {
    --primary-bg: #FFFFFF;
    --accent-green: #D6F56A;
    --text-dark: #000000;
    --text-muted: #666666;
    --card-radius: 24px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-bg);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.team-section {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
}

.title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.team-card {
    border: none;
    background: transparent;
    transition: var(--transition);
}

.img-wrapper {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    background: #f8f8f8;
    aspect-ratio: 1 / 1.1;
    margin-bottom: 20px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}



.social-icons {
    position: absolute;
    top: -2px;
    right: -100px;
    background: #fff;
    padding: 25px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom-left-radius: 25px;
    transition: var(--transition);
    z-index: 5;
}

.team-card:hover .social-icons {
    right: 0px;
}

.social-icons::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 63px;
    width: 25px;
    height: 25px;
    background: transparent;
    border-bottom-right-radius: 25px;
    box-shadow: 10px 10px 0 10px #fff;
    pointer-events: none;
    transform: rotate(-99deg);
}

.social-icons::after {
    content: "";
    position: absolute;
    bottom: -24px;
    right: 0;
    width: 25px;
    height: 25px;
    background: transparent;
    border-top-right-radius: 25px;
    box-shadow: 10px -10px 0 10px #fff;
    pointer-events: none;
}

.social-icons a {
    color: #000000;
    font-size: 17px;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.social-icons a:hover {
    background-color: var(--accent-green);
    color: #000000;
    transform: scale(1.1);
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.member-role {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

@media (max-width: 991px) {
    .title {
        font-size: 36px;
    }

    .social-icons {
        right: 0px;
    }
}






.inner-hero {
    padding: 60px 0 100px;
    background-color: #F8F8F6;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 5px 15px 5px 5px;
    border-radius: 50px;
    border: 1px solid #d6d6d6;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.inner-hero h1 {
    font-size: var(--h1font-size);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 600;
}

.inner-hero p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.inner-section {
    padding: 80px 0;
    background: #fff;
}

.inner-section.bg-light {
    background: #F7F8F5;
}

.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-content p {
    font-size: 18px;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.8;
}

.text-content h2 {
    font-size: var(--h2font-size);
    margin: 40px 0 20px;
}

.text-content h3 {
    font-size: 28px;
    margin: 30px 0 15px;
}

.text-content h4 {
    font-size: 22px;
    margin: 25px 0 15px;
}

.text-content ul {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.text-content ul li {
    font-size: 18px;
    color: #444;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.text-content ul li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #00CC44;
}

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.team-card {
    background: #F7F8F5;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #EAEAEA;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-color: var(--primary-color);
}

.team-initials {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.team-card h3 {
    margin: 0;
    font-size: 20px;
}

/* Blog List */
.blog-list {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.blog-card {
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.blog-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card a {
    color: var(--text-dark);
}

.blog-card a:hover {
    color: #444;
}

/* Contact Page */
.contact-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-info {
    background: #0A3033;
    padding: 60px 50px;
    color: #fff;
    height: 100%;
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 32px;
}

.info-item {
    margin-bottom: 35px;
}

.info-item span {
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-item p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.5;
}

.info-item a {
    color: #fff;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    padding: 60px 50px;
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 32px;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-main);
    background: #F7F8F5;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

/* Course Features */
.course-features {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    margin-bottom: 60px;
}

.course-feature-item {
    padding: 24px;
    background: #F7F8F5;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.course-feature-item:hover {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.course-feature-icon {
    width: 40px;
    height: 40px;
    background: #00CC44;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.course-feature-item h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.course-feature-item p {
    margin: 0;
    font-size: 15px;
    color: #666;
}

/* responsive */
@media (max-width: 991px) {
    .inner-hero {
        padding: 50px 0 80px;
    }

    .inner-section {
        padding: 60px 0;
    }

    .contact-wrapper {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .inner-hero h1 {
        font-size: 36px !important;
    }

    .text-content h2 {
        font-size: 30px;
    }

    .contact-info,
    .contact-form {
        padding: 40px 30px;
    }

    .team-grid,
    .blog-list,
    .course-features {
        gap: 20px;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 26px;
        margin-bottom: 25px;
    }
}

.about-img-styled {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    object-fit: contain;
}

.vision-box {
    background: #F8F8F6;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.vision-box h3 {
    font-size: 24px;
}

.mission-box {
    background: #0A3033;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    color: #fff;
}

.mission-box .about-subtitle {
    color: #fff;
}

.mission-box h3 {
    font-size: 24px;
    color: #fff;
}

.value-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.value-icon {
    color: #00CC44;
    font-size: 24px;
    margin-bottom: 15px;
}

.value-box h4 {
    margin-bottom: 10px;
}

.value-box p {
    color: #666;
}

.inner-hero-dark {
    background-color: #0A3033;
    color: #fff;
}

.inner-hero-dark h1,
.inner-hero-dark p {
    color: #fff;
}

.inner-hero-badge-dark {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.inner-hero-badge-dark .badge-text {
    color: #fff;
}

.inner-hero-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.curriculum-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    height: 100%;
}

.curriculum-box h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.curriculum-box-dark {
    background: #0A3033;
    padding: 40px;
    border-radius: 16px;
    height: 100%;
    color: #fff;
}

.curriculum-box-dark h3 {
    margin-bottom: 20px;
    color: #fff;
}

.curriculum-box-dark ul li {
    color: rgba(255, 255, 255, 0.8);
}

.curriculum-box-dark ul li span {
    color: #00CC44;
    margin-right: 10px;
}

.blog-desc {
    color: #666;
    margin-bottom: 20px;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.blog-read-more i {
    margin-left: 5px;
}

.inner-hero-contact {
    padding-bottom: 160px;
    background-color: #F8F8F6;
}

.contact-social a {
    font-size: 20px;
}

.btn-submit-contact {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    min-width: 200px;
}

.btn-submit-contact i {
    margin-left: 10px;
}

.support-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #EAEAEA;
    height: 100%;
}

.support-icon {
    font-size: 30px;
    color: #00CC44;
    margin-bottom: 15px;
}

.support-box h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.support-box p {
    color: #666;
    font-size: 15px;
}

.support-box a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.max-w-600 {
    max-width: 600px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-muted-alt {
    color: #666;
}


/* Hero Reveal delays moved to global .reveal definitions above */

@keyframes heroRevealStaggered {
    0% {
        opacity: 0;
        filter: none;
        transform: translateY(40px);
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }

    10% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        filter: none;
        transform: translateY(0);
        -webkit-mask-position: 0% 0;
        mask-position: 0% 0;
    }
}

/* Ensure no layout shift during animation */
.reveal-init {
    backface-visibility: hidden;
    will-change: transform, opacity, filter, mask-position;
}







.inner-hero {
    padding: 60px 0 100px;
    background-color: #F8F8F6;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 5px 15px 5px 5px;
    border-radius: 50px;
    border: 1px solid #d6d6d6;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.inner-hero h1 {
    font-size: var(--h1font-size);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 600;
}

.inner-hero p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.inner-section {
    padding: 80px 0;
    background: #fff;
}

.inner-section.bg-light {
    background: #F7F8F5;
}

.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-content p {
    font-size: 18px;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.8;
}

.text-content h2 {
    font-size: var(--h2font-size);
    margin: 40px 0 20px;
}

.text-content h3 {
    font-size: 28px;
    margin: 30px 0 15px;
}

.text-content h4 {
    font-size: 22px;
    margin: 25px 0 15px;
}

.text-content ul {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.text-content ul li {
    font-size: 18px;
    color: #444;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.text-content ul li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #00CC44;
}

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.team-card {
    background: #F7F8F5;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #EAEAEA;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-color: var(--primary-color);
}

.team-initials {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.team-card h3 {
    margin: 0;
    font-size: 20px;
}

/* Blog List */
.blog-list {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.blog-card {
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.blog-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card a {
    color: var(--text-dark);
}

.blog-card a:hover {
    color: #444;
}

/* Contact Page */
.contact-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-info {
    background: #0A3033;
    padding: 60px 50px;
    color: #fff;
    height: 100%;
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 32px;
}

.info-item {
    margin-bottom: 35px;
}

.info-item span {
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-item p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.5;
}

.info-item a {
    color: #fff;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    padding: 60px 50px;
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 32px;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-main);
    background: #F7F8F5;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

/* Course Features */
.course-features {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    margin-bottom: 60px;
}

.course-feature-item {
    padding: 24px;
    background: #F7F8F5;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.course-feature-item:hover {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.course-feature-icon {
    width: 40px;
    height: 40px;
    background: #00CC44;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.course-feature-item h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.course-feature-item p {
    margin: 0;
    font-size: 15px;
    color: #666;
}

/* responsive */
@media (max-width: 991px) {
    .inner-hero {
        padding: 50px 0 80px;
    }

    .inner-section {
        padding: 60px 0;
    }

    .contact-wrapper {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .inner-hero h1 {
        font-size: 36px !important;
    }

    .text-content h2 {
        font-size: 30px;
    }

    .contact-info,
    .contact-form {
        padding: 40px 30px;
    }

    .team-grid,
    .blog-list,
    .course-features {
        gap: 20px;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 26px;
        margin-bottom: 25px;
    }
}

.about-img-styled {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    object-fit: contain;
}

.vision-box {
    background: #F8F8F6;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.vision-box h3 {
    font-size: 24px;
}

.mission-box {
    background: #0A3033;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    color: #fff;
}

.mission-box .about-subtitle {
    color: #fff;
}

.mission-box h3 {
    font-size: 24px;
    color: #fff;
}

.value-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.value-icon {
    color: #00CC44;
    font-size: 24px;
    margin-bottom: 15px;
}

.value-box h4 {
    margin-bottom: 10px;
}

.value-box p {
    color: #666;
}

.inner-hero-dark {
    background-color: #0A3033;
    color: #fff;
}

.inner-hero-dark h1,
.inner-hero-dark p {
    color: #fff;
}

.inner-hero-badge-dark {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.inner-hero-badge-dark .badge-text {
    color: #fff;
}

.inner-hero-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.curriculum-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    height: 100%;
}

.curriculum-box h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.curriculum-box-dark {
    background: #0A3033;
    padding: 40px;
    border-radius: 16px;
    height: 100%;
    color: #fff;
}

.curriculum-box-dark h3 {
    margin-bottom: 20px;
    color: #fff;
}

.curriculum-box-dark ul li {
    color: rgba(255, 255, 255, 0.8);
}

.curriculum-box-dark ul li span {
    color: #00CC44;
    margin-right: 10px;
}

.blog-desc {
    color: #666;
    margin-bottom: 20px;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.blog-read-more i {
    margin-left: 5px;
}

.inner-hero-contact {
    padding-bottom: 160px;
    background-color: #F8F8F6;
}

.contact-social a {
    font-size: 20px;
}

.btn-submit-contact {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    min-width: 200px;
}

.btn-submit-contact i {
    margin-left: 10px;
}

.support-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #EAEAEA;
    height: 100%;
}

.support-icon {
    font-size: 30px;
    color: #00CC44;
    margin-bottom: 15px;
}

.support-box h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.support-box p {
    color: #666;
    font-size: 15px;
}

.support-box a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.max-w-600 {
    max-width: 600px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-muted-alt {
    color: #666;
}




:root {
    --text-muted: #666666;
    --bg-card: #ffffff;

    --card-max-width: 500px;
    --base-scale: 1;
    --avatar-size: calc(90px * var(--base-scale));
    --arc-scale: calc(1px * var(--base-scale));

    --arc-1-size: calc(140 * var(--arc-scale));
    --arc-2-size: calc(240 * var(--arc-scale));
    --arc-3-size: calc(340 * var(--arc-scale));
    --arc-4-size: calc(440 * var(--arc-scale));

    --avatar-bottom: calc(185 * var(--arc-scale));
    --avatar-pivot: calc(230 * var(--arc-scale));
}




.traders-card {
    background: var(--bg-card);
    border-radius: clamp(20px, 8vw, 40px);
    padding: clamp(20px, 8vw, 40px) clamp(20px, 8vw, 40px) 20px clamp(20px, 8vw, 40px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    text-align: left;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1.25;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: clamp(1.5rem, 6vw, 1.5rem);
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.card-description {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: clamp(15px, 5vw, 25px);
    max-width: 90%;
}

.avatar-arc-container {
    position: relative;
    flex-grow: 1;
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.arc-circle {
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.arc-1 {
    width: var(--arc-1-size);
    height: var(--arc-1-size);
    bottom: calc(-0.5 * var(--arc-1-size));
}

.arc-2 {
    width: var(--arc-2-size);
    height: var(--arc-2-size);
    bottom: calc(-0.5 * var(--arc-2-size));
}

.arc-3 {
    width: var(--arc-3-size);
    height: var(--arc-3-size);
    bottom: calc(-0.5 * var(--arc-3-size));
}

.arc-4 {
    width: var(--arc-4-size);
    height: var(--arc-4-size);
    bottom: calc(-0.5 * var(--arc-4-size));
}

.avatar {
    position: absolute;
    bottom: var(--avatar-bottom);
    left: 50%;
    margin-left: calc(-0.5 * var(--avatar-size));
    width: var(--avatar-size);
    height: var(--avatar-size);
    border: calc(10px * var(--base-scale)) solid #fff;
    border-radius: 50%;
    overflow: hidden;
    transform-origin: center var(--avatar-pivot);
    animation: rotate-avatars 35s infinite linear;
    z-index: 2;
    background: #eee;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: counter-rotate 35s infinite linear;
}

@keyframes rotate-avatars {
    0% {
        transform: rotate(-180deg);
        opacity: 0;
    }

    15% {
        transform: rotate(-120deg);
        opacity: 0;
    }

    25% {
        transform: rotate(-90deg);
        opacity: 1;
    }

    50% {
        transform: rotate(0deg);
        opacity: 1;
    }

    75% {
        transform: rotate(90deg);
        opacity: 1;
    }

    85% {
        transform: rotate(120deg);
        opacity: 0;
    }

    100% {
        transform: rotate(180deg);
        opacity: 0;
    }
}

@keyframes counter-rotate {
    0% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(-180deg);
    }
}

/* Delay distribution */
.avatar-1,
.avatar-1 img {
    animation-delay: 0s;
}

.avatar-2,
.avatar-2 img {
    animation-delay: -5s;
}

.avatar-3,
.avatar-3 img {
    animation-delay: -10s;
}

.avatar-4,
.avatar-4 img {
    animation-delay: -15s;
}

.avatar-5,
.avatar-5 img {
    animation-delay: -20s;
}

.avatar-6,
.avatar-6 img {
    animation-delay: -25s;
}

.avatar-7,
.avatar-7 img {
    animation-delay: -30s;
}

.logo-container {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px;
    border-radius: 50%;
    z-index: 5;
}

.m-logo {
    width: clamp(30px, 8vw, 40px);
    height: clamp(30px, 8vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-logo img {
    width: 100%;
    height: auto;
}

/* Breakpoints for dynamic scaling */
@media (max-width: 480px) {
    :root {
        --base-scale: 0.85;
    }
}

@media (max-width: 400px) {
    :root {
        --base-scale: 0.75;
    }
}

@media (max-width: 320px) {
    :root {
        --base-scale: 0.65;
    }
}